diff mbox

[net] tcp: delete unused parameter in tcp_nagle_check()

Message ID 4609be8bb5dacb54d14e1b1f5dc8264b85c7c8d3.1395630957.git.panweiping3@gmail.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Peter Pan(潘卫平) March 24, 2014, 6:49 a.m. UTC
After commit d4589926d7a9 (tcp: refine TSO splits), tcp_nagle_check() does
not use parameter mss_now anymore.

Signed-off-by: Weiping Pan <panweiping3@gmail.com>
---
 net/ipv4/tcp_output.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

Comments

Eric Dumazet March 24, 2014, 1:08 p.m. UTC | #1
On Mon, 2014-03-24 at 14:49 +0800, Weiping Pan wrote:
> After commit d4589926d7a9 (tcp: refine TSO splits), tcp_nagle_check() does
> not use parameter mss_now anymore.
> 
> Signed-off-by: Weiping Pan <panweiping3@gmail.com>
> ---

Its not a fix and should target net-next, otherwise it looks good to me.

Thanks


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
David Miller March 26, 2014, 7:43 p.m. UTC | #2
From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Mon, 24 Mar 2014 06:08:47 -0700

> On Mon, 2014-03-24 at 14:49 +0800, Weiping Pan wrote:
>> After commit d4589926d7a9 (tcp: refine TSO splits), tcp_nagle_check() does
>> not use parameter mss_now anymore.
>> 
>> Signed-off-by: Weiping Pan <panweiping3@gmail.com>
>> ---
> 
> Its not a fix and should target net-next, otherwise it looks good to me.

Agreed, applied to net-next, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index 17a11e6..fbf4403 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -1426,7 +1426,7 @@  static void tcp_minshall_update(struct tcp_sock *tp, unsigned int mss_now,
  *    With Minshall's modification: all sent small packets are ACKed.
  */
 static bool tcp_nagle_check(bool partial, const struct tcp_sock *tp,
-			    unsigned int mss_now, int nonagle)
+			    int nonagle)
 {
 	return partial &&
 		((nonagle & TCP_NAGLE_CORK) ||
@@ -1458,7 +1458,7 @@  static unsigned int tcp_mss_split_point(const struct sock *sk,
 	 * to include this last segment in this skb.
 	 * Otherwise, we'll split the skb at last MSS boundary
 	 */
-	if (tcp_nagle_check(partial != 0, tp, mss_now, nonagle))
+	if (tcp_nagle_check(partial != 0, tp, nonagle))
 		return needed - partial;
 
 	return needed;
@@ -1521,7 +1521,7 @@  static inline bool tcp_nagle_test(const struct tcp_sock *tp, const struct sk_buf
 	if (tcp_urg_mode(tp) || (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN))
 		return true;
 
-	if (!tcp_nagle_check(skb->len < cur_mss, tp, cur_mss, nonagle))
+	if (!tcp_nagle_check(skb->len < cur_mss, tp, nonagle))
 		return true;
 
 	return false;