[ovs-dev] HELLO

2011-04-04 Thread Anita Abdul
I am writing this letter out of a genuine desperation to find a reliable partner in an unfolding transaction. I seek your help and genuine co-operation to our mutual benefit and I believe that you will not letdown the trust and confidence I am about to repose on you. I am Anita, Purchasi

[ovs-dev] [PATCH] dpif-linux: Choose port numbers more prudently.

2011-04-04 Thread Ethan Jackson
Before this patch the kernel chose the lowest available number for newly created datapath ports. This patch moves the port number choosing responsibility to user space, and implements a least recently used port number queue in an attempt to avoid reuse. Bug #2140. --- lib/dpif-linux.c | 52 +++

Re: [ovs-dev] [PATCH] bond: Choose slaves randomly.

2011-04-04 Thread Ethan Jackson
Thanks, I merged this series. Ethan On Mon, Apr 4, 2011 at 10:58 AM, Ben Pfaff wrote: > On Fri, Apr 01, 2011 at 06:15:32PM -0700, Ethan Jackson wrote: >> When the bonding library encounters a flow it hasn't seen before, >> it assigns it to the active slave and waits for load balancing to >> move

Re: [ovs-dev] [daemon 10/10] daemon: Avoid races on pidfile creation.

2011-04-04 Thread Ben Pfaff
On Fri, Apr 01, 2011 at 05:13:19PM -0700, Ethan Jackson wrote: > > + ? ?/* Rename or link it to the ocrrect name. */ > > + ? ?if (overwrite_pidfile) { > > + ? ? ? ?if (rename(tmpfile, pidfile) < 0) { > > + ? ? ? ? ? ?VLOG_FATAL("failed to rename \"%s\" to \"%s\" (%s)", > > + ? ? ? ? ? ? ? ? ? ? ? t

Re: [ovs-dev] [PATCH] xenserver: Fix up iface-id after it changes or disappears too.

2011-04-04 Thread Ben Pfaff
Thanks, I pushed this. On Fri, Apr 01, 2011 at 05:14:52PM -0700, Ethan Jackson wrote: > Looks bueno. > > On Fri, Apr 1, 2011 at 1:48 PM, Ben Pfaff wrote: > > ovs-xapi-sync is supposed to always keep external-ids:iface-id up to date, > > but in fact it would only set it when an interface initiall

Re: [ovs-dev] [PATCH] bond: Choose slaves randomly.

2011-04-04 Thread Ben Pfaff
On Fri, Apr 01, 2011 at 06:15:32PM -0700, Ethan Jackson wrote: > When the bonding library encounters a flow it hasn't seen before, > it assigns it to the active slave and waits for load balancing to > move it to a more appropriate place. This commit causes it to > first attempt a random slave. Lo