Eric Dumazet c6d14c8456 net: Introduce for_each_netdev_rcu() iterator
Adds RCU management to the list of netdevices.

Convert some for_each_netdev() users to RCU version, if
it can avoid read_lock-ing dev_base_lock

Ie:
	read_lock(&dev_base_loack);
	for_each_netdev(net, dev)
		some_action();
	read_unlock(&dev_base_lock);

becomes :

	rcu_read_lock();
	for_each_netdev_rcu(net, dev)
		some_action();
	rcu_read_unlock();


Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-11-04 05:43:23 -08:00
..
2009-10-18 21:31:59 -07:00
2009-09-01 17:40:57 -07:00
2009-10-18 18:52:53 -07:00
2009-09-14 17:03:01 -07:00
2009-11-01 23:55:10 -08:00
2009-10-18 18:52:53 -07:00
2009-06-03 02:51:04 -07:00
2009-10-28 02:22:09 -07:00
2009-10-18 18:52:53 -07:00
2009-06-03 02:51:04 -07:00
2009-10-18 18:52:53 -07:00
2009-09-14 17:03:01 -07:00
2009-10-28 02:22:08 -07:00
2009-10-29 01:13:49 -07:00
2009-06-13 23:36:32 -07:00
2008-10-07 08:38:24 +11:00
2009-06-03 02:51:04 -07:00
2009-04-27 02:45:02 -07:00
2009-09-14 17:03:01 -07:00
2009-10-19 23:22:52 -07:00
2009-03-02 03:00:15 -08:00
2009-03-02 03:00:15 -08:00
2009-03-02 03:00:14 -08:00
2009-10-18 18:52:53 -07:00
2009-10-20 18:55:46 -07:00
2009-05-25 22:44:59 -07:00
2009-03-02 03:00:15 -08:00
2009-03-02 03:00:15 -08:00
2009-09-14 17:03:01 -07:00
2009-10-18 18:52:54 -07:00
2009-06-03 02:51:04 -07:00
2009-06-03 02:51:04 -07:00
2009-06-03 02:51:04 -07:00