diff options
| author | Dmitry Torokhov <dtor@insightbb.com> | 2007-05-08 01:31:11 -0400 |
|---|---|---|
| committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-05-08 01:31:11 -0400 |
| commit | 334d0dd8b660557608142f0f77abc6812b48f08b (patch) | |
| tree | 9393a9aa099d7d42deda5f9f5054796c0c769be7 /include/asm-um | |
| parent | 3f07d8796262f6aee135c8dd9a91210da9f888e4 (diff) | |
| parent | 5b94f675f57e4ff16c8fda09088d7480a84dcd91 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'include/asm-um')
| -rw-r--r-- | include/asm-um/mmu_context.h | 2 | ||||
| -rw-r--r-- | include/asm-um/page.h | 3 | ||||
| -rw-r--r-- | include/asm-um/tlbflush.h | 24 |
3 files changed, 15 insertions, 14 deletions
diff --git a/include/asm-um/mmu_context.h b/include/asm-um/mmu_context.h index f709c784bf12..9aa4b44e8cc1 100644 --- a/include/asm-um/mmu_context.h +++ b/include/asm-um/mmu_context.h | |||
| @@ -6,6 +6,8 @@ | |||
| 6 | #ifndef __UM_MMU_CONTEXT_H | 6 | #ifndef __UM_MMU_CONTEXT_H |
| 7 | #define __UM_MMU_CONTEXT_H | 7 | #define __UM_MMU_CONTEXT_H |
| 8 | 8 | ||
| 9 | #include <asm-generic/mm_hooks.h> | ||
| 10 | |||
| 9 | #include "linux/sched.h" | 11 | #include "linux/sched.h" |
| 10 | #include "choose-mode.h" | 12 | #include "choose-mode.h" |
| 11 | #include "um_mmu.h" | 13 | #include "um_mmu.h" |
diff --git a/include/asm-um/page.h b/include/asm-um/page.h index 4296d3135aa9..8e310d81e5b4 100644 --- a/include/asm-um/page.h +++ b/include/asm-um/page.h | |||
| @@ -114,9 +114,6 @@ extern unsigned long uml_physmem; | |||
| 114 | extern struct page *arch_validate(struct page *page, gfp_t mask, int order); | 114 | extern struct page *arch_validate(struct page *page, gfp_t mask, int order); |
| 115 | #define HAVE_ARCH_VALIDATE | 115 | #define HAVE_ARCH_VALIDATE |
| 116 | 116 | ||
| 117 | extern void arch_free_page(struct page *page, int order); | ||
| 118 | #define HAVE_ARCH_FREE_PAGE | ||
| 119 | |||
| 120 | #include <asm-generic/memory_model.h> | 117 | #include <asm-generic/memory_model.h> |
| 121 | #include <asm-generic/page.h> | 118 | #include <asm-generic/page.h> |
| 122 | 119 | ||
diff --git a/include/asm-um/tlbflush.h b/include/asm-um/tlbflush.h index 522aa30f7eaa..e78c28c1f350 100644 --- a/include/asm-um/tlbflush.h +++ b/include/asm-um/tlbflush.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #define __UM_TLBFLUSH_H | 7 | #define __UM_TLBFLUSH_H |
| 8 | 8 | ||
| 9 | #include <linux/mm.h> | 9 | #include <linux/mm.h> |
| 10 | #include "choose-mode.h" | ||
| 10 | 11 | ||
| 11 | /* | 12 | /* |
| 12 | * TLB flushing: | 13 | * TLB flushing: |
| @@ -24,6 +25,18 @@ extern void flush_tlb_all(void); | |||
| 24 | extern void flush_tlb_mm(struct mm_struct *mm); | 25 | extern void flush_tlb_mm(struct mm_struct *mm); |
| 25 | extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, | 26 | extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, |
| 26 | unsigned long end); | 27 | unsigned long end); |
| 28 | extern void flush_tlb_page_skas(struct vm_area_struct *vma, | ||
| 29 | unsigned long address); | ||
| 30 | |||
| 31 | static inline void flush_tlb_page(struct vm_area_struct *vma, | ||
| 32 | unsigned long address) | ||
| 33 | { | ||
| 34 | address &= PAGE_MASK; | ||
| 35 | |||
| 36 | CHOOSE_MODE(flush_tlb_range(vma, address, address + PAGE_SIZE), | ||
| 37 | flush_tlb_page_skas(vma, address)); | ||
| 38 | } | ||
| 39 | |||
| 27 | extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr); | 40 | extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr); |
| 28 | extern void flush_tlb_kernel_vm(void); | 41 | extern void flush_tlb_kernel_vm(void); |
| 29 | extern void flush_tlb_kernel_range(unsigned long start, unsigned long end); | 42 | extern void flush_tlb_kernel_range(unsigned long start, unsigned long end); |
| @@ -35,14 +48,3 @@ static inline void flush_tlb_pgtables(struct mm_struct *mm, | |||
| 35 | } | 48 | } |
| 36 | 49 | ||
| 37 | #endif | 50 | #endif |
| 38 | |||
| 39 | /* | ||
| 40 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
| 41 | * Emacs will notice this stuff at the end of the file and automatically | ||
| 42 | * adjust the settings for this buffer only. This must remain at the end | ||
| 43 | * of the file. | ||
| 44 | * --------------------------------------------------------------------------- | ||
| 45 | * Local variables: | ||
| 46 | * c-file-style: "linux" | ||
| 47 | * End: | ||
| 48 | */ | ||
