Re: [ovs-dev] [PATCH V4] ofproto-dpif.c: Modify vsp_realdev_to_vlandev() function

2013-06-04 Thread Alex Wang
Hey Ben, I found in that the "send_packet()" function in branch-1.10 also invokes the "realdev_to_vlandev()" function. @@ -5743,8 +5744,10 @@ send_packet(const struct ofport_dpif *ofport, struct ofpbuf *packet) odp_put_tunnel_action(&flow.tunnel, &odp_actions); odp_put_skb_mark_

Re: [ovs-dev] [PATCH V4] ofproto-dpif.c: Modify vsp_realdev_to_vlandev() function

2013-05-31 Thread Alex Wang
Thanks Ben, I'll ask Ethan, On Thu, May 30, 2013 at 10:08 PM, Ben Pfaff wrote: > On Thu, May 30, 2013 at 06:24:44PM -0700, Alex Wang wrote: > > Commit 52a90c29 (Implement new "VLAN splinters" feature) passed in > OpenFlow > > port number to vsp_realdev_to_vlandev() function which asks for data

Re: [ovs-dev] [PATCH V4] ofproto-dpif.c: Modify vsp_realdev_to_vlandev() function

2013-05-30 Thread Ben Pfaff
On Thu, May 30, 2013 at 06:24:44PM -0700, Alex Wang wrote: > Commit 52a90c29 (Implement new "VLAN splinters" feature) passed in OpenFlow > port number to vsp_realdev_to_vlandev() function which asks for datapath port > number. > > This patch fixes this bug by making the vsp_realdev_to_vlandev() fu

[ovs-dev] [PATCH V4] ofproto-dpif.c: Modify vsp_realdev_to_vlandev() function

2013-05-30 Thread Alex Wang
Commit 52a90c29 (Implement new "VLAN splinters" feature) passed in OpenFlow port number to vsp_realdev_to_vlandev() function which asks for datapath port number. This patch fixes this bug by making the vsp_realdev_to_vlandev() function take in and return OpenFlow port number. Signed-off-by: Alex