mmu_context.h 1.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/* 
J
Jeff Dike 已提交
2
 * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5 6 7 8 9
 * Licensed under the GPL
 */

#ifndef __UM_MMU_CONTEXT_H
#define __UM_MMU_CONTEXT_H

#include "linux/sched.h"
10
#include "um_mmu.h"
L
Linus Torvalds 已提交
11

J
Jeff Dike 已提交
12 13 14
extern void arch_dup_mmap(struct mm_struct *oldmm, struct mm_struct *mm);
extern void arch_exit_mmap(struct mm_struct *mm);

L
Linus Torvalds 已提交
15 16 17 18 19
#define get_mmu_context(task) do ; while(0)
#define activate_context(tsk) do ; while(0)

#define deactivate_mm(tsk,mm)	do { } while (0)

B
Benjamin LaHaise 已提交
20 21
extern void force_flush_all(void);

L
Linus Torvalds 已提交
22 23
static inline void activate_mm(struct mm_struct *old, struct mm_struct *new)
{
24 25 26 27 28 29 30 31 32
	/*
	 * This is called by fs/exec.c and fs/aio.c. In the first case, for an
	 * exec, we don't need to do anything as we're called from userspace
	 * and thus going to use a new host PID. In the second, we're called
	 * from a kernel thread, and thus need to go doing the mmap's on the
	 * host. Since they're very expensive, we want to avoid that as far as
	 * possible.
	 */
	if (old != new && (current->flags & PF_BORROWED_MM))
33
		__switch_mm(&new->context.id);
J
Jeff Dike 已提交
34 35

	arch_dup_mmap(old, new);
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46
}

static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, 
			     struct task_struct *tsk)
{
	unsigned cpu = smp_processor_id();

	if(prev != next){
		cpu_clear(cpu, prev->cpu_vm_mask);
		cpu_set(cpu, next->cpu_vm_mask);
		if(next != &init_mm)
47
			__switch_mm(&next->context.id);
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55
	}
}

static inline void enter_lazy_tlb(struct mm_struct *mm, 
				  struct task_struct *tsk)
{
}

56
extern int init_new_context(struct task_struct *task, struct mm_struct *mm);
L
Linus Torvalds 已提交
57

58
extern void destroy_context(struct mm_struct *mm);
L
Linus Torvalds 已提交
59 60

#endif