Skip to content

Commit

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

#endif
31 changes: 15 additions & 16 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 unsigned int xfrm_state_hmask __read_mostly;
static unsigned int xfrm_state_hashmax __read_mostly = 1 * 1024 * 1024;
static unsigned int xfrm_state_num;
static unsigned int xfrm_state_genid;
Expand All @@ -64,20 +63,20 @@ static inline unsigned int xfrm_dst_hash(xfrm_address_t *daddr,
u32 reqid,
unsigned short family)
{
return __xfrm_dst_hash(daddr, saddr, reqid, family, xfrm_state_hmask);
return __xfrm_dst_hash(daddr, saddr, reqid, family, init_net.xfrm.state_hmask);
}

static inline unsigned int xfrm_src_hash(xfrm_address_t *daddr,
xfrm_address_t *saddr,
unsigned short family)
{
return __xfrm_src_hash(daddr, saddr, family, xfrm_state_hmask);
return __xfrm_src_hash(daddr, saddr, family, init_net.xfrm.state_hmask);
}

static inline unsigned int
xfrm_spi_hash(xfrm_address_t *daddr, __be32 spi, u8 proto, unsigned short family)
{
return __xfrm_spi_hash(daddr, spi, proto, family, xfrm_state_hmask);
return __xfrm_spi_hash(daddr, spi, proto, family, init_net.xfrm.state_hmask);
}

static void xfrm_hash_transfer(struct hlist_head *list,
Expand Down Expand Up @@ -113,7 +112,7 @@ static void xfrm_hash_transfer(struct hlist_head *list,

static unsigned long xfrm_hash_new_size(void)
{
return ((xfrm_state_hmask + 1) << 1) *
return ((init_net.xfrm.state_hmask + 1) << 1) *
sizeof(struct hlist_head);
}

Expand Down Expand Up @@ -147,19 +146,19 @@ static void xfrm_hash_resize(struct work_struct *__unused)
spin_lock_bh(&xfrm_state_lock);

nhashmask = (nsize / sizeof(struct hlist_head)) - 1U;
for (i = xfrm_state_hmask; i >= 0; i--)
for (i = init_net.xfrm.state_hmask; i >= 0; i--)
xfrm_hash_transfer(init_net.xfrm.state_bydst+i, ndst, nsrc, nspi,
nhashmask);

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

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

spin_unlock_bh(&xfrm_state_lock);

Expand Down Expand Up @@ -582,7 +581,7 @@ xfrm_state_flush_secctx_check(u8 proto, struct xfrm_audit *audit_info)
{
int i, err = 0;

for (i = 0; i <= xfrm_state_hmask; i++) {
for (i = 0; i <= init_net.xfrm.state_hmask; i++) {
struct hlist_node *entry;
struct xfrm_state *x;

Expand Down Expand Up @@ -617,7 +616,7 @@ int xfrm_state_flush(u8 proto, struct xfrm_audit *audit_info)
if (err)
goto out;

for (i = 0; i <= xfrm_state_hmask; i++) {
for (i = 0; i <= init_net.xfrm.state_hmask; i++) {
struct hlist_node *entry;
struct xfrm_state *x;
restart:
Expand Down Expand Up @@ -652,7 +651,7 @@ void xfrm_sad_getinfo(struct xfrmk_sadinfo *si)
{
spin_lock_bh(&xfrm_state_lock);
si->sadcnt = xfrm_state_num;
si->sadhcnt = xfrm_state_hmask;
si->sadhcnt = init_net.xfrm.state_hmask;
si->sadhmcnt = xfrm_state_hashmax;
spin_unlock_bh(&xfrm_state_lock);
}
Expand Down Expand Up @@ -754,8 +753,8 @@ __xfrm_state_locate(struct xfrm_state *x, int use_spi, int family)
static void xfrm_hash_grow_check(int have_hash_collision)
{
if (have_hash_collision &&
(xfrm_state_hmask + 1) < xfrm_state_hashmax &&
xfrm_state_num > xfrm_state_hmask)
(init_net.xfrm.state_hmask + 1) < xfrm_state_hashmax &&
xfrm_state_num > init_net.xfrm.state_hmask)
schedule_work(&xfrm_hash_work);
}

Expand Down Expand Up @@ -1444,7 +1443,7 @@ static struct xfrm_state *__xfrm_find_acq_byseq(u32 seq)
{
int i;

for (i = 0; i <= xfrm_state_hmask; i++) {
for (i = 0; i <= init_net.xfrm.state_hmask; i++) {
struct hlist_node *entry;
struct xfrm_state *x;

Expand Down Expand Up @@ -2088,7 +2087,7 @@ int __net_init xfrm_state_init(struct net *net)
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);
net->xfrm.state_hmask = ((sz / sizeof(struct hlist_head)) - 1);

INIT_WORK(&xfrm_state_gc_work, xfrm_state_gc_task);
return 0;
Expand All @@ -2107,7 +2106,7 @@ void xfrm_state_fini(struct net *net)

WARN_ON(!list_empty(&net->xfrm.state_all));

sz = (xfrm_state_hmask + 1) * sizeof(struct hlist_head);
sz = (net->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));
Expand Down

0 comments on commit 4765aec

Please sign in to comment.