提交 53bb01f5 编写于 作者: K KOSAKI Motohiro 提交者: Linus Torvalds

mm: swap-token: makes global variables to function local

global_faults and last_aging are only used in grab_swap_token().  Move
them into grab_swap_token().
Signed-off-by: NKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Acked-by: NRik van Riel <riel@redhat.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 e21c7ffd
...@@ -30,8 +30,6 @@ ...@@ -30,8 +30,6 @@
static DEFINE_SPINLOCK(swap_token_lock); static DEFINE_SPINLOCK(swap_token_lock);
struct mm_struct *swap_token_mm; struct mm_struct *swap_token_mm;
struct mem_cgroup *swap_token_memcg; struct mem_cgroup *swap_token_memcg;
static unsigned int global_faults;
static unsigned int last_aging;
#ifdef CONFIG_CGROUP_MEM_RES_CTLR #ifdef CONFIG_CGROUP_MEM_RES_CTLR
static struct mem_cgroup *swap_token_memcg_from_mm(struct mm_struct *mm) static struct mem_cgroup *swap_token_memcg_from_mm(struct mm_struct *mm)
...@@ -55,6 +53,8 @@ void grab_swap_token(struct mm_struct *mm) ...@@ -55,6 +53,8 @@ void grab_swap_token(struct mm_struct *mm)
{ {
int current_interval; int current_interval;
unsigned int old_prio = mm->token_priority; unsigned int old_prio = mm->token_priority;
static unsigned int global_faults;
static unsigned int last_aging;
global_faults++; global_faults++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册