Re: [ovs-dev] VEPA support in OVS

2013-12-05 Thread jerry
On 2013/12/4 13:24, Ben Pfaff wrote: > On Wed, Dec 04, 2013 at 10:24:28AM +0800, jerry wrote: >> On 2013/12/3 13:08, Ben Pfaff wrote: >>> On Tue, Dec 03, 2013 at 10:18:43AM +0800, jerry wrote: >>>> It may be easily supported to forward unicast packets. But I'

Re: [ovs-dev] VEPA support in OVS

2013-12-03 Thread jerry
On 2013/12/3 13:08, Ben Pfaff wrote: > On Tue, Dec 03, 2013 at 10:18:43AM +0800, jerry wrote: >> It may be easily supported to forward unicast packets. But I'm not sure >> how to set OpenFlow rules when transferring multicast packets. >> It's described as follows

Re: [ovs-dev] VEPA support in OVS

2013-12-02 Thread jerry
out by up-link netdevice and be loop backed to up-link netdevice by physical switch. Secondly, we should avoid multicast packets being sent to VM1. Here we need to gather every VM MAC addresses and add rules for each VM. Could you share with me some opinions on such problems? B.R. Jerry > __

Re: [ovs-dev] VEPA support in OVS

2013-12-02 Thread jerry
odify a little codes or add some Openflow rules to implement VEPA in OVS, it's easy to use VEPA by installing only OVS as before. BR Jerry > > Thanks, > Kyle > >> >>> From: qianhui...@huawei.com >>> To: jerry.lili...@huawei.com >>> Date: Mo

[ovs-dev] VEPA support in OVS

2013-11-29 Thread jerry
the problem that how to avoid sending multicast packets from physical port to the VM port which is this packets' original source port. Best regards, Jerry ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] Questions about ovs threads patches

2013-06-26 Thread jerry
Thanks very much. When would you send the patches on creating threads in your plan? Regards, Jerry On 2013/6/27 10:39, Ben Pfaff wrote: > The patches as sent don't create any threads. That's future work, for as-yet > unposted patches. > > On Jun 26, 2013 7:24 PM, "

Re: [ovs-dev] Questions about ovs threads patches

2013-06-26 Thread jerry
pthread_create() is called. To make ovs multithreaded, So I expect data structures added in new patches to be used by existing code in the repository. Would you like to share some thoughts on that test results? Regards, Jerry On 2013/6/26 23:32, Ben Pfaff wrote: > On Wed, Jun 26, 2013 at 04:46:38P

[ovs-dev] Questions about ovs threads patches

2013-06-26 Thread jerry
multi-threaded? What's the train of thought on the work? In my guess, maybe you separate the work of ofproto run or run_fast from ovs-vswitchd process and run the work as a single thread. Is that right? Best regards, Jerry ___ dev mailin