From 5fa6e6e59b1f26d6a71f13c90fdbe5f8fe719ed2 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 14 May 2014 10:01:52 +1000 Subject: [PATCH] mm-vmscan-do-not-throttle-based-on-pfmemalloc-reserves-if-node-has-no-zone_normal-checkpatch-fixes ERROR: code indent should use tabs where possible #66: FILE: mm/vmscan.c:2585: + for_each_zone_zonelist_nodemask(zone, z, zonelist,$ WARNING: please, no spaces at the start of a line #66: FILE: mm/vmscan.c:2585: + for_each_zone_zonelist_nodemask(zone, z, zonelist,$ ERROR: code indent should use tabs where possible #67: FILE: mm/vmscan.c:2586: + gfp_mask, nodemask) {$ WARNING: please, no spaces at the start of a line #67: FILE: mm/vmscan.c:2586: + gfp_mask, nodemask) {$ total: 2 errors, 2 warnings, 56 lines checked NOTE: whitespace errors detected, you may wish to use scripts/cleanpatch or scripts/cleanfile ./patches/mm-vmscan-do-not-throttle-based-on-pfmemalloc-reserves-if-node-has-no-zone_normal.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: Mel Gorman Signed-off-by: Andrew Morton --- mm/vmscan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/vmscan.c b/mm/vmscan.c index b6fd489f5274..7e977c65d3d5 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -2600,8 +2600,8 @@ static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist, * Check if the pfmemalloc reserves are ok by finding the first node * with a usable ZONE_NORMAL or lower zone */ - for_each_zone_zonelist_nodemask(zone, z, zonelist, - gfp_mask, nodemask) { + for_each_zone_zonelist_nodemask(zone, z, zonelist, + gfp_mask, nodemask) { if (zone_idx(zone) > ZONE_NORMAL) continue; -- 2.39.5