diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-01-22 06:11:04 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:10:39 -0800 |
commit | 3b4bc4a2bfe80d01ebd4f2b6dcc58986c970ed16 (patch) | |
tree | d9dea3af7fb8fc828af0ba484c1fc06007dce351 /include/net/inet_frag.h | |
parent | e31e0bdc7e7fb9a4b09d2f3266c035a18fdcee9d (diff) | |
download | kernel_goldelico_gta04-3b4bc4a2bfe80d01ebd4f2b6dcc58986c970ed16.zip kernel_goldelico_gta04-3b4bc4a2bfe80d01ebd4f2b6dcc58986c970ed16.tar.gz kernel_goldelico_gta04-3b4bc4a2bfe80d01ebd4f2b6dcc58986c970ed16.tar.bz2 |
[NETNS][FRAGS]: Isolate the secret interval from namespaces.
Since we have one hashtable to lookup the fragment, having
different secret_interval-s for hash rebuild doesn't make
sense, so move this one to inet_frags.
The inet_frags_ctl becomes empty after this, so remove it.
The appropriate ctl table is kept read-only in namespaces.
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.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h index de41359..1917fbe 100644 --- a/include/net/inet_frag.h +++ b/include/net/inet_frag.h @@ -31,18 +31,14 @@ struct inet_frag_queue { #define INETFRAGS_HASHSZ 64 -struct inet_frags_ctl { - int secret_interval; -}; - struct inet_frags { struct list_head lru_list; struct hlist_head hash[INETFRAGS_HASHSZ]; rwlock_t lock; u32 rnd; int qsize; + int secret_interval; struct timer_list secret_timer; - struct inet_frags_ctl *ctl; unsigned int (*hashfn)(struct inet_frag_queue *); void (*constructor)(struct inet_frag_queue *q, |