diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-10-26 03:57:36 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-10-26 03:57:36 -0700 |
commit | 0f79efdc23bd82035625083adf441e063a61f170 (patch) | |
tree | 3b618817658b35d920720610b785f7eff9e67079 /net | |
parent | d76081f87548f986fd318d2b0dd7e942f93a0da4 (diff) | |
download | op-kernel-dev-0f79efdc23bd82035625083adf441e063a61f170.zip op-kernel-dev-0f79efdc23bd82035625083adf441e063a61f170.tar.gz |
[TCP]: Make tcp_match_skb_to_sack() static.
tcp_match_skb_to_sack() can become static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 47f4f35..457697a 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -1204,8 +1204,8 @@ static int tcp_check_dsack(struct tcp_sock *tp, struct sk_buff *ack_skb, * which may fail and creates some hassle (caller must handle error case * returns). */ -int tcp_match_skb_to_sack(struct sock *sk, struct sk_buff *skb, - u32 start_seq, u32 end_seq) +static int tcp_match_skb_to_sack(struct sock *sk, struct sk_buff *skb, + u32 start_seq, u32 end_seq) { int in_sack, err; unsigned int pkt_len; |