[EMAIL PROTECTED], 2005-03-24 18:58:45-08:00, [EMAIL PROTECTED]
  [driver core] Call klist_del() instead of klist_remove().

  - Can't wait on removing the current item in the list (the positive refcount 
*because*
    we are using it causes it to deadlock).


  Signed-off-by: Patrick Mochel <[EMAIL PROTECTED]>

diff -Nru a/drivers/base/dd.c b/drivers/base/dd.c
--- a/drivers/base/dd.c 2005-03-24 20:33:09 -08:00
+++ b/drivers/base/dd.c 2005-03-24 20:33:09 -08:00
@@ -184,7 +184,7 @@

        sysfs_remove_link(&drv->kobj, kobject_name(&dev->kobj));
        sysfs_remove_link(&dev->kobj, "driver");
-       klist_remove(&dev->knode_driver);
+       klist_del(&dev->knode_driver);

        down(&dev->sem);
        device_detach_shutdown(dev);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to