diff options
Diffstat (limited to 'net/core/dev.c')
-rw-r--r-- | net/core/dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 8efe85070131..6b6ef14b42f2 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -2532,7 +2532,7 @@ __u32 __skb_get_rxhash(struct sk_buff *skb) | |||
2532 | goto done; | 2532 | goto done; |
2533 | 2533 | ||
2534 | ip = (const struct iphdr *) (skb->data + nhoff); | 2534 | ip = (const struct iphdr *) (skb->data + nhoff); |
2535 | if (ip->frag_off & htons(IP_MF | IP_OFFSET)) | 2535 | if (ip_is_fragment(ip)) |
2536 | ip_proto = 0; | 2536 | ip_proto = 0; |
2537 | else | 2537 | else |
2538 | ip_proto = ip->protocol; | 2538 | ip_proto = ip->protocol; |