Looks good, +2 -Doug
-----Original Message----- From: Zhang, Qi Z Sent: Monday, August 26, 2019 3:51 AM To: Lu, Wenzhuo <[email protected]>; Yang, Qiming <[email protected]> Cc: [email protected]; Ye, Xiaolong <[email protected]>; Zhang, Qi Z <[email protected]>; Dziggel, Douglas A <[email protected]>; Stillwell Jr, Paul M <[email protected]> Subject: [PATCH 61/63] net/ice/base: add GENEVE offset Add Geneve offset for tunneled packets to allow dummy packets to be properly created. Signed-off-by: Doug Dziggel <[email protected]> Signed-off-by: Paul M Stillwell Jr <[email protected]> Signed-off-by: Qi Zhang <[email protected]> --- drivers/net/ice/base/ice_switch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ice/base/ice_switch.c b/drivers/net/ice/base/ice_switch.c index 3ae53d3d8..8f20b9ed6 100644 --- a/drivers/net/ice/base/ice_switch.c +++ b/drivers/net/ice/base/ice_switch.c @@ -156,6 +156,7 @@ struct ice_dummy_pkt_offsets dummy_udp_tun_tcp_packet_offsets[] = { { ICE_IPV4_OFOS, 14 }, { ICE_UDP_OF, 34 }, { ICE_VXLAN, 42 }, + { ICE_GENEVE, 42 }, { ICE_MAC_IL, 50 }, { ICE_IPV4_IL, 64 }, { ICE_TCP_IL, 84 }, @@ -207,6 +208,7 @@ struct ice_dummy_pkt_offsets dummy_udp_tun_udp_packet_offsets[] = { { ICE_IPV4_OFOS, 14 }, { ICE_UDP_OF, 34 }, { ICE_VXLAN, 42 }, + { ICE_GENEVE, 42 }, { ICE_MAC_IL, 50 }, { ICE_IPV4_IL, 64 }, { ICE_UDP_ILOS, 84 }, -- 2.13.6

