Message ID | 20210817034123.1794691-1-qi.z.zhang@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Qi Zhang |
Headers | show |
Series | net/ice: fix wrong rxdid | expand |
Context | Check | Description |
---|---|---|
ci/iol-mellanox-Performance | success | Performance Testing PASS |
ci/iol-x86_64-compile-testing | success | Testing PASS |
ci/iol-x86_64-unit-testing | success | Testing PASS |
ci/iol-intel-Performance | success | Performance Testing PASS |
ci/iol-aarch64-compile-testing | success | Testing PASS |
ci/iol-broadcom-Functional | success | Functional Testing PASS |
ci/iol-aarch64-unit-testing | fail | Testing issues |
ci/intel-Testing | fail | Testing issues |
ci/iol-broadcom-Performance | success | Performance Testing PASS |
ci/Intel-compilation | success | Compilation OK |
ci/iol-intel-Functional | success | Functional Testing PASS |
ci/github-robot: build | success | github build: passed |
ci/checkpatch | success | coding style OK |
> -----Original Message----- > From: Zhang, Qi Z <qi.z.zhang@intel.com> > Sent: Tuesday, August 17, 2021 11:41 AM > To: Yang, Qiming <qiming.yang@intel.com> > Cc: Huang, ZhiminX <zhiminx.huang@intel.com>; dev@dpdk.org; Zhang, > Qi Z <qi.z.zhang@intel.com>; stable@dpdk.org > Subject: [PATCH] net/ice: fix wrong rxdid > > Since DPDK 20.11 the default rxdid is changed from 16 to 22, but the DCF > data path didn't change, the patch fix the gap. > > Fixes: 12443386a0b0 ("net/ice: support flex Rx descriptor RxDID22") > Cc: stable@dpdk.org > > Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> > --- Tested-by: Zhimin Huang <zhiminx.huang@intel.com >
> -----Original Message----- > From: Huang, ZhiminX <zhiminx.huang@intel.com> > Sent: Tuesday, August 17, 2021 4:00 PM > To: Zhang, Qi Z <qi.z.zhang@intel.com>; Yang, Qiming > <qiming.yang@intel.com> > Cc: dev@dpdk.org; stable@dpdk.org > Subject: RE: [PATCH] net/ice: fix wrong rxdid > > > -----Original Message----- > > From: Zhang, Qi Z <qi.z.zhang@intel.com> > > Sent: Tuesday, August 17, 2021 11:41 AM > > To: Yang, Qiming <qiming.yang@intel.com> > > Cc: Huang, ZhiminX <zhiminx.huang@intel.com>; dev@dpdk.org; Zhang, Qi > > Z <qi.z.zhang@intel.com>; stable@dpdk.org > > Subject: [PATCH] net/ice: fix wrong rxdid > > > > Since DPDK 20.11 the default rxdid is changed from 16 to 22, but the > > DCF data path didn't change, the patch fix the gap. > > > > Fixes: 12443386a0b0 ("net/ice: support flex Rx descriptor RxDID22") > > Cc: stable@dpdk.org > > > > Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> > > --- > > Tested-by: Zhimin Huang <zhiminx.huang@intel.com > Applied to dpdk-next-net-intel. Thanks Qi
diff --git a/drivers/net/ice/ice_dcf.c b/drivers/net/ice/ice_dcf.c index 4c2e0c7216..5b23cc90e0 100644 --- a/drivers/net/ice/ice_dcf.c +++ b/drivers/net/ice/ice_dcf.c @@ -847,7 +847,7 @@ ice_dcf_init_rss(struct ice_dcf_hw *hw) #define IAVF_RXDID_LEGACY_0 0 #define IAVF_RXDID_LEGACY_1 1 -#define IAVF_RXDID_COMMS_GENERIC 16 +#define IAVF_RXDID_COMMS_OVS_1 22 int ice_dcf_configure_queues(struct ice_dcf_hw *hw) @@ -895,8 +895,8 @@ ice_dcf_configure_queues(struct ice_dcf_hw *hw) if (hw->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RX_FLEX_DESC && hw->supported_rxdid & - BIT(IAVF_RXDID_COMMS_GENERIC)) { - vc_qp->rxq.rxdid = IAVF_RXDID_COMMS_GENERIC; + BIT(IAVF_RXDID_COMMS_OVS_1)) { + vc_qp->rxq.rxdid = IAVF_RXDID_COMMS_OVS_1; PMD_DRV_LOG(NOTICE, "request RXDID == %d in " "Queue[%d]", vc_qp->rxq.rxdid, i); } else {
Since DPDK 20.11 the default rxdid is changed from 16 to 22, but the DCF data path didn't change, the patch fix the gap. Fixes: 12443386a0b0 ("net/ice: support flex Rx descriptor RxDID22") Cc: stable@dpdk.org Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> --- drivers/net/ice/ice_dcf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)