You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
297 B
19 lines
297 B
17 years ago
|
#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 */
|