From 62e38c88d8cb5a891b828dfb7a83413ff8696fa4 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Sat, 9 Feb 2019 01:05:11 +0000 Subject: [PATCH] mm-maintain-randomization-of-page-free-lists-checkpatch-fixes ERROR: code indent should use tabs where possible #125: FILE: mm/shuffle.h:43: + return false;$ WARNING: please, no spaces at the start of a line #125: FILE: mm/shuffle.h:43: + return false;$ total: 1 errors, 1 warnings, 96 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. NOTE: Whitespace errors detected. You may wish to use scripts/cleanpatch or scripts/cleanfile ./patches/mm-maintain-randomization-of-page-free-lists.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Dan Williams Cc: Dave Hansen Cc: Kees Cook Cc: Keith Busch Cc: Michal Hocko Cc: Robert Elliott Signed-off-by: Andrew Morton --- mm/shuffle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/shuffle.h b/mm/shuffle.h index fc1e327ae22d49..777a257a0d2f93 100644 --- a/mm/shuffle.h +++ b/mm/shuffle.h @@ -40,7 +40,7 @@ static inline void shuffle_zone(struct zone *z) static inline bool is_shuffle_order(int order) { if (!static_branch_unlikely(&page_alloc_shuffle_key)) - return false; + return false; return order >= SHUFFLE_ORDER; } #else