[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>

authored by John Heffner and committed by David S. Miller 9e950efa 3b6a792f

+2 -2
+2 -2
net/ipv4/tcp.c
··· 2270 2270 thash_entries, 2271 2271 (num_physpages >= 128 * 1024) ? 2272 2272 13 : 15, 2273 - HASH_HIGHMEM, 2273 + 0, 2274 2274 &tcp_hashinfo.ehash_size, 2275 2275 NULL, 2276 2276 0); ··· 2286 2286 tcp_hashinfo.ehash_size, 2287 2287 (num_physpages >= 128 * 1024) ? 2288 2288 13 : 15, 2289 - HASH_HIGHMEM, 2289 + 0, 2290 2290 &tcp_hashinfo.bhash_size, 2291 2291 NULL, 2292 2292 64 * 1024);