Blame view

mm/mmu_context.c 1.32 KB
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
1
2
3
4
5
6
  /* Copyright (C) 2009 Red Hat, Inc.
   *
   * See ../COPYING for licensing terms.
   */
  
  #include <linux/mm.h>
8efd755ac   Ingo Molnar   mm/mmu_context, s...
7
  #include <linux/sched.h>
6e84f3152   Ingo Molnar   sched/headers: Pr...
8
  #include <linux/sched/mm.h>
f719ff9bc   Ingo Molnar   sched/headers: Pr...
9
  #include <linux/sched/task.h>
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
10
  #include <linux/mmu_context.h>
b95f1b31b   Paul Gortmaker   mm: Map most file...
11
  #include <linux/export.h>
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
12
13
14
15
16
17
18
  
  #include <asm/mmu_context.h>
  
  /*
   * use_mm
   *	Makes the calling kernel thread take on the specified
   *	mm context.
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
19
20
21
22
23
24
25
26
27
28
   *	(Note: this routine is intended to be called only
   *	from a kernel thread context)
   */
  void use_mm(struct mm_struct *mm)
  {
  	struct mm_struct *active_mm;
  	struct task_struct *tsk = current;
  
  	task_lock(tsk);
  	active_mm = tsk->active_mm;
f68e14805   Michael S. Tsirkin   mm: reduce atomic...
29
  	if (active_mm != mm) {
f1f100764   Vegard Nossum   mm: add new mmgra...
30
  		mmgrab(mm);
f68e14805   Michael S. Tsirkin   mm: reduce atomic...
31
32
  		tsk->active_mm = mm;
  	}
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
33
  	tsk->mm = mm;
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
34
35
  	switch_mm(active_mm, mm, tsk);
  	task_unlock(tsk);
a53efe5ff   Martin Schwidefsky   sched/mm: call fi...
36
37
38
  #ifdef finish_arch_post_lock_switch
  	finish_arch_post_lock_switch();
  #endif
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
39

f68e14805   Michael S. Tsirkin   mm: reduce atomic...
40
41
  	if (active_mm != mm)
  		mmdrop(active_mm);
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
42
  }
5da779c34   Michael S. Tsirkin   mm: export use_mm...
43
  EXPORT_SYMBOL_GPL(use_mm);
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  
  /*
   * unuse_mm
   *	Reverses the effect of use_mm, i.e. releases the
   *	specified mm context which was earlier taken on
   *	by the calling kernel thread
   *	(Note: this routine is intended to be called only
   *	from a kernel thread context)
   */
  void unuse_mm(struct mm_struct *mm)
  {
  	struct task_struct *tsk = current;
  
  	task_lock(tsk);
05af2e104   David Rientjes   mm, counters: rem...
58
  	sync_mm_rss(mm);
3d2d827f5   Michael S. Tsirkin   mm: move use_mm/u...
59
60
61
62
63
  	tsk->mm = NULL;
  	/* active_mm is still 'mm' */
  	enter_lazy_tlb(mm, tsk);
  	task_unlock(tsk);
  }
5da779c34   Michael S. Tsirkin   mm: export use_mm...
64
  EXPORT_SYMBOL_GPL(unuse_mm);