DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: enable CRC strip without capability check
@ 2018-02-08 12:08 Ferruh Yigit
  2018-02-08 12:13 ` Ananyev, Konstantin
  0 siblings, 1 reply; 3+ messages in thread
From: Ferruh Yigit @ 2018-02-08 12:08 UTC (permalink / raw)
  To: Wenzhuo Lu, Jingjing Wu
  Cc: dev, Ferruh Yigit, Thomas Monjalon, Konstantin Ananyev, motih, shahafs

Some hardware doesn't support disabling CRC strip. In techboard it has
been decided to enable CRC strip always.

The testpmd update in commit 8b9bd0efe0b6, enables CRC strip only if
PMD reports CRC strip capability. Not all PMDs updated to report CRC
strip.

For the PMDs not reporting CRC strip testpmd behavior changed and
disabling CRC strip for them. And this may generate error for PMDs that
doesn't support disabling CRC strip.

Removing capability check for this release. In long term there can be
option to remove CRC strip flag completely or adding a new flag to let
PMD say disabling is not supported.

Fixes: 8b9bd0efe0b6 ("app/testpmd: disable Rx VLAN offloads by default")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
Cc: motih@mellanox.com
Cc: shahafs@mellanox.com
---
 app/test-pmd/testpmd.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index 46dc22c94..4c0e2586c 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c
@@ -694,10 +694,6 @@ init_config(void)
 		      DEV_TX_OFFLOAD_MBUF_FAST_FREE))
 			port->dev_conf.txmode.offloads &=
 				~DEV_TX_OFFLOAD_MBUF_FAST_FREE;
-		if (!(port->dev_info.rx_offload_capa &
-		      DEV_RX_OFFLOAD_CRC_STRIP))
-			port->dev_conf.rxmode.offloads &=
-				~DEV_RX_OFFLOAD_CRC_STRIP;
 		if (numa_support) {
 			if (port_numa[pid] != NUMA_NO_CONFIG)
 				port_per_socket[port_numa[pid]]++;
-- 
2.14.3

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

* Re: [dpdk-dev] [PATCH] app/testpmd: enable CRC strip without capability check
  2018-02-08 12:08 [dpdk-dev] [PATCH] app/testpmd: enable CRC strip without capability check Ferruh Yigit
@ 2018-02-08 12:13 ` Ananyev, Konstantin
  2018-02-08 14:29   ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Ananyev, Konstantin @ 2018-02-08 12:13 UTC (permalink / raw)
  To: Yigit, Ferruh, Lu, Wenzhuo, Wu, Jingjing
  Cc: dev, Thomas Monjalon, motih, shahafs



> -----Original Message-----
> From: Yigit, Ferruh
> Sent: Thursday, February 8, 2018 12:08 PM
> To: Lu, Wenzhuo <wenzhuo.lu@intel.com>; Wu, Jingjing <jingjing.wu@intel.com>
> Cc: dev@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>; Thomas Monjalon <thomas@monjalon.net>; Ananyev, Konstantin
> <konstantin.ananyev@intel.com>; motih@mellanox.com; shahafs@mellanox.com
> Subject: [PATCH] app/testpmd: enable CRC strip without capability check
> 
> Some hardware doesn't support disabling CRC strip. In techboard it has
> been decided to enable CRC strip always.
> 
> The testpmd update in commit 8b9bd0efe0b6, enables CRC strip only if
> PMD reports CRC strip capability. Not all PMDs updated to report CRC
> strip.
> 
> For the PMDs not reporting CRC strip testpmd behavior changed and
> disabling CRC strip for them. And this may generate error for PMDs that
> doesn't support disabling CRC strip.
> 
> Removing capability check for this release. In long term there can be
> option to remove CRC strip flag completely or adding a new flag to let
> PMD say disabling is not supported.
> 
> Fixes: 8b9bd0efe0b6 ("app/testpmd: disable Rx VLAN offloads by default")
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
> Cc: motih@mellanox.com
> Cc: shahafs@mellanox.com
> ---
>  app/test-pmd/testpmd.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
> index 46dc22c94..4c0e2586c 100644
> --- a/app/test-pmd/testpmd.c
> +++ b/app/test-pmd/testpmd.c
> @@ -694,10 +694,6 @@ init_config(void)
>  		      DEV_TX_OFFLOAD_MBUF_FAST_FREE))
>  			port->dev_conf.txmode.offloads &=
>  				~DEV_TX_OFFLOAD_MBUF_FAST_FREE;
> -		if (!(port->dev_info.rx_offload_capa &
> -		      DEV_RX_OFFLOAD_CRC_STRIP))
> -			port->dev_conf.rxmode.offloads &=
> -				~DEV_RX_OFFLOAD_CRC_STRIP;
>  		if (numa_support) {
>  			if (port_numa[pid] != NUMA_NO_CONFIG)
>  				port_per_socket[port_numa[pid]]++;
> --

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

> 2.14.3

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

* Re: [dpdk-dev] [PATCH] app/testpmd: enable CRC strip without capability check
  2018-02-08 12:13 ` Ananyev, Konstantin
@ 2018-02-08 14:29   ` Ferruh Yigit
  0 siblings, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2018-02-08 14:29 UTC (permalink / raw)
  To: Ananyev, Konstantin, Lu, Wenzhuo, Wu, Jingjing
  Cc: dev, Thomas Monjalon, motih, shahafs

On 2/8/2018 12:13 PM, Ananyev, Konstantin wrote:
> 
> 
>> -----Original Message-----
>> From: Yigit, Ferruh
>> Sent: Thursday, February 8, 2018 12:08 PM
>> To: Lu, Wenzhuo <wenzhuo.lu@intel.com>; Wu, Jingjing <jingjing.wu@intel.com>
>> Cc: dev@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>; Thomas Monjalon <thomas@monjalon.net>; Ananyev, Konstantin
>> <konstantin.ananyev@intel.com>; motih@mellanox.com; shahafs@mellanox.com
>> Subject: [PATCH] app/testpmd: enable CRC strip without capability check
>>
>> Some hardware doesn't support disabling CRC strip. In techboard it has
>> been decided to enable CRC strip always.
>>
>> The testpmd update in commit 8b9bd0efe0b6, enables CRC strip only if
>> PMD reports CRC strip capability. Not all PMDs updated to report CRC
>> strip.
>>
>> For the PMDs not reporting CRC strip testpmd behavior changed and
>> disabling CRC strip for them. And this may generate error for PMDs that
>> doesn't support disabling CRC strip.
>>
>> Removing capability check for this release. In long term there can be
>> option to remove CRC strip flag completely or adding a new flag to let
>> PMD say disabling is not supported.
>>
>> Fixes: 8b9bd0efe0b6 ("app/testpmd: disable Rx VLAN offloads by default")
>>
>> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
>
> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

Applied to dpdk-next-net/master, thanks.

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

end of thread, other threads:[~2018-02-08 14:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-08 12:08 [dpdk-dev] [PATCH] app/testpmd: enable CRC strip without capability check Ferruh Yigit
2018-02-08 12:13 ` Ananyev, Konstantin
2018-02-08 14:29   ` Ferruh Yigit

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