diff options
Diffstat (limited to 'net/sctp/input.c')
-rw-r--r-- | net/sctp/input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sctp/input.c b/net/sctp/input.c index 18b97eedc1fa..885109fb3dda 100644 --- a/net/sctp/input.c +++ b/net/sctp/input.c | |||
@@ -140,8 +140,7 @@ int sctp_rcv(struct sk_buff *skb) | |||
140 | __skb_pull(skb, skb_transport_offset(skb)); | 140 | __skb_pull(skb, skb_transport_offset(skb)); |
141 | if (skb->len < sizeof(struct sctphdr)) | 141 | if (skb->len < sizeof(struct sctphdr)) |
142 | goto discard_it; | 142 | goto discard_it; |
143 | if ((skb->ip_summed != CHECKSUM_UNNECESSARY) && | 143 | if (!skb_csum_unnecessary(skb) && sctp_rcv_checksum(skb) < 0) |
144 | (sctp_rcv_checksum(skb) < 0)) | ||
145 | goto discard_it; | 144 | goto discard_it; |
146 | 145 | ||
147 | skb_pull(skb, sizeof(struct sctphdr)); | 146 | skb_pull(skb, sizeof(struct sctphdr)); |