diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-04-18 21:57:36 -0700 |
---|---|---|
committer | Greg KH <greg@press.kroah.org> | 2005-04-18 21:57:36 -0700 |
commit | b41148c0d8d2fa0c36cebd9ba3ee4cfc0dc7cb9a (patch) | |
tree | 95b16a5913b8940fac3996b5e15aff9a2f55a225 /fs/partitions/check.c | |
parent | 0700f56bbca56bc930aab717bc5086336991441f (diff) | |
download | blackbird-op-linux-b41148c0d8d2fa0c36cebd9ba3ee4cfc0dc7cb9a.tar.gz blackbird-op-linux-b41148c0d8d2fa0c36cebd9ba3ee4cfc0dc7cb9a.zip |
[PATCH] kobject/hotplug split - block core
kobject_add() and kobject_del() don't emit hotplug events anymore. Do it
ourselves if we are finished populating the device directory.
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/partitions/check.c')
-rw-r--r-- | fs/partitions/check.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index 31cff785b3bd..2cab98a9a621 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c @@ -337,6 +337,7 @@ void register_disk(struct gendisk *disk) if ((err = kobject_add(&disk->kobj))) return; disk_sysfs_symlinks(disk); + kobject_hotplug(&disk->kobj, KOBJ_ADD); /* No minors to use for partitions */ if (disk->minors == 1) { @@ -441,5 +442,6 @@ void del_gendisk(struct gendisk *disk) sysfs_remove_link(&disk->driverfs_dev->kobj, "block"); put_device(disk->driverfs_dev); } + kobject_hotplug(&disk->kobj, KOBJ_REMOVE); kobject_del(&disk->kobj); } |