Re: [RFC v2] tcp: Export TCP Delayed ACK parameters to user
From: Daniel Baluta <hidden>
Date: 2011-10-28 21:35:25
From: Daniel Baluta <hidden>
Date: 2011-10-28 21:35:25
On Sat, Oct 29, 2011 at 12:19 AM, David Miller [off-list ref] wrote:
From: Daniel Baluta <redacted> Date: Sat, 29 Oct 2011 00:14:03 +0300quoted
+static inline int tcp_delack_thresh(const struct sock *sk) +{ + return inet_csk(sk)->icsk_ack.rcv_mss * sysctl_tcp_delack_segs; +} +Please turn this into a shift or something, you're adding a multiply into a core code path.
Is there any generic API to do this? Default case is not affected since tcp_delack_segs is 1. Daniel.