Re: [PATCH v3 net-next] tcp: replace cnt & rtt with struct in pkts_acked()

2016-05-10 Thread David Miller
From: David Miller Date: Tue, 10 May 2016 23:47:58 -0400 (EDT) > From: Lawrence Brakmo > Date: Tue, 10 May 2016 13:11:09 -0700 > >> Replace 2 arguments (cnt and rtt) in the congestion control modules' >> pkts_acked() function with a struct. This will allow adding more >> information without hav

Re: [PATCH v3 net-next] tcp: replace cnt & rtt with struct in pkts_acked()

2016-05-10 Thread David Miller
From: Lawrence Brakmo Date: Tue, 10 May 2016 13:11:09 -0700 > Replace 2 arguments (cnt and rtt) in the congestion control modules' > pkts_acked() function with a struct. This will allow adding more > information without having to modify existing congestion control > modules (tcp_nv in particular

[PATCH v3 net-next] tcp: replace cnt & rtt with struct in pkts_acked()

2016-05-10 Thread Lawrence Brakmo
Replace 2 arguments (cnt and rtt) in the congestion control modules' pkts_acked() function with a struct. This will allow adding more information without having to modify existing congestion control modules (tcp_nv in particular needs bytes in flight when packet was sent). As proposed by Neal Card