diff options
-rw-r--r-- | drivers/net/ehea/ehea_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c index 49ba6a9a7b06..0920b796bd78 100644 --- a/drivers/net/ehea/ehea_main.c +++ b/drivers/net/ehea/ehea_main.c | |||
@@ -623,7 +623,7 @@ static int get_skb_hdr(struct sk_buff *skb, void **iphdr, | |||
623 | *tcph = tcp_hdr(skb); | 623 | *tcph = tcp_hdr(skb); |
624 | 624 | ||
625 | /* check if ip header and tcp header are complete */ | 625 | /* check if ip header and tcp header are complete */ |
626 | if (iph->tot_len < ip_len + tcp_hdrlen(skb)) | 626 | if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb)) |
627 | return -1; | 627 | return -1; |
628 | 628 | ||
629 | *hdr_flags = LRO_IPV4 | LRO_TCP; | 629 | *hdr_flags = LRO_IPV4 | LRO_TCP; |