kobject_add() and kobject_del() don't emit hotplug events anymore. We need to do it ourselves now.
Signed-off-by: Kay Sievers <[EMAIL PROTECTED]> ===== net/bridge/br_sysfs_if.c 1.2 vs edited ===== --- 1.2/net/bridge/br_sysfs_if.c 2004-06-18 22:15:34 +02:00 +++ edited/net/bridge/br_sysfs_if.c 2005-03-18 02:17:18 +01:00 @@ -248,6 +248,7 @@ int br_sysfs_addif(struct net_bridge_por if (err) goto out2; + kobject_hotplug(&p->kobj, KOBJ_ADD); return 0; out2: kobject_del(&p->kobj); @@ -259,6 +260,7 @@ void br_sysfs_removeif(struct net_bridge { pr_debug("br_sysfs_removeif\n"); sysfs_remove_link(&p->br->ifobj, p->dev->name); + kobject_hotplug(&p->kobj, KOBJ_REMOVE); kobject_del(&p->kobj); } - 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/