* [PATCH 0/2] register_netdevice and sysfs changes
@ 2006-05-10 17:14 Stephen Hemminger
2006-05-10 17:14 ` [PATCH 1/2] netdev: do sysfs registration as part of register_netdevice Stephen Hemminger
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stephen Hemminger @ 2006-05-10 17:14 UTC (permalink / raw)
To: David Miller; +Cc: netdev
This is a signed-off version of yesterday's fix, plus the bridge
code no longer needs to be so tricky.
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] netdev: do sysfs registration as part of register_netdevice
2006-05-10 17:14 [PATCH 0/2] register_netdevice and sysfs changes Stephen Hemminger
@ 2006-05-10 17:14 ` Stephen Hemminger
2006-05-10 17:14 ` [PATCH 2/2] bridge: do sysfs registration inside rtnl Stephen Hemminger
2006-05-10 20:19 ` [PATCH 0/2] register_netdevice and sysfs changes David S. Miller
2 siblings, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2006-05-10 17:14 UTC (permalink / raw)
To: David Miller; +Cc: netdev
[-- Attachment #1: dev-register-sleep.patch --]
[-- Type: text/plain, Size: 4223 bytes --]
The last step of netdevice registration was being done by a delayed
call, but because it was delayed, it was impossible to return any error
code if the class_device registration failed.
Side effects:
* one state in registration process is unnecessary.
* register_netdevice can sleep inside class_device registration/hotplug
* code in netdev_run_todo only does unregistration so it is simpler.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
--- bridge.orig/include/linux/netdevice.h 2006-05-09 11:17:08.000000000 -0700
+++ bridge/include/linux/netdevice.h 2006-05-09 11:18:52.000000000 -0700
@@ -433,8 +433,7 @@
/* register/unregister state machine */
enum { NETREG_UNINITIALIZED=0,
- NETREG_REGISTERING, /* called register_netdevice */
- NETREG_REGISTERED, /* completed register todo */
+ NETREG_REGISTERED, /* completed register_netdevice */
NETREG_UNREGISTERING, /* called unregister_netdevice */
NETREG_UNREGISTERED, /* completed unregister todo */
NETREG_RELEASED, /* called free_netdev */
--- bridge.orig/net/core/dev.c 2006-05-09 11:17:09.000000000 -0700
+++ bridge/net/core/dev.c 2006-05-09 11:37:18.000000000 -0700
@@ -2777,6 +2777,8 @@
BUG_ON(dev_boot_phase);
ASSERT_RTNL();
+ might_sleep();
+
/* When net_device's are persistent, this will be fatal. */
BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
@@ -2863,6 +2865,11 @@
if (!dev->rebuild_header)
dev->rebuild_header = default_rebuild_header;
+ ret = netdev_register_sysfs(dev);
+ if (ret)
+ goto out_err;
+ dev->reg_state = NETREG_REGISTERED;
+
/*
* Default initial state at registry is that the
* device is present.
@@ -2878,14 +2885,11 @@
hlist_add_head(&dev->name_hlist, head);
hlist_add_head(&dev->index_hlist, dev_index_hash(dev->ifindex));
dev_hold(dev);
- dev->reg_state = NETREG_REGISTERING;
write_unlock_bh(&dev_base_lock);
/* Notify protocols, that a new device appeared. */
blocking_notifier_call_chain(&netdev_chain, NETDEV_REGISTER, dev);
- /* Finish registration after unlock */
- net_set_todo(dev);
ret = 0;
out:
@@ -3008,7 +3012,7 @@
*
* We are invoked by rtnl_unlock() after it drops the semaphore.
* This allows us to deal with problems:
- * 1) We can create/delete sysfs objects which invoke hotplug
+ * 1) We can delete sysfs objects which invoke hotplug
* without deadlocking with linkwatch via keventd.
* 2) Since we run with the RTNL semaphore not held, we can sleep
* safely in order to wait for the netdev refcnt to drop to zero.
@@ -3017,8 +3021,6 @@
void netdev_run_todo(void)
{
struct list_head list = LIST_HEAD_INIT(list);
- int err;
-
/* Need to guard against multiple cpu's getting out of order. */
mutex_lock(&net_todo_run_mutex);
@@ -3041,40 +3043,29 @@
= list_entry(list.next, struct net_device, todo_list);
list_del(&dev->todo_list);
- switch(dev->reg_state) {
- case NETREG_REGISTERING:
- err = netdev_register_sysfs(dev);
- if (err)
- printk(KERN_ERR "%s: failed sysfs registration (%d)\n",
- dev->name, err);
- dev->reg_state = NETREG_REGISTERED;
- break;
-
- case NETREG_UNREGISTERING:
- netdev_unregister_sysfs(dev);
- dev->reg_state = NETREG_UNREGISTERED;
-
- netdev_wait_allrefs(dev);
-
- /* paranoia */
- BUG_ON(atomic_read(&dev->refcnt));
- BUG_TRAP(!dev->ip_ptr);
- BUG_TRAP(!dev->ip6_ptr);
- BUG_TRAP(!dev->dn_ptr);
-
-
- /* It must be the very last action,
- * after this 'dev' may point to freed up memory.
- */
- if (dev->destructor)
- dev->destructor(dev);
- break;
-
- default:
+ if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
printk(KERN_ERR "network todo '%s' but state %d\n",
dev->name, dev->reg_state);
- break;
+ dump_stack();
+ continue;
}
+
+ netdev_unregister_sysfs(dev);
+ dev->reg_state = NETREG_UNREGISTERED;
+
+ netdev_wait_allrefs(dev);
+
+ /* paranoia */
+ BUG_ON(atomic_read(&dev->refcnt));
+ BUG_TRAP(!dev->ip_ptr);
+ BUG_TRAP(!dev->ip6_ptr);
+ BUG_TRAP(!dev->dn_ptr);
+
+ /* It must be the very last action,
+ * after this 'dev' may point to freed up memory.
+ */
+ if (dev->destructor)
+ dev->destructor(dev);
}
out:
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] bridge: do sysfs registration inside rtnl
2006-05-10 17:14 [PATCH 0/2] register_netdevice and sysfs changes Stephen Hemminger
2006-05-10 17:14 ` [PATCH 1/2] netdev: do sysfs registration as part of register_netdevice Stephen Hemminger
@ 2006-05-10 17:14 ` Stephen Hemminger
2006-05-10 20:19 ` [PATCH 0/2] register_netdevice and sysfs changes David S. Miller
2 siblings, 0 replies; 4+ messages in thread
From: Stephen Hemminger @ 2006-05-10 17:14 UTC (permalink / raw)
To: David Miller; +Cc: netdev
[-- Attachment #1: bridge-register.patch --]
[-- Type: text/plain, Size: 896 bytes --]
Now that netdevice sysfs registration is done as part of register_netdevice;
bridge code no longer has to be tricky when adding it's kobjects to bridges.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
--- bridge.orig/net/bridge/br_if.c 2006-05-04 16:22:29.000000000 -0700
+++ bridge/net/bridge/br_if.c 2006-05-09 11:27:16.000000000 -0700
@@ -308,26 +308,19 @@
if (ret)
goto err2;
- /* network device kobject is not setup until
- * after rtnl_unlock does it's hotplug magic.
- * so hold reference to avoid race.
- */
- dev_hold(dev);
- rtnl_unlock();
-
ret = br_sysfs_addbr(dev);
- dev_put(dev);
-
- if (ret)
- unregister_netdev(dev);
- out:
- return ret;
+ if (ret)
+ goto err3;
+ rtnl_unlock();
+ return 0;
+ err3:
+ unregister_netdev(dev);
err2:
free_netdev(dev);
err1:
rtnl_unlock();
- goto out;
+ return ret;
}
int br_del_bridge(const char *name)
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] register_netdevice and sysfs changes
2006-05-10 17:14 [PATCH 0/2] register_netdevice and sysfs changes Stephen Hemminger
2006-05-10 17:14 ` [PATCH 1/2] netdev: do sysfs registration as part of register_netdevice Stephen Hemminger
2006-05-10 17:14 ` [PATCH 2/2] bridge: do sysfs registration inside rtnl Stephen Hemminger
@ 2006-05-10 20:19 ` David S. Miller
2 siblings, 0 replies; 4+ messages in thread
From: David S. Miller @ 2006-05-10 20:19 UTC (permalink / raw)
To: shemminger; +Cc: netdev
From: Stephen Hemminger <shemminger@osdl.org>
Date: Wed, 10 May 2006 10:14:52 -0700
> This is a signed-off version of yesterday's fix, plus the bridge
> code no longer needs to be so tricky.
I'll apply this stuff, thanks a lot.
Although since I have the blocking --> raw notifier fixup in
my tree I'll need to fixup the rejects in the net/core/dev.c
part of the first patch.
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2006-05-10 20:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-10 17:14 [PATCH 0/2] register_netdevice and sysfs changes Stephen Hemminger
2006-05-10 17:14 ` [PATCH 1/2] netdev: do sysfs registration as part of register_netdevice Stephen Hemminger
2006-05-10 17:14 ` [PATCH 2/2] bridge: do sysfs registration inside rtnl Stephen Hemminger
2006-05-10 20:19 ` [PATCH 0/2] register_netdevice and sysfs changes David S. Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).