Re: [ovs-dev] [PATCH v5.1 2/5] ofp-util: Implement OFPMP_TABLE_FEATURES en/decode

2014-03-23 Thread Ben Pfaff
On Sat, Jan 18, 2014 at 10:00:40AM +0800, Alexander Wu wrote: > On 2014/1/18 6:56, Ben Pfaff wrote: > >I'm still not really happy with the degree of abstraction here. I'm > >going to try some experiments of my own to see whether what I want is > >practical. > > > > > > Thanks, I don't have a good

[ovs-dev] Бросить курить всего за сутки – это реально!

2014-03-23 Thread Xsmoker 2014
Если вы курите, то вам это будет интересно! Подробнее на сайте [ПЕРЕЙТИ НА САЙТ] ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev

Re: [ovs-dev] MPLS patches

2014-03-23 Thread Simon Horman
On Thu, Mar 20, 2014 at 03:11:23PM -0700, Ben Pfaff wrote: > Going through patchwork, I got very confused about whether several > MPLS patches from mid-February were still current and ended up > marking them "Deferred". Would you mind doing a repost of all the > current MPLS patches? I'd really l

Re: [ovs-dev] [PATCH 2/5] ofproto: Allow the use of the OpenFlow 1.4 protocol

2014-03-23 Thread Ben Pfaff
On Fri, Mar 21, 2014 at 09:17:28AM -0700, Ben Pfaff wrote: > On Fri, Mar 21, 2014 at 10:50:24AM +0200, Alexandru Copot wrote: > > On Tue, Mar 18, 2014 at 12:07 AM, Ben Pfaff wrote: > > >> > > > >> > The one bit that I'm concerned about is that it allows OpenFlow 1.4 to > > >> > be enabled even tho

[ovs-dev] [PATCH] net/openvswitch: Use with RCU_INIT_POINTER(x, NULL) in vport-gre.c

2014-03-23 Thread Monam Agarwal
This patch replaces rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x, NULL) The rcu_assign_pointer() ensures that the initialization of a structure is carried out before storing a pointer to that structure. And in the case of the NULL pointer, there is no structure to initialize. So, r