Re: [dpdk-dev] net/iavf: fix VF reset issue for hash

2020-05-18 Thread Jeff Guo
hi, xiaolong On 5/19/2020 7:54 AM, Ye Xiaolong wrote: On 05/18, Jeff Guo wrote: Since there are some default rss configure in kernel PF/VF but not DPDK IAVF, if these configurations be modified by VF and then VF reset, this default rss configurations can not be reset to default by IAVF. So need

Re: [dpdk-dev] net/iavf: fix VF reset issue for hash

2020-05-18 Thread Ye Xiaolong
On 05/18, Jeff Guo wrote: >Since there are some default rss configure in kernel PF/VF but not DPDK >IAVF, if these configurations be modified by VF and then VF reset, this >default rss configurations can not be reset to default by IAVF. So need >to add default rss set in IAVF hash initial process.

Re: [dpdk-dev] net/iavf: fix VF reset issue for hash

2020-05-18 Thread Zhang, Qi Z
> -Original Message- > From: He, Zhiwei > Sent: Monday, May 18, 2020 9:15 PM > To: Guo, Jia ; Xing, Beilei ; Ye, > Xiaolong ; Zhang, Qi Z ; Wu, > Jingjing > Cc: dev@dpdk.org; Guo, Jia > Subject: RE: [dpdk-dev] net/iavf: fix VF reset issue for has

Re: [dpdk-dev] net/iavf: fix VF reset issue for hash

2020-05-18 Thread He, Zhiwei
Test-by Zhiwei.He -Original Message- From: dev On Behalf Of Jeff Guo Sent: Tuesday, May 19, 2020 8:20 AM To: Xing, Beilei ; Ye, Xiaolong ; Zhang, Qi Z ; Wu, Jingjing Cc: dev@dpdk.org; Guo, Jia Subject: [dpdk-dev] net/iavf: fix VF reset issue for hash Since there are some default rss

[dpdk-dev] net/iavf: fix VF reset issue for hash

2020-05-18 Thread Jeff Guo
Since there are some default rss configure in kernel PF/VF but not DPDK IAVF, if these configurations be modified by VF and then VF reset, this default rss configurations can not be reset to default by IAVF. So need to add default rss set in IAVF hash initial process. Signed-off-by: Jeff Guo Fixe