Re: [PATCH] slab: fix kmem_ptr_validate prototype

2006-12-14 Thread Christoph Lameter
The declaration of kmem_ptr_validate in slab.h does not match the one in slab.c. Remove the fastcall attribute (this is the only use in slab.c). Signed-off-by: Christoph Lameter <[EMAIL PROTECTED]> Index: linux-2.6/mm/slab.c ===

Re: [PATCH] slab: fix kmem_ptr_validate prototype

2006-12-14 Thread Christoph Lameter
On Thu, 14 Dec 2006, Peter Zijlstra wrote: > Some fallout of: 2e892f43ccb602e8ffad73396a1000f2040c9e0b > > CC mm/slab.o /usr/src/linux-2.6-git/mm/slab.c:3557: error: conflicting > types for ÿÿkmem_ptr_validateÿÿ > /usr/src/linux-2.6-git/include/linux/slab.h:58: error: previous > declaration

[PATCH] slab: fix kmem_ptr_validate prototype

2006-12-14 Thread Peter Zijlstra
Some fallout of: 2e892f43ccb602e8ffad73396a1000f2040c9e0b CC mm/slab.o /usr/src/linux-2.6-git/mm/slab.c:3557: error: conflicting types for ‘kmem_ptr_validate’ /usr/src/linux-2.6-git/include/linux/slab.h:58: error: previous declaration of ‘kmem_ptr_validate’ was here Signed-off-by:

[PATCH] slab: fix kmem_ptr_validate prototype

2006-12-14 Thread Peter Zijlstra
Some fallout of: 2e892f43ccb602e8ffad73396a1000f2040c9e0b CC mm/slab.o /usr/src/linux-2.6-git/mm/slab.c:3557: error: conflicting types for ‘kmem_ptr_validate’ /usr/src/linux-2.6-git/include/linux/slab.h:58: error: previous declaration of ‘kmem_ptr_validate’ was here Signed-off-by:

Re: [PATCH] slab: fix kmem_ptr_validate prototype

2006-12-14 Thread Christoph Lameter
On Thu, 14 Dec 2006, Peter Zijlstra wrote: Some fallout of: 2e892f43ccb602e8ffad73396a1000f2040c9e0b CC mm/slab.o /usr/src/linux-2.6-git/mm/slab.c:3557: error: conflicting types for ÿÿkmem_ptr_validateÿÿ /usr/src/linux-2.6-git/include/linux/slab.h:58: error: previous declaration of

Re: [PATCH] slab: fix kmem_ptr_validate prototype

2006-12-14 Thread Christoph Lameter
The declaration of kmem_ptr_validate in slab.h does not match the one in slab.c. Remove the fastcall attribute (this is the only use in slab.c). Signed-off-by: Christoph Lameter [EMAIL PROTECTED] Index: linux-2.6/mm/slab.c === ---