diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-08-13 12:46:26 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-13 12:59:29 +0200 |
commit | 26d809af6397ce5c37f5c44d89734d19cce1ad25 (patch) | |
tree | c5bf9c431bad486730a748fcb3756a68faf3420f /include/asm-x86 | |
parent | 6152e4b1c99a3689fc318d092cd144597f7dbd14 (diff) |
x86: fix xsave build error
fix this build failure with certain glibc versions:
In file included from /usr/include/bits/sigcontext.h:28,
from /usr/include/signal.h:333,
from Documentation/accounting/getdelays.c:24:
/home/mingo/tip/usr/include/asm/sigcontext.h:191: error: expected specifier-qualifier-list before ‘u64’
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/sigcontext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-x86/sigcontext.h b/include/asm-x86/sigcontext.h index 899fe2f8abb..ee813f4fe5d 100644 --- a/include/asm-x86/sigcontext.h +++ b/include/asm-x86/sigcontext.h @@ -264,9 +264,9 @@ struct sigcontext { #endif /* !__i386__ */ struct _xsave_hdr { - u64 xstate_bv; - u64 reserved1[2]; - u64 reserved2[5]; + __u64 xstate_bv; + __u64 reserved1[2]; + __u64 reserved2[5]; }; /* |