Use non atomic unlock

Slub can use the non-atomic version to unlock because other flags will not
get modified with the lock held.

Signed-off-by: Nick Piggin <npiggin@suse.de>
Acked-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by Nick Piggin and committed by Christoph Lameter a76d3546 8ff12cfc

+1 -1
+1 -1
mm/slub.c
··· 1219 1219 1220 1220 static __always_inline void slab_unlock(struct page *page) 1221 1221 { 1222 - bit_spin_unlock(PG_locked, &page->flags); 1222 + __bit_spin_unlock(PG_locked, &page->flags); 1223 1223 } 1224 1224 1225 1225 static __always_inline int slab_trylock(struct page *page)