21 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __ASM_GENERIC_MMU_H3#define __ASM_GENERIC_MMU_H4 5/*6 * This is the mmu.h header for nommu implementations.7 * Architectures with an MMU need something more complex.8 */9#ifndef __ASSEMBLY__10typedef struct {11 unsigned long end_brk;12 13#ifdef CONFIG_BINFMT_ELF_FDPIC14 unsigned long exec_fdpic_loadmap;15 unsigned long interp_fdpic_loadmap;16#endif17} mm_context_t;18#endif19 20#endif /* __ASM_GENERIC_MMU_H */21