blob: 6cdf86511385b019619d2d12b119161ce5c91752 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/thrash.c
3 *
4 * Copyright (C) 2004, Red Hat, Inc.
5 * Copyright (C) 2004, Rik van Riel <riel@redhat.com>
6 * Released under the GPL, see the file COPYING for details.
7 *
8 * Simple token based thrashing protection, using the algorithm
9 * described in: http://www.cs.wm.edu/~sjiang/token.pdf
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080010 *
11 * Sep 2006, Ashwin Chaugule <ashwin.chaugule@celunite.com>
12 * Improved algorithm to pass token:
13 * Each task has a priority which is incremented if it contended
14 * for the token in an interval less than its previous attempt.
15 * If the token is acquired, that task's priority is boosted to prevent
16 * the token from bouncing around too often and to let the task make
17 * some progress in its execution.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/jiffies.h>
21#include <linux/mm.h>
22#include <linux/sched.h>
23#include <linux/swap.h>
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070024#include <linux/memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static DEFINE_SPINLOCK(swap_token_lock);
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080027struct mm_struct *swap_token_mm;
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070028struct mem_cgroup *swap_token_memcg;
Adrian Bunke3050052006-12-06 20:32:43 -080029static unsigned int global_faults;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070031#ifdef CONFIG_CGROUP_MEM_RES_CTLR
32static struct mem_cgroup *swap_token_memcg_from_mm(struct mm_struct *mm)
33{
34 struct mem_cgroup *memcg;
35
36 memcg = try_get_mem_cgroup_from_mm(mm);
37 if (memcg)
38 css_put(mem_cgroup_css(memcg));
39
40 return memcg;
41}
42#else
43static struct mem_cgroup *swap_token_memcg_from_mm(struct mm_struct *mm)
44{
45 return NULL;
46}
47#endif
48
Hugh Dickinsa5c9b692009-06-23 12:36:58 -070049void grab_swap_token(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080051 int current_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080053 global_faults++;
54
Hugh Dickinsa5c9b692009-06-23 12:36:58 -070055 current_interval = global_faults - mm->faultstamp;
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080056
57 if (!spin_trylock(&swap_token_lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return;
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080059
60 /* First come first served */
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070061 if (!swap_token_mm)
62 goto replace_token;
63
64 if (mm == swap_token_mm) {
65 mm->token_priority += 2;
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080066 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
68
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070069 if (current_interval < mm->last_interval)
70 mm->token_priority++;
71 else {
72 if (likely(mm->token_priority > 0))
73 mm->token_priority--;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080075
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070076 /* Check if we deserve the token */
77 if (mm->token_priority > swap_token_mm->token_priority)
78 goto replace_token;
79
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080080out:
Hugh Dickinsa5c9b692009-06-23 12:36:58 -070081 mm->faultstamp = global_faults;
82 mm->last_interval = current_interval;
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080083 spin_unlock(&swap_token_lock);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070084 return;
85
86replace_token:
87 mm->token_priority += 2;
88 swap_token_mm = mm;
89 swap_token_memcg = swap_token_memcg_from_mm(mm);
90 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93/* Called on process exit. */
94void __put_swap_token(struct mm_struct *mm)
95{
96 spin_lock(&swap_token_lock);
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070097 if (likely(mm == swap_token_mm)) {
Ashwin Chaugule7602bdf2006-12-06 20:31:57 -080098 swap_token_mm = NULL;
KOSAKI Motohiroa4336582011-06-15 15:08:13 -070099 swap_token_memcg = NULL;
100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 spin_unlock(&swap_token_lock);
102}
KOSAKI Motohiroa4336582011-06-15 15:08:13 -0700103
104static bool match_memcg(struct mem_cgroup *a, struct mem_cgroup *b)
105{
106 if (!a)
107 return true;
108 if (!b)
109 return true;
110 if (a == b)
111 return true;
112 return false;
113}
114
115void disable_swap_token(struct mem_cgroup *memcg)
116{
117 /* memcg reclaim don't disable unrelated mm token. */
118 if (match_memcg(memcg, swap_token_memcg)) {
119 spin_lock(&swap_token_lock);
120 if (match_memcg(memcg, swap_token_memcg)) {
121 swap_token_mm = NULL;
122 swap_token_memcg = NULL;
123 }
124 spin_unlock(&swap_token_lock);
125 }
126}