diff options
-rw-r--r-- | include/net/netns/xfrm.h | 1 | ||||
-rw-r--r-- | net/xfrm/xfrm_state.c | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/net/netns/xfrm.h b/include/net/netns/xfrm.h index bd688021395a..8ceb76568852 100644 --- a/include/net/netns/xfrm.h +++ b/include/net/netns/xfrm.h | |||
@@ -20,6 +20,7 @@ struct netns_xfrm { | |||
20 | unsigned int state_hmask; | 20 | unsigned int state_hmask; |
21 | unsigned int state_num; | 21 | unsigned int state_num; |
22 | struct work_struct state_hash_work; | 22 | struct work_struct state_hash_work; |
23 | struct hlist_head state_gc_list; | ||
23 | }; | 24 | }; |
24 | 25 | ||
25 | #endif | 26 | #endif |
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index 1b2a72c8429c..864a97477ae5 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c | |||
@@ -177,7 +177,6 @@ static DEFINE_RWLOCK(xfrm_state_afinfo_lock); | |||
177 | static struct xfrm_state_afinfo *xfrm_state_afinfo[NPROTO]; | 177 | static struct xfrm_state_afinfo *xfrm_state_afinfo[NPROTO]; |
178 | 178 | ||
179 | static struct work_struct xfrm_state_gc_work; | 179 | static struct work_struct xfrm_state_gc_work; |
180 | static HLIST_HEAD(xfrm_state_gc_list); | ||
181 | static DEFINE_SPINLOCK(xfrm_state_gc_lock); | 180 | static DEFINE_SPINLOCK(xfrm_state_gc_lock); |
182 | 181 | ||
183 | int __xfrm_state_delete(struct xfrm_state *x); | 182 | int __xfrm_state_delete(struct xfrm_state *x); |
@@ -394,7 +393,7 @@ static void xfrm_state_gc_task(struct work_struct *data) | |||
394 | struct hlist_head gc_list; | 393 | struct hlist_head gc_list; |
395 | 394 | ||
396 | spin_lock_bh(&xfrm_state_gc_lock); | 395 | spin_lock_bh(&xfrm_state_gc_lock); |
397 | hlist_move_list(&xfrm_state_gc_list, &gc_list); | 396 | hlist_move_list(&init_net.xfrm.state_gc_list, &gc_list); |
398 | spin_unlock_bh(&xfrm_state_gc_lock); | 397 | spin_unlock_bh(&xfrm_state_gc_lock); |
399 | 398 | ||
400 | hlist_for_each_entry_safe(x, entry, tmp, &gc_list, gclist) | 399 | hlist_for_each_entry_safe(x, entry, tmp, &gc_list, gclist) |
@@ -527,7 +526,7 @@ void __xfrm_state_destroy(struct xfrm_state *x) | |||
527 | WARN_ON(x->km.state != XFRM_STATE_DEAD); | 526 | WARN_ON(x->km.state != XFRM_STATE_DEAD); |
528 | 527 | ||
529 | spin_lock_bh(&xfrm_state_gc_lock); | 528 | spin_lock_bh(&xfrm_state_gc_lock); |
530 | hlist_add_head(&x->gclist, &xfrm_state_gc_list); | 529 | hlist_add_head(&x->gclist, &init_net.xfrm.state_gc_list); |
531 | spin_unlock_bh(&xfrm_state_gc_lock); | 530 | spin_unlock_bh(&xfrm_state_gc_lock); |
532 | schedule_work(&xfrm_state_gc_work); | 531 | schedule_work(&xfrm_state_gc_work); |
533 | } | 532 | } |
@@ -2088,6 +2087,7 @@ int __net_init xfrm_state_init(struct net *net) | |||
2088 | 2087 | ||
2089 | net->xfrm.state_num = 0; | 2088 | net->xfrm.state_num = 0; |
2090 | INIT_WORK(&net->xfrm.state_hash_work, xfrm_hash_resize); | 2089 | INIT_WORK(&net->xfrm.state_hash_work, xfrm_hash_resize); |
2090 | INIT_HLIST_HEAD(&net->xfrm.state_gc_list); | ||
2091 | INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task); | 2091 | INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task); |
2092 | return 0; | 2092 | return 0; |
2093 | 2093 | ||