[<prev] [next>] [day] [month] [year] [list]
Message-ID: <961aa3350702270603j476c68c0x1c7177ca0581ddef@mail.gmail.com>
Date: Tue, 27 Feb 2007 23:03:18 +0900
From: "Akinobu Mita" <akinobu.mita@...il.com>
To: "Linux Kernel List" <linux-kernel@...r.kernel.org>,
"Greg KH" <greg@...ah.com>,
"Russell King" <rmk+lkml@....linux.org.uk>
Subject: [PATCH 2/3] driver core: add missing symlinks error handling
Subject: [PATCH 2/3] driver core: add missing symlinks error handling
Signed-off-by: Akinobu Mita <akinobu.mita@...il.com>
Cc: Greg Kroah-Hartman <gregkh@...e.de>
---
drivers/base/core.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Index: 2.6-mm/drivers/base/core.c
===================================================================
--- 2.6-mm.orig/drivers/base/core.c
+++ 2.6-mm/drivers/base/core.c
@@ -649,8 +649,10 @@ int device_add(struct device *dev)
BUS_NOTIFY_DEL_DEVICE, dev);
device_remove_groups(dev);
GroupError:
- device_remove_attrs(dev);
+ device_remove_attrs(dev);
AttrsError:
+ device_remove_links(dev, parent);
+
if (dev->devt_attr) {
device_remove_file(dev, dev->devt_attr);
kfree(dev->devt_attr);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists