x86/entry: Fix allnoconfig build warning
authorIngo Molnar <mingo@kernel.org>
Mon, 25 May 2020 07:42:41 +0000 (09:42 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 11 Jun 2020 13:15:03 +0000 (15:15 +0200)
The following commit:

  095b7a3e7745 ("x86/entry: Convert double fault exception to IDTENTRY_DF")

introduced a new build warning on 64-bit allnoconfig kernels, that have CONFIG_VMAP_STACK disabled:

  arch/x86/kernel/traps.c:332:16: warning: unused variable ‘address’ [-Wunused-variable]

This variable is only used if CONFIG_VMAP_STACK is defined, so make it
dependent on that, not CONFIG_X86_64.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Alexandre Chartre <alexandre.chartre@oracle.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
arch/x86/kernel/traps.c

index 35298c1df32f6e4c4b7d5668b5cb4488df08fc41..9e5d81cb94bad7c7645e0c555221d7d514d8e078 100644 (file)
@@ -328,7 +328,7 @@ DEFINE_IDTENTRY_DF(exc_double_fault)
        static const char str[] = "double fault";
        struct task_struct *tsk = current;
 
-#ifdef CONFIG_X86_64
+#ifdef CONFIG_VMAP_STACK
        unsigned long address = read_cr2();
 #endif