aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/memcontrol.h20
-rw-r--r--mm/memcontrol.c20
2 files changed, 40 insertions, 0 deletions
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
index bb9c079eeb0c..f82158faa494 100644
--- a/include/linux/memcontrol.h
+++ b/include/linux/memcontrol.h
@@ -70,6 +70,11 @@ extern void mem_cgroup_page_migration(struct page *page, struct page *newpage);
70extern int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem); 70extern int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem);
71extern long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem); 71extern long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem);
72 72
73extern int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem);
74extern void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem,
75 int priority);
76extern void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem,
77 int priority);
73 78
74 79
75#else /* CONFIG_CGROUP_MEM_CONT */ 80#else /* CONFIG_CGROUP_MEM_CONT */
@@ -153,6 +158,21 @@ static inline int mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
153 return 0; 158 return 0;
154} 159}
155 160
161static inline int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
162{
163 return 0;
164}
165
166static inline void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem,
167 int priority)
168{
169}
170
171static inline void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem,
172 int priority)
173{
174}
175
156#endif /* CONFIG_CGROUP_MEM_CONT */ 176#endif /* CONFIG_CGROUP_MEM_CONT */
157 177
158#endif /* _LINUX_MEMCONTROL_H */ 178#endif /* _LINUX_MEMCONTROL_H */
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 78a928d90267..f8a6a39c440d 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -132,6 +132,7 @@ struct mem_cgroup {
132 */ 132 */
133 spinlock_t lru_lock; 133 spinlock_t lru_lock;
134 unsigned long control_type; /* control RSS or RSS+Pagecache */ 134 unsigned long control_type; /* control RSS or RSS+Pagecache */
135 int prev_priority; /* for recording reclaim priority */
135 /* 136 /*
136 * statistics. 137 * statistics.
137 */ 138 */
@@ -451,6 +452,25 @@ long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
451 return (long) (active / (inactive + 1)); 452 return (long) (active / (inactive + 1));
452} 453}
453 454
455/*
456 * prev_priority control...this will be used in memory reclaim path.
457 */
458int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
459{
460 return mem->prev_priority;
461}
462
463void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
464{
465 if (priority < mem->prev_priority)
466 mem->prev_priority = priority;
467}
468
469void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
470{
471 mem->prev_priority = priority;
472}
473
454unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, 474unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
455 struct list_head *dst, 475 struct list_head *dst,
456 unsigned long *scanned, int order, 476 unsigned long *scanned, int order,