summaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp.c
diff options
context:
space:
mode:
authorJohn Heffner2006-11-07 08:10:51 +0100
committerDavid S. Miller2006-11-08 00:10:11 +0100
commit9e950efa20dc8037c27509666cba6999da9368e8 (patch)
tree803cc09ecd7e400b6561719ea48b226f76c752fc /net/ipv4/tcp.c
parent[NET]: kconfig, correct traffic shaper (diff)
downloadkernel-qcow2-linux-9e950efa20dc8037c27509666cba6999da9368e8.tar.gz
kernel-qcow2-linux-9e950efa20dc8037c27509666cba6999da9368e8.tar.xz
kernel-qcow2-linux-9e950efa20dc8037c27509666cba6999da9368e8.zip
[TCP]: Don't use highmem in tcp hash size calculation.
This patch removes consideration of high memory when determining TCP hash table sizes. Taking into account high memory results in tcp_mem values that are too large. Signed-off-by: John Heffner <jheffner@psc.edu> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r--net/ipv4/tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index 66e9a729f6df..4322318ab332 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -2270,7 +2270,7 @@ void __init tcp_init(void)
thash_entries,
(num_physpages >= 128 * 1024) ?
13 : 15,
- HASH_HIGHMEM,
+ 0,
&tcp_hashinfo.ehash_size,
NULL,
0);
@@ -2286,7 +2286,7 @@ void __init tcp_init(void)
tcp_hashinfo.ehash_size,
(num_physpages >= 128 * 1024) ?
13 : 15,
- HASH_HIGHMEM,
+ 0,
&tcp_hashinfo.bhash_size,
NULL,
64 * 1024);