[PATCH 07/15] mm: page_alloc: Move labels to column 1

From: Joe Perches
Date: Wed Mar 15 2017 - 22:03:12 EST


Where the kernel style generally has them.

Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
---
mm/page_alloc.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index dca8904bbe2e..60ec74894a56 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1528,7 +1528,7 @@ static int __init deferred_init_memmap(void *data)

/* Where possible, batch up pages for a single free */
continue;
- free_range:
+free_range:
/* Free the current block of pages to allocator */
nr_pages += nr_to_free;
deferred_free_range(free_base_page, free_base_pfn,
@@ -3102,7 +3102,7 @@ get_page_from_freelist(gfp_t gfp_mask, unsigned int order, int alloc_flags,
}
}

- try_this_zone:
+try_this_zone:
page = rmqueue(ac->preferred_zoneref->zone, zone, order,
gfp_mask, alloc_flags, ac->migratetype);
if (page) {
@@ -4160,7 +4160,7 @@ void *page_frag_alloc(struct page_frag_cache *nc,
int offset;

if (unlikely(!nc->va)) {
- refill:
+refill:
page = __page_frag_cache_refill(nc, gfp_mask);
if (!page)
return NULL;
@@ -5323,7 +5323,7 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
}
#endif

- not_early:
+not_early:
/*
* Mark the block movable so that blocks are reserved for
* movable at startup. This will force kernel allocations
--
2.10.0.rc2.1.g053435c