From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f51.google.com (mail-pb0-f51.google.com [209.85.160.51]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id B1CAEB70AE for ; Fri, 15 Jun 2012 23:20:19 +1000 (EST) Received: by pbbrp16 with SMTP id rp16so5983051pbb.38 for ; Fri, 15 Jun 2012 06:20:17 -0700 (PDT) From: Wanpeng Li To: trivial@kernel.org Subject: [PATCH 6/7][TRIVIAL][resend] mm: cleanup page reclaim comment error Date: Fri, 15 Jun 2012 21:19:45 +0800 Message-Id: <1339766387-7740-1-git-send-email-liwp.linux@gmail.com> Cc: Christoph Lameter , Srikar Dronamraju , linux-pci@vger.kernel.org, Jesse Barnes , David Howells , Paul Gortmaker , "H. Peter Anvin" , Larry Woodman , Andrea Arcangeli , Stephen Rothwell , Gavin Shan , x86@kernel.org, Hugh Dickins , Ingo Molnar , KOSAKI Motohiro , Jan Kiszka , Nishanth Aravamudan , Wanpeng Li , Peter Zijlstra , Mel Gorman , Jason Wessel , Al Viro , Bjorn Helgaas , cgroups@vger.kernel.org, Thomas Gleixner , KAMEZAWA Hiroyuki , Michal Hocko , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Milton Miller , Minchan Kim , Li Zefan , Johannes Weiner , Tejun Heo , David Rientjes , Andrew Morton , linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Wanpeng Li Since there are five lists in LRU cache, the array nr in get_scan_count should be: nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan nr[2] = file inactive pages to scan; nr[3] = file active pages to scan Signed-off-by: Wanpeng Li Acked-by: KOSAKI Motohiro Acked-by: Minchan Kim Reviewed-by: Rik van Riel --- mm/vmscan.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mm/vmscan.c b/mm/vmscan.c index eeb3bc9..ed823df 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -1567,7 +1567,8 @@ static int vmscan_swappiness(struct scan_control *sc) * by looking at the fraction of the pages scanned we did rotate back * onto the active list instead of evict. * - * nr[0] = anon pages to scan; nr[1] = file pages to scan + * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan + * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan */ static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc, unsigned long *nr) -- 1.7.9.5