projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d8a972
)
missing atomic_read_long() in slub.c
author
Al Viro
<viro@ftp.linux.org.uk>
Mon, 29 Oct 2007 04:42:55 +0000
(
04:42
+0000)
committer
Linus Torvalds
<torvalds@woody.linux-foundation.org>
Mon, 29 Oct 2007 14:41:32 +0000
(07:41 -0700)
nr_slabs is atomic_long_t, not atomic_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/slub.c
patch
|
blob
|
blame
|
history
diff --git
a/mm/slub.c
b/mm/slub.c
index aac1dd3c657d1de350c5e7615a31d0c8021abb55..bcdb2c8941a5fcb428d4d3d256106f29e921debd 100644
(file)
--- a/
mm/slub.c
+++ b/
mm/slub.c
@@
-2734,7
+2734,7
@@
static void slab_mem_offline_callback(void *arg)
* and offline_pages() function shoudn't call this
* 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;
kmem_cache_free(kmalloc_caches, n);