login
Header Space

 
 

[PATCH] Fix warning in mm/slub.c

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Yasunori Goto <y-goto@...>
Cc: Andrew Morton <akpm@...>, Christoph Lameter <clameter@...>, Linux Kernel ML <linux-kernel@...>, linux-mm <linux-mm@...>
Date: Tuesday, October 23, 2007 - 12:21 am

Hi,

"Make kmem_cache_node for SLUB on memory online to avoid panic" introduced
the following:

mm/slub.c:2737: warning: passing argument 1 of 'atomic_read' from
incompatible pointer type


Signed-off-by: Olof Johansson <olof@lixom.net>


diff --git a/mm/slub.c b/mm/slub.c
index aac1dd3..bcdb2c8 100644
--- 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);
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] Fix warning in mm/slub.c, Olof Johansson, (Tue Oct 23, 12:21 am)
Re: [PATCH] Fix warning in mm/slub.c, Christoph Lameter, (Tue Oct 23, 12:21 pm)
Re: [PATCH] Fix warning in mm/slub.c, Yasunori Goto, (Tue Oct 23, 1:35 am)
Re: [PATCH] Fix warning in mm/slub.c, Pekka Enberg, (Tue Oct 23, 3:52 am)
Re: [Patch](memory hotplug) Make kmem_cache_node for SLUB on..., Christoph Lameter, (Thu Oct 18, 2:25 am)
Re: [Patch](memory hotplug) Make kmem_cache_node for SLUB on..., Christoph Lameter, (Thu Oct 18, 5:13 am)
speck-geostationary