Commit 27bb628a authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

missing atomic_read_long() in slub.c

nr_slabs is atomic_long_t, not atomic_t
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 2d8a9726
...@@ -2734,7 +2734,7 @@ static void slab_mem_offline_callback(void *arg) ...@@ -2734,7 +2734,7 @@ static void slab_mem_offline_callback(void *arg)
* and offline_pages() function shoudn't call this * and offline_pages() function shoudn't call this
* callback. So, we must fail. * callback. So, we must fail.
*/ */
BUG_ON(atomic_read(&n->nr_slabs)); BUG_ON(atomic_long_read(&n->nr_slabs));
s->node[offline_node] = NULL; s->node[offline_node] = NULL;
kmem_cache_free(kmalloc_caches, n); kmem_cache_free(kmalloc_caches, n);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment