Skip to content

Commit

Permalink
[S390] Fix IPL from NSS.
Browse files Browse the repository at this point in the history
IPL from NSS didn't work because the memory detection routine omits any
memory sections with a size lower than what MAX_ORDER defines.
This causes the detection routine to skip the first memory segment which
has a size of 1MB. Which later on will let the kernel think that there
is no memory available at all.
Since in addition the z/VM memory increment size is 1MB force MAX_ORDER
to be 9, so we can support 1MB segments.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed Mar 5, 2008
1 parent faa582c commit 684de39
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/s390/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,10 @@ endchoice

source "fs/Kconfig.binfmt"

config FORCE_MAX_ZONEORDER
int
default "9"

config PROCESS_DEBUG
bool "Show crashed user process info"
help
Expand Down

0 comments on commit 684de39

Please sign in to comment.