[PATCH 1/2] nvmem: core: Improve error path code of nvmem_register()

From: Andrey Smirnov
Date: Tue Apr 18 2017 - 10:25:24 EST


From: Nikita Yushchenko <nikita.yoush@xxxxxxxxxxxxxxxxxx>

Improve error path code of nvmem_register() in the following ways:

- Call device_del when call to nvmem_setup_compat() fails, since
at that point device_add has suceeded and we need to undo that.

- Documentation for device_add discorages explicitly freeing
memory occupied by the device even in case of device_add
failure, so to fix that use put_device() instead.

Cc: cphealy@xxxxxxxxx
Cc: Srinivas Kandagatla <srinivas.kandagatla@xxxxxxxxxx>
Cc: Maxime Ripard <maxime.ripard@xxxxxxxxxxxxxxxxxx>
Signed-off-by: Nikita Yushchenko <nikita.yoush@xxxxxxxxxxxxxxxxxx>
Signed-off-by: Andrey Smirnov <andrew.smirnov@xxxxxxxxx>
---
drivers/nvmem/core.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index 408b521..095e3fc 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -488,21 +488,23 @@ struct nvmem_device *nvmem_register(const struct nvmem_config *config)

rval = device_add(&nvmem->dev);
if (rval)
- goto out;
+ goto err_add;

if (config->compat) {
rval = nvmem_setup_compat(nvmem, config);
if (rval)
- goto out;
+ goto err_compat;
}

if (config->cells)
nvmem_add_cells(nvmem, config);

return nvmem;
-out:
- ida_simple_remove(&nvmem_ida, nvmem->id);
- kfree(nvmem);
+
+err_compat:
+ device_del(&nvmem->dev);
+err_add:
+ put_device(&nvmem->dev);
return ERR_PTR(rval);
}
EXPORT_SYMBOL_GPL(nvmem_register);
--
2.9.3