Re: [ovs-dev] [PATCH] vswitch: allow to specify ofport when creating port

2012-10-02 Thread Justin Pettit
On Oct 1, 2012, at 11:45 PM, Isaku Yamahata wrote: >> Due to the changes Ben mentioned, I need to be able to assign OpenFlow port >> numbers to make the ofproto-dpif unit tests pass. I've gotten most of the >> way through a patch to add that support with this new infrastructure. I >> haven't

Re: [ovs-dev] [PATCH] vswitch: allow to specify ofport when creating port

2012-10-01 Thread Isaku Yamahata
On Mon, Oct 01, 2012 at 11:42:36PM -0700, Justin Pettit wrote: > On Oct 1, 2012, at 10:08 AM, Ben Pfaff wrote: > > > But there's another issue too. As part of the ongoing effort to > > upstream tunneling to the Linux kernel, Justin is currently reworking > > how ports are assigned to datapaths.

Re: [ovs-dev] [PATCH] vswitch: allow to specify ofport when creating port

2012-10-01 Thread Justin Pettit
On Oct 1, 2012, at 10:08 AM, Ben Pfaff wrote: > But there's another issue too. As part of the ongoing effort to > upstream tunneling to the Linux kernel, Justin is currently reworking > how ports are assigned to datapaths. That work is going to change a > lot of the code in this area, and we've

Re: [ovs-dev] [PATCH] vswitch: allow to specify ofport when creating port

2012-10-01 Thread Ben Pfaff
On Mon, Oct 01, 2012 at 05:35:19PM +0900, Isaku Yamahata wrote: > For stable bridge configuration, sometimes it is desirable to be able to > add-port with port number specified. > This patch implements it and it can be done by setting ofport column of > Interface > table like > > ovs-vsctl add-

[ovs-dev] [PATCH] vswitch: allow to specify ofport when creating port

2012-10-01 Thread Isaku Yamahata
For stable bridge configuration, sometimes it is desirable to be able to add-port with port number specified. This patch implements it and it can be done by setting ofport column of Interface table like ovs-vsctl add-port s1 eth2 -- set Interface eth2 ofport=10 Signed-off-by: Isaku Yamahata -