diff options
Diffstat (limited to 'net/8021q')
-rw-r--r-- | net/8021q/vlan_core.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/8021q/vlan_core.c b/net/8021q/vlan_core.c index 07eeb5b99dce..3438c01bbacf 100644 --- a/net/8021q/vlan_core.c +++ b/net/8021q/vlan_core.c | |||
@@ -105,9 +105,12 @@ vlan_gro_common(struct napi_struct *napi, struct vlan_group *grp, | |||
105 | goto drop; | 105 | goto drop; |
106 | 106 | ||
107 | for (p = napi->gro_list; p; p = p->next) { | 107 | for (p = napi->gro_list; p; p = p->next) { |
108 | NAPI_GRO_CB(p)->same_flow = | 108 | unsigned long diffs; |
109 | p->dev == skb->dev && !compare_ether_header( | 109 | |
110 | skb_mac_header(p), skb_gro_mac_header(skb)); | 110 | diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev; |
111 | diffs |= compare_ether_header(skb_mac_header(p), | ||
112 | skb_gro_mac_header(skb)); | ||
113 | NAPI_GRO_CB(p)->same_flow = !diffs; | ||
111 | NAPI_GRO_CB(p)->flush = 0; | 114 | NAPI_GRO_CB(p)->flush = 0; |
112 | } | 115 | } |
113 | 116 | ||