Loading...
1#ifndef __ASM_MMU_H
2#define __ASM_MMU_H
3
4typedef struct {
5 unsigned long asid[NR_CPUS];
6 void *vdso;
7} mm_context_t;
8
9#endif /* __ASM_MMU_H */
1#ifndef __ASM_MMU_H
2#define __ASM_MMU_H
3
4#include <linux/atomic.h>
5
6typedef struct {
7 unsigned long asid[NR_CPUS];
8 void *vdso;
9 atomic_t fp_mode_switching;
10} mm_context_t;
11
12#endif /* __ASM_MMU_H */