aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Kirjanov <[email protected]>2015-11-05 18:44:59 -0800
committerLinus Torvalds <[email protected]>2015-11-05 19:34:48 -0800
commitfda901241fb89449244537db4fb27b06e491b74f (patch)
tree92199003ca0adc2857b20aecd2286782c7dfd39b
parent39d2da2161d35de301ec5397ce9103c68b883054 (diff)
slab: convert slab_is_available() to boolean
A good candidate to return a boolean result. Signed-off-by: Denis Kirjanov <[email protected]> Cc: Christoph Lameter <[email protected]> Reviewed-by: Pekka Enberg <[email protected]> Cc: David Rientjes <[email protected]> Cc: Joonsoo Kim <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--include/linux/slab.h2
-rw-r--r--mm/slab_common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/slab.h b/include/linux/slab.h
index 7e37d448ed91..7c82e3b307a3 100644
--- a/include/linux/slab.h
+++ b/include/linux/slab.h
@@ -111,7 +111,7 @@ struct mem_cgroup;
* struct kmem_cache related prototypes
*/
void __init kmem_cache_init(void);
-int slab_is_available(void);
+bool slab_is_available(void);
struct kmem_cache *kmem_cache_create(const char *, size_t, size_t,
unsigned long,
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 5ce4faeb16fb..113a6fd597db 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -692,7 +692,7 @@ int kmem_cache_shrink(struct kmem_cache *cachep)
}
EXPORT_SYMBOL(kmem_cache_shrink);
-int slab_is_available(void)
+bool slab_is_available(void)
{
return slab_state >= UP;
}