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
Если вы курите, то вам это будет интересно! Подробнее на сайте [ПЕРЕЙТИ НА
САЙТ]
___
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
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
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
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