mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-24 10:28:57 +00:00
19 lines
297 B
C
19 lines
297 B
C
|
#ifndef _ASM_S390_SPARSEMEM_H
|
||
|
#define _ASM_S390_SPARSEMEM_H
|
||
|
|
||
|
#define SECTION_SIZE_BITS 25
|
||
|
|
||
|
#ifdef CONFIG_64BIT
|
||
|
|
||
|
#define MAX_PHYSADDR_BITS 42
|
||
|
#define MAX_PHYSMEM_BITS 42
|
||
|
|
||
|
#else
|
||
|
|
||
|
#define MAX_PHYSADDR_BITS 31
|
||
|
#define MAX_PHYSMEM_BITS 31
|
||
|
|
||
|
#endif /* CONFIG_64BIT */
|
||
|
|
||
|
#endif /* _ASM_S390_SPARSEMEM_H */
|