Release 4.7 arch/x86/include/asm/mmu.h
#ifndef _ASM_X86_MMU_H
#define _ASM_X86_MMU_H
#include <linux/spinlock.h>
#include <linux/mutex.h>
/*
* The x86 doesn't have a mmu context, but
* we put the segment information here.
*/
typedef struct {
#ifdef CONFIG_MODIFY_LDT_SYSCALL
struct ldt_struct *ldt;
#endif
#ifdef CONFIG_X86_64
/* True if mm supports a task running in 32 bit compatibility mode. */
unsigned short ia32_compat;
#endif
struct mutex lock;
void __user *vdso; /* vdso base address */
const struct vdso_image *vdso_image; /* vdso image in use */
atomic_t perf_rdpmc_allowed; /* nonzero if rdpmc is allowed */
}
mm_context_t;
#ifdef CONFIG_SMP
void leave_mm(int cpu);
#else
static inline void leave_mm(int cpu)
{
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| venkatesh pallipadi | venkatesh pallipadi | 9 | 100.00% | 1 | 100.00% |
| Total | 9 | 100.00% | 1 | 100.00% |
#endif
#endif /* _ASM_X86_MMU_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| venkatesh pallipadi | venkatesh pallipadi | 23 | 26.74% | 1 | 8.33% |
| andy lutomirski | andy lutomirski | 20 | 23.26% | 5 | 41.67% |
| chris snook | chris snook | 15 | 17.44% | 1 | 8.33% |
| stephen wilson | stephen wilson | 10 | 11.63% | 1 | 8.33% |
| richard kennedy | richard kennedy | 8 | 9.30% | 1 | 8.33% |
| thomas gleixner | thomas gleixner | 6 | 6.98% | 1 | 8.33% |
| h. peter anvin | h. peter anvin | 3 | 3.49% | 1 | 8.33% |
| jan beulich | jan beulich | 1 | 1.16% | 1 | 8.33% |
| Total | 86 | 100.00% | 12 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.