Commit b455def2 authored by LQYMGT's avatar LQYMGT Committed by Linus Torvalds

mm: slab/slub: coding style: whitespaces and tabs mixture

Some code in mm/slab.c and mm/slub.c use whitespaces in indent.
Clean them up.
Signed-off-by: default avatarLQYMGT <lqymgt@gmail.com>
Acked-by: default avatarChristoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e2ab879e
...@@ -3580,11 +3580,11 @@ static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp) ...@@ -3580,11 +3580,11 @@ static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
for_each_online_node(node) { for_each_online_node(node) {
if (use_alien_caches) { if (use_alien_caches) {
new_alien = alloc_alien_cache(node, cachep->limit, gfp); new_alien = alloc_alien_cache(node, cachep->limit, gfp);
if (!new_alien) if (!new_alien)
goto fail; goto fail;
} }
new_shared = NULL; new_shared = NULL;
if (cachep->shared) { if (cachep->shared) {
......
...@@ -2554,7 +2554,7 @@ static void __slab_free(struct kmem_cache *s, struct page *page, ...@@ -2554,7 +2554,7 @@ static void __slab_free(struct kmem_cache *s, struct page *page,
} else { /* Needs to be taken off a list */ } else { /* Needs to be taken off a list */
n = get_node(s, page_to_nid(page)); n = get_node(s, page_to_nid(page));
/* /*
* Speculatively acquire the list_lock. * Speculatively acquire the list_lock.
* If the cmpxchg does not succeed then we may * If the cmpxchg does not succeed then we may
...@@ -2587,10 +2587,10 @@ static void __slab_free(struct kmem_cache *s, struct page *page, ...@@ -2587,10 +2587,10 @@ static void __slab_free(struct kmem_cache *s, struct page *page,
* The list lock was not taken therefore no list * The list lock was not taken therefore no list
* activity can be necessary. * activity can be necessary.
*/ */
if (was_frozen) if (was_frozen)
stat(s, FREE_FROZEN); stat(s, FREE_FROZEN);
return; return;
} }
if (unlikely(!new.inuse && n->nr_partial >= s->min_partial)) if (unlikely(!new.inuse && n->nr_partial >= s->min_partial))
goto slab_empty; goto slab_empty;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment