This is a note to let you know that I've just added the patch titled x86, espfix: Fix broken header guard to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: x86-espfix-fix-broken-header-guard.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 20b68535cd27183ebd3651ff313afb2b97dac941 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" <hpa@xxxxxxxxxxxxxxx> Date: Fri, 2 May 2014 11:33:51 -0700 Subject: x86, espfix: Fix broken header guard From: "H. Peter Anvin" <hpa@xxxxxxxxxxxxxxx> commit 20b68535cd27183ebd3651ff313afb2b97dac941 upstream. Header guard is #ifndef, not #ifdef... Reported-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> Signed-off-by: H. Peter Anvin <hpa@xxxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/x86/include/asm/espfix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/x86/include/asm/espfix.h +++ b/arch/x86/include/asm/espfix.h @@ -1,4 +1,4 @@ -#ifdef _ASM_X86_ESPFIX_H +#ifndef _ASM_X86_ESPFIX_H #define _ASM_X86_ESPFIX_H #ifdef CONFIG_X86_64 Patches currently in stable-queue which might be from hpa@xxxxxxxxxxxxxxx are queue-3.4/x86-espfix-move-espfix-definitions-into-a-separate-header-file.patch queue-3.4/x86-espfix-make-it-possible-to-disable-16-bit-support.patch queue-3.4/x86-espfix-fix-broken-header-guard.patch queue-3.4/x86-64-espfix-don-t-leak-bits-31-16-of-esp-returning-to-16-bit-stack.patch queue-3.4/x86_64-entry-xen-do-not-invoke-espfix64-on-xen.patch queue-3.4/x86-espfix-make-espfix64-a-kconfig-option-fix-uml.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html