Skip to content

Commit c5f4a7c

Browse files
akpm00sfrothwell
authored andcommitted
mm-maintain-randomization-of-page-free-lists-checkpatch-fixes
ERROR: code indent should use tabs where possible torvalds#125: FILE: mm/shuffle.h:43: + return false;$ WARNING: please, no spaces at the start of a line torvalds#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 <[email protected]> Cc: Dave Hansen <[email protected]> Cc: Kees Cook <[email protected]> Cc: Keith Busch <[email protected]> Cc: Michal Hocko <[email protected]> Cc: Robert Elliott <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Stephen Rothwell <[email protected]>
1 parent 78ff624 commit c5f4a7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: mm/shuffle.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static inline void shuffle_zone(struct zone *z)
4040
static inline bool is_shuffle_order(int order)
4141
{
4242
if (!static_branch_unlikely(&page_alloc_shuffle_key))
43-
return false;
43+
return false;
4444
return order >= SHUFFLE_ORDER;
4545
}
4646
#else

0 commit comments

Comments
 (0)