[dpdk-dev] doc: fix parameter of virtio_user for container

Message ID 1488894525-5430-1-git-send-email-wang.yong19@zte.com.cn (mailing list archive)
State Superseded, archived
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Yong Wang March 7, 2017, 1:48 p.m. UTC
  Update the "Virtio_user for Container Networking" doc, add the
"--file-prefix" option to testpmd in host and container to avoid
hugepage config file conflict.

Fixes: 50665deebda0 ("doc: add guide to use virtio-user for container
networking")

Signed-off-by: Yong Wang <wang.yong19@zte.com.cn>
---
 doc/guides/howto/virtio_user_for_container_networking.rst | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
  

Comments

John McNamara March 7, 2017, 5:24 p.m. UTC | #1
> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yong Wang
> Sent: Tuesday, March 7, 2017 1:49 PM
> To: Tan, Jianfeng <jianfeng.tan@intel.com>; yuanhan.liu@linux.intel.com
> Cc: dev@dpdk.org; Yong Wang <wang.yong19@zte.com.cn>
> Subject: [dpdk-dev] [PATCH] doc: fix parameter of virtio_user for
> container
> 
> Update the "Virtio_user for Container Networking" doc, add the "--file-
> prefix" option to testpmd in host and container to avoid hugepage config
> file conflict.
> 
> Fixes: 50665deebda0 ("doc: add guide to use virtio-user for container
> networking")
> 

Acked-by: John McNamara <john.mcnamara@intel.com>
  
Yuanhan Liu March 8, 2017, 1:36 a.m. UTC | #2
On Tue, Mar 07, 2017 at 08:48:45AM -0500, Yong Wang wrote:
> Update the "Virtio_user for Container Networking" doc, add the
> "--file-prefix" option to testpmd in host and container to avoid
> hugepage config file conflict.
> 
> Fixes: 50665deebda0 ("doc: add guide to use virtio-user for container
> networking")

Fixline should be one line: don't break it to two.

> 
> Signed-off-by: Yong Wang <wang.yong19@zte.com.cn>
> ---
>  doc/guides/howto/virtio_user_for_container_networking.rst | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/doc/guides/howto/virtio_user_for_container_networking.rst b/doc/guides/howto/virtio_user_for_container_networking.rst
> index dbb9319..d08a5e3 100644
> --- a/doc/guides/howto/virtio_user_for_container_networking.rst
> +++ b/doc/guides/howto/virtio_user_for_container_networking.rst
> @@ -111,7 +111,8 @@ some minor changes.
>      .. code-block:: console
>  
>          $(testpmd) -l 0-1 -n 4 --socket-mem 1024,1024 \
> -            --vdev 'eth_vhost0,iface=/tmp/sock0' --no-pci -- -i
> +            --vdev 'eth_vhost0,iface=/tmp/sock0' \
> +            --file-prefix=host_ --no-pci -- -i

Though it's okay to add the "_", it looks a bit weird. I'd like to
remove it.

Besides that,

Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>


	--yliu
>  
>  #. Start a container instance with a virtio-user port.
>  
> @@ -121,6 +122,7 @@ some minor changes.
>              -v /dev/hugepages:/dev/hugepages \
>              dpdk-app-testpmd testpmd -l 6-7 -n 4 -m 1024 --no-pci \
>              --vdev=virtio_user0,path=/var/run/usvhost \
> +            --file-prefix=container_ \
>  	    -- -i --txqflags=0xf00 --disable-hw-vlan
>  
>  Note: If we run all above setup on the host, it's a shm-based IPC.
> -- 
> 1.8.3.1
>
  

Patch

diff --git a/doc/guides/howto/virtio_user_for_container_networking.rst b/doc/guides/howto/virtio_user_for_container_networking.rst
index dbb9319..d08a5e3 100644
--- a/doc/guides/howto/virtio_user_for_container_networking.rst
+++ b/doc/guides/howto/virtio_user_for_container_networking.rst
@@ -111,7 +111,8 @@  some minor changes.
     .. code-block:: console
 
         $(testpmd) -l 0-1 -n 4 --socket-mem 1024,1024 \
-            --vdev 'eth_vhost0,iface=/tmp/sock0' --no-pci -- -i
+            --vdev 'eth_vhost0,iface=/tmp/sock0' \
+            --file-prefix=host_ --no-pci -- -i
 
 #. Start a container instance with a virtio-user port.
 
@@ -121,6 +122,7 @@  some minor changes.
             -v /dev/hugepages:/dev/hugepages \
             dpdk-app-testpmd testpmd -l 6-7 -n 4 -m 1024 --no-pci \
             --vdev=virtio_user0,path=/var/run/usvhost \
+            --file-prefix=container_ \
 	    -- -i --txqflags=0xf00 --disable-hw-vlan
 
 Note: If we run all above setup on the host, it's a shm-based IPC.