]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
tcp: remove redundant checks
authorEric Dumazet <edumazet@google.com>
Thu, 4 Jun 2015 06:49:21 +0000 (23:49 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Jun 2015 08:04:40 +0000 (01:04 -0700)
commit12e25e1041d044d4204f2b7c54695e14e8ffb282
tree9ebfb1b3d4ba5a1c6bca7c66ee2454686e2a25d2
parent37c8e2b069c7ccff3ff6a356f82ed11abab5fb99
tcp: remove redundant checks

tcp_v4_rcv() checks the following before calling tcp_v4_do_rcv():

if (th->doff < sizeof(struct tcphdr) / 4)
    goto bad_packet;
if (!pskb_may_pull(skb, th->doff * 4))
    goto discard_it;

So following check in tcp_v4_do_rcv() is redundant
and "goto csum_err;" is wrong anyway.

if (skb->len < tcp_hdrlen(skb) || ...)
goto csum_err;

A second check can be removed after no_tcp_socket label for same reason.

Same tests can be removed in tcp_v6_do_rcv()

Note : short tcp frames are not properly accounted in tcpInErrs MIB,
because pskb_may_pull() failure simply drops incoming skb, we might
fix this in a separate patch.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_ipv4.c
net/ipv6/tcp_ipv6.c