* [dpdk-dev] [PATCH] net/i40e: fix error log in descriptor done function
@ 2017-03-01 14:45 Olivier Matz
2017-03-14 17:38 ` Ferruh Yigit
0 siblings, 1 reply; 3+ messages in thread
From: Olivier Matz @ 2017-03-01 14:45 UTC (permalink / raw)
To: dev, helin.zhang, jingjing.wu
It's not queue identifier but a descriptor identifier.
Fixes: 4861cde46116 ("i40e: new poll mode driver")
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
drivers/net/i40e/i40e_rxtx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/i40e/i40e_rxtx.c b/drivers/net/i40e/i40e_rxtx.c
index 48429cc..45af0d7 100644
--- a/drivers/net/i40e/i40e_rxtx.c
+++ b/drivers/net/i40e/i40e_rxtx.c
@@ -1911,7 +1911,7 @@ i40e_dev_rx_descriptor_done(void *rx_queue, uint16_t offset)
int ret;
if (unlikely(offset >= rxq->nb_rx_desc)) {
- PMD_DRV_LOG(ERR, "Invalid RX queue id %u", offset);
+ PMD_DRV_LOG(ERR, "Invalid RX descriptor id %u", offset);
return 0;
}
--
2.8.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] net/i40e: fix error log in descriptor done function
2017-03-01 14:45 [dpdk-dev] [PATCH] net/i40e: fix error log in descriptor done function Olivier Matz
@ 2017-03-14 17:38 ` Ferruh Yigit
2017-03-14 18:09 ` Ferruh Yigit
0 siblings, 1 reply; 3+ messages in thread
From: Ferruh Yigit @ 2017-03-14 17:38 UTC (permalink / raw)
To: Olivier Matz, dev, helin.zhang, jingjing.wu
On 3/1/2017 2:45 PM, Olivier Matz wrote:
> It's not queue identifier but a descriptor identifier.
>
> Fixes: 4861cde46116 ("i40e: new poll mode driver")
>
> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] net/i40e: fix error log in descriptor done function
2017-03-14 17:38 ` Ferruh Yigit
@ 2017-03-14 18:09 ` Ferruh Yigit
0 siblings, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2017-03-14 18:09 UTC (permalink / raw)
To: Olivier Matz, dev, helin.zhang, jingjing.wu
On 3/14/2017 5:38 PM, Ferruh Yigit wrote:
> On 3/1/2017 2:45 PM, Olivier Matz wrote:
>> It's not queue identifier but a descriptor identifier.
>>
>> Fixes: 4861cde46116 ("i40e: new poll mode driver")
>>
>> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
>
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Applied to dpdk-next-net/master, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-03-14 18:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-01 14:45 [dpdk-dev] [PATCH] net/i40e: fix error log in descriptor done function Olivier Matz
2017-03-14 17:38 ` Ferruh Yigit
2017-03-14 18:09 ` 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).