aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/kernel/skas/mmu.c
blob: 6cb9a6d028a906cd8f51bd1a900b431de1c393b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* 
 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
 * Licensed under the GPL
 */

#include "linux/sched.h"
#include "linux/list.h"
#include "linux/spinlock.h"
#include "linux/slab.h"
#include "asm/current.h"
#include "asm/segment.h"
#include "asm/mmu.h"
#include "os.h"
#include "skas.h"

int init_new_context_skas(struct task_struct *task, struct mm_struct *mm)
{
	int from;

	if((current->mm != NULL) && (current->mm != &init_mm))
		from = current->mm->context.skas.mm_fd;
	else from = -1;

	mm->context.skas.mm_fd = new_mm(from);
	if(mm->context.skas.mm_fd < 0){
		printk("init_new_context_skas - new_mm failed, errno = %d\n",
		       mm->context.skas.mm_fd);
		return(mm->context.skas.mm_fd);
	}

	return(0);
}

void destroy_context_skas(struct mm_struct *mm)
{
	os_close_file(mm->context.skas.mm_fd);
}

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * Emacs will notice this stuff at the end of the file and automatically
 * adjust the settings for this buffer only.  This must remain at the end
 * of the file.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-file-style: "linux"
 * End:
 */