]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/um/kernel/skas/include/mmu-skas.h
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[mirror_ubuntu-bionic-kernel.git] / arch / um / kernel / skas / include / mmu-skas.h
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
6#ifndef __SKAS_MMU_H
7#define __SKAS_MMU_H
8
7ef93905 9#include "linux/config.h"
d67b569f
JD
10#include "mm_id.h"
11
1da177e4 12struct mmu_context_skas {
d67b569f
JD
13 struct mm_id id;
14 unsigned long last_page_table;
7ef93905
JD
15#ifdef CONFIG_3_LEVEL_PGTABLES
16 unsigned long last_pmd;
17#endif
1da177e4
LT
18};
19
d67b569f
JD
20extern void switch_mm_skas(struct mm_id * mm_idp);
21
1da177e4
LT
22#endif
23
24/*
25 * Overrides for Emacs so that we follow Linus's tabbing style.
26 * Emacs will notice this stuff at the end of the file and automatically
27 * adjust the settings for this buffer only. This must remain at the end
28 * of the file.
29 * ---------------------------------------------------------------------------
30 * Local variables:
31 * c-file-style: "linux"
32 * End:
33 */