Re: [ovs-dev] [backer v2 1/3] mac-learning: Simplify mac_learning_changed().

2013-06-12 Thread Ethan Jackson
Thanks, I'll merge this series shortly. Ethan On Wed, Jun 12, 2013 at 3:27 PM, Ben Pfaff wrote: > On Wed, Jun 12, 2013 at 03:27:13PM -0700, Ethan Jackson wrote: >> Thanks for the review. Here's an incremental. > > That's what I had in mind, thanks. __

Re: [ovs-dev] [backer v2 1/3] mac-learning: Simplify mac_learning_changed().

2013-06-12 Thread Ben Pfaff
On Wed, Jun 12, 2013 at 03:27:13PM -0700, Ethan Jackson wrote: > Thanks for the review. Here's an incremental. That's what I had in mind, thanks. ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] [backer v2 1/3] mac-learning: Simplify mac_learning_changed().

2013-06-12 Thread Ethan Jackson
Thanks for the review. Here's an incremental. --- lib/mac-learning.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/mac-learning.c b/lib/mac-learning.c index d66f331..f9b3171 100644 --- a/lib/mac-learning.c +++ b/lib/mac-learning.c @@ -246,7 +246,10 @@ mac

Re: [ovs-dev] [backer v2 1/3] mac-learning: Simplify mac_learning_changed().

2013-06-12 Thread Ben Pfaff
On Wed, Jun 12, 2013 at 02:45:47PM -0700, Ethan Jackson wrote: > With this patch, the mac_learning module takes responsibility for > remembering tags which need revalidation after a > mac_learning_changed() call. This removes one of > ofproto-dpif-xlate's dpif_backer uses. > > Signed-off-by: Etha

[ovs-dev] [backer v2 1/3] mac-learning: Simplify mac_learning_changed().

2013-06-12 Thread Ethan Jackson
With this patch, the mac_learning module takes responsibility for remembering tags which need revalidation after a mac_learning_changed() call. This removes one of ofproto-dpif-xlate's dpif_backer uses. Signed-off-by: Ethan Jackson --- lib/mac-learning.c | 15 +-- lib/ma