浏览代码

net: increase frag hash size

Increase fragmentation hash bucket size to 1024 from old 64 elems.

After we increased the frag mem limits commit c2a93660 (net: increase
fragment memory usage limits) the hash size of 64 elements is simply
too small.  Also considering the mem limit is per netns and the hash
table is shared for all netns.

For the embedded people, note that this increase will change the hash
table/array from using approx 1 Kbytes to 16 Kbytes.

Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Jesper Dangaard Brouer 12 年之前
父节点
当前提交
a4c4009f4f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/net/inet_frag.h

+ 1 - 1
include/net/inet_frag.h

@@ -41,7 +41,7 @@ struct inet_frag_queue {
 	struct netns_frags	*net;
 	struct netns_frags	*net;
 };
 };
 
 
-#define INETFRAGS_HASHSZ		64
+#define INETFRAGS_HASHSZ	1024
 
 
 /* averaged:
 /* averaged:
  * max_depth = default ipfrag_high_thresh / INETFRAGS_HASHSZ /
  * max_depth = default ipfrag_high_thresh / INETFRAGS_HASHSZ /