Re: [ovs-dev] [PATCH 1/1] datapath: add key support to CAPWAP tunnel

2011-08-02 Thread Jesse Gross
On Tue, Aug 2, 2011 at 12:01 PM, Simon Horman ho...@verge.net.au wrote: Hi, in an effort to move things forward I decided to take the liberty of posting a fresh version of this patch which addresses each of the issues that Jesse raises below. Thanks for picking this up Simon. On Fri, Jul

[ovs-dev] Thanks

2011-08-02 Thread Mou Xinsheng
Iseek yourassiatnce to received funds on mybehalf for the help of the oprhans children suffering outhere,Please respond for details offunds andmy self. Mou ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

[ovs-dev] [PATCH] Prepare Open vSwitch 1.1.2 release.

2011-08-02 Thread Justin Pettit
--- ChangeLog|4 configure.ac |2 +- debian/changelog |6 ++ 3 files changed, 11 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3126e05..03869b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +v1.1.2 - 02 Aug 2011

[ovs-dev] [PATCH] netdev: Disallow creation of netdevs with unsupported options.

2011-08-02 Thread Ethan Jackson
Before this patch, if an interface was created with an unsupported key in its options column, ovs-vswitchd would ignore the offending key and create the interface. Later on, if ovs-vswitchd was restarted, it would recreate netdevs for the interfaces in the datapath. Then it would attempt to

Re: [ovs-dev] [PATCH] Prepare Open vSwitch 1.1.2 release.

2011-08-02 Thread Justin Pettit
Welcome back! Thanks for the review. I pushed it. --Justin On Aug 2, 2011, at 3:30 PM, Ben Pfaff wrote: Looks good to me, thanks. On Tue, Aug 02, 2011 at 12:23:19PM -0700, Justin Pettit wrote: --- ChangeLog|4 configure.ac |2 +- debian/changelog |6 ++

Re: [ovs-dev] [PATCH] datapath: Allow the number of hash entries to exceed TBL_MAX_BUCKETS

2011-08-02 Thread Simon Horman
On Tue, Aug 02, 2011 at 12:09:00PM +0700, Jesse Gross wrote: On Mon, Aug 1, 2011 at 8:55 PM, Simon Horman ho...@verge.net.au wrote: * If the number of entries in a table exceeds  the number of buckets that it has then  an attempt will be made to resize the table. * There is a limit of

Re: [ovs-dev] News

2011-08-02 Thread Patsy Robles
Now you can receive a degree much more easier. Get it online! Just make a phone call: Inside U.S.A.: 1-845-709-8044 Outside U.S.A.: +1-845-709-8044 Call them leaving your first and last name along with your telephone number on their voicemail and they will contact you very soon.

[ovs-dev] [PATCH 3/3] datapath: Allow the number of hash entries to exceed TBL_MAX_BUCKETS

2011-08-02 Thread Simon Horman
* If the number of entries in a table exceeds the number of buckets that it has then an attempt will be made to resize the table. * There is a limit of TBL_MAX_BUCKETS placed on the number of buckets of a table. * If this limit is exceeded keep using the existing table. This allows a

Re: [ovs-dev] [PATCH] netdev: Disallow creation of netdevs with unsupported options.

2011-08-02 Thread Jesse Gross
On Wed, Aug 3, 2011 at 5:35 AM, Ethan Jackson et...@nicira.com wrote: Before this patch, if an interface was created with an unsupported key in its options column, ovs-vswitchd would ignore the offending key and create the interface.  Later on, if ovs-vswitchd was restarted, it would recreate

Re: [ovs-dev] [PATCH] datapath: Allow the number of hash entries to exceed TBL_MAX_BUCKETS

2011-08-02 Thread Jesse Gross
On Wed, Aug 3, 2011 at 9:09 AM, Simon Horman ho...@verge.net.au wrote: On Tue, Aug 02, 2011 at 12:09:00PM +0700, Jesse Gross wrote: On Mon, Aug 1, 2011 at 8:55 PM, Simon Horman ho...@verge.net.au wrote: * If the number of entries in a table exceeds  the number of buckets that it has then  

Re: [ovs-dev] [PATCH] netdev: Disallow creation of netdevs with unsupported options.

2011-08-02 Thread Ethan Jackson
This patch fixes the issue by disallowing the creation of netdevs with unsupported configuration options. Currently in netdev-vport.c:parse_tunnel_config() we just warn if there is an unknown option.  I think if we simply returned an error at that point it would have the same effect and we