---

 net/ipv4/tcp.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN net/ipv4/tcp.c~limit-hash-table-sizes-boot-options-warning-fix net/ipv4/tcp.c
--- 25/net/ipv4/tcp.c~limit-hash-table-sizes-boot-options-warning-fix	2004-02-17 22:23:09.000000000 -0800
+++ 25-akpm/net/ipv4/tcp.c	2004-02-17 22:23:45.000000000 -0800
@@ -2622,7 +2622,7 @@ void __init tcp_init(void)
 		goal = num_physpages >> (23 - PAGE_SHIFT);
 
 	if (!thash_entries)
-		goal = min(10, goal);
+		goal = min(10UL, goal);
 	else
 		goal = (thash_entries * sizeof(struct tcp_ehash_bucket)) >> PAGE_SHIFT;
 	for (order = 0; (1UL << order) < goal; order++)

_