diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/e820_32.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/e820_64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/e820_32.c b/arch/x86/kernel/e820_32.c index ed733e7cf4e..a540c4ee275 100644 --- a/arch/x86/kernel/e820_32.c +++ b/arch/x86/kernel/e820_32.c @@ -697,7 +697,7 @@ static int __init parse_memmap(char *arg) if (!arg) return -EINVAL; - if (strcmp(arg, "exactmap") == 0) { + if (strncmp(arg, "exactmap", 8) == 0) { #ifdef CONFIG_CRASH_DUMP /* If we are doing a crash dump, we * still need to know the real mem diff --git a/arch/x86/kernel/e820_64.c b/arch/x86/kernel/e820_64.c index 124480c0008..4da8e2bea8b 100644 --- a/arch/x86/kernel/e820_64.c +++ b/arch/x86/kernel/e820_64.c @@ -776,7 +776,7 @@ static int __init parse_memmap_opt(char *p) char *oldp; unsigned long long start_at, mem_size; - if (!strcmp(p, "exactmap")) { + if (!strncmp(p, "exactmap", 8)) { #ifdef CONFIG_CRASH_DUMP /* * If we are doing a crash dump, we still need to know |