From: Christoph Lameter Date: Tue, 17 Jul 2007 11:03:25 +0000 (-0700) Subject: SLUB: do proper locking during dma slab creation X-Git-Tag: v2.6.23-rc1~743 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dfce8648d64c07eade40d456d59cb4bfcbba008c;hp=2e443fd003d76394a8ceb78f079260478aa10710;p=karo-tx-linux.git SLUB: do proper locking during dma slab creation We modify the kmalloc_cache_dma[] array without proper locking. Do the proper locking and undo the dma cache creation if another processor has already created it. Signed-off-by: Christoph Lameter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/slub.c b/mm/slub.c index 2b50b97a0fc3..f93adb915c00 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -2301,8 +2301,15 @@ static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags) text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d", (unsigned int)realsize); s = create_kmalloc_cache(x, text, realsize, flags); - kmalloc_caches_dma[index] = s; - return s; + down_write(&slub_lock); + if (!kmalloc_caches_dma[index]) { + kmalloc_caches_dma[index] = s; + up_write(&slub_lock); + return s; + } + up_write(&slub_lock); + kmem_cache_destroy(s); + return kmalloc_caches_dma[index]; } #endif