netns xfrm: policy walking in netns
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
8d1211a6aa
commit
cdcbca7c1f
@@ -851,7 +851,7 @@ out:
|
||||
}
|
||||
EXPORT_SYMBOL(xfrm_policy_flush);
|
||||
|
||||
int xfrm_policy_walk(struct xfrm_policy_walk *walk,
|
||||
int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk,
|
||||
int (*func)(struct xfrm_policy *, int, int, void*),
|
||||
void *data)
|
||||
{
|
||||
@@ -868,10 +868,10 @@ int xfrm_policy_walk(struct xfrm_policy_walk *walk,
|
||||
|
||||
write_lock_bh(&xfrm_policy_lock);
|
||||
if (list_empty(&walk->walk.all))
|
||||
x = list_first_entry(&init_net.xfrm.policy_all, struct xfrm_policy_walk_entry, all);
|
||||
x = list_first_entry(&net->xfrm.policy_all, struct xfrm_policy_walk_entry, all);
|
||||
else
|
||||
x = list_entry(&walk->walk.all, struct xfrm_policy_walk_entry, all);
|
||||
list_for_each_entry_from(x, &init_net.xfrm.policy_all, all) {
|
||||
list_for_each_entry_from(x, &net->xfrm.policy_all, all) {
|
||||
if (x->dead)
|
||||
continue;
|
||||
pol = container_of(x, struct xfrm_policy, walk);
|
||||
|
@@ -1279,7 +1279,7 @@ static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
|
||||
xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
|
||||
}
|
||||
|
||||
(void) xfrm_policy_walk(walk, dump_one_policy, &info);
|
||||
(void) xfrm_policy_walk(&init_net, walk, dump_one_policy, &info);
|
||||
|
||||
return skb->len;
|
||||
}
|
||||
|
Reference in New Issue
Block a user