DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 0/3] Support for flow director behavior "other" on Intel FVL NIC
@ 2015-09-29 14:26 Andrey Chilikin
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior Andrey Chilikin
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-29 14:26 UTC (permalink / raw)
  To: dev

This patch set adds 1 new flow director behavior "other" on Intel X(L)710 NIC.
When this mode is selected flow director will direct packet to LAN while the queue is defined by other filters. This can be used to extract flexible payload to RX desriptor with the flow director filter while targeted queue will be defined by other filters, for example, by hash filter (RSS).

Andrey Chilikin (3):
  librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior
  i40e: add RTE_ETH_FDIR_OTHER processing for flow director behavior
  ixgbe: add check for supported flow director behavior

 drivers/net/i40e/i40e_fdir.c    |   12 ++++++++++--
 drivers/net/ixgbe/ixgbe_fdir.c  |    3 ++-
 lib/librte_ether/rte_eth_ctrl.h |    1 +
 3 files changed, 13 insertions(+), 3 deletions(-)

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior
  2015-09-29 14:26 [dpdk-dev] [PATCH 0/3] Support for flow director behavior "other" on Intel FVL NIC Andrey Chilikin
@ 2015-09-29 14:26 ` Andrey Chilikin
  2015-09-29 14:38   ` Bruce Richardson
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 2/3] i40e: add RTE_ETH_FDIR_OTHER processing " Andrey Chilikin
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-29 14:26 UTC (permalink / raw)
  To: dev

Add new flow director behavior RTE_ETH_FDIR_OTHER to assign a queue by other filters

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 lib/librte_ether/rte_eth_ctrl.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h
index 26b7b33..3acf501 100644
--- a/lib/librte_ether/rte_eth_ctrl.h
+++ b/lib/librte_ether/rte_eth_ctrl.h
@@ -417,6 +417,7 @@ struct rte_eth_fdir_input {
 enum rte_eth_fdir_behavior {
 	RTE_ETH_FDIR_ACCEPT = 0,
 	RTE_ETH_FDIR_REJECT,
+	RTE_ETH_FDIR_OTHER,
 };
 
 /**
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH 2/3] i40e: add RTE_ETH_FDIR_OTHER processing for flow director behavior
  2015-09-29 14:26 [dpdk-dev] [PATCH 0/3] Support for flow director behavior "other" on Intel FVL NIC Andrey Chilikin
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior Andrey Chilikin
@ 2015-09-29 14:26 ` Andrey Chilikin
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 3/3] ixgbe: add check for supported flow director behaviors Andrey Chilikin
  2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
  3 siblings, 0 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-29 14:26 UTC (permalink / raw)
  To: dev

Add support for RTE_ETH_FDIR_OTHER flow director behavior so output queue is assigned by other filters

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 drivers/net/i40e/i40e_fdir.c |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/drivers/net/i40e/i40e_fdir.c b/drivers/net/i40e/i40e_fdir.c
index c9ce98f..e2de4c5 100644
--- a/drivers/net/i40e/i40e_fdir.c
+++ b/drivers/net/i40e/i40e_fdir.c
@@ -1103,8 +1103,16 @@ i40e_fdir_filter_programming(struct i40e_pf *pf,
 
 	if (fdir_action->behavior == RTE_ETH_FDIR_REJECT)
 		dest = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET;
-	else
-		dest = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX;
+	else if (fdir_action->behavior == RTE_ETH_FDIR_ACCEPT)
+ 		dest = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX;
+	else if (fdir_action->behavior == RTE_ETH_FDIR_OTHER)
+		dest = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_OTHER;
+	else {
+		PMD_DRV_LOG(ERR, "Failed to program FDIR filter:"
+			    " unsupported fdir behavior.");
+		return -EINVAL;
+	}
+
 	fdirdp->dtype_cmd_cntindex |= rte_cpu_to_le_32((dest <<
 				I40E_TXD_FLTR_QW1_DEST_SHIFT) &
 				I40E_TXD_FLTR_QW1_DEST_MASK);
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH 3/3] ixgbe: add check for supported flow director behaviors
  2015-09-29 14:26 [dpdk-dev] [PATCH 0/3] Support for flow director behavior "other" on Intel FVL NIC Andrey Chilikin
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior Andrey Chilikin
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 2/3] i40e: add RTE_ETH_FDIR_OTHER processing " Andrey Chilikin
@ 2015-09-29 14:26 ` Andrey Chilikin
  2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
  3 siblings, 0 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-29 14:26 UTC (permalink / raw)
  To: dev

Handle only supported flow director behaviors

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 drivers/net/ixgbe/ixgbe_fdir.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/ixgbe/ixgbe_fdir.c b/drivers/net/ixgbe/ixgbe_fdir.c
index 5c8b833..cf0e8be 100644
--- a/drivers/net/ixgbe/ixgbe_fdir.c
+++ b/drivers/net/ixgbe/ixgbe_fdir.c
@@ -959,7 +959,8 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev,
 				" signature mode.");
 			return -EINVAL;
 		}
-	} else if (fdir_filter->action.rx_queue < IXGBE_MAX_RX_QUEUE_NUM)
+	} else if (fdir_filter->action.behavior == RTE_ETH_FDIR_ACCEPT &&
+			fdir_filter->action.rx_queue < IXGBE_MAX_RX_QUEUE_NUM)
 		queue = (uint8_t)fdir_filter->action.rx_queue;
 	else
 		return -EINVAL;
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior Andrey Chilikin
@ 2015-09-29 14:38   ` Bruce Richardson
  2015-09-29 14:48     ` Chilikin, Andrey
  0 siblings, 1 reply; 13+ messages in thread
From: Bruce Richardson @ 2015-09-29 14:38 UTC (permalink / raw)
  To: Andrey Chilikin; +Cc: dev

On Tue, Sep 29, 2015 at 03:26:38PM +0100, Andrey Chilikin wrote:
> Add new flow director behavior RTE_ETH_FDIR_OTHER to assign a queue by other filters
> 
> Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
> ---
>  lib/librte_ether/rte_eth_ctrl.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h
> index 26b7b33..3acf501 100644
> --- a/lib/librte_ether/rte_eth_ctrl.h
> +++ b/lib/librte_ether/rte_eth_ctrl.h
> @@ -417,6 +417,7 @@ struct rte_eth_fdir_input {
>  enum rte_eth_fdir_behavior {
>  	RTE_ETH_FDIR_ACCEPT = 0,
>  	RTE_ETH_FDIR_REJECT,
> +	RTE_ETH_FDIR_OTHER,
>  };
>  
>  /**
> -- 
> 1.7.4.1
> 
Is "OTHER" meant to be a "NOOP" or a generic hold-all for a set of other possible
behaviours. From the description, I would assume NOOP - in which case would
RTE_ETH_FDIR_NOOP not be a better name?

/Bruce

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior
  2015-09-29 14:38   ` Bruce Richardson
@ 2015-09-29 14:48     ` Chilikin, Andrey
  2015-09-29 14:53       ` Bruce Richardson
  0 siblings, 1 reply; 13+ messages in thread
From: Chilikin, Andrey @ 2015-09-29 14:48 UTC (permalink / raw)
  To: Richardson, Bruce; +Cc: dev

> -----Original Message-----
> From: Richardson, Bruce
> Sent: Tuesday, September 29, 2015 3:38 PM
> To: Chilikin, Andrey
> Cc: dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER
> for flow director behavior
> 
> On Tue, Sep 29, 2015 at 03:26:38PM +0100, Andrey Chilikin wrote:
> > Add new flow director behavior RTE_ETH_FDIR_OTHER to assign a queue by
> > other filters
> >
> > Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
> > ---
> >  lib/librte_ether/rte_eth_ctrl.h |    1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> >
> > diff --git a/lib/librte_ether/rte_eth_ctrl.h
> > b/lib/librte_ether/rte_eth_ctrl.h index 26b7b33..3acf501 100644
> > --- a/lib/librte_ether/rte_eth_ctrl.h
> > +++ b/lib/librte_ether/rte_eth_ctrl.h
> > @@ -417,6 +417,7 @@ struct rte_eth_fdir_input {  enum
> > rte_eth_fdir_behavior {
> >  	RTE_ETH_FDIR_ACCEPT = 0,
> >  	RTE_ETH_FDIR_REJECT,
> > +	RTE_ETH_FDIR_OTHER,
> >  };
> >
> >  /**
> > --
> > 1.7.4.1
> >
> Is "OTHER" meant to be a "NOOP" or a generic hold-all for a set of other
> possible behaviours. From the description, I would assume NOOP - in which
> case would RTE_ETH_FDIR_NOOP not be a better name?
> 
> /Bruce
"NOOP" sounds like no operation at all, but FD still performs matching and extracts flexible payload to the RX descriptor, it only skips queue assignment which is done by other filters with lower priority. Maybe RTE_ETH_FDIR_PASSTHRU?

Regards,
Andrey

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior
  2015-09-29 14:48     ` Chilikin, Andrey
@ 2015-09-29 14:53       ` Bruce Richardson
  0 siblings, 0 replies; 13+ messages in thread
From: Bruce Richardson @ 2015-09-29 14:53 UTC (permalink / raw)
  To: Chilikin, Andrey; +Cc: dev

On Tue, Sep 29, 2015 at 03:48:32PM +0100, Chilikin, Andrey wrote:
> > -----Original Message-----
> > From: Richardson, Bruce
> > Sent: Tuesday, September 29, 2015 3:38 PM
> > To: Chilikin, Andrey
> > Cc: dev@dpdk.org
> > Subject: Re: [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER
> > for flow director behavior
> > 
> > On Tue, Sep 29, 2015 at 03:26:38PM +0100, Andrey Chilikin wrote:
> > > Add new flow director behavior RTE_ETH_FDIR_OTHER to assign a queue by
> > > other filters
> > >
> > > Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
> > > ---
> > >  lib/librte_ether/rte_eth_ctrl.h |    1 +
> > >  1 files changed, 1 insertions(+), 0 deletions(-)
> > >
> > > diff --git a/lib/librte_ether/rte_eth_ctrl.h
> > > b/lib/librte_ether/rte_eth_ctrl.h index 26b7b33..3acf501 100644
> > > --- a/lib/librte_ether/rte_eth_ctrl.h
> > > +++ b/lib/librte_ether/rte_eth_ctrl.h
> > > @@ -417,6 +417,7 @@ struct rte_eth_fdir_input {  enum
> > > rte_eth_fdir_behavior {
> > >  	RTE_ETH_FDIR_ACCEPT = 0,
> > >  	RTE_ETH_FDIR_REJECT,
> > > +	RTE_ETH_FDIR_OTHER,
> > >  };
> > >
> > >  /**
> > > --
> > > 1.7.4.1
> > >
> > Is "OTHER" meant to be a "NOOP" or a generic hold-all for a set of other
> > possible behaviours. From the description, I would assume NOOP - in which
> > case would RTE_ETH_FDIR_NOOP not be a better name?
> > 
> > /Bruce
> "NOOP" sounds like no operation at all, but FD still performs matching and 
> extracts flexible payload to the RX descriptor, it only skips queue assignment
> which is done by other filters with lower priority. Maybe RTE_ETH_FDIR_PASSTHRU?
> 
> Regards,
> Andrey

PASSTHRU seems good to me. It's clearer than "OTHER" anyway :-)

/Bruce

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC
  2015-09-29 14:26 [dpdk-dev] [PATCH 0/3] Support for flow director behavior "other" on Intel FVL NIC Andrey Chilikin
                   ` (2 preceding siblings ...)
  2015-09-29 14:26 ` [dpdk-dev] [PATCH 3/3] ixgbe: add check for supported flow director behaviors Andrey Chilikin
@ 2015-09-30 13:43 ` Andrey Chilikin
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 1/3] librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior Andrey Chilikin
                     ` (3 more replies)
  3 siblings, 4 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-30 13:43 UTC (permalink / raw)
  To: dev

This patch set adds new flow director behavior "passthru" on Intel X(L)710 NIC.
When this mode is selected flow director will direct packet to LAN while the queue is defined by other filters. This can be used to extract flexible payload to RX desriptor with the flow director filter while targeted queue will be defined by other filters, for example, by hash filter (RSS).

v2: rename RTE_ETH_FDIR_OTHER to RTE_ETH_FDIR_PASSTHRU

Andrey Chilikin (3):
  librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior
  i40e: add RTE_ETH_FDIR_PASSTHRU processing for flow director behavior
  ixgbe: add check for supported flow director behaviors

 drivers/net/i40e/i40e_fdir.c    |   12 ++++++++++--
 drivers/net/ixgbe/ixgbe_fdir.c  |    3 ++-
 lib/librte_ether/rte_eth_ctrl.h |    1 +
 3 files changed, 13 insertions(+), 3 deletions(-)

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH v2 1/3] librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior
  2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
@ 2015-09-30 13:43   ` Andrey Chilikin
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 2/3] i40e: add RTE_ETH_FDIR_PASSTHRU processing " Andrey Chilikin
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-30 13:43 UTC (permalink / raw)
  To: dev

Add new flow director behavior RTE_ETH_FDIR_PASSTHRU to assign a queue by other filters

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 lib/librte_ether/rte_eth_ctrl.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h
index 26b7b33..a0a6aab 100644
--- a/lib/librte_ether/rte_eth_ctrl.h
+++ b/lib/librte_ether/rte_eth_ctrl.h
@@ -417,6 +417,7 @@ struct rte_eth_fdir_input {
 enum rte_eth_fdir_behavior {
 	RTE_ETH_FDIR_ACCEPT = 0,
 	RTE_ETH_FDIR_REJECT,
+	RTE_ETH_FDIR_PASSTHRU,
 };
 
 /**
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH v2 2/3] i40e: add RTE_ETH_FDIR_PASSTHRU processing for flow director behavior
  2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 1/3] librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior Andrey Chilikin
@ 2015-09-30 13:43   ` Andrey Chilikin
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 3/3] ixgbe: add check for supported flow director behaviors Andrey Chilikin
  2015-10-19  1:51   ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Wu, Jingjing
  3 siblings, 0 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-30 13:43 UTC (permalink / raw)
  To: dev

Add support for RTE_ETH_FDIR_PASSTHRU flow director behavior so output queue is assigned by other filters

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 drivers/net/i40e/i40e_fdir.c |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/drivers/net/i40e/i40e_fdir.c b/drivers/net/i40e/i40e_fdir.c
index c9ce98f..45a372c 100644
--- a/drivers/net/i40e/i40e_fdir.c
+++ b/drivers/net/i40e/i40e_fdir.c
@@ -1103,8 +1103,16 @@ i40e_fdir_filter_programming(struct i40e_pf *pf,
 
 	if (fdir_action->behavior == RTE_ETH_FDIR_REJECT)
 		dest = I40E_FILTER_PROGRAM_DESC_DEST_DROP_PACKET;
-	else
-		dest = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX;
+	else if (fdir_action->behavior == RTE_ETH_FDIR_ACCEPT)
+ 		dest = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX;
+	else if (fdir_action->behavior == RTE_ETH_FDIR_PASSTHRU)
+		dest = I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_OTHER;
+	else {
+		PMD_DRV_LOG(ERR, "Failed to program FDIR filter:"
+			    " unsupported fdir behavior.");
+		return -EINVAL;
+	}
+
 	fdirdp->dtype_cmd_cntindex |= rte_cpu_to_le_32((dest <<
 				I40E_TXD_FLTR_QW1_DEST_SHIFT) &
 				I40E_TXD_FLTR_QW1_DEST_MASK);
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [dpdk-dev] [PATCH v2 3/3] ixgbe: add check for supported flow director behaviors
  2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 1/3] librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior Andrey Chilikin
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 2/3] i40e: add RTE_ETH_FDIR_PASSTHRU processing " Andrey Chilikin
@ 2015-09-30 13:43   ` Andrey Chilikin
  2015-10-19  1:51   ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Wu, Jingjing
  3 siblings, 0 replies; 13+ messages in thread
From: Andrey Chilikin @ 2015-09-30 13:43 UTC (permalink / raw)
  To: dev

Handle only supported flow director behaviors

Signed-off-by: Andrey Chilikin <andrey.chilikin@intel.com>
---
 drivers/net/ixgbe/ixgbe_fdir.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/ixgbe/ixgbe_fdir.c b/drivers/net/ixgbe/ixgbe_fdir.c
index 5c8b833..cf0e8be 100644
--- a/drivers/net/ixgbe/ixgbe_fdir.c
+++ b/drivers/net/ixgbe/ixgbe_fdir.c
@@ -959,7 +959,8 @@ ixgbe_add_del_fdir_filter(struct rte_eth_dev *dev,
 				" signature mode.");
 			return -EINVAL;
 		}
-	} else if (fdir_filter->action.rx_queue < IXGBE_MAX_RX_QUEUE_NUM)
+	} else if (fdir_filter->action.behavior == RTE_ETH_FDIR_ACCEPT &&
+			fdir_filter->action.rx_queue < IXGBE_MAX_RX_QUEUE_NUM)
 		queue = (uint8_t)fdir_filter->action.rx_queue;
 	else
 		return -EINVAL;
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC
  2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
                     ` (2 preceding siblings ...)
  2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 3/3] ixgbe: add check for supported flow director behaviors Andrey Chilikin
@ 2015-10-19  1:51   ` Wu, Jingjing
  2015-11-04 21:54     ` Thomas Monjalon
  3 siblings, 1 reply; 13+ messages in thread
From: Wu, Jingjing @ 2015-10-19  1:51 UTC (permalink / raw)
  To: Chilikin, Andrey, dev



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Andrey Chilikin
> Sent: Wednesday, September 30, 2015 9:43 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior
> "passthru" on Intel FVL NIC
> 
> This patch set adds new flow director behavior "passthru" on Intel X(L)710
> NIC.
> When this mode is selected flow director will direct packet to LAN while the
> queue is defined by other filters. This can be used to extract flexible payload
> to RX desriptor with the flow director filter while targeted queue will be
> defined by other filters, for example, by hash filter (RSS).
> 
> v2: rename RTE_ETH_FDIR_OTHER to RTE_ETH_FDIR_PASSTHRU
> 
> Andrey Chilikin (3):
>   librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior
>   i40e: add RTE_ETH_FDIR_PASSTHRU processing for flow director behavior
>   ixgbe: add check for supported flow director behaviors
> 
>  drivers/net/i40e/i40e_fdir.c    |   12 ++++++++++--
>  drivers/net/ixgbe/ixgbe_fdir.c  |    3 ++-
>  lib/librte_ether/rte_eth_ctrl.h |    1 +
>  3 files changed, 13 insertions(+), 3 deletions(-)
> 
> --
Acked-by: Jingjing Wu <jingjing.wu@intel.com>

> 1.7.4.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC
  2015-10-19  1:51   ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Wu, Jingjing
@ 2015-11-04 21:54     ` Thomas Monjalon
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Monjalon @ 2015-11-04 21:54 UTC (permalink / raw)
  To: Chilikin, Andrey; +Cc: dev

> > This patch set adds new flow director behavior "passthru" on Intel X(L)710
> > NIC.
> > When this mode is selected flow director will direct packet to LAN while the
> > queue is defined by other filters. This can be used to extract flexible payload
> > to RX desriptor with the flow director filter while targeted queue will be
> > defined by other filters, for example, by hash filter (RSS).
> > 
> > v2: rename RTE_ETH_FDIR_OTHER to RTE_ETH_FDIR_PASSTHRU
> 
> Acked-by: Jingjing Wu <jingjing.wu@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2015-11-04 21:55 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-29 14:26 [dpdk-dev] [PATCH 0/3] Support for flow director behavior "other" on Intel FVL NIC Andrey Chilikin
2015-09-29 14:26 ` [dpdk-dev] [PATCH 1/3] librte_ether: add RTE_ETH_FDIR_OTHER for flow director behavior Andrey Chilikin
2015-09-29 14:38   ` Bruce Richardson
2015-09-29 14:48     ` Chilikin, Andrey
2015-09-29 14:53       ` Bruce Richardson
2015-09-29 14:26 ` [dpdk-dev] [PATCH 2/3] i40e: add RTE_ETH_FDIR_OTHER processing " Andrey Chilikin
2015-09-29 14:26 ` [dpdk-dev] [PATCH 3/3] ixgbe: add check for supported flow director behaviors Andrey Chilikin
2015-09-30 13:43 ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Andrey Chilikin
2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 1/3] librte_ether: add RTE_ETH_FDIR_PASSTHRU for flow director behavior Andrey Chilikin
2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 2/3] i40e: add RTE_ETH_FDIR_PASSTHRU processing " Andrey Chilikin
2015-09-30 13:43   ` [dpdk-dev] [PATCH v2 3/3] ixgbe: add check for supported flow director behaviors Andrey Chilikin
2015-10-19  1:51   ` [dpdk-dev] [PATCH v2 0/3] Support for flow director behavior "passthru" on Intel FVL NIC Wu, Jingjing
2015-11-04 21:54     ` Thomas Monjalon

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).