From: Kevin Liu <kevinx.liu@intel.com>
To: dev@dpdk.org
Cc: qiming.yang@intel.com, qi.z.zhang@intel.com,
stevex.yang@intel.com, Junfeng Guo <junfeng.guo@intel.com>,
Kevin Liu <kevinx.liu@intel.com>
Subject: [PATCH v2 11/33] net/ice/base: add VXLAN support for switch filter
Date: Wed, 13 Apr 2022 16:09:10 +0000 [thread overview]
Message-ID: <20220413160932.2074781-12-kevinx.liu@intel.com> (raw)
In-Reply-To: <20220413160932.2074781-1-kevinx.liu@intel.com>
From: Junfeng Guo <junfeng.guo@intel.com>
1. Add profile rule for VXLAN on Switch Filter, including
pattern_eth_ipv4_udp_vxlan_any
pattern_eth_ipv6_udp_vxlan_any
pattern_eth_ipv4_udp_vxlan_eth_ipv4
pattern_eth_ipv4_udp_vxlan_eth_ipv6
pattern_eth_ipv6_udp_vxlan_eth_ipv4
pattern_eth_ipv6_udp_vxlan_eth_ipv6
2. Add common rule for VXLAN on Switch Filter, including
+-----------------+-----------------------------------------------------+
| Pattern | Input Set |
+-----------------+-----------------------------------------------------+
| ipv4_vxlan_ipv4 | vni, inner dmac, inner dst/src ip, outer dst/src ip |
| ipv4_vxlan_ipv6 | vni, inner dmac, inner dst/src ip |
| ipv6_vxlan_ipv4 | vni, inner dmac, inner dst/src ip |
| ipv6_vxlan_ipv6 | vni, inner dmac, inner dst/src ip |
+-----------------+-----------------------------------------------------+
Signed-off-by: Junfeng Guo <junfeng.guo@intel.com>
Signed-off-by: Kevin Liu <kevinx.liu@intel.com>
---
drivers/net/ice/base/ice_protocol_type.h | 6 +
drivers/net/ice/base/ice_switch.c | 213 ++++++++++++++++++++++-
drivers/net/ice/base/ice_switch.h | 12 ++
3 files changed, 230 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ice/base/ice_protocol_type.h b/drivers/net/ice/base/ice_protocol_type.h
index 0e6e5990be..d6332c5690 100644
--- a/drivers/net/ice/base/ice_protocol_type.h
+++ b/drivers/net/ice/base/ice_protocol_type.h
@@ -112,6 +112,12 @@ enum ice_sw_tunnel_type {
ICE_SW_TUN_IPV6_NAT_T,
ICE_SW_TUN_IPV4_L2TPV3,
ICE_SW_TUN_IPV6_L2TPV3,
+ ICE_SW_TUN_PROFID_IPV4_VXLAN,
+ ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4,
+ ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6,
+ ICE_SW_TUN_PROFID_IPV6_VXLAN,
+ ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4,
+ ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6,
ICE_SW_TUN_PROFID_IPV6_ESP,
ICE_SW_TUN_PROFID_IPV6_AH,
ICE_SW_TUN_PROFID_MAC_IPV6_L2TPV3,
diff --git a/drivers/net/ice/base/ice_switch.c b/drivers/net/ice/base/ice_switch.c
index d4cc664ad7..b0c50c8f40 100644
--- a/drivers/net/ice/base/ice_switch.c
+++ b/drivers/net/ice/base/ice_switch.c
@@ -228,6 +228,117 @@ static const u8 dummy_udp_tun_udp_packet[] = {
0x00, 0x08, 0x00, 0x00,
};
+static const
+struct ice_dummy_pkt_offsets dummy_udp_tun_ipv6_tcp_packet_offsets[] = {
+ { ICE_MAC_OFOS, 0 },
+ { ICE_ETYPE_OL, 12 },
+ { ICE_IPV4_OFOS, 14 },
+ { ICE_UDP_OF, 34 },
+ { ICE_VXLAN, 42 },
+ { ICE_GENEVE, 42 },
+ { ICE_VXLAN_GPE, 42 },
+ { ICE_MAC_IL, 50 },
+ { ICE_IPV6_IL, 64 },
+ { ICE_TCP_IL, 104 },
+ { ICE_PROTOCOL_LAST, 0 },
+};
+
+static const u8 dummy_udp_tun_ipv6_tcp_packet[] = {
+ 0x00, 0x00, 0x00, 0x00, /* ICE_MAC_OFOS 0 */
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x08, 0x00, /* ICE_ETYPE_OL 12 */
+
+ 0x45, 0x00, 0x00, 0x5a, /* ICE_IPV4_OFOS 14 */
+ 0x00, 0x01, 0x00, 0x00,
+ 0x40, 0x11, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x00, 0x00, 0x12, 0xb5, /* ICE_UDP_OF 34 */
+ 0x00, 0x46, 0x00, 0x00,
+
+ 0x00, 0x00, 0x65, 0x58, /* ICE_VXLAN 42 */
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x00, 0x00, 0x00, 0x00, /* ICE_MAC_IL 50 */
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x86, 0xdd,
+
+ 0x60, 0x00, 0x00, 0x00, /* ICE_IPV4_IL 64 */
+ 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x00, 0x00, 0x00, 0x00, /* ICE_TCP_IL 104 */
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x50, 0x02, 0x20, 0x00,
+ 0x00, 0x00, 0x00, 0x00
+};
+
+static const
+struct ice_dummy_pkt_offsets dummy_udp_tun_ipv6_udp_packet_offsets[] = {
+ { ICE_MAC_OFOS, 0 },
+ { ICE_ETYPE_OL, 12 },
+ { ICE_IPV4_OFOS, 14 },
+ { ICE_UDP_OF, 34 },
+ { ICE_VXLAN, 42 },
+ { ICE_GENEVE, 42 },
+ { ICE_VXLAN_GPE, 42 },
+ { ICE_MAC_IL, 50 },
+ { ICE_IPV6_IL, 64 },
+ { ICE_UDP_ILOS, 104 },
+ { ICE_PROTOCOL_LAST, 0 },
+};
+
+static const u8 dummy_udp_tun_ipv6_udp_packet[] = {
+ 0x00, 0x00, 0x00, 0x00, /* ICE_MAC_OFOS 0 */
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x08, 0x00, /* ICE_ETYPE_OL 12 */
+
+ 0x45, 0x00, 0x00, 0x4e, /* ICE_IPV4_OFOS 14 */
+ 0x00, 0x01, 0x00, 0x00,
+ 0x00, 0x11, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x00, 0x00, 0x12, 0xb5, /* ICE_UDP_OF 34 */
+ 0x00, 0x3a, 0x00, 0x00,
+
+ 0x00, 0x00, 0x65, 0x58, /* ICE_VXLAN 42 */
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x00, 0x00, 0x00, 0x00, /* ICE_MAC_IL 50 */
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x86, 0xdd,
+
+ 0x60, 0x00, 0x00, 0x00, /* ICE_IPV6_IL 64 */
+ 0x00, 0x58, 0x11, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00,
+
+ 0x00, 0x00, 0x00, 0x00, /* ICE_UDP_ILOS 104 */
+ 0x00, 0x08, 0x00, 0x00,
+};
+
/* offset info for MAC + IPv4 + UDP dummy packet */
static const struct ice_dummy_pkt_offsets dummy_udp_packet_offsets[] = {
{ ICE_MAC_OFOS, 0 },
@@ -2001,6 +2112,10 @@ static enum ice_sw_tunnel_type ice_get_tun_type_for_recipe(u8 rid, bool vlan)
u8 gre_profile[12] = {13, 14, 15, 19, 20, 21, 28, 29, 30, 31, 32, 33};
u8 pppoe_profile[7] = {34, 35, 36, 37, 38, 39, 40};
u8 non_tun_profile[6] = {4, 5, 6, 7, 8, 9};
+ bool ipv4_vxlan_ipv4_valid = false;
+ bool ipv4_vxlan_ipv6_valid = false;
+ bool ipv6_vxlan_ipv4_valid = false;
+ bool ipv6_vxlan_ipv6_valid = false;
enum ice_sw_tunnel_type tun_type;
u16 i, j, k, profile_num = 0;
bool non_tun_valid = false;
@@ -2022,8 +2137,17 @@ static enum ice_sw_tunnel_type ice_get_tun_type_for_recipe(u8 rid, bool vlan)
}
for (i = 0; i < 12; i++) {
- if (vxlan_profile[i] == j)
+ if (vxlan_profile[i] == j) {
vxlan_valid = true;
+ if (i < 3)
+ ipv4_vxlan_ipv4_valid = true;
+ else if (i < 6)
+ ipv6_vxlan_ipv4_valid = true;
+ else if (i < 9)
+ ipv4_vxlan_ipv6_valid = true;
+ else if (i < 12)
+ ipv6_vxlan_ipv6_valid = true;
+ }
}
for (i = 0; i < 7; i++) {
@@ -2083,6 +2207,20 @@ static enum ice_sw_tunnel_type ice_get_tun_type_for_recipe(u8 rid, bool vlan)
break;
}
}
+ if (tun_type == ICE_SW_TUN_VXLAN) {
+ if (ipv4_vxlan_ipv4_valid && ipv4_vxlan_ipv6_valid)
+ tun_type = ICE_SW_TUN_PROFID_IPV4_VXLAN;
+ else if (ipv6_vxlan_ipv4_valid && ipv6_vxlan_ipv6_valid)
+ tun_type = ICE_SW_TUN_PROFID_IPV6_VXLAN;
+ else if (ipv4_vxlan_ipv4_valid)
+ tun_type = ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4;
+ else if (ipv4_vxlan_ipv6_valid)
+ tun_type = ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6;
+ else if (ipv6_vxlan_ipv4_valid)
+ tun_type = ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4;
+ else if (ipv6_vxlan_ipv6_valid)
+ tun_type = ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6;
+ }
if (profile_num == 1 && (flag_valid || non_tun_valid || pppoe_valid)) {
for (j = 0; j < ICE_MAX_NUM_PROFILES; j++) {
@@ -7496,6 +7634,12 @@ static bool ice_tun_type_match_word(enum ice_sw_tunnel_type tun_type, u16 *mask)
case ICE_SW_TUN_VXLAN_GPE:
case ICE_SW_TUN_GENEVE:
case ICE_SW_TUN_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6:
case ICE_SW_TUN_NVGRE:
case ICE_SW_TUN_UDP:
case ICE_ALL_TUNNELS:
@@ -7613,6 +7757,42 @@ ice_get_compat_fv_bitmap(struct ice_hw *hw, struct ice_adv_rule_info *rinfo,
case ICE_SW_TUN_PPPOE_IPV6_UDP:
ice_set_bit(ICE_PROFID_PPPOE_IPV6_UDP, bm);
return;
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN:
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV4_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV4_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV4_OTHER, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV6_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV6_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV6_OTHER, bm);
+ return;
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4:
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV4_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV4_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV4_OTHER, bm);
+ return;
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6:
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV6_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV6_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV4_TUN_M_IPV6_OTHER, bm);
+ return;
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN:
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV4_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV4_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV4_OTHER, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV6_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV6_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV6_OTHER, bm);
+ return;
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4:
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV4_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV4_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV4_OTHER, bm);
+ return;
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6:
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV6_TCP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV6_UDP, bm);
+ ice_set_bit(ICE_PROFID_IPV6_TUN_M_IPV6_OTHER, bm);
+ return;
case ICE_SW_TUN_PROFID_IPV6_ESP:
case ICE_SW_TUN_IPV6_ESP:
ice_set_bit(ICE_PROFID_IPV6_ESP, bm);
@@ -7780,6 +7960,12 @@ bool ice_is_prof_rule(enum ice_sw_tunnel_type type)
{
switch (type) {
case ICE_SW_TUN_AND_NON_TUN:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6:
case ICE_SW_TUN_PROFID_IPV6_ESP:
case ICE_SW_TUN_PROFID_IPV6_AH:
case ICE_SW_TUN_PROFID_MAC_IPV6_L2TPV3:
@@ -8396,8 +8582,27 @@ ice_find_dummy_packet(struct ice_adv_lkup_elem *lkups, u16 lkups_cnt,
return;
}
+ if (tun_type == ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6 ||
+ tun_type == ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6) {
+ if (tcp) {
+ *pkt = dummy_udp_tun_ipv6_tcp_packet;
+ *pkt_len = sizeof(dummy_udp_tun_ipv6_tcp_packet);
+ *offsets = dummy_udp_tun_ipv6_tcp_packet_offsets;
+ return;
+ }
+
+ *pkt = dummy_udp_tun_ipv6_udp_packet;
+ *pkt_len = sizeof(dummy_udp_tun_ipv6_udp_packet);
+ *offsets = dummy_udp_tun_ipv6_udp_packet_offsets;
+ return;
+ }
+
if (tun_type == ICE_SW_TUN_VXLAN || tun_type == ICE_SW_TUN_GENEVE ||
tun_type == ICE_SW_TUN_VXLAN_GPE || tun_type == ICE_SW_TUN_UDP ||
+ tun_type == ICE_SW_TUN_PROFID_IPV4_VXLAN ||
+ tun_type == ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4 ||
+ tun_type == ICE_SW_TUN_PROFID_IPV6_VXLAN ||
+ tun_type == ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4 ||
tun_type == ICE_SW_TUN_GENEVE_VLAN ||
tun_type == ICE_SW_TUN_VXLAN_VLAN) {
if (tcp) {
@@ -8613,6 +8818,12 @@ ice_fill_adv_packet_tun(struct ice_hw *hw, enum ice_sw_tunnel_type tun_type,
case ICE_SW_TUN_AND_NON_TUN:
case ICE_SW_TUN_VXLAN_GPE:
case ICE_SW_TUN_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV4:
+ case ICE_SW_TUN_PROFID_IPV4_VXLAN_IPV6:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV4:
+ case ICE_SW_TUN_PROFID_IPV6_VXLAN_IPV6:
case ICE_SW_TUN_VXLAN_VLAN:
case ICE_SW_TUN_UDP:
if (!ice_get_open_tunnel_port(hw, TNL_VXLAN, &open_port))
diff --git a/drivers/net/ice/base/ice_switch.h b/drivers/net/ice/base/ice_switch.h
index a2b3c80107..efb9399b77 100644
--- a/drivers/net/ice/base/ice_switch.h
+++ b/drivers/net/ice/base/ice_switch.h
@@ -20,6 +20,18 @@
#define ICE_PROFID_IPV4_UDP 5
#define ICE_PROFID_IPV6_TCP 7
#define ICE_PROFID_IPV6_UDP 8
+#define ICE_PROFID_IPV4_TUN_M_IPV4_TCP 10
+#define ICE_PROFID_IPV4_TUN_M_IPV4_UDP 11
+#define ICE_PROFID_IPV4_TUN_M_IPV4_OTHER 12
+#define ICE_PROFID_IPV6_TUN_M_IPV4_TCP 16
+#define ICE_PROFID_IPV6_TUN_M_IPV4_UDP 17
+#define ICE_PROFID_IPV6_TUN_M_IPV4_OTHER 18
+#define ICE_PROFID_IPV4_TUN_M_IPV6_TCP 22
+#define ICE_PROFID_IPV4_TUN_M_IPV6_UDP 23
+#define ICE_PROFID_IPV4_TUN_M_IPV6_OTHER 24
+#define ICE_PROFID_IPV6_TUN_M_IPV6_TCP 25
+#define ICE_PROFID_IPV6_TUN_M_IPV6_UDP 26
+#define ICE_PROFID_IPV6_TUN_M_IPV6_OTHER 27
#define ICE_PROFID_PPPOE_PAY 34
#define ICE_PROFID_PPPOE_IPV4_TCP 35
#define ICE_PROFID_PPPOE_IPV4_UDP 36
--
2.33.1
next prev parent reply other threads:[~2022-04-13 8:12 UTC|newest]
Thread overview: 170+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-07 10:56 [PATCH 00/39] support full function of DCF Kevin Liu
2022-04-07 10:56 ` [PATCH 01/39] net/ice: enable RSS RETA ops for DCF hardware Kevin Liu
2022-04-07 10:56 ` [PATCH 02/39] net/ice: enable RSS HASH " Kevin Liu
2022-04-07 10:56 ` [PATCH 03/39] net/ice: cleanup Tx buffers Kevin Liu
2022-04-07 10:56 ` [PATCH 04/39] net/ice: add ops MTU-SET to dcf Kevin Liu
2022-04-07 10:56 ` [PATCH 05/39] net/ice: add ops dev-supported-ptypes-get " Kevin Liu
2022-04-07 10:56 ` [PATCH 06/39] net/ice: support dcf promisc configuration Kevin Liu
2022-04-07 10:56 ` [PATCH 07/39] net/ice: support dcf MAC configuration Kevin Liu
2022-04-07 10:56 ` [PATCH 08/39] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-07 10:56 ` [PATCH 09/39] net/ice: support DCF new VLAN capabilities Kevin Liu
2022-04-07 10:56 ` [PATCH 10/39] net/ice: enable CVL DCF device reset API Kevin Liu
2022-04-07 10:56 ` [PATCH 11/39] net/ice/base: add VXLAN support for switch filter Kevin Liu
2022-04-07 10:56 ` [PATCH 12/39] net/ice: " Kevin Liu
2022-04-07 10:56 ` [PATCH 13/39] common/iavf: support flushing rules and reporting DCF id Kevin Liu
2022-04-07 10:56 ` [PATCH 14/39] net/ice/base: fix ethertype filter input set Kevin Liu
2022-04-07 10:56 ` [PATCH 15/39] net/iavf: support checking if device is an MDCF instance Kevin Liu
2022-04-07 10:56 ` [PATCH 16/39] net/ice: support MDCF(multi-DCF) instance Kevin Liu
2022-04-07 10:56 ` [PATCH 17/39] net/ice/base: support custom DDP buildin recipe Kevin Liu
2022-04-07 10:56 ` [PATCH 18/39] net/ice: support buildin recipe configuration Kevin Liu
2022-04-07 10:56 ` [PATCH 19/39] net/ice/base: support IPv6 GRE UDP pattern Kevin Liu
2022-04-07 10:56 ` [PATCH 20/39] net/ice: support IPv6 NVGRE tunnel Kevin Liu
2022-04-07 10:56 ` [PATCH 21/39] net/ice: support new pattern of IPv4 Kevin Liu
2022-04-07 10:56 ` [PATCH 22/39] net/ice/base: support new patterns of TCP and UDP Kevin Liu
2022-04-07 10:56 ` [PATCH 23/39] net/ice: " Kevin Liu
2022-04-07 10:56 ` [PATCH 24/39] net/ice/base: support IPv4 GRE tunnel Kevin Liu
2022-04-07 10:56 ` [PATCH 25/39] net/ice: support IPv4 GRE raw pattern type Kevin Liu
2022-04-07 10:56 ` [PATCH 26/39] net/ice/base: support custom ddp package version Kevin Liu
2022-04-07 10:56 ` [PATCH 27/39] net/ice: disable ACL function for MDCF instance Kevin Liu
2022-04-07 10:56 ` [PATCH 28/39] net/ice: treat unknown package as OS default package Kevin Liu
2022-04-07 10:56 ` [PATCH 29/39] net/ice/base: update Profile ID table for VXLAN Kevin Liu
2022-04-07 10:56 ` [PATCH 30/39] net/ice/base: update Protocol ID table to match DVM DDP Kevin Liu
2022-04-07 10:56 ` [PATCH 31/39] net/ice: handle virtchnl event message without interrupt Kevin Liu
2022-04-07 10:56 ` [PATCH 32/39] net/ice: add DCF request queues function Kevin Liu
2022-04-07 10:57 ` [PATCH 33/39] net/ice: negotiate large VF and request more queues Kevin Liu
2022-04-07 10:57 ` [PATCH 34/39] net/ice: enable multiple queues configurations for large VF Kevin Liu
2022-04-07 10:57 ` [PATCH 35/39] net/ice: enable IRQ mapping configuration " Kevin Liu
2022-04-07 10:57 ` [PATCH 36/39] net/ice: add enable/disable queues for DCF " Kevin Liu
2022-04-07 10:57 ` [PATCH 37/39] net/ice: fix DCF ACL flow engine Kevin Liu
2022-04-07 10:57 ` [PATCH 38/39] testpmd: force flow flush Kevin Liu
2022-04-07 10:57 ` [PATCH 39/39] net/ice: fix DCF reset Kevin Liu
2022-04-13 16:08 ` [PATCH v2 00/33] support full function of DCF Kevin Liu
2022-04-13 16:09 ` [PATCH v2 01/33] net/ice: enable RSS RETA ops for DCF hardware Kevin Liu
2022-04-13 16:09 ` [PATCH v2 02/33] net/ice: enable RSS HASH " Kevin Liu
2022-04-13 16:09 ` [PATCH v2 03/33] net/ice: cleanup Tx buffers Kevin Liu
2022-04-13 16:09 ` [PATCH v2 04/33] net/ice: add ops MTU-SET to dcf Kevin Liu
2022-04-13 16:09 ` [PATCH v2 05/33] net/ice: add ops dev-supported-ptypes-get " Kevin Liu
2022-04-13 16:09 ` [PATCH v2 06/33] net/ice: support dcf promisc configuration Kevin Liu
2022-04-13 16:09 ` [PATCH v2 07/33] net/ice: support dcf MAC configuration Kevin Liu
2022-04-13 16:09 ` [PATCH v2 08/33] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-13 16:09 ` [PATCH v2 09/33] net/ice: support DCF new VLAN capabilities Kevin Liu
2022-04-13 16:09 ` [PATCH v2 10/33] net/ice: enable CVL DCF device reset API Kevin Liu
2022-04-13 16:09 ` Kevin Liu [this message]
2022-04-13 16:09 ` [PATCH v2 12/33] net/ice: add VXLAN support for switch filter Kevin Liu
2022-04-13 16:09 ` [PATCH v2 13/33] common/iavf: support flushing rules and reporting DCF id Kevin Liu
2022-04-13 16:09 ` [PATCH v2 14/33] net/ice/base: fix ethertype filter input set Kevin Liu
2022-04-13 16:09 ` [PATCH v2 15/33] net/ice/base: support IPv6 GRE UDP pattern Kevin Liu
2022-04-13 16:09 ` [PATCH v2 16/33] net/ice: support IPv6 NVGRE tunnel Kevin Liu
2022-04-13 16:09 ` [PATCH v2 17/33] net/ice: support new pattern of IPv4 Kevin Liu
2022-04-13 16:09 ` [PATCH v2 18/33] net/ice/base: support new patterns of TCP and UDP Kevin Liu
2022-04-13 16:09 ` [PATCH v2 19/33] net/ice: " Kevin Liu
2022-04-13 16:09 ` [PATCH v2 20/33] net/ice/base: support IPv4 GRE tunnel Kevin Liu
2022-04-13 16:09 ` [PATCH v2 21/33] net/ice: support IPv4 GRE raw pattern type Kevin Liu
2022-04-13 16:09 ` [PATCH v2 22/33] net/ice: treat unknown package as OS default package Kevin Liu
2022-04-13 16:09 ` [PATCH v2 23/33] net/ice/base: update Profile ID table for VXLAN Kevin Liu
2022-04-13 16:09 ` [PATCH v2 24/33] net/ice/base: update Protocol ID table to match DVM DDP Kevin Liu
2022-04-13 16:09 ` [PATCH v2 25/33] net/ice: handle virtchnl event message without interrupt Kevin Liu
2022-04-13 16:09 ` [PATCH v2 26/33] net/ice: add DCF request queues function Kevin Liu
2022-04-13 16:09 ` [PATCH v2 27/33] net/ice: negotiate large VF and request more queues Kevin Liu
2022-04-13 16:09 ` [PATCH v2 28/33] net/ice: enable multiple queues configurations for large VF Kevin Liu
2022-04-13 16:09 ` [PATCH v2 29/33] net/ice: enable IRQ mapping configuration " Kevin Liu
2022-04-13 16:09 ` [PATCH v2 30/33] net/ice: add enable/disable queues for DCF " Kevin Liu
2022-04-13 16:09 ` [PATCH v2 31/33] net/ice: fix DCF ACL flow engine Kevin Liu
2022-04-13 16:09 ` [PATCH v2 32/33] testpmd: force flow flush Kevin Liu
2022-04-13 16:09 ` [PATCH v2 33/33] net/ice: fix DCF reset Kevin Liu
2022-04-13 17:10 ` [PATCH v3 00/22] support full function of DCF Kevin Liu
2022-04-13 17:10 ` [PATCH v3 01/22] net/ice: enable RSS RETA ops for DCF hardware Kevin Liu
2022-04-13 17:10 ` [PATCH v3 02/22] net/ice: enable RSS HASH " Kevin Liu
2022-04-13 17:10 ` [PATCH v3 03/22] net/ice: cleanup Tx buffers Kevin Liu
2022-04-13 17:10 ` [PATCH v3 04/22] net/ice: add ops MTU-SET to dcf Kevin Liu
2022-04-13 17:10 ` [PATCH v3 05/22] net/ice: add ops dev-supported-ptypes-get " Kevin Liu
2022-04-13 17:10 ` [PATCH v3 06/22] net/ice: support dcf promisc configuration Kevin Liu
2022-04-13 17:10 ` [PATCH v3 07/22] net/ice: support dcf MAC configuration Kevin Liu
2022-04-13 17:10 ` [PATCH v3 08/22] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-13 17:10 ` [PATCH v3 09/22] net/ice: support DCF new VLAN capabilities Kevin Liu
2022-04-13 17:10 ` [PATCH v3 10/22] net/ice: enable CVL DCF device reset API Kevin Liu
2022-04-13 17:10 ` [PATCH v3 11/22] net/ice: support IPv6 NVGRE tunnel Kevin Liu
2022-04-13 17:10 ` [PATCH v3 12/22] net/ice: support new pattern of IPv4 Kevin Liu
2022-04-13 17:10 ` [PATCH v3 13/22] net/ice: treat unknown package as OS default package Kevin Liu
2022-04-13 17:10 ` [PATCH v3 14/22] net/ice: handle virtchnl event message without interrupt Kevin Liu
2022-04-13 17:10 ` [PATCH v3 15/22] net/ice: add DCF request queues function Kevin Liu
2022-04-13 17:10 ` [PATCH v3 16/22] net/ice: negotiate large VF and request more queues Kevin Liu
2022-04-13 17:10 ` [PATCH v3 17/22] net/ice: enable multiple queues configurations for large VF Kevin Liu
2022-04-13 17:10 ` [PATCH v3 18/22] net/ice: enable IRQ mapping configuration " Kevin Liu
2022-04-13 17:10 ` [PATCH v3 19/22] net/ice: add enable/disable queues for DCF " Kevin Liu
2022-04-13 17:10 ` [PATCH v3 20/22] net/ice: fix DCF ACL flow engine Kevin Liu
2022-04-13 17:10 ` [PATCH v3 21/22] testpmd: force flow flush Kevin Liu
2022-04-13 17:10 ` [PATCH v3 22/22] net/ice: fix DCF reset Kevin Liu
2022-04-19 15:45 ` [PATCH v4 00/23] complete common VF features for DCF Kevin Liu
2022-04-19 15:45 ` [PATCH v4 01/23] net/ice: enable RSS RETA ops for DCF hardware Kevin Liu
2022-04-19 15:45 ` [PATCH v4 02/23] net/ice: enable RSS HASH " Kevin Liu
2022-04-19 15:45 ` [PATCH v4 03/23] net/ice: cleanup Tx buffers Kevin Liu
2022-04-19 15:45 ` [PATCH v4 04/23] net/ice: add ops MTU-SET to dcf Kevin Liu
2022-04-19 15:45 ` [PATCH v4 05/23] net/ice: add ops dev-supported-ptypes-get " Kevin Liu
2022-04-19 15:45 ` [PATCH v4 06/23] net/ice: support dcf promisc configuration Kevin Liu
2022-04-19 15:45 ` [PATCH v4 07/23] net/ice: support dcf MAC configuration Kevin Liu
2022-04-19 15:45 ` [PATCH v4 08/23] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-19 15:46 ` [PATCH v4 09/23] net/ice: support DCF new VLAN capabilities Kevin Liu
2022-04-19 15:46 ` [PATCH v4 10/23] net/ice: enable CVL DCF device reset API Kevin Liu
2022-04-19 15:46 ` [PATCH v4 11/23] net/ice: support IPv6 NVGRE tunnel Kevin Liu
2022-04-19 15:46 ` [PATCH v4 12/23] net/ice: support new pattern of IPv4 Kevin Liu
2022-04-19 15:46 ` [PATCH v4 13/23] net/ice: treat unknown package as OS default package Kevin Liu
2022-04-19 15:46 ` [PATCH v4 14/23] net/ice: handle virtchnl event message without interrupt Kevin Liu
2022-04-19 15:46 ` [PATCH v4 15/23] net/ice: add DCF request queues function Kevin Liu
2022-04-19 15:46 ` [PATCH v4 16/23] net/ice: negotiate large VF and request more queues Kevin Liu
2022-04-19 15:46 ` [PATCH v4 17/23] net/ice: enable multiple queues configurations for large VF Kevin Liu
2022-04-19 15:46 ` [PATCH v4 18/23] net/ice: enable IRQ mapping configuration " Kevin Liu
2022-04-19 15:46 ` [PATCH v4 19/23] net/ice: add enable/disable queues for DCF " Kevin Liu
2022-04-19 15:46 ` [PATCH v4 20/23] net/ice: add extended stats Kevin Liu
2022-04-19 15:46 ` [PATCH v4 21/23] net/ice: support queue information getting Kevin Liu
2022-04-19 15:46 ` [PATCH v4 22/23] net/ice: implement power management Kevin Liu
2022-04-19 15:46 ` [PATCH v4 23/23] doc: update for ice DCF datapath configuration Kevin Liu
2022-04-21 11:13 ` [PATCH v5 00/12] complete common VF features for DCF Kevin Liu
2022-04-21 11:13 ` [PATCH v5 01/12] net/ice: enable RSS RETA ops for DCF hardware Kevin Liu
2022-04-21 11:13 ` [PATCH v5 02/12] net/ice: enable RSS HASH " Kevin Liu
2022-04-21 11:13 ` [PATCH v5 03/12] net/ice: cleanup Tx buffers Kevin Liu
2022-04-21 11:13 ` [PATCH v5 04/12] net/ice: add ops MTU-SET to dcf Kevin Liu
2022-04-21 11:13 ` [PATCH v5 05/12] net/ice: add ops dev-supported-ptypes-get " Kevin Liu
2022-04-21 11:13 ` [PATCH v5 06/12] net/ice: support dcf promisc configuration Kevin Liu
2022-04-21 11:13 ` [PATCH v5 07/12] net/ice: support dcf MAC configuration Kevin Liu
2022-04-21 11:13 ` [PATCH v5 08/12] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-21 11:14 ` [PATCH v5 09/12] net/ice: add extended stats Kevin Liu
2022-04-21 11:14 ` [PATCH v5 10/12] net/ice: support queue information getting Kevin Liu
2022-04-21 11:14 ` [PATCH v5 11/12] net/ice: implement power management Kevin Liu
2022-04-21 11:14 ` [PATCH v5 12/12] doc: update for ice DCF datapath configuration Kevin Liu
2022-04-27 18:12 ` [PATCH v6 00/12] complete common VF features for DCF Kevin Liu
2022-04-27 18:12 ` [PATCH v6 01/12] net/ice: enable RSS RETA ops for DCF hardware Kevin Liu
2022-04-27 10:38 ` Zhang, Qi Z
2022-04-27 18:12 ` [PATCH v6 02/12] net/ice: enable RSS HASH " Kevin Liu
2022-04-27 18:12 ` [PATCH v6 03/12] net/ice: cleanup Tx buffers Kevin Liu
2022-04-27 10:41 ` Zhang, Qi Z
2022-04-27 18:12 ` [PATCH v6 04/12] net/ice: add ops MTU-SET to dcf Kevin Liu
2022-04-27 18:12 ` [PATCH v6 05/12] net/ice: add ops dev-supported-ptypes-get " Kevin Liu
2022-04-27 10:44 ` Zhang, Qi Z
2022-04-27 18:12 ` [PATCH v6 06/12] net/ice: support dcf promisc configuration Kevin Liu
2022-04-27 18:12 ` [PATCH v6 07/12] net/ice: support dcf MAC configuration Kevin Liu
2022-04-27 18:12 ` [PATCH v6 08/12] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-27 18:12 ` [PATCH v6 09/12] net/ice: add extended stats Kevin Liu
2022-04-27 18:12 ` [PATCH v6 10/12] net/ice: support queue information getting Kevin Liu
2022-04-27 18:13 ` [PATCH v6 11/12] net/ice: implement power management Kevin Liu
2022-04-27 18:13 ` [PATCH v6 12/12] net/ice: support DCF new VLAN capabilities Kevin Liu
2022-04-27 10:46 ` Zhang, Qi Z
2022-04-29 9:19 ` [PATCH v7 00/12] complete common VF features for DCF Kevin Liu
2022-04-29 2:32 ` Zhang, Qi Z
2022-04-29 9:19 ` [PATCH v7 01/12] net/ice: support for RSS RETA configure in DCF mode Kevin Liu
2022-04-29 9:19 ` [PATCH v7 02/12] net/ice: support for RSS HASH " Kevin Liu
2022-04-29 9:19 ` [PATCH v7 03/12] net/ice: support cleanup Tx buffers " Kevin Liu
2022-04-29 9:19 ` [PATCH v7 04/12] net/ice: support for MTU configure " Kevin Liu
2022-04-29 9:19 ` [PATCH v7 05/12] net/ice: add ops dev-supported-ptypes-get to dcf Kevin Liu
2022-04-29 9:19 ` [PATCH v7 06/12] net/ice: support dcf promisc configuration Kevin Liu
2022-04-29 9:19 ` [PATCH v7 07/12] net/ice: support dcf MAC configuration Kevin Liu
2022-04-29 9:19 ` [PATCH v7 08/12] net/ice: support dcf VLAN filter and offload configuration Kevin Liu
2022-04-29 9:19 ` [PATCH v7 09/12] net/ice: add extended stats Kevin Liu
2022-04-29 9:19 ` [PATCH v7 10/12] net/ice: support queue information getting Kevin Liu
2022-04-29 9:19 ` [PATCH v7 11/12] net/ice: add implement power management Kevin Liu
2022-04-29 9:19 ` [PATCH v7 12/12] net/ice: support DCF new VLAN capabilities Kevin Liu
2022-05-11 0:06 ` Zhang, Qi Z
2022-04-19 16:01 ` [PATCH v4 0/2] fix DCF function defect Kevin Liu
2022-04-19 16:01 ` [PATCH v4 1/2] net/ice: fix DCF ACL flow engine Kevin Liu
2022-04-20 12:01 ` Zhang, Qi Z
2022-04-19 16:01 ` [PATCH v4 2/2] net/ice: fix DCF reset Kevin Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220413160932.2074781-12-kevinx.liu@intel.com \
--to=kevinx.liu@intel.com \
--cc=dev@dpdk.org \
--cc=junfeng.guo@intel.com \
--cc=qi.z.zhang@intel.com \
--cc=qiming.yang@intel.com \
--cc=stevex.yang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).