diff options
author | David S. Miller <davem@davemloft.net> | 2016-05-09 15:59:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-09 15:59:24 -0400 |
commit | e800072c18f0d7b89a80fa46dceb3d080c80e09c (patch) | |
tree | 8da6cb7944762a60ec37594720c1ad2757631c2f /net/ipv4/fou.c | |
parent | e8ed77dfa90dd79c5343415a4bbbfdab9787b35a (diff) | |
parent | b507146bb6b9ac0c0197100ba3e299825a21fed3 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
In netdevice.h we removed the structure in net-next that is being
changes in 'net'. In macsec.c and rtnetlink.c we have overlaps
between fixes in 'net' and the u64 attribute changes in 'net-next'.
The mlx5 conflicts have to do with vxlan support dependencies.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fou.c')
-rw-r--r-- | net/ipv4/fou.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/ipv4/fou.c b/net/ipv4/fou.c index 7ac5ec87b004..eeec7d60e5fd 100644 --- a/net/ipv4/fou.c +++ b/net/ipv4/fou.c | |||
@@ -227,8 +227,6 @@ static int fou_gro_complete(struct sock *sk, struct sk_buff *skb, | |||
227 | int err = -ENOSYS; | 227 | int err = -ENOSYS; |
228 | const struct net_offload **offloads; | 228 | const struct net_offload **offloads; |
229 | 229 | ||
230 | udp_tunnel_gro_complete(skb, nhoff); | ||
231 | |||
232 | rcu_read_lock(); | 230 | rcu_read_lock(); |
233 | offloads = NAPI_GRO_CB(skb)->is_ipv6 ? inet6_offloads : inet_offloads; | 231 | offloads = NAPI_GRO_CB(skb)->is_ipv6 ? inet6_offloads : inet_offloads; |
234 | ops = rcu_dereference(offloads[proto]); | 232 | ops = rcu_dereference(offloads[proto]); |
@@ -237,6 +235,8 @@ static int fou_gro_complete(struct sock *sk, struct sk_buff *skb, | |||
237 | 235 | ||
238 | err = ops->callbacks.gro_complete(skb, nhoff); | 236 | err = ops->callbacks.gro_complete(skb, nhoff); |
239 | 237 | ||
238 | skb_set_inner_mac_header(skb, nhoff); | ||
239 | |||
240 | out_unlock: | 240 | out_unlock: |
241 | rcu_read_unlock(); | 241 | rcu_read_unlock(); |
242 | 242 | ||
@@ -412,6 +412,8 @@ static int gue_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff) | |||
412 | 412 | ||
413 | err = ops->callbacks.gro_complete(skb, nhoff + guehlen); | 413 | err = ops->callbacks.gro_complete(skb, nhoff + guehlen); |
414 | 414 | ||
415 | skb_set_inner_mac_header(skb, nhoff + guehlen); | ||
416 | |||
415 | out_unlock: | 417 | out_unlock: |
416 | rcu_read_unlock(); | 418 | rcu_read_unlock(); |
417 | return err; | 419 | return err; |