diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-01-22 06:10:13 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:10:38 -0800 |
commit | e31e0bdc7e7fb9a4b09d2f3266c035a18fdcee9d (patch) | |
tree | 30e25f733781cf80aa9fef0d58ff3476424cb9b3 /include/net/inet_frag.h | |
parent | b2fd5321dd160ef309dfb6cfc78ed8de4a830659 (diff) | |
download | kernel_goldelico_gta04-e31e0bdc7e7fb9a4b09d2f3266c035a18fdcee9d.zip kernel_goldelico_gta04-e31e0bdc7e7fb9a4b09d2f3266c035a18fdcee9d.tar.gz kernel_goldelico_gta04-e31e0bdc7e7fb9a4b09d2f3266c035a18fdcee9d.tar.bz2 |
[NETNS][FRAGS]: Make thresholds work in namespaces.
This is the same as with the timeout variable.
Currently, after exceeding the high threshold _all_
the fragments are evicted, but it will be fixed in
later patch.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/inet_frag.h b/include/net/inet_frag.h index f56e296..de41359 100644 --- a/include/net/inet_frag.h +++ b/include/net/inet_frag.h @@ -7,6 +7,8 @@ struct netns_frags { /* sysctls */ int timeout; + int high_thresh; + int low_thresh; }; struct inet_frag_queue { @@ -30,8 +32,6 @@ struct inet_frag_queue { #define INETFRAGS_HASHSZ 64 struct inet_frags_ctl { - int high_thresh; - int low_thresh; int secret_interval; }; |