DPDK patches and discussions
 help / color / mirror / Atom feed
* Re: [dpdk-dev] [PATCH] net/i40e: fix mirror for new FW
  2017-10-31 14:26 [dpdk-dev] [PATCH] net/i40e: fix mirror for new FW Qi Zhang
@ 2017-10-31  9:48 ` Xing, Beilei
  2017-10-31 17:41   ` [dpdk-dev] [dpdk-stable] " Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Xing, Beilei @ 2017-10-31  9:48 UTC (permalink / raw)
  To: Zhang, Qi Z; +Cc: dev, stable

> -----Original Message-----
> From: Zhang, Qi Z
> Sent: Tuesday, October 31, 2017 10:27 PM
> To: Xing, Beilei <beilei.xing@intel.com>
> Cc: dev@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com>; stable@dpdk.org
> Subject: [PATCH] net/i40e: fix mirror for new FW
> 
> Value of I40E_GL_SWR_PRI_JOIN_MAP_0 need to be corrected or mirror
> does not work on latest firmware 6.0.
> 
> Fixes: 77370db964f7 ("net/i40e: fix ethertype filter for new FW")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> ---
>  drivers/net/i40e/i40e_ethdev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
> index 5f26e24..3b4dae6 100644
> --- a/drivers/net/i40e/i40e_ethdev.c
> +++ b/drivers/net/i40e/i40e_ethdev.c
> @@ -9238,7 +9238,7 @@ i40e_pctype_to_flowtype(enum i40e_filter_pctype
> pctype)
> 
>  /* For both X710 and XL710 */
>  #define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_1	0x10000200
> -#define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_2	0x20000200
> +#define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_2	0x203F0200
>  #define I40E_GL_SWR_PRI_JOIN_MAP_0		0x26CE00
> 
>  #define I40E_GL_SWR_PRI_JOIN_MAP_2_VALUE 0x011f0200
> --
> 2.9.5

Acked-by: Beilei Xing <beilei.xing@intel.com>

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

* [dpdk-dev] [PATCH] net/i40e: fix mirror for new FW
@ 2017-10-31 14:26 Qi Zhang
  2017-10-31  9:48 ` Xing, Beilei
  0 siblings, 1 reply; 3+ messages in thread
From: Qi Zhang @ 2017-10-31 14:26 UTC (permalink / raw)
  To: beilei.xing; +Cc: dev, Qi Zhang, stable

Value of I40E_GL_SWR_PRI_JOIN_MAP_0 need to be corrected or mirror
does not work on latest firmware 6.0.

Fixes: 77370db964f7 ("net/i40e: fix ethertype filter for new FW")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
 drivers/net/i40e/i40e_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index 5f26e24..3b4dae6 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -9238,7 +9238,7 @@ i40e_pctype_to_flowtype(enum i40e_filter_pctype pctype)
 
 /* For both X710 and XL710 */
 #define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_1	0x10000200
-#define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_2	0x20000200
+#define I40E_GL_SWR_PRI_JOIN_MAP_0_VALUE_2	0x203F0200
 #define I40E_GL_SWR_PRI_JOIN_MAP_0		0x26CE00
 
 #define I40E_GL_SWR_PRI_JOIN_MAP_2_VALUE 0x011f0200
-- 
2.9.5

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

* Re: [dpdk-dev] [dpdk-stable] [PATCH] net/i40e: fix mirror for new FW
  2017-10-31  9:48 ` Xing, Beilei
@ 2017-10-31 17:41   ` Ferruh Yigit
  0 siblings, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2017-10-31 17:41 UTC (permalink / raw)
  To: Xing, Beilei, Zhang, Qi Z; +Cc: dev, stable

On 10/31/2017 2:48 AM, Xing, Beilei wrote:
>> -----Original Message-----
>> From: Zhang, Qi Z
>> Sent: Tuesday, October 31, 2017 10:27 PM
>> To: Xing, Beilei <beilei.xing@intel.com>
>> Cc: dev@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com>; stable@dpdk.org
>> Subject: [PATCH] net/i40e: fix mirror for new FW
>>
>> Value of I40E_GL_SWR_PRI_JOIN_MAP_0 need to be corrected or mirror
>> does not work on latest firmware 6.0.
>>
>> Fixes: 77370db964f7 ("net/i40e: fix ethertype filter for new FW")
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>

> Acked-by: Beilei Xing <beilei.xing@intel.com>

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

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

end of thread, other threads:[~2017-10-31 17:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-31 14:26 [dpdk-dev] [PATCH] net/i40e: fix mirror for new FW Qi Zhang
2017-10-31  9:48 ` Xing, Beilei
2017-10-31 17:41   ` [dpdk-dev] [dpdk-stable] " 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).