2022-07-18 14:15:55

by Gaosheng Cui

[permalink] [raw]
Subject: [PATCH -next] nvmem: core: add error handling for dev_set_name

The type of return value of dev_set_name is int, which may return
wrong result, so we add error handling for it to reclaim memory
of nvmem resource, and return early when an error occurs.

Signed-off-by: Gaosheng Cui <[email protected]>
---
drivers/nvmem/core.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index 2164efd12ba9..321d7d63e068 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -810,18 +810,24 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config)

switch (config->id) {
case NVMEM_DEVID_NONE:
- dev_set_name(&nvmem->dev, "%s", config->name);
+ rval = dev_set_name(&nvmem->dev, "%s", config->name);
break;
case NVMEM_DEVID_AUTO:
- dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
+ rval = dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
break;
default:
- dev_set_name(&nvmem->dev, "%s%d",
+ rval = dev_set_name(&nvmem->dev, "%s%d",
config->name ? : "nvmem",
config->name ? config->id : nvmem->id);
break;
}

+ if (rval) {
+ ida_free(&nvmem_ida, nvmem->id);
+ kfree(nvmem);
+ return ERR_PTR(rval);
+ }
+
nvmem->read_only = device_property_present(config->dev, "read-only") ||
config->read_only || !nvmem->reg_write;

--
2.25.1


2022-07-18 14:21:22

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH -next] nvmem: core: add error handling for dev_set_name

On Mon, Jul 18, 2022 at 09:36:12PM +0800, Gaosheng Cui wrote:
> The type of return value of dev_set_name is int, which may return
> wrong result, so we add error handling for it to reclaim memory
> of nvmem resource, and return early when an error occurs.
>
> Signed-off-by: Gaosheng Cui <[email protected]>
> ---
> drivers/nvmem/core.c | 12 +++++++++---
> 1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
> index 2164efd12ba9..321d7d63e068 100644
> --- a/drivers/nvmem/core.c
> +++ b/drivers/nvmem/core.c
> @@ -810,18 +810,24 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config)
>
> switch (config->id) {
> case NVMEM_DEVID_NONE:
> - dev_set_name(&nvmem->dev, "%s", config->name);
> + rval = dev_set_name(&nvmem->dev, "%s", config->name);
> break;
> case NVMEM_DEVID_AUTO:
> - dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
> + rval = dev_set_name(&nvmem->dev, "%s%d", config->name, nvmem->id);
> break;
> default:
> - dev_set_name(&nvmem->dev, "%s%d",
> + rval = dev_set_name(&nvmem->dev, "%s%d",
> config->name ? : "nvmem",
> config->name ? config->id : nvmem->id);
> break;
> }
>
> + if (rval) {
> + ida_free(&nvmem_ida, nvmem->id);
> + kfree(nvmem);
> + return ERR_PTR(rval);
> + }
> +
> nvmem->read_only = device_property_present(config->dev, "read-only") ||
> config->read_only || !nvmem->reg_write;
>
> --
> 2.25.1
>

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- This looks like a new version of a previously submitted patch, but you
did not list below the --- line any changes from the previous version.
Please read the section entitled "The canonical patch format" in the
kernel file, Documentation/SubmittingPatches for what needs to be done
here to properly describe this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot