aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/core.h
diff options
context:
space:
mode:
authorErik Hugne <erik.hugne@gmail.com>2016-04-07 10:40:43 -0400
committerDavid S. Miller <davem@davemloft.net>2016-04-11 15:22:20 -0400
commit541726abe7daca64390c2ec34e6a203145f1686d (patch)
treed335e57ce92b7092cadd7c6e406d3b0c5bfa56e6 /net/tipc/core.h
parentcxgb4: Stop Rx Queues before freeing it up (diff)
downloadlinux-dev-541726abe7daca64390c2ec34e6a203145f1686d.tar.xz
linux-dev-541726abe7daca64390c2ec34e6a203145f1686d.zip
tipc: make dist queue pernet
Nametable updates received from the network that cannot be applied immediately are placed on a defer queue. This queue is global to the TIPC module, which might cause problems when using TIPC in containers. To prevent nametable updates from escaping into the wrong namespace, we make the queue pernet instead. Signed-off-by: Erik Hugne <erik.hugne@gmail.com> Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/core.h')
-rw-r--r--net/tipc/core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/tipc/core.h b/net/tipc/core.h
index 5504d63503df..eff58dc53aa1 100644
--- a/net/tipc/core.h
+++ b/net/tipc/core.h
@@ -103,6 +103,9 @@ struct tipc_net {
spinlock_t nametbl_lock;
struct name_table *nametbl;
+ /* Name dist queue */
+ struct list_head dist_queue;
+
/* Topology subscription server */
struct tipc_server *topsrv;
atomic_t subscription_count;