[PATCH] Driver core: send hotplug event before adding class interfaces
authorDmitry Torokhov <dtor_core@ameritech.net>
Thu, 15 Sep 2005 07:01:37 +0000 (02:01 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 28 Oct 2005 16:52:50 +0000 (09:52 -0700)
Move call to kobject_hotplug() above code that adds interfaces
to a class device, otherwise children's hotplug events may reach
userspace first.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/base/class.c

index ce23dc8..8df58c5 100644 (file)
@@ -524,6 +524,8 @@ int class_device_add(struct class_device *class_dev)
                                  class_name);
        }
 
+       kobject_hotplug(&class_dev->kobj, KOBJ_ADD);
+
        /* notify any interfaces this device is now here */
        if (parent) {
                down(&parent->sem);
@@ -533,7 +535,6 @@ int class_device_add(struct class_device *class_dev)
                                class_intf->add(class_dev);
                up(&parent->sem);
        }
-       kobject_hotplug(&class_dev->kobj, KOBJ_ADD);
 
  register_done:
        if (error && parent)