blob: b1b6f238e42d2c418c8b0b9924922fc8a9b0c64b [file] [log] [blame]
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -07001/* Copyright (C) 2009 Red Hat, Inc.
2 *
3 * See ../COPYING for licensing terms.
4 */
5
6#include <linux/mm.h>
7#include <linux/mmu_context.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -04008#include <linux/export.h>
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -07009#include <linux/sched.h>
10
11#include <asm/mmu_context.h>
12
13/*
14 * use_mm
15 * Makes the calling kernel thread take on the specified
16 * mm context.
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070017 * (Note: this routine is intended to be called only
18 * from a kernel thread context)
19 */
20void use_mm(struct mm_struct *mm)
21{
22 struct mm_struct *active_mm;
23 struct task_struct *tsk = current;
24
25 task_lock(tsk);
Yong Zhang30a57742012-05-15 13:53:56 +080026 preempt_disable_rt();
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070027 active_mm = tsk->active_mm;
Michael S. Tsirkinf68e1482009-09-21 17:03:52 -070028 if (active_mm != mm) {
29 atomic_inc(&mm->mm_count);
30 tsk->active_mm = mm;
31 }
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070032 tsk->mm = mm;
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070033 switch_mm(active_mm, mm, tsk);
Yong Zhang30a57742012-05-15 13:53:56 +080034 preempt_enable_rt();
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070035 task_unlock(tsk);
Martin Schwidefskya53efe52012-10-26 17:17:44 +020036#ifdef finish_arch_post_lock_switch
37 finish_arch_post_lock_switch();
38#endif
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070039
Michael S. Tsirkinf68e1482009-09-21 17:03:52 -070040 if (active_mm != mm)
41 mmdrop(active_mm);
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070042}
Michael S. Tsirkin5da779c2010-01-14 06:17:18 +000043EXPORT_SYMBOL_GPL(use_mm);
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070044
45/*
46 * unuse_mm
47 * Reverses the effect of use_mm, i.e. releases the
48 * specified mm context which was earlier taken on
49 * by the calling kernel thread
50 * (Note: this routine is intended to be called only
51 * from a kernel thread context)
52 */
53void unuse_mm(struct mm_struct *mm)
54{
55 struct task_struct *tsk = current;
56
57 task_lock(tsk);
David Rientjes05af2e12012-03-21 16:34:13 -070058 sync_mm_rss(mm);
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070059 tsk->mm = NULL;
60 /* active_mm is still 'mm' */
61 enter_lazy_tlb(mm, tsk);
62 task_unlock(tsk);
63}
Michael S. Tsirkin5da779c2010-01-14 06:17:18 +000064EXPORT_SYMBOL_GPL(unuse_mm);