Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-03-06 Thread Traynor, Kevin
> -Original Message- > From: Daniele Di Proietto [mailto:diproiet...@vmware.com] > Sent: Wednesday, March 4, 2015 6:59 PM > To: Traynor, Kevin > Cc: dev@openvswitch.org > Subject: Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing. > > > > On

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-03-04 Thread Daniele Di Proietto
Behalf Of Daniele Di >>>> Proietto >>>> Sent: Wednesday, February 25, 2015 4:47 PM >>>> To: dev@openvswitch.org >>>> Subject: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing. >>>> >>>> With this commit the '--dpdk' opt

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-03-03 Thread Traynor, Kevin
> -Original Message- > From: Daniele Di Proietto [mailto:diproiet...@vmware.com] > Sent: Thursday, February 26, 2015 1:54 PM > To: Traynor, Kevin > Cc: dev@openvswitch.org > Subject: Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing. > > > > On

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-26 Thread Daniele Di Proietto
> On 26 Feb 2015, at 13:19, Traynor, Kevin wrote: > > >> -Original Message- >> From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Daniele Di >> Proietto >> Sent: Wednesday, February 25, 2015 4:47 PM >> To: dev@openvswitch.org >>

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-26 Thread Daniele Di Proietto
> On 25 Feb 2015, at 19:59, Ben Pfaff wrote: > > On Wed, Feb 25, 2015 at 04:47:09PM +, Daniele Di Proietto wrote: >> With this commit the '--dpdk' option doesn't need to be at the beginning >> of the command line. Furthermode, the code that calls 'rte_eal_init()' >> can be slightly simplifie

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-26 Thread Traynor, Kevin
> -Original Message- > From: dev [mailto:dev-boun...@openvswitch.org] On Behalf Of Daniele Di > Proietto > Sent: Wednesday, February 25, 2015 4:47 PM > To: dev@openvswitch.org > Subject: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing. > > With this co

Re: [ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-25 Thread Ben Pfaff
On Wed, Feb 25, 2015 at 04:47:09PM +, Daniele Di Proietto wrote: > With this commit the '--dpdk' option doesn't need to be at the beginning > of the command line. Furthermode, the code that calls 'rte_eal_init()' > can be slightly simplified by using the 'optind' variable. The change is > total

[ovs-dev] [PATCH] vswitchd: simplify dpdk option parsing.

2015-02-25 Thread Daniele Di Proietto
With this commit the '--dpdk' option doesn't need to be at the beginning of the command line. Furthermode, the code that calls 'rte_eal_init()' can be slightly simplified by using the 'optind' variable. The change is totally backward compatible Documentation and manpages are updated accordingly.