Re: [PATCH net-next 1/2] tcp: prepare CC get_info() access from getsockopt()

2015-04-29 Thread David Miller
From: Eric Dumazet Date: Tue, 28 Apr 2015 16:23:48 -0700 > We would like that optional info provided by Congestion Control > modules using netlink can also be read using getsockopt() > > This patch changes get_info() to put this information in a buffer, > instead of skb, like tcp_get_info(), so

Re: [PATCH net-next 1/2] tcp: prepare CC get_info() access from getsockopt()

2015-04-29 Thread Daniel Borkmann
On 04/29/2015 01:23 AM, Eric Dumazet wrote: We would like that optional info provided by Congestion Control modules using netlink can also be read using getsockopt() This patch changes get_info() to put this information in a buffer, instead of skb, like tcp_get_info(), so that following patch ca

Re: [PATCH net-next 1/2] tcp: prepare CC get_info() access from getsockopt()

2015-04-28 Thread Neal Cardwell
On Tue, Apr 28, 2015 at 7:23 PM, Eric Dumazet wrote: > We would like that optional info provided by Congestion Control > modules using netlink can also be read using getsockopt() > > This patch changes get_info() to put this information in a buffer, > instead of skb, like tcp_get_info(), so that f

[PATCH net-next 1/2] tcp: prepare CC get_info() access from getsockopt()

2015-04-28 Thread Eric Dumazet
We would like that optional info provided by Congestion Control modules using netlink can also be read using getsockopt() This patch changes get_info() to put this information in a buffer, instead of skb, like tcp_get_info(), so that following patch can reuse this common infrastructure. Signed-of