Re: [PATCH] fsldma: fix missing header include

2010-09-03 Thread Andrew Morton
On Fri, 3 Sep 2010 17:47:24 -0700 "Ira W. Snyder" wrote: > On Fri, Sep 03, 2010 at 04:40:33PM -0700, Andrew Morton wrote: > > On Thu, 2 Sep 2010 12:47:52 -0700 > > "Ira W. Snyder" wrote: > > > > > The slab.h header is required to use the kmalloc() family of functions. > > > Due to recent kernel

Re: [PATCH] fsldma: fix missing header include

2010-09-03 Thread Ira W. Snyder
On Fri, Sep 03, 2010 at 04:40:33PM -0700, Andrew Morton wrote: > On Thu, 2 Sep 2010 12:47:52 -0700 > "Ira W. Snyder" wrote: > > > The slab.h header is required to use the kmalloc() family of functions. > > Due to recent kernel changes, this header must be directly included by > > code that calls

Re: [PATCH] fsldma: fix missing header include

2010-09-03 Thread Andrew Morton
On Thu, 2 Sep 2010 12:47:52 -0700 "Ira W. Snyder" wrote: > The slab.h header is required to use the kmalloc() family of functions. > Due to recent kernel changes, this header must be directly included by > code that calls into the memory allocator. > > Signed-off-by: Ira W. Snyder > --- > > Wi

[PATCH] fsldma: fix missing header include

2010-09-02 Thread Ira W. Snyder
The slab.h header is required to use the kmalloc() family of functions. Due to recent kernel changes, this header must be directly included by code that calls into the memory allocator. Signed-off-by: Ira W. Snyder --- Without this patch, any code which includes this header fails to build. arc