slub: avoid duplicate creation on the first object
authorWei Yang <weiyang@linux.vnet.ibm.com>
Wed, 6 Aug 2014 23:04:42 +0000 (16:04 -0700)
committerLiviu Dudau <Liviu.Dudau@arm.com>
Thu, 23 Oct 2014 13:12:31 +0000 (14:12 +0100)
commitde2ab30fdd146cd6782f623224ceb4a4a7d9d097
treebe8686d725fc3c55aeb6f3dc29f99e96bcbdc1cf
parent3c91f7aec028fc177b25af853cc9ab5852fa4aa6
slub: avoid duplicate creation on the first object

When a kmem_cache is created with ctor, each object in the kmem_cache
will be initialized before ready to use.  While in slub implementation,
the first object will be initialized twice.

This patch reduces the duplication of initialization of the first
object.

Fix commit 7656c72b ("SLUB: add macros for scanning objects in a slab").

Signed-off-by: Wei Yang <weiyang@linux.vnet.ibm.com>
Acked-by: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/slub.c