Re: [PATCH] nvdimm: Fix return value of nvdimm_bus_init() if class_create() fails

2015-06-30 Thread Dan Williams
On Sun, Jun 28, 2015 at 2:00 AM, Axel Lin  wrote:
> Return proper error if class_create() fails.
>
> Signed-off-by: Axel Lin 

Thanks, applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] nvdimm: Fix return value of nvdimm_bus_init() if class_create() fails

2015-06-30 Thread Dan Williams
On Sun, Jun 28, 2015 at 2:00 AM, Axel Lin axel@ingics.com wrote:
 Return proper error if class_create() fails.

 Signed-off-by: Axel Lin axel@ingics.com

Thanks, applied.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] nvdimm: Fix return value of nvdimm_bus_init() if class_create() fails

2015-06-28 Thread Axel Lin
Return proper error if class_create() fails.

Signed-off-by: Axel Lin 
---
 drivers/nvdimm/bus.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/nvdimm/bus.c b/drivers/nvdimm/bus.c
index ca80270..f6f6a91 100644
--- a/drivers/nvdimm/bus.c
+++ b/drivers/nvdimm/bus.c
@@ -644,8 +644,10 @@ int __init nvdimm_bus_init(void)
nvdimm_major = rc;
 
nd_class = class_create(THIS_MODULE, "nd");
-   if (IS_ERR(nd_class))
+   if (IS_ERR(nd_class)) {
+   rc = PTR_ERR(nd_class);
goto err_class;
+   }
 
return 0;
 
-- 
2.1.0



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] nvdimm: Fix return value of nvdimm_bus_init() if class_create() fails

2015-06-28 Thread Axel Lin
Return proper error if class_create() fails.

Signed-off-by: Axel Lin axel@ingics.com
---
 drivers/nvdimm/bus.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/nvdimm/bus.c b/drivers/nvdimm/bus.c
index ca80270..f6f6a91 100644
--- a/drivers/nvdimm/bus.c
+++ b/drivers/nvdimm/bus.c
@@ -644,8 +644,10 @@ int __init nvdimm_bus_init(void)
nvdimm_major = rc;
 
nd_class = class_create(THIS_MODULE, nd);
-   if (IS_ERR(nd_class))
+   if (IS_ERR(nd_class)) {
+   rc = PTR_ERR(nd_class);
goto err_class;
+   }
 
return 0;
 
-- 
2.1.0



--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/