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 /drivers/net/vxlan.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 'drivers/net/vxlan.c')
-rw-r--r-- | drivers/net/vxlan.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index 2668e528dee4..2f29d20aa08f 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c | |||
@@ -613,8 +613,9 @@ out: | |||
613 | 613 | ||
614 | static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff) | 614 | static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff) |
615 | { | 615 | { |
616 | udp_tunnel_gro_complete(skb, nhoff); | 616 | /* Sets 'skb->inner_mac_header' since we are always called with |
617 | 617 | * 'skb->encapsulation' set. | |
618 | */ | ||
618 | return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr)); | 619 | return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr)); |
619 | } | 620 | } |
620 | 621 | ||