diff options
author | Joonsoo Kim <iamjoonsoo.kim@lge.com> | 2013-01-21 03:01:27 -0500 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2013-04-02 02:42:17 -0400 |
commit | 338b2642290ef3193229ece8cfc776ac4fe8869d (patch) | |
tree | 4859bf45131f645f1845552a1ab33fdc4ea31af8 /mm | |
parent | 633b076464da52b3c7bf0f62932fbfc0ea23d8b3 (diff) |
slub: add 'likely' macro to inc_slabs_node()
After boot phase, 'n' always exist.
So add 'likely' macro for helping compiler.
Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/slub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1005,7 +1005,7 @@ static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects) | |||
1005 | * dilemma by deferring the increment of the count during | 1005 | * dilemma by deferring the increment of the count during |
1006 | * bootstrap (see early_kmem_cache_node_alloc). | 1006 | * bootstrap (see early_kmem_cache_node_alloc). |
1007 | */ | 1007 | */ |
1008 | if (n) { | 1008 | if (likely(n)) { |
1009 | atomic_long_inc(&n->nr_slabs); | 1009 | atomic_long_inc(&n->nr_slabs); |
1010 | atomic_long_add(objects, &n->total_objects); | 1010 | atomic_long_add(objects, &n->total_objects); |
1011 | } | 1011 | } |