Skip to content

Commit

Permalink
tcp: remove unused tcp_fin() parameters
Browse files Browse the repository at this point in the history
tcp_fin() only needs socket pointer, we can remove skb and th params.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Oct 20, 2011
1 parent 9eac2d4 commit 20c4cb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/ipv4/tcp_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -4134,7 +4134,7 @@ static void tcp_reset(struct sock *sk)
*
* If we are in FINWAIT-2, a received FIN moves us to TIME-WAIT.
*/
static void tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th)
static void tcp_fin(struct sock *sk)
{
struct tcp_sock *tp = tcp_sk(sk);

Expand Down Expand Up @@ -4405,7 +4405,7 @@ static void tcp_ofo_queue(struct sock *sk)
__skb_queue_tail(&sk->sk_receive_queue, skb);
tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
if (tcp_hdr(skb)->fin)
tcp_fin(skb, sk, tcp_hdr(skb));
tcp_fin(sk);
}
}

Expand Down Expand Up @@ -4487,7 +4487,7 @@ static void tcp_data_queue(struct sock *sk, struct sk_buff *skb)
if (skb->len)
tcp_event_data_recv(sk, skb);
if (th->fin)
tcp_fin(skb, sk, th);
tcp_fin(sk);

if (!skb_queue_empty(&tp->out_of_order_queue)) {
tcp_ofo_queue(sk);
Expand Down

0 comments on commit 20c4cb7

Please sign in to comment.