diff options
author | Darren Hart <dvhltc@us.ibm.com> | 2005-06-21 20:14:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 21:46:17 -0400 |
commit | 1ad539b2bd89bf2e129123eb24d5bcc4484a35de (patch) | |
tree | e416e208cdbd5d9890d39e39384e4ec913c26ef6 /fs/buffer.c | |
parent | cbe37d093707762fc0abb280781e6a82a9d8d568 (diff) |
[PATCH] vm: try_to_free_pages unused argument
try_to_free_pages accepts a third argument, order, but hasn't used it since
before 2.6.0. The following patch removes the argument and updates all the
calls to try_to_free_pages.
Signed-off-by: Darren Hart <dvhltc@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/buffer.c')
-rw-r--r-- | fs/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index 7e9e409feaa7..0befa724ab98 100644 --- a/fs/buffer.c +++ b/fs/buffer.c | |||
@@ -528,7 +528,7 @@ static void free_more_memory(void) | |||
528 | for_each_pgdat(pgdat) { | 528 | for_each_pgdat(pgdat) { |
529 | zones = pgdat->node_zonelists[GFP_NOFS&GFP_ZONEMASK].zones; | 529 | zones = pgdat->node_zonelists[GFP_NOFS&GFP_ZONEMASK].zones; |
530 | if (*zones) | 530 | if (*zones) |
531 | try_to_free_pages(zones, GFP_NOFS, 0); | 531 | try_to_free_pages(zones, GFP_NOFS); |
532 | } | 532 | } |
533 | } | 533 | } |
534 | 534 | ||