Re: [dpdk-dev] [PATCH] net/ice: fix queue bind MSI-X interrupt error

2020-02-20 Thread Ferruh Yigit
ginal Message- >> From: Yigit, Ferruh >> Sent: Thursday, February 20, 2020 5:21 PM >> To: Zhu, TaoX ; Yang, Qiming >> ; Lu, Wenzhuo >> Cc: dev@dpdk.org; Xing, Beilei ; Zhang, Qi Z >> ; Ye, Xiaolong ; >> sta...@dpdk.org >> Subject: Re: [dpdk-dev] [PA

Re: [dpdk-dev] [PATCH] net/ice: fix queue bind MSI-X interrupt error

2020-02-20 Thread Zhu, TaoX
g; Xing, Beilei ; Zhang, Qi Z > ; Ye, Xiaolong ; > sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/ice: fix queue bind MSI-X interrupt > error > > On 2/19/2020 10:17 AM, taox@intel.com wrote: > > From: Zhu Tao > > > > To bind a queue to an MSI-X interru

Re: [dpdk-dev] [PATCH] net/ice: fix queue bind MSI-X interrupt error

2020-02-20 Thread Ferruh Yigit
On 2/19/2020 10:17 AM, taox@intel.com wrote: > From: Zhu Tao > > To bind a queue to an MSI-X interrupt, need to set some register. > The register consists of many parts, each of which has several > bits; therefore, the shift operator '<<' was used; so the operator > '<' in the code should be

Re: [dpdk-dev] [PATCH] net/ice: fix queue bind MSI-X interrupt error

2020-02-19 Thread Ye Xiaolong
On 02/19, taox@intel.com wrote: >From: Zhu Tao > >To bind a queue to an MSI-X interrupt, need to set some register. >The register consists of many parts, each of which has several >bits; therefore, the shift operator '<<' was used; so the operator >'<' in the code should be '<<'. > >Old code a

[dpdk-dev] [PATCH] net/ice: fix queue bind MSI-X interrupt error

2020-02-19 Thread taox . zhu
From: Zhu Tao To bind a queue to an MSI-X interrupt, need to set some register. The register consists of many parts, each of which has several bits; therefore, the shift operator '<<' was used; so the operator '<' in the code should be '<<'. Old code adds 1 on even MSI-X interrupt vector index u