Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 122187
b: refs/heads/master
c: 0bf7c5b
h: refs/heads/master
i:
  122185: e8f5f08
  122183: 2545c02
v: v3
  • Loading branch information
Alexey Dobriyan authored and David S. Miller committed Nov 26, 2008
1 parent 4765aec commit a9584e7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 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: 529983ecabeae3d8e61c9e27079154b1b8544dcd
refs/heads/master: 0bf7c5b019518d3fe9cb96b9c97bf44d251472c3
1 change: 1 addition & 0 deletions trunk/include/net/netns/xfrm.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ struct netns_xfrm {
struct hlist_head *state_bysrc;
struct hlist_head *state_byspi;
unsigned int state_hmask;
unsigned int state_num;
};

#endif
14 changes: 7 additions & 7 deletions trunk/net/xfrm/xfrm_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ u32 sysctl_xfrm_acq_expires __read_mostly = 30;
static DEFINE_SPINLOCK(xfrm_state_lock);

static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
static unsigned int xfrm_state_num;
static unsigned int xfrm_state_genid;

static struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family);
Expand Down Expand Up @@ -548,7 +547,7 @@ int __xfrm_state_delete(struct xfrm_state *x)
hlist_del(&x->bysrc);
if (x->id.spi)
hlist_del(&x->byspi);
xfrm_state_num--;
init_net.xfrm.state_num--;
spin_unlock(&xfrm_state_lock);

/* All xfrm_state objects are created by xfrm_state_alloc.
Expand Down Expand Up @@ -650,7 +649,7 @@ EXPORT_SYMBOL(xfrm_state_flush);
void xfrm_sad_getinfo(struct xfrmk_sadinfo *si)
{
spin_lock_bh(&xfrm_state_lock);
si->sadcnt = xfrm_state_num;
si->sadcnt = init_net.xfrm.state_num;
si->sadhcnt = init_net.xfrm.state_hmask;
si->sadhmcnt = xfrm_state_hashmax;
spin_unlock_bh(&xfrm_state_lock);
Expand Down Expand Up @@ -754,7 +753,7 @@ static void xfrm_hash_grow_check(int have_hash_collision)
{
if (have_hash_collision &&
(init_net.xfrm.state_hmask + 1) < xfrm_state_hashmax &&
xfrm_state_num > init_net.xfrm.state_hmask)
init_net.xfrm.state_num > init_net.xfrm.state_hmask)
schedule_work(&xfrm_hash_work);
}

Expand Down Expand Up @@ -855,7 +854,7 @@ xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr,
x->lft.hard_add_expires_seconds = sysctl_xfrm_acq_expires;
x->timer.expires = jiffies + sysctl_xfrm_acq_expires*HZ;
add_timer(&x->timer);
xfrm_state_num++;
init_net.xfrm.state_num++;
xfrm_hash_grow_check(x->bydst.next != NULL);
} else {
x->km.state = XFRM_STATE_DEAD;
Expand Down Expand Up @@ -935,7 +934,7 @@ static void __xfrm_state_insert(struct xfrm_state *x)

wake_up(&km_waitq);

xfrm_state_num++;
init_net.xfrm.state_num++;

xfrm_hash_grow_check(x->bydst.next != NULL);
}
Expand Down Expand Up @@ -1047,7 +1046,7 @@ static struct xfrm_state *__find_acq_core(unsigned short family, u8 mode, u32 re
h = xfrm_src_hash(daddr, saddr, family);
hlist_add_head(&x->bysrc, init_net.xfrm.state_bysrc+h);

xfrm_state_num++;
init_net.xfrm.state_num++;

xfrm_hash_grow_check(x->bydst.next != NULL);
}
Expand Down Expand Up @@ -2089,6 +2088,7 @@ int __net_init xfrm_state_init(struct net *net)
goto out_byspi;
net->xfrm.state_hmask = ((sz / sizeof(struct hlist_head)) - 1);

net->xfrm.state_num = 0;
INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task);
return 0;

Expand Down

0 comments on commit a9584e7

Please sign in to comment.