Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158961
b: refs/heads/master
c: 11a28d3
h: refs/heads/master
i:
  158959: b27a7ee
v: v3
  • Loading branch information
Johannes Berg authored and David S. Miller committed Jul 12, 2009
1 parent 28e2165 commit b5fcd5c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6c04bb18ddd633b7feac2c8fe2ae0bf61d20ca7a
refs/heads/master: 11a28d373ed2539a110d56419457e2e7db221ac7
3 changes: 3 additions & 0 deletions trunk/include/net/net_namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,9 @@ static inline struct net *read_pnet(struct net * const *pnet)
#define for_each_net(VAR) \
list_for_each_entry(VAR, &net_namespace_list, list)

#define for_each_net_rcu(VAR) \
list_for_each_entry_rcu(VAR, &net_namespace_list, list)

#ifdef CONFIG_NET_NS
#define __net_init
#define __net_exit
Expand Down
14 changes: 11 additions & 3 deletions trunk/net/core/net_namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <linux/delay.h>
#include <linux/sched.h>
#include <linux/idr.h>
#include <linux/rculist.h>
#include <net/net_namespace.h>
#include <net/netns/generic.h>

Expand Down Expand Up @@ -127,7 +128,7 @@ static struct net *net_create(void)
rv = setup_net(net);
if (rv == 0) {
rtnl_lock();
list_add_tail(&net->list, &net_namespace_list);
list_add_tail_rcu(&net->list, &net_namespace_list);
rtnl_unlock();
}
mutex_unlock(&net_mutex);
Expand Down Expand Up @@ -156,9 +157,16 @@ static void cleanup_net(struct work_struct *work)

/* Don't let anyone else find us. */
rtnl_lock();
list_del(&net->list);
list_del_rcu(&net->list);
rtnl_unlock();

/*
* Another CPU might be rcu-iterating the list, wait for it.
* This needs to be before calling the exit() notifiers, so
* the rcu_barrier() below isn't sufficient alone.
*/
synchronize_rcu();

/* Run all of the network namespace exit methods */
list_for_each_entry_reverse(ops, &pernet_list, list) {
if (ops->exit)
Expand Down Expand Up @@ -219,7 +227,7 @@ static int __init net_ns_init(void)
panic("Could not setup the initial network namespace");

rtnl_lock();
list_add_tail(&init_net.list, &net_namespace_list);
list_add_tail_rcu(&init_net.list, &net_namespace_list);
rtnl_unlock();

mutex_unlock(&net_mutex);
Expand Down

0 comments on commit b5fcd5c

Please sign in to comment.