All of lore.kernel.org
 help / color / mirror / Atom feed
* Error message from device_rename in drivers/base/core.c
@ 2007-08-08  4:17 Larry Finger
  2007-08-08  4:37 ` David Miller
  0 siblings, 1 reply; 12+ messages in thread
From: Larry Finger @ 2007-08-08  4:17 UTC (permalink / raw)
  To: LKML

I am getting the following error message from drivers/base/core.c:

net eth1: device_rename: sysfs_create_symlink failed (-17)

Upon investigation, the call generating the error is renaming 'eth1' to 'eth1'. The following patch 
suppresses the error.


Index: wireless-dev/drivers/base/core.c
===================================================================
--- wireless-dev.orig/drivers/base/core.c
+++ wireless-dev/drivers/base/core.c
@@ -1256,7 +1256,7 @@ int device_rename(struct device *dev, ch
  		sysfs_remove_link(&dev->class->subsys.kobj, old_device_name);
  		error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj,
  					  dev->bus_id);
-		if (error) {
+		if (error && memcmp(dev->bus_id, new_name, sizeof(new_name))) {
  			/* Uh... how to unravel this if restoring can fail? */
  			dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n",
  				__FUNCTION__, error);


Larry

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2007-08-08 15:19 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-08  4:17 Error message from device_rename in drivers/base/core.c Larry Finger
2007-08-08  4:37 ` David Miller
2007-08-08  4:52   ` Larry Finger
2007-08-08  4:55     ` David Miller
2007-08-08  5:02       ` Larry Finger
2007-08-08  6:18     ` Sam Ravnborg
2007-08-08  9:33   ` Cornelia Huck
2007-08-08 12:23     ` Larry Finger
2007-08-08 13:46       ` Kay Sievers
2007-08-08 13:59         ` Larry Finger
2007-08-08 14:14           ` Kay Sievers
2007-08-08 15:19             ` Larry Finger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.