diff options
author | Richard Weinberger <richard@nod.at> | 2017-07-06 09:35:27 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2017-07-10 22:58:06 +0200 |
commit | 61e8d462457f202bf0c6393133425ad387825e22 (patch) | |
tree | 21dabc717e6042e69bb3ff35803e08dc29be24ef /arch/x86 | |
parent | 94df7fe0d3e6418113783ff646507287c233e1e3 (diff) | |
download | linux-61e8d462457f202bf0c6393133425ad387825e22.tar.bz2 |
um: Correctly check for PTRACE_GETRESET/SETREGSET
When checking for PTRACE_GETRESET/SETREGSET, make sure that
the correct header file is included. We need linux/ptrace.h
which contains all ptrace UAPI related defines.
Otherwise #if defined(PTRACE_GETRESET) is always false.
Cc: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/um/user-offsets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/um/user-offsets.c b/arch/x86/um/user-offsets.c index 8af0fb5d2780..ae4cd58c0c7a 100644 --- a/arch/x86/um/user-offsets.c +++ b/arch/x86/um/user-offsets.c @@ -5,7 +5,7 @@ #include <sys/mman.h> #include <sys/user.h> #define __FRAME_OFFSETS -#include <asm/ptrace.h> +#include <linux/ptrace.h> #include <asm/types.h> #ifdef __i386__ |