Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122185
b: refs/heads/master
c: b754a4f
h: refs/heads/master
i:
  122183: 2545c02
v: v3
  • Loading branch information
Alexey Dobriyan authored and David S. Miller committed Nov 26, 2008
1 parent 24a6990 commit e8f5f08
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d320bbb306f2085892bc958781e8fcaf5d491589
refs/heads/master: b754a4fd8f58d245c9b5e92914cce09c4309cb67
1 change: 1 addition & 0 deletions trunk/include/net/netns/xfrm.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ struct netns_xfrm {
*/
struct hlist_head *state_bydst;
struct hlist_head *state_bysrc;
struct hlist_head *state_byspi;
};

#endif
21 changes: 13 additions & 8 deletions trunk/net/xfrm/xfrm_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ u32 sysctl_xfrm_acq_expires __read_mostly = 30;

static DEFINE_SPINLOCK(xfrm_state_lock);

static struct hlist_head *xfrm_state_byspi __read_mostly;
static unsigned int xfrm_state_hmask __read_mostly;
static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
static unsigned int xfrm_state_num;
Expand Down Expand Up @@ -154,12 +153,12 @@ static void xfrm_hash_resize(struct work_struct *__unused)

odst = init_net.xfrm.state_bydst;
osrc = init_net.xfrm.state_bysrc;
ospi = xfrm_state_byspi;
ospi = init_net.xfrm.state_byspi;
ohashmask = xfrm_state_hmask;

init_net.xfrm.state_bydst = ndst;
init_net.xfrm.state_bysrc = nsrc;
xfrm_state_byspi = nspi;
init_net.xfrm.state_byspi = nspi;
xfrm_state_hmask = nhashmask;

spin_unlock_bh(&xfrm_state_lock);
Expand Down Expand Up @@ -679,7 +678,7 @@ static struct xfrm_state *__xfrm_state_lookup(xfrm_address_t *daddr, __be32 spi,
struct xfrm_state *x;
struct hlist_node *entry;

hlist_for_each_entry(x, entry, xfrm_state_byspi+h, byspi) {
hlist_for_each_entry(x, entry, init_net.xfrm.state_byspi+h, byspi) {
if (x->props.family != family ||
x->id.spi != spi ||
x->id.proto != proto)
Expand Down Expand Up @@ -852,7 +851,7 @@ xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
hlist_add_head(&x->bysrc, init_net.xfrm.state_bysrc+h);
if (x->id.spi) {
h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto, family);
hlist_add_head(&x->byspi, xfrm_state_byspi+h);
hlist_add_head(&x->byspi, init_net.xfrm.state_byspi+h);
}
x->lft.hard_add_expires_seconds = sysctl_xfrm_acq_expires;
x->timer.expires = jiffies + sysctl_xfrm_acq_expires*HZ;
Expand Down Expand Up @@ -928,7 +927,7 @@ static void __xfrm_state_insert(struct xfrm_state *x)
h = xfrm_spi_hash(&x->id.daddr, x->id.spi, x->id.proto,
x->props.family);

hlist_add_head(&x->byspi, xfrm_state_byspi+h);
hlist_add_head(&x->byspi, init_net.xfrm.state_byspi+h);
}

mod_timer(&x->timer, jiffies + HZ);
Expand Down Expand Up @@ -1524,7 +1523,7 @@ 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(&x->id.daddr, x->id.spi, x->id.proto, x->props.family);
hlist_add_head(&x->byspi, xfrm_state_byspi+h);
hlist_add_head(&x->byspi, init_net.xfrm.state_byspi+h);
spin_unlock_bh(&xfrm_state_lock);

err = 0;
Expand Down Expand Up @@ -2086,12 +2085,16 @@ int __net_init xfrm_state_init(struct net *net)
net->xfrm.state_bysrc = xfrm_hash_alloc(sz);
if (!net->xfrm.state_bysrc)
goto out_bysrc;
xfrm_state_byspi = xfrm_hash_alloc(sz);
net->xfrm.state_byspi = xfrm_hash_alloc(sz);
if (!net->xfrm.state_byspi)
goto out_byspi;
xfrm_state_hmask = ((sz / sizeof(struct hlist_head)) - 1);

INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task);
return 0;

out_byspi:
xfrm_hash_free(net->xfrm.state_bysrc, sz);
out_bysrc:
xfrm_hash_free(net->xfrm.state_bydst, sz);
out_bydst:
Expand All @@ -2105,6 +2108,8 @@ void xfrm_state_fini(struct net *net)
WARN_ON(!list_empty(&net->xfrm.state_all));

sz = (xfrm_state_hmask + 1) * sizeof(struct hlist_head);
WARN_ON(!hlist_empty(net->xfrm.state_byspi));
xfrm_hash_free(net->xfrm.state_byspi, sz);
WARN_ON(!hlist_empty(net->xfrm.state_bysrc));
xfrm_hash_free(net->xfrm.state_bysrc, sz);
WARN_ON(!hlist_empty(net->xfrm.state_bydst));
Expand Down

0 comments on commit e8f5f08

Please sign in to comment.