[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1335201795.5205.35.camel@edumazet-glaptop>
Date: Mon, 23 Apr 2012 19:23:15 +0200
From: Eric Dumazet <eric.dumazet@...il.com>
To: Rick Jones <rick.jones2@...com>
Cc: David Miller <davem@...emloft.net>,
netdev <netdev@...r.kernel.org>,
Tom Herbert <therbert@...gle.com>,
Neal Cardwell <ncardwell@...gle.com>,
Maciej Żenczykowski <maze@...gle.com>,
Yuchung Cheng <ycheng@...gle.com>,
Ilpo Järvinen <ilpo.jarvinen@...sinki.fi>
Subject: Re: [PATCH 2/2 net-next] tcp: sk_add_backlog() is too agressive
for TCP
On Mon, 2012-04-23 at 10:14 -0700, Rick Jones wrote:
>
> This will increase what can be queued for arriving segments in general
> and not for ACKs specifically yes? (A possible issue that would have
> come-up with my previous wondering about just increasing SO_RCVBUF as
> SO_SNDBUF was increasing). Perhaps only add sk->sk_sndbuf to the limit
> if the arriving segment contains no data?
Thats the backlog limit that we tweak here.
Its not a big deal if we allow a bit more packets to come and later drop
them if we hit the real rcvbuf limit. (ACKS wont consume space, since
they are freed as soon as processed)
By the way, we used to have (sk_rcvbuf << 1) limit in the past.
Before commit c377411f2494a931ff we had :
if (sk->sk_backlog.len >= max(sk->sk_backlog.limit, sk->sk_rcvbuf << 1))
return -ENOBUFS
We probably had drops in the past but didnt notice, since we lacked
a counter for those drops.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists