Re: [ovs-dev] [PATCH v2] ovs-vtep: Support userspace datapaths.

2015-06-16 Thread Daniele Di Proietto
On 16/06/2015 15:39, "Gurucharan Shetty" wrote: > >> >> +global ps_type >> +ps_type = ovs_vsctl("get Bridge %s datapath_type" % ps_name) >> +if ps_type == "\"\"": >> +ps_type = "" >Else where in the code, this is handled by calling strip(). >e.g: port_type = ovs_vsctl("get In

Re: [ovs-dev] [PATCH v2] ovs-vtep: Support userspace datapaths.

2015-06-16 Thread Gurucharan Shetty
On Tue, Jun 16, 2015 at 6:20 AM, Daniele Di Proietto wrote: > With this commit, the VTEP emulator detects the datapath_type of the > bridge used as a "physical" switch, and creates subsequent bridges > with the same type. This allows ovs-vtep to work with the userspace > datapath. > > Signed-off-

[ovs-dev] [PATCH v2] ovs-vtep: Support userspace datapaths.

2015-06-16 Thread Daniele Di Proietto
With this commit, the VTEP emulator detects the datapath_type of the bridge used as a "physical" switch, and creates subsequent bridges with the same type. This allows ovs-vtep to work with the userspace datapath. Signed-off-by: Daniele Di Proietto --- v1 - v2: Applied Guru's suggestions * Fixed