diff options
author | Joonsoo Kim <js1304@gmail.com> | 2012-01-27 03:12:23 -0500 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2012-05-08 01:31:57 -0400 |
commit | de3ec035627b4aba8905643084c1f7944acc99cc (patch) | |
tree | 00aebefbb7ba4b630ed5e8e876b1d6a49cf4db35 /mm/slub.c | |
parent | dd775ae2549217d3ae09363e3edb305d0fa19928 (diff) |
slub: fix incorrect return type of get_any_partial()
Commit 497b66f2ecc97844493e6a147fd5a7e73f73f408 ('slub: return object pointer
from get_partial() / new_slab().') changed return type of some functions.
This updates missing part.
Signed-off-by: Joonsoo Kim <js1304@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1579,7 +1579,7 @@ static void *get_partial_node(struct kmem_cache *s, | |||
1579 | /* | 1579 | /* |
1580 | * Get a page from somewhere. Search in increasing NUMA distances. | 1580 | * Get a page from somewhere. Search in increasing NUMA distances. |
1581 | */ | 1581 | */ |
1582 | static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags, | 1582 | static void *get_any_partial(struct kmem_cache *s, gfp_t flags, |
1583 | struct kmem_cache_cpu *c) | 1583 | struct kmem_cache_cpu *c) |
1584 | { | 1584 | { |
1585 | #ifdef CONFIG_NUMA | 1585 | #ifdef CONFIG_NUMA |