diff options
| author | Darren Hart <[email protected]> | 2005-06-22 00:14:53 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2005-06-22 01:46:17 +0000 |
| commit | 1ad539b2bd89bf2e129123eb24d5bcc4484a35de (patch) | |
| tree | e416e208cdbd5d9890d39e39384e4ec913c26ef6 /mm/page_alloc.c | |
| parent | [PATCH] mm: remove PG_highmem (diff) | |
| download | kernel-1ad539b2bd89bf2e129123eb24d5bcc4484a35de.tar.gz kernel-1ad539b2bd89bf2e129123eb24d5bcc4484a35de.zip | |
[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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'mm/page_alloc.c')
| -rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 95cbd30a67b8..70f710286ced 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -859,7 +859,7 @@ rebalance: reclaim_state.reclaimed_slab = 0; p->reclaim_state = &reclaim_state; - did_some_progress = try_to_free_pages(zones, gfp_mask, order); + did_some_progress = try_to_free_pages(zones, gfp_mask); p->reclaim_state = NULL; p->flags &= ~PF_MEMALLOC; |
