blob: 1afa1f986df8c42a06e5f34355de8f8f1325c4bf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_MMU_H
2#define __ASM_MMU_H
3
Paul Burton97915542015-01-08 12:17:37 +00004#include <linux/atomic.h>
5
David Daneyc52d0d32010-02-18 16:13:04 -08006typedef struct {
7 unsigned long asid[NR_CPUS];
8 void *vdso;
Paul Burton97915542015-01-08 12:17:37 +00009 atomic_t fp_mode_switching;
David Daneyc52d0d32010-02-18 16:13:04 -080010} mm_context_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#endif /* __ASM_MMU_H */