Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1b9f4092 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

tcp: tcp_enter_quickack_mode can be static



Function only used in tcp_input.c

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a64de47c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -346,8 +346,6 @@ static inline void tcp_dec_quickack_mode(struct sock *sk,
	}
}

extern void tcp_enter_quickack_mode(struct sock *sk);

#define	TCP_ECN_OK		1
#define	TCP_ECN_QUEUE_CWR	2
#define	TCP_ECN_DEMAND_CWR	4
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ static void tcp_incr_quickack(struct sock *sk)
		icsk->icsk_ack.quick = min(quickacks, TCP_MAX_QUICKACKS);
}

void tcp_enter_quickack_mode(struct sock *sk)
static void tcp_enter_quickack_mode(struct sock *sk)
{
	struct inet_connection_sock *icsk = inet_csk(sk);
	tcp_incr_quickack(sk);