Commit-ID: b48cbd27b38ed3aef56a02dca2a4853fa5dabb1f Gitweb: http://git.kernel.org/tip/b48cbd27b38ed3aef56a02dca2a4853fa5dabb1f Author: Dave Hansen <[email protected]> AuthorDate: Tue, 11 Nov 2014 14:01:31 -0800 Committer: Ingo Molnar <[email protected]> CommitDate: Sun, 16 Nov 2014 11:30:39 +0100
x86: Add #include user.h to xsave.h xsave.h uses USER_XSTATE_FX_SW_WORDS, but does not include user.h. Add the include. Signed-off-by: Dave Hansen <[email protected]> Cc: Fenghua Yu <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]> --- arch/x86/include/asm/xsave.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/include/asm/xsave.h b/arch/x86/include/asm/xsave.h index 7e7a79a..047797a 100644 --- a/arch/x86/include/asm/xsave.h +++ b/arch/x86/include/asm/xsave.h @@ -3,6 +3,7 @@ #include <linux/types.h> #include <asm/processor.h> +#include <asm/user.h> #define XSTATE_CPUID 0x0000000d -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

