Re: [ovs-dev] A proposal of ovn-scale-test tool

2016-04-10 Thread Baohua Yang
interesting work! will it be integrated back to rally repo? On Mon, Apr 11, 2016 at 10:21 AM, Lei Huang wrote: > Hi, > > In last few months we created a ovn scalability test tool, it is > implemented based on openstack/rally project, its repo is > https://github.com/l8huang/ovn-scale-test. > > I

Re: [ovs-dev] OVS on coreos.

2015-11-10 Thread Baohua Yang
ching the host NICs to the > ovs-vswitchd container through DPDK. It's certainly feasible, but I'm not > sure there's a lot of overlap between the use cases for OVS DPDK and OVS as > a container. > > Ethan > > On Tue, Nov 10, 2015 at 5:58 PM, Baohua Yang wrote:

Re: [ovs-dev] OVS on coreos.

2015-11-10 Thread Baohua Yang
thanks ethan! seems we've put the ovsdb-server and ovs-vswitchd (user-face) part into a container, which are basically userspace apps. But it still requires host support on the datapath module. more interesting is to put the whole ovs, including the datapath into container. there's some userspace o

Re: [ovs-dev] Resubmit after Normal output action

2013-06-12 Thread Baohua Yang
Thanks ben. I re-do the experiments, the order does NOT care. Sorry for my mistake due to the input port match. Thanks! On Tue, Jun 11, 2013 at 12:55 AM, Ben Pfaff wrote: > On Sun, Jun 09, 2013 at 05:20:27PM +0800, Baohua Yang wrote: > > I want one packet do two process

[ovs-dev] Resubmit after Normal output action

2013-06-09 Thread Baohua Yang
Dear all I want one packet do two processes in ovs: 1) resubmit to another table; 2) Normal send out. However, if specifying Normal output action before resubmit action, it will work. While put resubmit action ahead, it only do the Normal output action.

Re: [ovs-dev] where is the ovs_packet_cmd handler?

2012-08-18 Thread Baohua Yang
much! On Sat, Aug 18, 2012 at 12:11 PM, Ben Pfaff wrote: > On Sat, Aug 18, 2012 at 11:10:50AM +0800, Baohua Yang wrote: > > <1> All incoming network packet will be handler > > by ovs_dp_process_received_packet(), right? > > In ovs_dp_process_received_packet(),

Re: [ovs-dev] where is the ovs_packet_cmd handler?

2012-08-17 Thread Baohua Yang
Aug 17, 2012 at 04:50:57PM +0800, Baohua Yang wrote: > > In the openvswitch code file include\linux\openvswitch.h, there's 4 > > defined cmds, as > > enum ovs_packet_cmd{ > > OVS_PACKET_CMD_UNSPEC, > > OVS_PACKET_CMD_MISS, > > OVS_PACKET_CMD_AC

[ovs-dev] where is the ovs_packet_cmd handler?

2012-08-17 Thread Baohua Yang
Hi,all In the openvswitch code file include\linux\openvswitch.h, there's 4 defined cmds, as enum ovs_packet_cmd{ OVS_PACKET_CMD_UNSPEC, OVS_PACKET_CMD_MISS, OVS_PACKET_CMD_ACTION, OVS_PACKET_CMD_EXECUTE } However, in datapath\datapath.c, there is only the handler for the OVS_PA