Re: [PATCH] Multiple & vs. && and | vs. || bugs in 2.5.63

William Lee Irwin III (wli@holomorphy.com)
Sun, 2 Mar 2003 04:31:08 -0800


On Sun, Mar 02, 2003 at 04:19:23AM -0800, Norbert Kiesel wrote:
> --- linux-2.5.63/mm/slab.c~ 2003-02-24 11:05:39.000000000 -0800
> +++ linux-2.5.63/mm/slab.c 2003-03-02 03:03:33.000000000 -0800
> @@ -1643,7 +1643,7 @@
> if (cachep->ctor && cachep->flags & SLAB_POISON) {
> unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
>
> - if (!flags & __GFP_WAIT)
> + if (!(flags & __GFP_WAIT))
> ctor_flags |= SLAB_CTOR_ATOMIC;
>
> cachep->ctor(objp, cachep, ctor_flags);

Holy cow! This is major.

akpm, please expedite.

-- wli
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/