From: Christoph Lameter Date: Wed, 17 Oct 2007 06:25:51 +0000 (-0700) Subject: Slab API: remove useless ctor parameter and reorder parameters X-Git-Tag: v2.6.24-rc1~797 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ba9b9d0ba0a49d91fa6417c7510ee36f48cf957;p=pandora-kernel.git Slab API: remove useless ctor parameter and reorder parameters Slab constructors currently have a flags parameter that is never used. And the order of the arguments is opposite to other slab functions. The object pointer is placed before the kmem_cache pointer. Convert ctor(void *object, struct kmem_cache *s, unsigned long flags) to ctor(struct kmem_cache *s, void *object) throughout the kernel [akpm@linux-foundation.org: coupla fixes] Signed-off-by: Christoph Lameter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed