| Submitter | Alexey Dobriyan |
|---|---|
| Date | Nov. 25, 2008, 5:26 p.m. |
| Message ID | <1227634045-27534-26-git-send-email-adobriyan@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/10721/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Alexey Dobriyan <adobriyan@gmail.com> Date: Tue, 25 Nov 2008 20:26:58 +0300 > Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index afde474..cd51e4e 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c @@ -1527,8 +1527,8 @@ int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high) } if (x->id.spi) { spin_lock_bh(&xfrm_state_lock); - h = xfrm_spi_hash(&init_net, &x->id.daddr, x->id.spi, x->id.proto, x->props.family); - hlist_add_head(&x->byspi, init_net.xfrm.state_byspi+h); + h = xfrm_spi_hash(net, &x->id.daddr, x->id.spi, x->id.proto, x->props.family); + hlist_add_head(&x->byspi, net->xfrm.state_byspi+h); spin_unlock_bh(&xfrm_state_lock); err = 0;
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> --- net/xfrm/xfrm_state.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)