From: Bernhard Walle Only use 'offset' and not 'base' for the address where the reserved area starts. Signed-off-by: Bernhard Walle Signed-off-by: Andrew Morton --- kernel/kexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/kexec.c~extended-crashkernel-command-line-comment-fix kernel/kexec.c --- a/kernel/kexec.c~extended-crashkernel-command-line-comment-fix +++ a/kernel/kexec.c @@ -1157,7 +1157,7 @@ module_init(crash_notes_memory_init) /* * This function parses command lines in the format * - * crashkernel=:[,...][@] + * crashkernel=ramsize-range:size[,...][@offset] * * The function returns 0 on success and -EINVAL on failure. */ @@ -1222,7 +1222,7 @@ static int __init parse_crashkernel_mem( /* * That function parses "simple" (old) crashkernel command lines like * - * crashkernel=size[@base] + * crashkernel=size[@offset] * * It returns 0 on success and -EINVAL on failure. */ _