| | Date | Wed, 15 Jul 2009 20:16:54 -0700 | | From | Andrew Morton <> | | Subject | Re: [PATCH 1/3] Rename pgmoved variable in shrink_active_list() |
| |
On Thu, 16 Jul 2009 09:52:34 +0900 (JST) KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> wrote:
> if (file) > - __mod_zone_page_state(zone, NR_ACTIVE_FILE, -pgmoved); > + __mod_zone_page_state(zone, NR_ACTIVE_FILE, -nr_taken); > else > - __mod_zone_page_state(zone, NR_ACTIVE_ANON, -pgmoved); > + __mod_zone_page_state(zone, NR_ACTIVE_ANON, -nr_taken);
we could have used __sub_zone_page_state() there.
|