diff mbox

[ovs-dev,CudaMailTagged,1/2] ovs-ctl: add early parameters for DPDK

Message ID 1453735395-3046-2-git-send-email-christian.ehrhardt@canonical.com
State Deferred
Headers show

Commit Message

Christian Ehrhardt Jan. 25, 2016, 3:23 p.m. UTC
To enable DPDK it needs a positional parameter to ovs-vswitchd.
Since everybody is encouranged to use the project provided ovs-ctl
scripts to start/stop the daemons it should allow an external setting of
these options via an environment variable.

This patch adds $DPDK_OPTS which will be inserted in the call to
ovs-vswitchd arguments early.

Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
---
 debian/openvswitch-switch.template | 4 ++++
 utilities/ovs-ctl.in               | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

Comments

Aaron Conole Jan. 25, 2016, 4:18 p.m. UTC | #1
Hi Christian,

Christian Ehrhardt <christian.ehrhardt@canonical.com> writes:
> To enable DPDK it needs a positional parameter to ovs-vswitchd.
> Since everybody is encouranged to use the project provided ovs-ctl
> scripts to start/stop the daemons it should allow an external setting of
> these options via an environment variable.
>
> This patch adds $DPDK_OPTS which will be inserted in the call to
> ovs-vswitchd arguments early.

There is an effort underway to move DPDK options from the command line
to the openvswitch database. See the progress at
http://openvswitch.org/pipermail/dev/2016-January/064735.html

If that series is accepted, this patch is invalid.

> Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
> ---
>  debian/openvswitch-switch.template | 4 ++++
>  utilities/ovs-ctl.in               | 6 +++++-
>  2 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/debian/openvswitch-switch.template b/debian/openvswitch-switch.template
> index d7c7796..27cf7b5 100644
> --- a/debian/openvswitch-switch.template
> +++ b/debian/openvswitch-switch.template
> @@ -6,3 +6,7 @@
>  # OVS_CTL_OPTS: Extra options to pass to ovs-ctl.  This is, for example,
>  # a suitable place to specify --ovs-vswitchd-wrapper=valgrind.
>  # OVS_CTL_OPTS=
> +
> +# DPDK options - see /usr/share/doc/openvswitch-common/INSTALL.DPDK.md.gz
> +# these are passed to ovs-vswitchd obeying to the positional requirements
> +# DPDK_OPTS='--dpdk -vhost_sock_dir /var/run/openvswitch-vhost -c 0x1 -n 4'
> diff --git a/utilities/ovs-ctl.in b/utilities/ovs-ctl.in
> index 0082bed..7b3a3bf 100755
> --- a/utilities/ovs-ctl.in
> +++ b/utilities/ovs-ctl.in
> @@ -215,7 +215,11 @@ start_forwarding () {
>          fi
>  
>  	    # Start ovs-vswitchd.
> -	    set ovs-vswitchd unix:"$DB_SOCK"
> +	    set ovs-vswitchd
> +	    if test X"$DPDK_OPTS" != X; then
> +	        set "$@" $DPDK_OPTS --
> +	    fi
> +	    set "$@" unix:"$DB_SOCK"
>  	    set "$@" -vconsole:emer -vsyslog:err -vfile:info
>  	    if test X"$MLOCKALL" != Xno; then
>  	        set "$@" --mlockall
Christian Ehrhardt Jan. 26, 2016, 6:15 a.m. UTC | #2
Hi Aaron,
I didn't follow all of the list yet - thanks for pointing that other series
out.
That looks even more cleanly integrated, so I agree to wait until that
series is accepted - hopefully before 2.5 is released.

Christian Ehrhardt
Software Engineer, Ubuntu Server
Canonical Ltd

On Mon, Jan 25, 2016 at 5:18 PM, Aaron Conole <aconole@redhat.com> wrote:

> Hi Christian,
>
> Christian Ehrhardt <christian.ehrhardt@canonical.com> writes:
> > To enable DPDK it needs a positional parameter to ovs-vswitchd.
> > Since everybody is encouranged to use the project provided ovs-ctl
> > scripts to start/stop the daemons it should allow an external setting of
> > these options via an environment variable.
> >
> > This patch adds $DPDK_OPTS which will be inserted in the call to
> > ovs-vswitchd arguments early.
>
> There is an effort underway to move DPDK options from the command line
> to the openvswitch database. See the progress at
> http://openvswitch.org/pipermail/dev/2016-January/064735.html
>
> If that series is accepted, this patch is invalid.
>
> > Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
> > ---
> >  debian/openvswitch-switch.template | 4 ++++
> >  utilities/ovs-ctl.in               | 6 +++++-
> >  2 files changed, 9 insertions(+), 1 deletion(-)
> >
> > diff --git a/debian/openvswitch-switch.template
> b/debian/openvswitch-switch.template
> > index d7c7796..27cf7b5 100644
> > --- a/debian/openvswitch-switch.template
> > +++ b/debian/openvswitch-switch.template
> > @@ -6,3 +6,7 @@
> >  # OVS_CTL_OPTS: Extra options to pass to ovs-ctl.  This is, for example,
> >  # a suitable place to specify --ovs-vswitchd-wrapper=valgrind.
> >  # OVS_CTL_OPTS=
> > +
> > +# DPDK options - see
> /usr/share/doc/openvswitch-common/INSTALL.DPDK.md.gz
> > +# these are passed to ovs-vswitchd obeying to the positional
> requirements
> > +# DPDK_OPTS='--dpdk -vhost_sock_dir /var/run/openvswitch-vhost -c 0x1
> -n 4'
> > diff --git a/utilities/ovs-ctl.in b/utilities/ovs-ctl.in
> > index 0082bed..7b3a3bf 100755
> > --- a/utilities/ovs-ctl.in
> > +++ b/utilities/ovs-ctl.in
> > @@ -215,7 +215,11 @@ start_forwarding () {
> >          fi
> >
> >           # Start ovs-vswitchd.
> > -         set ovs-vswitchd unix:"$DB_SOCK"
> > +         set ovs-vswitchd
> > +         if test X"$DPDK_OPTS" != X; then
> > +             set "$@" $DPDK_OPTS --
> > +         fi
> > +         set "$@" unix:"$DB_SOCK"
> >           set "$@" -vconsole:emer -vsyslog:err -vfile:info
> >           if test X"$MLOCKALL" != Xno; then
> >               set "$@" --mlockall
>
diff mbox

Patch

diff --git a/debian/openvswitch-switch.template b/debian/openvswitch-switch.template
index d7c7796..27cf7b5 100644
--- a/debian/openvswitch-switch.template
+++ b/debian/openvswitch-switch.template
@@ -6,3 +6,7 @@ 
 # OVS_CTL_OPTS: Extra options to pass to ovs-ctl.  This is, for example,
 # a suitable place to specify --ovs-vswitchd-wrapper=valgrind.
 # OVS_CTL_OPTS=
+
+# DPDK options - see /usr/share/doc/openvswitch-common/INSTALL.DPDK.md.gz
+# these are passed to ovs-vswitchd obeying to the positional requirements
+# DPDK_OPTS='--dpdk -vhost_sock_dir /var/run/openvswitch-vhost -c 0x1 -n 4'
diff --git a/utilities/ovs-ctl.in b/utilities/ovs-ctl.in
index 0082bed..7b3a3bf 100755
--- a/utilities/ovs-ctl.in
+++ b/utilities/ovs-ctl.in
@@ -215,7 +215,11 @@  start_forwarding () {
         fi
 
 	    # Start ovs-vswitchd.
-	    set ovs-vswitchd unix:"$DB_SOCK"
+	    set ovs-vswitchd
+	    if test X"$DPDK_OPTS" != X; then
+	        set "$@" $DPDK_OPTS --
+	    fi
+	    set "$@" unix:"$DB_SOCK"
 	    set "$@" -vconsole:emer -vsyslog:err -vfile:info
 	    if test X"$MLOCKALL" != Xno; then
 	        set "$@" --mlockall