diff options
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r-- | net/ipv4/tcp.c | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 197b9b77fa3e..e2add5ff9cb1 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
@@ -3209,7 +3209,7 @@ void __init tcp_init(void) | |||
3209 | { | 3209 | { |
3210 | struct sk_buff *skb = NULL; | 3210 | struct sk_buff *skb = NULL; |
3211 | unsigned long nr_pages, limit; | 3211 | unsigned long nr_pages, limit; |
3212 | int order, i, max_share; | 3212 | int i, max_share, cnt; |
3213 | unsigned long jiffy = jiffies; | 3213 | unsigned long jiffy = jiffies; |
3214 | 3214 | ||
3215 | BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb)); | 3215 | BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb)); |
@@ -3258,22 +3258,12 @@ void __init tcp_init(void) | |||
3258 | INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain); | 3258 | INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain); |
3259 | } | 3259 | } |
3260 | 3260 | ||
3261 | /* Try to be a bit smarter and adjust defaults depending | 3261 | |
3262 | * on available memory. | 3262 | cnt = tcp_hashinfo.ehash_mask + 1; |
3263 | */ | 3263 | |
3264 | for (order = 0; ((1 << order) << PAGE_SHIFT) < | 3264 | tcp_death_row.sysctl_max_tw_buckets = cnt / 2; |
3265 | (tcp_hashinfo.bhash_size * sizeof(struct inet_bind_hashbucket)); | 3265 | sysctl_tcp_max_orphans = cnt / 2; |
3266 | order++) | 3266 | sysctl_max_syn_backlog = max(128, cnt / 256); |
3267 | ; | ||
3268 | if (order >= 4) { | ||
3269 | tcp_death_row.sysctl_max_tw_buckets = 180000; | ||
3270 | sysctl_tcp_max_orphans = 4096 << (order - 4); | ||
3271 | sysctl_max_syn_backlog = 1024; | ||
3272 | } else if (order < 3) { | ||
3273 | tcp_death_row.sysctl_max_tw_buckets >>= (3 - order); | ||
3274 | sysctl_tcp_max_orphans >>= (3 - order); | ||
3275 | sysctl_max_syn_backlog = 128; | ||
3276 | } | ||
3277 | 3267 | ||
3278 | /* Set the pressure threshold to be a fraction of global memory that | 3268 | /* Set the pressure threshold to be a fraction of global memory that |
3279 | * is up to 1/2 at 256 MB, decreasing toward zero with the amount of | 3269 | * is up to 1/2 at 256 MB, decreasing toward zero with the amount of |