Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 1 | /* Copyright (C) 2009 Red Hat, Inc. |
| 2 | * |
| 3 | * See ../COPYING for licensing terms. |
| 4 | */ |
| 5 | |
| 6 | #include <linux/mm.h> |
Ingo Molnar | 8efd755a | 2016-04-28 11:39:12 +0200 | [diff] [blame] | 7 | #include <linux/sched.h> |
Ingo Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 8 | #include <linux/sched/mm.h> |
Ingo Molnar | f719ff9 | 2017-02-06 10:57:33 +0100 | [diff] [blame] | 9 | #include <linux/sched/task.h> |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 10 | #include <linux/mmu_context.h> |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 11 | #include <linux/export.h> |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 12 | |
| 13 | #include <asm/mmu_context.h> |
| 14 | |
| 15 | /* |
| 16 | * use_mm |
| 17 | * Makes the calling kernel thread take on the specified |
| 18 | * mm context. |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 19 | * (Note: this routine is intended to be called only |
| 20 | * from a kernel thread context) |
| 21 | */ |
| 22 | void use_mm(struct mm_struct *mm) |
| 23 | { |
| 24 | struct mm_struct *active_mm; |
| 25 | struct task_struct *tsk = current; |
| 26 | |
| 27 | task_lock(tsk); |
| 28 | active_mm = tsk->active_mm; |
Michael S. Tsirkin | f68e148 | 2009-09-21 17:03:52 -0700 | [diff] [blame] | 29 | if (active_mm != mm) { |
Vegard Nossum | f1f1007 | 2017-02-27 14:30:07 -0800 | [diff] [blame] | 30 | mmgrab(mm); |
Michael S. Tsirkin | f68e148 | 2009-09-21 17:03:52 -0700 | [diff] [blame] | 31 | tsk->active_mm = mm; |
| 32 | } |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 33 | tsk->mm = mm; |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 34 | switch_mm(active_mm, mm, tsk); |
| 35 | task_unlock(tsk); |
Martin Schwidefsky | a53efe5 | 2012-10-26 17:17:44 +0200 | [diff] [blame] | 36 | #ifdef finish_arch_post_lock_switch |
| 37 | finish_arch_post_lock_switch(); |
| 38 | #endif |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 39 | |
Michael S. Tsirkin | f68e148 | 2009-09-21 17:03:52 -0700 | [diff] [blame] | 40 | if (active_mm != mm) |
| 41 | mmdrop(active_mm); |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 42 | } |
Michael S. Tsirkin | 5da779c | 2010-01-14 06:17:18 +0000 | [diff] [blame] | 43 | EXPORT_SYMBOL_GPL(use_mm); |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 44 | |
| 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 | */ |
| 53 | void unuse_mm(struct mm_struct *mm) |
| 54 | { |
| 55 | struct task_struct *tsk = current; |
| 56 | |
| 57 | task_lock(tsk); |
David Rientjes | 05af2e1 | 2012-03-21 16:34:13 -0700 | [diff] [blame] | 58 | sync_mm_rss(mm); |
Michael S. Tsirkin | 3d2d827 | 2009-09-21 17:03:51 -0700 | [diff] [blame] | 59 | tsk->mm = NULL; |
| 60 | /* active_mm is still 'mm' */ |
| 61 | enter_lazy_tlb(mm, tsk); |
| 62 | task_unlock(tsk); |
| 63 | } |
Michael S. Tsirkin | 5da779c | 2010-01-14 06:17:18 +0000 | [diff] [blame] | 64 | EXPORT_SYMBOL_GPL(unuse_mm); |