Skip to content

Commit

Permalink
net: get rid of __tcp_checksum_complete()
Browse files Browse the repository at this point in the history
__tcp_checksum_complete() is 100% same with __skb_checksum_complete()
and there is no other caller except tcp_checksum_complete().
So, just use __skb_checksum_complete() there.

Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Cong Wang authored and David S. Miller committed Nov 15, 2018
1 parent 5c72299 commit 6ab6dfa
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions include/net/tcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -1315,15 +1315,10 @@ static inline __sum16 tcp_v4_check(int len, __be32 saddr,
return csum_tcpudp_magic(saddr,daddr,len,IPPROTO_TCP,base);
}

static inline __sum16 __tcp_checksum_complete(struct sk_buff *skb)
{
return __skb_checksum_complete(skb);
}

static inline bool tcp_checksum_complete(struct sk_buff *skb)
{
return !skb_csum_unnecessary(skb) &&
__tcp_checksum_complete(skb);
__skb_checksum_complete(skb);
}

bool tcp_add_backlog(struct sock *sk, struct sk_buff *skb);
Expand Down

0 comments on commit 6ab6dfa

Please sign in to comment.