Blame view

include/asm-generic/mmu.h 449 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
5c01b46bb   Arnd Bergmann   asm-generic: add ...
2
3
4
5
6
7
8
9
10
  #ifndef __ASM_GENERIC_MMU_H
  #define __ASM_GENERIC_MMU_H
  
  /*
   * This is the mmu.h header for nommu implementations.
   * Architectures with an MMU need something more complex.
   */
  #ifndef __ASSEMBLY__
  typedef struct {
5c01b46bb   Arnd Bergmann   asm-generic: add ...
11
  	unsigned long		end_brk;
9d2951bcd   Lars-Peter Clausen   asm-generic/mmu.h...
12
13
14
15
16
  
  #ifdef CONFIG_BINFMT_ELF_FDPIC
  	unsigned long		exec_fdpic_loadmap;
  	unsigned long		interp_fdpic_loadmap;
  #endif
5c01b46bb   Arnd Bergmann   asm-generic: add ...
17
18
19
20
  } mm_context_t;
  #endif
  
  #endif /* __ASM_GENERIC_MMU_H */