aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/vmscan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c
index f8b94ea6f722..8760a4abfa1f 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -1595,7 +1595,7 @@ int zone_reclaim_mode __read_mostly;
1595/* 1595/*
1596 * Mininum time between zone reclaim scans 1596 * Mininum time between zone reclaim scans
1597 */ 1597 */
1598#define ZONE_RECLAIM_INTERVAL 30*HZ 1598int zone_reclaim_interval __read_mostly = 30*HZ;
1599 1599
1600/* 1600/*
1601 * Priority for ZONE_RECLAIM. This determines the fraction of pages 1601 * Priority for ZONE_RECLAIM. This determines the fraction of pages
@@ -1617,7 +1617,7 @@ int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
1617 int node_id; 1617 int node_id;
1618 1618
1619 if (time_before(jiffies, 1619 if (time_before(jiffies,
1620 zone->last_unsuccessful_zone_reclaim + ZONE_RECLAIM_INTERVAL)) 1620 zone->last_unsuccessful_zone_reclaim + zone_reclaim_interval))
1621 return 0; 1621 return 0;
1622 1622
1623 if (!(gfp_mask & __GFP_WAIT) || 1623 if (!(gfp_mask & __GFP_WAIT) ||