summaryrefslogtreecommitdiffstats
path: root/drivers/base/core.c
diff options
context:
space:
mode:
authorEric W. Biederman2009-11-04 11:50:28 +0100
committerGreg Kroah-Hartman2009-12-11 20:24:52 +0100
commit18ef545e47c126abd87c013b762b5fbb574858ce (patch)
treef401af6e65f441898e4832878895a182b81a33c4 /drivers/base/core.c
parentfirmware_class: make request_firmware_nowait more useful (diff)
downloadkernel-qcow2-linux-18ef545e47c126abd87c013b762b5fbb574858ce.tar.gz
kernel-qcow2-linux-18ef545e47c126abd87c013b762b5fbb574858ce.tar.xz
kernel-qcow2-linux-18ef545e47c126abd87c013b762b5fbb574858ce.zip
Driver core: Don't remove kobjects in device_shutdown.
device_shutdown is defined to just shutdown the hardware and to not clean up any kernel data structures. Therefore don't put the kobjects for /sys/dev and /sys/dev/block and /sys/dev/char. This ensures we don't remove /sys/dev/block and /sys/dev/char while we still have symlinks from there to the actual devices. Acked-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/core.c')
-rw-r--r--drivers/base/core.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c
index 0d3c29d72215..353b13782165 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -1730,8 +1730,5 @@ void device_shutdown(void)
dev->driver->shutdown(dev);
}
}
- kobject_put(sysfs_dev_char_kobj);
- kobject_put(sysfs_dev_block_kobj);
- kobject_put(dev_kobj);
async_synchronize_full();
}