diff options
Diffstat (limited to 'mm/swap.c')
-rw-r--r-- | mm/swap.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -38,13 +38,13 @@ * * Keep these three variables contiguous for sysctl(2). */ -int min_free_pages = 20; -int free_pages_low = 30; -int free_pages_high = 40; +int min_free_pages = 48; +int free_pages_low = 72; +int free_pages_high = 96; /* We track the number of pages currently being asynchronously swapped out, so that we don't try to swap TOO many pages out at once */ -atomic_t nr_async_pages = 0; +atomic_t nr_async_pages = ATOMIC_INIT(0); /* * Constants for the page aging mechanism: the maximum age (actually, |