DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: add known issue for i40e PMD
@ 2017-02-03  7:09 Jingjing Wu
  2017-02-08 17:32 ` Mcnamara, John
  2017-02-09  6:41 ` [dpdk-dev] [PATCH v2] " Jingjing Wu
  0 siblings, 2 replies; 5+ messages in thread
From: Jingjing Wu @ 2017-02-03  7:09 UTC (permalink / raw)
  To: dev; +Cc: jingjing.wu, helin.zhang, john.mcnamara, stable

Rx statistic is incorrect when packet is oversize.

CC: stable@dpdk.org
Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
---
 doc/guides/nics/i40e.rst | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst
index 1245ecf..ae5b43f 100644
--- a/doc/guides/nics/i40e.rst
+++ b/doc/guides/nics/i40e.rst
@@ -460,3 +460,10 @@ Receive packets with Ethertype 0x88A8
 
 Due to the FW limitation, PF can receive packets with Ethertype 0x88A8
 only when floating VEB is disabled.
+
+Incorrect Rx statistics when packet is oversize
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+When a packet is over maximum frame size, the packet cannot be received.
+But the Rx statistic shows it is received successfully, if calling
+rte_eth_stats_get.
-- 
2.4.11

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: add known issue for i40e PMD
  2017-02-03  7:09 [dpdk-dev] [PATCH] doc: add known issue for i40e PMD Jingjing Wu
@ 2017-02-08 17:32 ` Mcnamara, John
  2017-02-09  6:41 ` [dpdk-dev] [PATCH v2] " Jingjing Wu
  1 sibling, 0 replies; 5+ messages in thread
From: Mcnamara, John @ 2017-02-08 17:32 UTC (permalink / raw)
  To: Wu, Jingjing, dev; +Cc: Zhang, Helin, stable, Yigit, Ferruh



> -----Original Message-----
> From: Wu, Jingjing
> Sent: Friday, February 3, 2017 7:09 AM
> To: dev@dpdk.org
> Cc: Wu, Jingjing <jingjing.wu@intel.com>; Zhang, Helin
> <helin.zhang@intel.com>; Mcnamara, John <john.mcnamara@intel.com>;
> stable@dpdk.org
> Subject: [PATCH] doc: add known issue for i40e PMD
> 
> Rx statistic is incorrect when packet is oversize.
> 
> CC: stable@dpdk.org
> Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
> ---
>  doc/guides/nics/i40e.rst | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index
> 1245ecf..ae5b43f 100644
> --- a/doc/guides/nics/i40e.rst
> +++ b/doc/guides/nics/i40e.rst
> @@ -460,3 +460,10 @@ Receive packets with Ethertype 0x88A8
> 
>  Due to the FW limitation, PF can receive packets with Ethertype 0x88A8
> only when floating VEB is disabled.
> +
> +Incorrect Rx statistics when packet is oversize
> +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> +
> +When a packet is over maximum frame size, the packet cannot be received.
> +But the Rx statistic shows it is received successfully, if calling
> +rte_eth_stats_get.

Would be slightly better as:

When a packet is over the maximum frame size, the packet cannot be received.
However the Rx statistics, when calling `rte_eth_stats_get()` incorrectly 
shows it as received.

Or instead of "cannot be received" just "is dropped".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dpdk-dev] [PATCH v2] doc: add known issue for i40e PMD
  2017-02-03  7:09 [dpdk-dev] [PATCH] doc: add known issue for i40e PMD Jingjing Wu
  2017-02-08 17:32 ` Mcnamara, John
@ 2017-02-09  6:41 ` Jingjing Wu
  2017-02-09  8:26   ` Mcnamara, John
  1 sibling, 1 reply; 5+ messages in thread
From: Jingjing Wu @ 2017-02-09  6:41 UTC (permalink / raw)
  To: dev; +Cc: jingjing.wu, john.mcnamara

Rx statistic is incorrect when packet is oversize.

Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
---

v2 change
 - reword issue description

 doc/guides/nics/i40e.rst | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst
index 1245ecf..b890613 100644
--- a/doc/guides/nics/i40e.rst
+++ b/doc/guides/nics/i40e.rst
@@ -460,3 +460,10 @@ Receive packets with Ethertype 0x88A8
 
 Due to the FW limitation, PF can receive packets with Ethertype 0x88A8
 only when floating VEB is disabled.
+
+Incorrect Rx statistics when packet is oversize
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+When a packet is over maximum frame size, the packet is dropped.
+However the Rx statistics, when calling `rte_eth_stats_get` incorrectly
+shows it as received.
-- 
2.4.11

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v2] doc: add known issue for i40e PMD
  2017-02-09  6:41 ` [dpdk-dev] [PATCH v2] " Jingjing Wu
@ 2017-02-09  8:26   ` Mcnamara, John
  2017-02-09 15:29     ` Ferruh Yigit
  0 siblings, 1 reply; 5+ messages in thread
From: Mcnamara, John @ 2017-02-09  8:26 UTC (permalink / raw)
  To: Wu, Jingjing, dev



> -----Original Message-----
> From: Wu, Jingjing
> Sent: Thursday, February 9, 2017 6:42 AM
> To: dev@dpdk.org
> Cc: Wu, Jingjing <jingjing.wu@intel.com>; Mcnamara, John
> <john.mcnamara@intel.com>
> Subject: [PATCH v2] doc: add known issue for i40e PMD
> 
> Rx statistic is incorrect when packet is oversize.
> 
> Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>

Acked-by: John McNamara <john.mcnamara@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v2] doc: add known issue for i40e PMD
  2017-02-09  8:26   ` Mcnamara, John
@ 2017-02-09 15:29     ` Ferruh Yigit
  0 siblings, 0 replies; 5+ messages in thread
From: Ferruh Yigit @ 2017-02-09 15:29 UTC (permalink / raw)
  To: Mcnamara, John, Wu, Jingjing, dev

On 2/9/2017 8:26 AM, Mcnamara, John wrote:
> 
> 
>> -----Original Message-----
>> From: Wu, Jingjing
>> Sent: Thursday, February 9, 2017 6:42 AM
>> To: dev@dpdk.org
>> Cc: Wu, Jingjing <jingjing.wu@intel.com>; Mcnamara, John
>> <john.mcnamara@intel.com>
>> Subject: [PATCH v2] doc: add known issue for i40e PMD
>>
>> Rx statistic is incorrect when packet is oversize.
>>
>> Signed-off-by: Jingjing Wu <jingjing.wu@intel.com>
> 
> Acked-by: John McNamara <john.mcnamara@intel.com>

Applied to dpdk-next-net/master, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-02-09 15:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-03  7:09 [dpdk-dev] [PATCH] doc: add known issue for i40e PMD Jingjing Wu
2017-02-08 17:32 ` Mcnamara, John
2017-02-09  6:41 ` [dpdk-dev] [PATCH v2] " Jingjing Wu
2017-02-09  8:26   ` Mcnamara, John
2017-02-09 15:29     ` 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).