This patch adds a extended crashkernel syntax that makes the value of reserved system RAM dependent on the system RAM itself: crashkernel=<range1>:<size1>[,<range2>:<size2>,...][@offset] range=start-[end] For example: crashkernel=512M-2G:64M,2G-:128M The motivation comes from distributors that configure their crashkernel command line automatically with some configuration tool (YaST, you know ;)). Of course that tool knows the value of System RAM, but if the user removes RAM, then the system becomes unbootable or at least unusable and error handling is very difficult. This series implements this change for i386, x86_64 and IA64. However, if the patch is accepted, I can also add all other architectures that support Kdump (when my grepping was correct, this is only PPC64 and SH in addition). The "simple" syntax is of course still supported. Signed-off-by: Bernhard Walle <bwalle at suse.de> --