* [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion report value
@ 2020-05-08 1:36 Simei Su
2020-05-08 1:43 ` Zhang, Qi Z
0 siblings, 1 reply; 4+ messages in thread
From: Simei Su @ 2020-05-08 1:36 UTC (permalink / raw)
To: qi.z.zhang, xiaolong.ye; +Cc: dev, yahui.cao, simei.su
IAVF FDIR needs to check program status from FD completion descriptors
for both successful and failed case, rather than only ask for completion
on error. This patch corrects completion report value so that the called
can determine whether to report completion on error or other cases.
Fixes: 55daca4e45fc ("net/ice/base: change function to static")
Signed-off-by: Simei Su <simei.su@intel.com>
---
drivers/net/ice/base/ice_fdir.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ice/base/ice_fdir.c b/drivers/net/ice/base/ice_fdir.c
index 33a1732..f899641 100644
--- a/drivers/net/ice/base/ice_fdir.c
+++ b/drivers/net/ice/base/ice_fdir.c
@@ -488,7 +488,7 @@
ICE_FXD_FLTR_QW1_PCMD_REMOVE;
fdir_fltr_ctx.swap = ICE_FXD_FLTR_QW1_SWAP_NOT_SET;
fdir_fltr_ctx.comp_q = ICE_FXD_FLTR_QW0_COMP_Q_ZERO;
- fdir_fltr_ctx.comp_report = ICE_FXD_FLTR_QW0_COMP_REPORT_SW_FAIL;
+ fdir_fltr_ctx.comp_report = ICE_FXD_FLTR_QW0_COMP_REPORT_SW;
fdir_fltr_ctx.fdid_prio = input->fdid_prio;
fdir_fltr_ctx.desc_prof = 1;
fdir_fltr_ctx.desc_prof_prio = 3;
--
1.8.3.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion report value
2020-05-08 1:36 [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion report value Simei Su
@ 2020-05-08 1:43 ` Zhang, Qi Z
2020-05-08 2:34 ` Ye Xiaolong
0 siblings, 1 reply; 4+ messages in thread
From: Zhang, Qi Z @ 2020-05-08 1:43 UTC (permalink / raw)
To: Su, Simei, Ye, Xiaolong; +Cc: dev, Cao, Yahui
> -----Original Message-----
> From: Su, Simei <simei.su@intel.com>
> Sent: Friday, May 8, 2020 9:37 AM
> To: Zhang, Qi Z <qi.z.zhang@intel.com>; Ye, Xiaolong <xiaolong.ye@intel.com>
> Cc: dev@dpdk.org; Cao, Yahui <yahui.cao@intel.com>; Su, Simei
> <simei.su@intel.com>
> Subject: [PATCH] net/ice/base: fix FDIR rule completion report value
>
> IAVF FDIR needs to check program status from FD completion descriptors for
> both successful and failed case, rather than only ask for completion on error.
> This patch corrects completion report value so that the called can determine
> whether to report completion on error or other cases.
>
> Fixes: 55daca4e45fc ("net/ice/base: change function to static")
>
> Signed-off-by: Simei Su <simei.su@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion report value
2020-05-08 1:43 ` Zhang, Qi Z
@ 2020-05-08 2:34 ` Ye Xiaolong
2020-05-08 9:31 ` Zeng, XiaoxiaoX
0 siblings, 1 reply; 4+ messages in thread
From: Ye Xiaolong @ 2020-05-08 2:34 UTC (permalink / raw)
To: Zhang, Qi Z; +Cc: Su, Simei, dev, Cao, Yahui
On 05/08, Zhang, Qi Z wrote:
>
>
>> -----Original Message-----
>> From: Su, Simei <simei.su@intel.com>
>> Sent: Friday, May 8, 2020 9:37 AM
>> To: Zhang, Qi Z <qi.z.zhang@intel.com>; Ye, Xiaolong <xiaolong.ye@intel.com>
>> Cc: dev@dpdk.org; Cao, Yahui <yahui.cao@intel.com>; Su, Simei
>> <simei.su@intel.com>
>> Subject: [PATCH] net/ice/base: fix FDIR rule completion report value
>>
>> IAVF FDIR needs to check program status from FD completion descriptors for
>> both successful and failed case, rather than only ask for completion on error.
>> This patch corrects completion report value so that the called can determine
>> whether to report completion on error or other cases.
>>
>> Fixes: 55daca4e45fc ("net/ice/base: change function to static")
>>
>> Signed-off-by: Simei Su <simei.su@intel.com>
>
>Acked-by: Qi Zhang <qi.z.zhang@intel.com>
>
>
Applied to dpdk-next-net-intel, Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion report value
2020-05-08 2:34 ` Ye Xiaolong
@ 2020-05-08 9:31 ` Zeng, XiaoxiaoX
0 siblings, 0 replies; 4+ messages in thread
From: Zeng, XiaoxiaoX @ 2020-05-08 9:31 UTC (permalink / raw)
To: Ye, Xiaolong, Zhang, Qi Z; +Cc: Su, Simei, dev, Cao, Yahui
Tested-by: Zeng,Xiaoxiao<xiaoxiaox.zeng@intel.com>
Best regards,
Zeng,xiaoxiao
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Ye, Xiaolong
> Sent: Friday, May 8, 2020 10:35 AM
> To: Zhang, Qi Z <qi.z.zhang@intel.com>
> Cc: Su, Simei <simei.su@intel.com>; dev@dpdk.org; Cao, Yahui
> <yahui.cao@intel.com>
> Subject: Re: [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion
> report value
>
> On 05/08, Zhang, Qi Z wrote:
> >
> >
> >> -----Original Message-----
> >> From: Su, Simei <simei.su@intel.com>
> >> Sent: Friday, May 8, 2020 9:37 AM
> >> To: Zhang, Qi Z <qi.z.zhang@intel.com>; Ye, Xiaolong
> >> <xiaolong.ye@intel.com>
> >> Cc: dev@dpdk.org; Cao, Yahui <yahui.cao@intel.com>; Su, Simei
> >> <simei.su@intel.com>
> >> Subject: [PATCH] net/ice/base: fix FDIR rule completion report value
> >>
> >> IAVF FDIR needs to check program status from FD completion
> >> descriptors for both successful and failed case, rather than only ask for
> completion on error.
> >> This patch corrects completion report value so that the called can
> >> determine whether to report completion on error or other cases.
> >>
> >> Fixes: 55daca4e45fc ("net/ice/base: change function to static")
> >>
> >> Signed-off-by: Simei Su <simei.su@intel.com>
> >
> >Acked-by: Qi Zhang <qi.z.zhang@intel.com>
> >
> >
>
> Applied to dpdk-next-net-intel, Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-05-08 9:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-08 1:36 [dpdk-dev] [PATCH] net/ice/base: fix FDIR rule completion report value Simei Su
2020-05-08 1:43 ` Zhang, Qi Z
2020-05-08 2:34 ` Ye Xiaolong
2020-05-08 9:31 ` Zeng, XiaoxiaoX
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).