浏览代码

l2tp: exit_net cleanup check added

Be sure that l2tp_session_hlist array initialized in net_init hook
was return to initial state.

Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Vasily Averin 7 年之前
父节点
当前提交
1e7af3b2cd
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      net/l2tp/l2tp_core.c

+ 4 - 0
net/l2tp/l2tp_core.c

@@ -1833,6 +1833,7 @@ static __net_exit void l2tp_exit_net(struct net *net)
 {
 {
 	struct l2tp_net *pn = l2tp_pernet(net);
 	struct l2tp_net *pn = l2tp_pernet(net);
 	struct l2tp_tunnel *tunnel = NULL;
 	struct l2tp_tunnel *tunnel = NULL;
+	int hash;
 
 
 	rcu_read_lock_bh();
 	rcu_read_lock_bh();
 	list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
 	list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
@@ -1842,6 +1843,9 @@ static __net_exit void l2tp_exit_net(struct net *net)
 
 
 	flush_workqueue(l2tp_wq);
 	flush_workqueue(l2tp_wq);
 	rcu_barrier();
 	rcu_barrier();
+
+	for (hash = 0; hash < L2TP_HASH_SIZE_2; hash++)
+		WARN_ON_ONCE(!hlist_empty(&pn->l2tp_session_hlist[hash]));
 }
 }
 
 
 static struct pernet_operations l2tp_net_ops = {
 static struct pernet_operations l2tp_net_ops = {