From c2d67efb97b1b09c20d44acae9bd7421d6058b2c Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Fri, 28 Sep 2012 10:19:50 +1000 Subject: [PATCH] mm-page_alloc-refactor-out-__alloc_contig_migrate_alloc-checkpatch-fixes ERROR: code indent should use tabs where possible #73: FILE: mm/page_isolation.c:253: + int **resultp)$ WARNING: please, no spaces at the start of a line #73: FILE: mm/page_isolation.c:253: + int **resultp)$ ERROR: code indent should use tabs where possible #75: FILE: mm/page_isolation.c:255: + gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;$ WARNING: please, no spaces at the start of a line #75: FILE: mm/page_isolation.c:255: + gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;$ ERROR: code indent should use tabs where possible #77: FILE: mm/page_isolation.c:257: + if (PageHighMem(page))$ WARNING: please, no spaces at the start of a line #77: FILE: mm/page_isolation.c:257: + if (PageHighMem(page))$ ERROR: code indent should use tabs where possible #78: FILE: mm/page_isolation.c:258: + gfp_mask |= __GFP_HIGHMEM;$ WARNING: please, no spaces at the start of a line #78: FILE: mm/page_isolation.c:258: + gfp_mask |= __GFP_HIGHMEM;$ ERROR: code indent should use tabs where possible #80: FILE: mm/page_isolation.c:260: + return alloc_page(gfp_mask);$ WARNING: please, no spaces at the start of a line #80: FILE: mm/page_isolation.c:260: + return alloc_page(gfp_mask);$ total: 5 errors, 5 warnings, 48 lines checked NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or scripts/cleanfile ./patches/mm-page_alloc-refactor-out-__alloc_contig_migrate_alloc.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Minchan Kim Signed-off-by: Andrew Morton --- mm/page_isolation.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mm/page_isolation.c b/mm/page_isolation.c index 5225799eb204..f2f5b4818e94 100644 --- a/mm/page_isolation.c +++ b/mm/page_isolation.c @@ -257,12 +257,12 @@ int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn) } struct page *alloc_migrate_target(struct page *page, unsigned long private, - int **resultp) + int **resultp) { - gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE; + gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE; - if (PageHighMem(page)) - gfp_mask |= __GFP_HIGHMEM; + if (PageHighMem(page)) + gfp_mask |= __GFP_HIGHMEM; - return alloc_page(gfp_mask); + return alloc_page(gfp_mask); } -- 2.39.2