From: Wei Zhao <wei.zhao1@intel.com>
To: dev@dpdk.org
Cc: Wenzhuo Lu <wenzhuo.lu@intel.com>, Wei Zhao <wei.zhao1@intel.com>
Subject: [PATCH v2 02/18] net/ixgbe: store flow director filter
Date: Fri, 30 Dec 2016 15:52:54 +0800 [thread overview]
Message-ID: <1483084390-53159-3-git-send-email-wei.zhao1@intel.com> (raw)
In-Reply-To: <1483084390-53159-1-git-send-email-wei.zhao1@intel.com>
Add support for storing flow director filter in SW.
Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
---
v2:
--add a fdir initialization function in device start process
---
drivers/net/ixgbe/ixgbe_ethdev.c | 55 ++++++++++++++++++++
drivers/net/ixgbe/ixgbe_ethdev.h | 19 ++++++-
drivers/net/ixgbe/ixgbe_fdir.c | 105 ++++++++++++++++++++++++++++++++++++++-
3 files changed, 176 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 316e560..de27a73 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -60,6 +60,7 @@
#include <rte_malloc.h>
#include <rte_random.h>
#include <rte_dev.h>
+#include <rte_hash_crc.h>
#include "ixgbe_logs.h"
#include "base/ixgbe_api.h"
@@ -165,6 +166,7 @@ enum ixgbevf_xcast_modes {
static int eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev);
static int eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev);
+static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev);
static int ixgbe_dev_configure(struct rte_eth_dev *dev);
static int ixgbe_dev_start(struct rte_eth_dev *dev);
static void ixgbe_dev_stop(struct rte_eth_dev *dev);
@@ -1276,6 +1278,9 @@ eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev)
/* initialize SYN filter */
filter_info->syn_info = 0;
+ /* initialize flow director filter list & hash */
+ ixgbe_fdir_filter_init(eth_dev);
+
return 0;
}
@@ -1284,6 +1289,9 @@ eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
{
struct rte_pci_device *pci_dev;
struct ixgbe_hw *hw;
+ struct ixgbe_hw_fdir_info *fdir_info =
+ IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
+ struct ixgbe_fdir_filter *fdir_filter;
PMD_INIT_FUNC_TRACE();
@@ -1317,9 +1325,56 @@ eth_ixgbe_dev_uninit(struct rte_eth_dev *eth_dev)
rte_free(eth_dev->data->hash_mac_addrs);
eth_dev->data->hash_mac_addrs = NULL;
+ /* remove all the fdir filters & hash */
+ if (fdir_info->hash_map)
+ rte_free(fdir_info->hash_map);
+ if (fdir_info->hash_handle)
+ rte_hash_free(fdir_info->hash_handle);
+
+ while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
+ TAILQ_REMOVE(&fdir_info->fdir_list,
+ fdir_filter,
+ entries);
+ rte_free(fdir_filter);
+ }
+
return 0;
}
+static int ixgbe_fdir_filter_init(struct rte_eth_dev *eth_dev)
+{
+ struct ixgbe_hw_fdir_info *fdir_info =
+ IXGBE_DEV_PRIVATE_TO_FDIR_INFO(eth_dev->data->dev_private);
+ char fdir_hash_name[RTE_HASH_NAMESIZE];
+ struct rte_hash_parameters fdir_hash_params = {
+ .name = fdir_hash_name,
+ .entries = IXGBE_MAX_FDIR_FILTER_NUM,
+ .key_len = sizeof(union ixgbe_atr_input),
+ .hash_func = rte_hash_crc,
+ .hash_func_init_val = 0,
+ .socket_id = rte_socket_id(),
+ };
+
+ TAILQ_INIT(&fdir_info->fdir_list);
+ snprintf(fdir_hash_name, RTE_HASH_NAMESIZE,
+ "fdir_%s", eth_dev->data->name);
+ fdir_info->hash_handle = rte_hash_create(&fdir_hash_params);
+ if (!fdir_info->hash_handle) {
+ PMD_INIT_LOG(ERR, "Failed to create fdir hash table!");
+ return -EINVAL;
+ }
+ fdir_info->hash_map = rte_zmalloc("ixgbe",
+ sizeof(struct ixgbe_fdir_filter *) *
+ IXGBE_MAX_FDIR_FILTER_NUM,
+ 0);
+ if (!fdir_info->hash_map) {
+ PMD_INIT_LOG(ERR,
+ "Failed to allocate memory for fdir hash map!");
+ return -ENOMEM;
+ }
+
+ return 0;
+}
/*
* Negotiate mailbox API version with the PF.
* After reset API version is always set to the basic one (ixgbe_mbox_api_10).
diff --git a/drivers/net/ixgbe/ixgbe_ethdev.h b/drivers/net/ixgbe/ixgbe_ethdev.h
index 827026c..8310220 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.h
+++ b/drivers/net/ixgbe/ixgbe_ethdev.h
@@ -38,6 +38,7 @@
#include "base/ixgbe_dcb_82598.h"
#include "ixgbe_bypass.h"
#include <rte_time.h>
+#include <rte_hash.h>
/* need update link, bit flag */
#define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)
@@ -130,10 +131,11 @@
#define IXGBE_MISC_VEC_ID RTE_INTR_VEC_ZERO_OFFSET
#define IXGBE_RX_VEC_START RTE_INTR_VEC_RXTX_OFFSET
+#define IXGBE_MAX_FDIR_FILTER_NUM (1024 * 32)
+
/*
* Information about the fdir mode.
*/
-
struct ixgbe_hw_fdir_mask {
uint16_t vlan_tci_mask;
uint32_t src_ipv4_mask;
@@ -148,6 +150,17 @@ struct ixgbe_hw_fdir_mask {
uint8_t tunnel_type_mask;
};
+struct ixgbe_fdir_filter {
+ TAILQ_ENTRY(ixgbe_fdir_filter) entries;
+ union ixgbe_atr_input ixgbe_fdir; /* key of fdir filter*/
+ uint32_t fdirflags; /* drop or forward */
+ uint32_t fdirhash; /* hash value for fdir */
+ uint8_t queue; /* assigned rx queue */
+};
+
+/* list of fdir filters */
+TAILQ_HEAD(ixgbe_fdir_filter_list, ixgbe_fdir_filter);
+
struct ixgbe_hw_fdir_info {
struct ixgbe_hw_fdir_mask mask;
uint8_t flex_bytes_offset;
@@ -159,6 +172,10 @@ struct ixgbe_hw_fdir_info {
uint64_t remove;
uint64_t f_add;
uint64_t f_remove;
+ struct ixgbe_fdir_filter_list fdir_list; /* filter list*/
+ /* store the pointers of the filters, index is the hash value. */
+ struct ixgbe_fdir_filter **hash_map;
+ struct rte_hash *hash_handle; /* cuckoo hash handler */
};
/* structure for interrupt relative data */
diff --git a/drivers/net/ixgbe/ixgbe_fdir.c b/drivers/net/ixgbe/ixgbe_fdir.c
index 4b81ee3..bfcd294 100644
--- a/drivers/net/ixgbe/ixgbe_fdir.c
+++ b/drivers/net/ixgbe/ixgbe_fdir.c
@@ -43,6 +43,7 @@
#include <rte_pci.h>
#include <rte_ether.h>
#include <rte_ethdev.h>
+#include <rte_malloc.h>
#include "ixgbe_logs.h"
#include "base/ixgbe_api.h"
@@ -1075,6 +1076,65 @@ fdir_erase_filter_82599(struct ixgbe_hw *hw, uint32_t fdirhash)
}
+static inline struct ixgbe_fdir_filter *
+ixgbe_fdir_filter_lookup(struct ixgbe_hw_fdir_info *fdir_info,
+ union ixgbe_atr_input *key)
+{
+ int ret = 0;
+
+ ret = rte_hash_lookup(fdir_info->hash_handle, (const void *)key);
+ if (ret < 0)
+ return NULL;
+
+ return fdir_info->hash_map[ret];
+}
+
+static inline int
+ixgbe_insert_fdir_filter(struct ixgbe_hw_fdir_info *fdir_info,
+ struct ixgbe_fdir_filter *fdir_filter)
+{
+ int ret = 0;
+
+ ret = rte_hash_add_key(fdir_info->hash_handle,
+ &fdir_filter->ixgbe_fdir);
+
+ if (ret < 0) {
+ PMD_DRV_LOG(ERR,
+ "Failed to insert fdir filter to hash table %d!",
+ ret);
+ return ret;
+ }
+
+ fdir_info->hash_map[ret] = fdir_filter;
+
+ TAILQ_INSERT_TAIL(&fdir_info->fdir_list, fdir_filter, entries);
+
+ return 0;
+}
+
+static inline int
+ixgbe_remove_fdir_filter(struct ixgbe_hw_fdir_info *fdir_info,
+ union ixgbe_atr_input *key)
+{
+ int ret = 0;
+ struct ixgbe_fdir_filter *fdir_filter;
+
+ ret = rte_hash_del_key(fdir_info->hash_handle, key);
+
+ if (ret < 0) {
+ PMD_DRV_LOG(ERR, "No such fdir filter to delete %d!", ret);
+ return ret;
+ }
+
+ fdir_filter = fdir_info->hash_map[ret];
+ fdir_info->hash_map[ret] = NULL;
+
+ TAILQ_REMOVE(&fdir_info->fdir_list, fdir_filter, entries);
+ rte_free(fdir_filter);
+
+ return 0;
+}
+
/*
* ixgbe_add_del_fdir_filter - add or remove a flow diretor filter.
* @dev: pointer to the structure rte_eth_dev
@@ -1098,6 +1158,8 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev,
struct ixgbe_hw_fdir_info *info =
IXGBE_DEV_PRIVATE_TO_FDIR_INFO(dev->data->dev_private);
enum rte_fdir_mode fdir_mode = dev->data->dev_conf.fdir_conf.mode;
+ struct ixgbe_fdir_filter *node;
+ bool add_node = FALSE;
if (fdir_mode == RTE_FDIR_MODE_NONE)
return -ENOTSUP;
@@ -1148,6 +1210,10 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev,
dev->data->dev_conf.fdir_conf.pballoc);
if (del) {
+ err = ixgbe_remove_fdir_filter(info, &input);
+ if (err < 0)
+ return err;
+
err = fdir_erase_filter_82599(hw, fdirhash);
if (err < 0)
PMD_DRV_LOG(ERR, "Fail to delete FDIR filter!");
@@ -1172,6 +1238,37 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev,
else
return -EINVAL;
+ node = ixgbe_fdir_filter_lookup(info, &input);
+ if (node) {
+ if (update) {
+ node->fdirflags = fdircmd_flags;
+ node->fdirhash = fdirhash;
+ node->queue = queue;
+ } else {
+ PMD_DRV_LOG(ERR, "Conflict with existing fdir filter!");
+ return -EINVAL;
+ }
+ } else {
+ add_node = TRUE;
+ node = rte_zmalloc("ixgbe_fdir",
+ sizeof(struct ixgbe_fdir_filter),
+ 0);
+ if (!node)
+ return -ENOMEM;
+ (void)rte_memcpy(&node->ixgbe_fdir,
+ &input,
+ sizeof(union ixgbe_atr_input));
+ node->fdirflags = fdircmd_flags;
+ node->fdirhash = fdirhash;
+ node->queue = queue;
+
+ err = ixgbe_insert_fdir_filter(info, node);
+ if (err < 0) {
+ rte_free(node);
+ return err;
+ }
+ }
+
if (is_perfect) {
err = fdir_write_perfect_filter_82599(hw, &input, queue,
fdircmd_flags, fdirhash,
@@ -1180,10 +1277,14 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev,
err = fdir_add_signature_filter_82599(hw, &input, queue,
fdircmd_flags, fdirhash);
}
- if (err < 0)
+ if (err < 0) {
PMD_DRV_LOG(ERR, "Fail to add FDIR filter!");
- else
+
+ if (add_node)
+ (void)ixgbe_remove_fdir_filter(info, &input);
+ } else {
PMD_DRV_LOG(DEBUG, "Success to add FDIR filter");
+ }
return err;
}
--
2.5.5
next prev parent reply other threads:[~2016-12-30 7:57 UTC|newest]
Thread overview: 149+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-30 7:52 [PATCH v2 00/18] net/ixgbe: Consistent filter API Wei Zhao
2016-12-30 7:52 ` [PATCH v2 01/18] net/ixgbe: store SYN filter Wei Zhao
2017-01-03 14:33 ` Dai, Wei
2017-01-04 1:46 ` Zhao1, Wei
2017-01-06 16:28 ` Ferruh Yigit
2017-01-10 5:33 ` Zhao1, Wei
2017-01-12 8:12 ` [PATCH v3 00/18] net/ixgbe: Consistent filter API Wei Zhao
2017-01-12 8:13 ` [PATCH v3 01/18] net/ixgbe: store TCP SYN filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 02/18] net/ixgbe: store flow director filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 03/18] net/ixgbe: store L2 tunnel filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 04/18] net/ixgbe: restore n-tuple filter Add support for restoring n-tuple filter in SW Wei Zhao
2017-01-12 8:13 ` [PATCH v3 4/9] " Wei Zhao
2017-01-12 8:13 ` [PATCH v3 05/18] net/ixgbe: restore ether type filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 06/18] net/ixgbe: restore TCP SYN filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 07/18] net/ixgbe: restore flow director filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 08/18] net/ixgbe: restore L2 tunnel filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 09/18] net/ixgbe: store and restore L2 tunnel configuration Wei Zhao
2017-01-12 8:13 ` [PATCH v3 10/18] net/ixgbe: flush all the filters Wei Zhao
2017-01-12 8:13 ` [PATCH v3 11/18] net/ixgbe: parse n-tuple filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 12/18] net/ixgbe: parse ethertype filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 13/18] net/ixgbe: parse TCP SYN filter check if the rule is a TCP SYN rule, and get the SYN info Wei Zhao
2017-01-12 8:13 ` [PATCH v3 14/18] net/ixgbe: parse L2 tunnel filter check if the rule is a L2 tunnel rule, and get the L2 tunnel info Wei Zhao
2017-01-12 8:13 ` [PATCH v3 15/18] net/ixgbe: parse flow director filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 16/18] net/ixgbe: create consistent filter Wei Zhao
2017-01-12 8:13 ` [PATCH v3 17/18] net/ixgbe: destroy " Wei Zhao
2017-01-12 8:13 ` [PATCH v3 18/18] net/ixgbe: flush all the filter list Wei Zhao
2017-01-12 8:40 ` [PATCH v4 00/18] net/ixgbe: Consistent filter API Wei Zhao
2017-01-12 8:40 ` [PATCH v4 01/18] net/ixgbe: store TCP SYN filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 02/18] net/ixgbe: store flow director filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 03/18] net/ixgbe: store L2 tunnel filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 04/18] net/ixgbe: restore n-tuple filter Add support for restoring n-tuple filter in SW Wei Zhao
2017-01-12 8:40 ` [PATCH v4 05/18] net/ixgbe: restore ether type filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 06/18] net/ixgbe: restore TCP SYN filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 07/18] net/ixgbe: restore flow director filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 08/18] net/ixgbe: restore L2 tunnel filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 09/18] net/ixgbe: store and restore L2 tunnel configuration Wei Zhao
2017-01-12 8:40 ` [PATCH v4 10/18] net/ixgbe: flush all the filters Wei Zhao
2017-01-12 8:40 ` [PATCH v4 11/18] net/ixgbe: parse n-tuple filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 12/18] net/ixgbe: parse ethertype filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 13/18] net/ixgbe: parse TCP SYN filter check if the rule is a TCP SYN rule, and get the SYN info Wei Zhao
2017-01-12 8:40 ` [PATCH v4 14/18] net/ixgbe: parse L2 tunnel filter check if the rule is a L2 tunnel rule, and get the L2 tunnel info Wei Zhao
2017-01-12 8:40 ` [PATCH v4 15/18] net/ixgbe: parse flow director filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 16/18] net/ixgbe: create consistent filter Wei Zhao
2017-01-12 8:40 ` [PATCH v4 17/18] net/ixgbe: destroy " Wei Zhao
2017-01-12 8:40 ` [PATCH v4 18/18] net/ixgbe: flush all the filter list Wei Zhao
2017-01-12 9:17 ` [PATCH v5 00/18] net/ixgbe: Consistent filter API Wei Zhao
2017-01-12 9:17 ` [PATCH v5 01/18] net/ixgbe: store TCP SYN filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 02/18] net/ixgbe: store flow director filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 03/18] net/ixgbe: store L2 tunnel filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 04/18] net/ixgbe: restore n-tuple filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 05/18] net/ixgbe: restore ether type filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 06/18] net/ixgbe: restore TCP SYN filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 07/18] net/ixgbe: restore flow director filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 08/18] net/ixgbe: restore L2 tunnel filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 09/18] net/ixgbe: store and restore L2 tunnel configuration Wei Zhao
2017-01-12 9:17 ` [PATCH v5 10/18] net/ixgbe: flush all the filters Wei Zhao
2017-01-12 9:17 ` [PATCH v5 11/18] net/ixgbe: parse n-tuple filter Wei Zhao
2017-01-12 15:40 ` Ferruh Yigit
2017-01-12 9:17 ` [PATCH v5 12/18] net/ixgbe: parse ethertype filter Wei Zhao
2017-01-12 15:39 ` Ferruh Yigit
2017-01-12 9:17 ` [PATCH v5 13/18] net/ixgbe: parse TCP SYN filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 14/18] net/ixgbe: parse L2 tunnel filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 15/18] net/ixgbe: parse flow director filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 16/18] net/ixgbe: create consistent filter Wei Zhao
2017-01-12 9:17 ` [PATCH v5 17/18] net/ixgbe: destroy " Wei Zhao
2017-01-12 9:17 ` [PATCH v5 18/18] net/ixgbe: flush all the filter list Wei Zhao
2017-01-12 11:38 ` [PATCH v5 00/18] net/ixgbe: Consistent filter API Xing, Beilei
2017-01-13 6:27 ` Dai, Wei
2017-01-12 15:43 ` Ferruh Yigit
2017-01-13 8:12 ` [PATCH v6 " Wei Zhao
2017-01-13 8:12 ` [PATCH v6 01/18] net/ixgbe: store TCP SYN filter Wei Zhao
2017-01-13 8:12 ` [PATCH v6 02/18] net/ixgbe: store flow director filter Wei Zhao
2017-01-13 8:12 ` [PATCH v6 03/18] net/ixgbe: store L2 tunnel filter Wei Zhao
2017-01-13 8:12 ` [PATCH v6 04/18] net/ixgbe: restore n-tuple filter Wei Zhao
2017-01-13 8:12 ` [PATCH v6 05/18] net/ixgbe: restore ether type filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 06/18] net/ixgbe: restore TCP SYN filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 07/18] net/ixgbe: restore flow director filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 08/18] net/ixgbe: restore L2 tunnel filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 09/18] net/ixgbe: store and restore L2 tunnel configuration Wei Zhao
2017-01-13 8:13 ` [PATCH v6 10/18] net/ixgbe: flush all the filters Wei Zhao
2017-01-13 8:13 ` [PATCH v6 11/18] net/ixgbe: parse n-tuple filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 12/18] net/ixgbe: parse ethertype filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 13/18] net/ixgbe: parse TCP SYN filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 14/18] net/ixgbe: parse L2 tunnel filter Wei Zhao
2017-01-13 11:18 ` Ferruh Yigit
2017-01-16 13:03 ` Adrien Mazarguil
2017-01-16 16:39 ` Ferruh Yigit
2017-01-16 18:26 ` Adrien Mazarguil
2017-01-17 9:27 ` Zhao1, Wei
2017-01-17 10:03 ` Ferruh Yigit
2017-01-18 1:59 ` Zhao1, Wei
2017-01-18 17:49 ` Ferruh Yigit
2017-01-25 12:17 ` Ferruh Yigit
2017-01-13 8:13 ` [PATCH v6 15/18] net/ixgbe: parse flow director filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 16/18] net/ixgbe: create consistent filter Wei Zhao
2017-01-13 8:13 ` [PATCH v6 17/18] net/ixgbe: destroy " Wei Zhao
2017-01-13 8:13 ` [PATCH v6 18/18] net/ixgbe: flush all the filter list Wei Zhao
2017-01-13 15:54 ` [PATCH v6 00/18] net/ixgbe: Consistent filter API Ferruh Yigit
2017-01-15 2:44 ` Lu, Wenzhuo
2017-01-18 11:04 ` Thomas Monjalon
2016-12-30 7:52 ` Wei Zhao [this message]
2017-01-02 9:59 ` [PATCH v2 02/18] net/ixgbe: store flow director filter Xing, Beilei
2017-01-03 3:14 ` Zhao1, Wei
2017-01-03 14:28 ` Dai, Wei
2017-01-04 2:03 ` Zhao1, Wei
2017-01-06 16:31 ` Ferruh Yigit
2017-01-10 5:30 ` Zhao1, Wei
2016-12-30 7:52 ` [PATCH v2 03/18] net/ixgbe: store L2 tunnel filter Wei Zhao
2017-01-02 10:06 ` Xing, Beilei
2016-12-30 7:52 ` [PATCH v2 04/18] net/ixgbe: restore n-tuple filter Wei Zhao
2016-12-30 7:52 ` [PATCH v2 05/18] net/ixgbe: restore ether type filter Wei Zhao
2016-12-30 7:52 ` [PATCH v2 06/18] net/ixgbe: restore TCP SYN filter Wei Zhao
2016-12-30 7:52 ` [PATCH v2 07/18] net/ixgbe: restore flow director filter Wei Zhao
2016-12-30 7:53 ` [PATCH v2 08/18] net/ixgbe: restore L2 tunnel filter Wei Zhao
2016-12-30 7:53 ` [PATCH v2 09/18] net/ixgbe: store and restore L2 tunnel configuration Wei Zhao
2017-01-02 10:18 ` Xing, Beilei
2016-12-30 7:53 ` [PATCH v2 10/18] net/ixgbe: flush all the filters Wei Zhao
2017-01-06 16:40 ` Ferruh Yigit
2017-01-11 7:51 ` Zhao1, Wei
2016-12-30 7:53 ` [PATCH v2 11/18] net/ixgbe: parse n-tuple filter Wei Zhao
2017-01-02 10:41 ` Xing, Beilei
2017-01-02 10:45 ` Xing, Beilei
2017-01-06 16:55 ` Ferruh Yigit
2017-01-11 8:27 ` Zhao1, Wei
2016-12-30 7:53 ` [PATCH v2 12/18] net/ixgbe: parse ethertype filter Wei Zhao
2017-01-06 17:11 ` Ferruh Yigit
2017-01-11 8:54 ` Zhao1, Wei
2016-12-30 7:53 ` [PATCH v2 13/18] net/ixgbe: parse TCP SYN filter Wei Zhao
2017-01-06 17:19 ` Ferruh Yigit
2017-01-10 5:46 ` Zhao1, Wei
2017-01-11 9:11 ` Zhao1, Wei
2016-12-30 7:53 ` [PATCH v2 14/18] net/ixgbe: parse L2 tunnel filter Wei Zhao
2017-01-03 14:07 ` Adrien Mazarguil
2017-01-05 3:12 ` Zhao1, Wei
2017-01-05 8:52 ` Adrien Mazarguil
2016-12-30 7:53 ` [PATCH v2 15/18] net/ixgbe: parse flow director filter Wei Zhao
2017-01-02 15:24 ` Xing, Beilei
2017-01-03 3:05 ` Zhao1, Wei
2017-01-03 3:19 ` Zhao1, Wei
2017-01-03 14:08 ` Adrien Mazarguil
2016-12-30 7:53 ` [PATCH v2 16/18] net/ixgbe: create consistent filter Wei Zhao
2017-01-03 2:04 ` Xing, Beilei
2017-01-03 3:11 ` Zhao1, Wei
[not found] ` <94479800C636CB44BD422CB454846E013158D036@SHSMSX101.ccr.corp.intel.com>
2017-01-03 3:09 ` Zhao1, Wei
2017-01-03 5:24 ` Xing, Beilei
2017-01-06 17:26 ` Ferruh Yigit
2017-01-10 5:50 ` Zhao1, Wei
2016-12-30 7:53 ` [PATCH v2 17/18] net/ixgbe: destroy " Wei Zhao
2016-12-30 7:53 ` [PATCH v2 18/18] net/ixgbe: flush all the filter list Wei Zhao
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=1483084390-53159-3-git-send-email-wei.zhao1@intel.com \
--to=wei.zhao1@intel.com \
--cc=dev@dpdk.org \
--cc=wenzhuo.lu@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.