> On Tue, 25 Sep 2007 01:46:25 -0700 Andrew Morton wrote:
>
> >
> >
ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.23-rc8/2.6.23-rc8-mm...
> >
> > - Various fixes against 2.6.23-rc7-mm1.
> >
> >
> > git-unionfs.patch
>
> in unionfs debug.c:
>
> #if BITS_PER_LONG == 32
> #define POISONED_PTR ((void*) 0x5a5a5a5a)
> #elif BITS_PER_LONG == 64
> #define POISONED_PTR ((void*) 0x5a5a5a5a5a5a5a5a)
> #else
> #error Unknown BITS_PER_LONG value
> #endif /* BITS_PER_LONG != known */
>
>
> We try to keep all poison values in include/linux/poison.h so that
> when digging around for them, it's easier to locate the one in
> question.