aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/inet_frag.h
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-01-22 09:07:25 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:10:36 -0500
commit6ddc082223ef0f73717b4133fa7e648842bbfd02 (patch)
tree62315ac04e396bc6e68543502fb6aeec50be6662 /include/net/inet_frag.h
parente5a2bb842cd9681d00d4ca963e63e4d3647e66f8 (diff)
[NETNS][FRAGS]: Make the mem counter per-namespace.
This is also simple, but introduces more changes, since then mem counter is altered in more places. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_frag.h')
-rw-r--r--include/net/inet_frag.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h
index d36f3a6e6d4e..6edce7b2ff13 100644
--- a/include/net/inet_frag.h
+++ b/include/net/inet_frag.h
@@ -3,6 +3,7 @@
3 3
4struct netns_frags { 4struct netns_frags {
5 int nqueues; 5 int nqueues;
6 atomic_t mem;
6}; 7};
7 8
8struct inet_frag_queue { 9struct inet_frag_queue {
@@ -38,7 +39,6 @@ struct inet_frags {
38 rwlock_t lock; 39 rwlock_t lock;
39 u32 rnd; 40 u32 rnd;
40 int qsize; 41 int qsize;
41 atomic_t mem;
42 struct timer_list secret_timer; 42 struct timer_list secret_timer;
43 struct inet_frags_ctl *ctl; 43 struct inet_frags_ctl *ctl;
44 44
@@ -60,7 +60,7 @@ void inet_frags_init_net(struct netns_frags *nf);
60void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f); 60void inet_frag_kill(struct inet_frag_queue *q, struct inet_frags *f);
61void inet_frag_destroy(struct inet_frag_queue *q, 61void inet_frag_destroy(struct inet_frag_queue *q,
62 struct inet_frags *f, int *work); 62 struct inet_frags *f, int *work);
63int inet_frag_evictor(struct inet_frags *f); 63int inet_frag_evictor(struct netns_frags *nf, struct inet_frags *f);
64struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, 64struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
65 struct inet_frags *f, void *key, unsigned int hash); 65 struct inet_frags *f, void *key, unsigned int hash);
66 66