forked from Minki/linux
20154fd370
Nothing is using the vmlist field in mm_context_t anymore. It has been removed
from the non-generic versions over 3 years ago 8feae1311
("NOMMU: Make VMAs per
MM as for MMU-mode linux").
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
15 lines
297 B
C
15 lines
297 B
C
#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 {
|
|
unsigned long end_brk;
|
|
} mm_context_t;
|
|
#endif
|
|
|
|
#endif /* __ASM_GENERIC_MMU_H */
|