diff options
| author | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 20:55:21 -0400 |
|---|---|---|
| committer | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 20:55:21 -0400 |
| commit | bbb20089a3275a19e475dbc21320c3742e3ca423 (patch) | |
| tree | 216fdc1cbef450ca688135c5b8969169482d9a48 /include/asm-generic/mmu_context.h | |
| parent | 3e48e656903e9fd8bc805c6a2c4264d7808d315b (diff) | |
| parent | 657a77fa7284d8ae28dfa48f1dc5d919bf5b2843 (diff) | |
Merge branch 'dmaengine' into async-tx-next
Conflicts:
crypto/async_tx/async_xor.c
drivers/dma/ioat/dma_v2.h
drivers/dma/ioat/pci.c
drivers/md/raid5.c
Diffstat (limited to 'include/asm-generic/mmu_context.h')
| -rw-r--r-- | include/asm-generic/mmu_context.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/include/asm-generic/mmu_context.h b/include/asm-generic/mmu_context.h new file mode 100644 index 000000000000..a7eec910ba6c --- /dev/null +++ b/include/asm-generic/mmu_context.h | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | #ifndef __ASM_GENERIC_MMU_CONTEXT_H | ||
| 2 | #define __ASM_GENERIC_MMU_CONTEXT_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Generic hooks for NOMMU architectures, which do not need to do | ||
| 6 | * anything special here. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #include <asm-generic/mm_hooks.h> | ||
| 10 | |||
| 11 | struct task_struct; | ||
| 12 | struct mm_struct; | ||
| 13 | |||
| 14 | static inline void enter_lazy_tlb(struct mm_struct *mm, | ||
| 15 | struct task_struct *tsk) | ||
| 16 | { | ||
| 17 | } | ||
| 18 | |||
| 19 | static inline int init_new_context(struct task_struct *tsk, | ||
| 20 | struct mm_struct *mm) | ||
| 21 | { | ||
| 22 | return 0; | ||
| 23 | } | ||
| 24 | |||
| 25 | static inline void destroy_context(struct mm_struct *mm) | ||
| 26 | { | ||
| 27 | } | ||
| 28 | |||
| 29 | static inline void deactivate_mm(struct task_struct *task, | ||
| 30 | struct mm_struct *mm) | ||
| 31 | { | ||
| 32 | } | ||
| 33 | |||
| 34 | static inline void switch_mm(struct mm_struct *prev, | ||
| 35 | struct mm_struct *next, | ||
| 36 | struct task_struct *tsk) | ||
| 37 | { | ||
| 38 | } | ||
| 39 | |||
| 40 | static inline void activate_mm(struct mm_struct *prev_mm, | ||
| 41 | struct mm_struct *next_mm) | ||
| 42 | { | ||
| 43 | } | ||
| 44 | |||
| 45 | #endif /* __ASM_GENERIC_MMU_CONTEXT_H */ | ||
