Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_MMU_H |
2 | #define __ASM_MMU_H | ||||
3 | |||||
Paul Burton | 9791554 | 2015-01-08 12:17:37 +0000 | [diff] [blame] | 4 | #include <linux/atomic.h> |
5 | |||||
David Daney | c52d0d3 | 2010-02-18 16:13:04 -0800 | [diff] [blame] | 6 | typedef struct { |
7 | unsigned long asid[NR_CPUS]; | ||||
8 | void *vdso; | ||||
Paul Burton | 9791554 | 2015-01-08 12:17:37 +0000 | [diff] [blame] | 9 | atomic_t fp_mode_switching; |
David Daney | c52d0d3 | 2010-02-18 16:13:04 -0800 | [diff] [blame] | 10 | } mm_context_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
12 | #endif /* __ASM_MMU_H */ |