net/ice/base: fix inner L2 offset in GRE dummy packet
authorLeyi Rong <leyi.rong@intel.com>
Mon, 1 Jul 2019 05:04:50 +0000 (13:04 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 3 Jul 2019 10:57:30 +0000 (12:57 +0200)
The offset for the inner L2 header in the dummy GRE packet
was off by 2 bytes so updated the offset.

Fixes: 839c0a4b77e6 ("net/ice/base: enable additional switch rules")

Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
Signed-off-by: Leyi Rong <leyi.rong@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
drivers/net/ice/base/ice_switch.c

index 5388297..be43c8b 100644 (file)
@@ -65,7 +65,7 @@ struct ice_dummy_pkt_offsets dummy_gre_packet_offsets[] = {
        { ICE_IPV4_OFOS,        14 },
        { ICE_NVGRE,            34 },
        { ICE_MAC_IL,           42 },
-       { ICE_IPV4_IL,          54 },
+       { ICE_IPV4_IL,          56 },
        { ICE_PROTOCOL_LAST,    0 },
 };