dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] virtio: Update max RX packet length
@ 2014-09-02  4:40 Ouyang Changchun
       [not found] ` <1409632830-28539-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Ouyang Changchun @ 2014-09-02  4:40 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

Update max RX packet length since virtio PMD has the capability of receiving and transmitting jumbo frame.

Signed-off-by: Changchun Ouyang <changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Tested-by: Jingguo Fu <jingguox.fu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

---
 lib/librte_pmd_virtio/virtio_ethdev.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_pmd_virtio/virtio_ethdev.h b/lib/librte_pmd_virtio/virtio_ethdev.h
index d2e1eed..1da3c62 100644
--- a/lib/librte_pmd_virtio/virtio_ethdev.h
+++ b/lib/librte_pmd_virtio/virtio_ethdev.h
@@ -53,7 +53,7 @@
 #define VIRTIO_MAX_TX_QUEUES 128
 #define VIRTIO_MAX_MAC_ADDRS 1
 #define VIRTIO_MIN_RX_BUFSIZE 64
-#define VIRTIO_MAX_RX_PKTLEN  1518
+#define VIRTIO_MAX_RX_PKTLEN  9728
 
 /* Features desired/implemented by this driver. */
 #define VTNET_FEATURES \
-- 
1.8.4.2

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

* [PATCH v2] virtio: Update max RX packet length
       [not found] ` <1409632830-28539-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
@ 2014-10-13  3:46   ` Ouyang Changchun
       [not found]     ` <1413171972-3809-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Ouyang Changchun @ 2014-10-13  3:46 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

Update max RX packet length since virtio PMD has the capability of receiving and transmitting jumbo frame.

This following patch provides the above capability:
[dpdk-dev,v3] virtio: Support mergeable buffer in virtio pmd
  Submitter Ouyang Changchun 
  Date Aug. 14, 2014, 8:54 a.m. 
  Message ID <1408006475-17606-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> 
  Permalink http://dpdk.org/dev/patchwork/patch/159/

Signed-off-by: Changchun Ouyang <changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Tested-by: Jingguo Fu <jingguox.fu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

---
 lib/librte_pmd_virtio/virtio_ethdev.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_pmd_virtio/virtio_ethdev.h b/lib/librte_pmd_virtio/virtio_ethdev.h
index d2e1eed..1da3c62 100644
--- a/lib/librte_pmd_virtio/virtio_ethdev.h
+++ b/lib/librte_pmd_virtio/virtio_ethdev.h
@@ -53,7 +53,7 @@
 #define VIRTIO_MAX_TX_QUEUES 128
 #define VIRTIO_MAX_MAC_ADDRS 1
 #define VIRTIO_MIN_RX_BUFSIZE 64
-#define VIRTIO_MAX_RX_PKTLEN  1518
+#define VIRTIO_MAX_RX_PKTLEN  9728
 
 /* Features desired/implemented by this driver. */
 #define VTNET_FEATURES \
-- 
1.8.4.2

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

* Re: [PATCH v2] virtio: Update max RX packet length
       [not found]     ` <1413171972-3809-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
@ 2014-10-15 14:21       ` Thomas Monjalon
  2014-10-28 14:38       ` Yan Freedland
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2014-10-15 14:21 UTC (permalink / raw)
  To: Ouyang Changchun; +Cc: dev-VfR2kkLFssw

2014-10-13 11:46, Ouyang Changchun:
> Update max RX packet length since virtio PMD has the capability of receiving and transmitting jumbo frame.
> 
> This following patch provides the above capability:
> [dpdk-dev,v3] virtio: Support mergeable buffer in virtio pmd
>   Submitter Ouyang Changchun 
>   Date Aug. 14, 2014, 8:54 a.m. 
>   Message ID <1408006475-17606-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> 
>   Permalink http://dpdk.org/dev/patchwork/patch/159/
> 
> Signed-off-by: Changchun Ouyang <changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Tested-by: Jingguo Fu <jingguox.fu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

Applied

Thanks
-- 
Thomas

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

* Re: [PATCH v2] virtio: Update max RX packet length
       [not found]     ` <1413171972-3809-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  2014-10-15 14:21       ` Thomas Monjalon
@ 2014-10-28 14:38       ` Yan Freedland
       [not found]         ` <CEFFBC011B3590479939EA0B9311D21526916D4B-c7dmUlN0JpUFwryiss7F11muhGz1hbfE@public.gmane.org>
  1 sibling, 1 reply; 6+ messages in thread
From: Yan Freedland @ 2014-10-28 14:38 UTC (permalink / raw)
  To: Ouyang Changchun, dev-VfR2kkLFssw@public.gmane.org

Currently I have an issue in a pass-thorugh mode. I am running in multi process (2 processes) via ixgbe_rxtx. When running with a single process I have a perfect traffic while with 2 processes I have no traffic at all. 
Perhaps there is a special configuration for that, can you please assist ?

Thanks
Yan

-----Original Message-----
From: dev [mailto:dev-bounces-VfR2kkLFssw@public.gmane.org] On Behalf Of Ouyang Changchun
Sent: Monday, October 13, 2014 6:46 AM
To: dev-VfR2kkLFssw@public.gmane.org
Subject: [dpdk-dev] [PATCH v2] virtio: Update max RX packet length

Update max RX packet length since virtio PMD has the capability of receiving and transmitting jumbo frame.

This following patch provides the above capability:
[dpdk-dev,v3] virtio: Support mergeable buffer in virtio pmd
  Submitter Ouyang Changchun
  Date Aug. 14, 2014, 8:54 a.m. 
  Message ID <1408006475-17606-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  Permalink http://dpdk.org/dev/patchwork/patch/159/

Signed-off-by: Changchun Ouyang <changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Tested-by: Jingguo Fu <jingguox.fu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

---
 lib/librte_pmd_virtio/virtio_ethdev.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_pmd_virtio/virtio_ethdev.h b/lib/librte_pmd_virtio/virtio_ethdev.h
index d2e1eed..1da3c62 100644
--- a/lib/librte_pmd_virtio/virtio_ethdev.h
+++ b/lib/librte_pmd_virtio/virtio_ethdev.h
@@ -53,7 +53,7 @@
 #define VIRTIO_MAX_TX_QUEUES 128
 #define VIRTIO_MAX_MAC_ADDRS 1
 #define VIRTIO_MIN_RX_BUFSIZE 64
-#define VIRTIO_MAX_RX_PKTLEN  1518
+#define VIRTIO_MAX_RX_PKTLEN  9728
 
 /* Features desired/implemented by this driver. */  #define VTNET_FEATURES \
--
1.8.4.2

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

* Re: [PATCH v2] virtio: Update max RX packet length
       [not found]         ` <CEFFBC011B3590479939EA0B9311D21526916D4B-c7dmUlN0JpUFwryiss7F11muhGz1hbfE@public.gmane.org>
@ 2014-10-28 14:48           ` Thomas Monjalon
  2014-10-28 16:26             ` Yan Freedland
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas Monjalon @ 2014-10-28 14:48 UTC (permalink / raw)
  To: Yan Freedland; +Cc: dev-VfR2kkLFssw

2014-10-28 14:38, Yan Freedland:
> Currently I have an issue in a pass-thorugh mode.
> I am running in multi process (2 processes) via ixgbe_rxtx.
> When running with a single process I have a perfect traffic
> while with 2 processes I have no traffic at all. 
> Perhaps there is a special configuration for that, can you please assist ?

Excuse me, I don't understand the relation between your question and the
patch below. If there is no relation, please open a new thread by clicking
on "new mail" instead of "reply all".

Maybe that some kind developers will help you but you'd have more chances
by providing your command line and more debug details showing that you tried
to debug it by yourself and you are not a lazy developer.

Reminder: some interesting links about mailing practices are in this page:
	http://dpdk.org/ml

> -----Original Message-----
> From: dev [mailto:dev-bounces-VfR2kkLFssw@public.gmane.org] On Behalf Of Ouyang Changchun
> Sent: Monday, October 13, 2014 6:46 AM
> To: dev-VfR2kkLFssw@public.gmane.org
> Subject: [dpdk-dev] [PATCH v2] virtio: Update max RX packet length
> 
> Update max RX packet length since virtio PMD has the capability of receiving and transmitting jumbo frame.
> 
> This following patch provides the above capability:
> [dpdk-dev,v3] virtio: Support mergeable buffer in virtio pmd
>   Submitter Ouyang Changchun
>   Date Aug. 14, 2014, 8:54 a.m. 
>   Message ID <1408006475-17606-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>   Permalink http://dpdk.org/dev/patchwork/patch/159/
> 
> Signed-off-by: Changchun Ouyang <changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Tested-by: Jingguo Fu <jingguox.fu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> 
> ---
>  lib/librte_pmd_virtio/virtio_ethdev.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_pmd_virtio/virtio_ethdev.h b/lib/librte_pmd_virtio/virtio_ethdev.h
> index d2e1eed..1da3c62 100644
> --- a/lib/librte_pmd_virtio/virtio_ethdev.h
> +++ b/lib/librte_pmd_virtio/virtio_ethdev.h
> @@ -53,7 +53,7 @@
>  #define VIRTIO_MAX_TX_QUEUES 128
>  #define VIRTIO_MAX_MAC_ADDRS 1
>  #define VIRTIO_MIN_RX_BUFSIZE 64
> -#define VIRTIO_MAX_RX_PKTLEN  1518
> +#define VIRTIO_MAX_RX_PKTLEN  9728
>  
>  /* Features desired/implemented by this driver. */  #define VTNET_FEATURES \
> --
> 1.8.4.2

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

* Re: [PATCH v2] virtio: Update max RX packet length
  2014-10-28 14:48           ` Thomas Monjalon
@ 2014-10-28 16:26             ` Yan Freedland
  0 siblings, 0 replies; 6+ messages in thread
From: Yan Freedland @ 2014-10-28 16:26 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev-VfR2kkLFssw@public.gmane.org

Hi, 

I mistakenly pressed on reply all instead of reply and sent my question to the whole dev. Sorry about that.
In fact I am not lazy and looks like I solved the problem by myself. I will gladly share my knowledge with you or anyone in dev and of course open a new mail thread with an appropriate subject for further appeals.

Thank you,
Yan

-----Original Message-----
From: Thomas Monjalon [mailto:thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org] 
Sent: Tuesday, October 28, 2014 4:49 PM
To: Yan Freedland
Cc: dev-VfR2kkLFssw@public.gmane.org
Subject: Re: [dpdk-dev] [PATCH v2] virtio: Update max RX packet length

2014-10-28 14:38, Yan Freedland:
> Currently I have an issue in a pass-thorugh mode.
> I am running in multi process (2 processes) via ixgbe_rxtx.
> When running with a single process I have a perfect traffic while with 
> 2 processes I have no traffic at all.
> Perhaps there is a special configuration for that, can you please assist ?

Excuse me, I don't understand the relation between your question and the patch below. If there is no relation, please open a new thread by clicking on "new mail" instead of "reply all".

Maybe that some kind developers will help you but you'd have more chances by providing your command line and more debug details showing that you tried to debug it by yourself and you are not a lazy developer.

Reminder: some interesting links about mailing practices are in this page:
	http://dpdk.org/ml

> -----Original Message-----
> From: dev [mailto:dev-bounces-VfR2kkLFssw@public.gmane.org] On Behalf Of Ouyang Changchun
> Sent: Monday, October 13, 2014 6:46 AM
> To: dev-VfR2kkLFssw@public.gmane.org
> Subject: [dpdk-dev] [PATCH v2] virtio: Update max RX packet length
> 
> Update max RX packet length since virtio PMD has the capability of receiving and transmitting jumbo frame.
> 
> This following patch provides the above capability:
> [dpdk-dev,v3] virtio: Support mergeable buffer in virtio pmd
>   Submitter Ouyang Changchun
>   Date Aug. 14, 2014, 8:54 a.m. 
>   Message ID <1408006475-17606-1-git-send-email-changchun.ouyang-ral2JQCrhuE@public.gmane.orgm>
>   Permalink http://dpdk.org/dev/patchwork/patch/159/
> 
> Signed-off-by: Changchun Ouyang <changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Tested-by: Jingguo Fu <jingguox.fu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> 
> ---
>  lib/librte_pmd_virtio/virtio_ethdev.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_pmd_virtio/virtio_ethdev.h 
> b/lib/librte_pmd_virtio/virtio_ethdev.h
> index d2e1eed..1da3c62 100644
> --- a/lib/librte_pmd_virtio/virtio_ethdev.h
> +++ b/lib/librte_pmd_virtio/virtio_ethdev.h
> @@ -53,7 +53,7 @@
>  #define VIRTIO_MAX_TX_QUEUES 128
>  #define VIRTIO_MAX_MAC_ADDRS 1
>  #define VIRTIO_MIN_RX_BUFSIZE 64
> -#define VIRTIO_MAX_RX_PKTLEN  1518
> +#define VIRTIO_MAX_RX_PKTLEN  9728
>  
>  /* Features desired/implemented by this driver. */  #define 
> VTNET_FEATURES \
> --
> 1.8.4.2

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

end of thread, other threads:[~2014-10-28 16:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-02  4:40 [PATCH] virtio: Update max RX packet length Ouyang Changchun
     [not found] ` <1409632830-28539-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-13  3:46   ` [PATCH v2] " Ouyang Changchun
     [not found]     ` <1413171972-3809-1-git-send-email-changchun.ouyang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-15 14:21       ` Thomas Monjalon
2014-10-28 14:38       ` Yan Freedland
     [not found]         ` <CEFFBC011B3590479939EA0B9311D21526916D4B-c7dmUlN0JpUFwryiss7F11muhGz1hbfE@public.gmane.org>
2014-10-28 14:48           ` Thomas Monjalon
2014-10-28 16:26             ` Yan Freedland

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).