summaryrefslogtreecommitdiff
path: root/arch/tile/include/asm/ptrace.h
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2012-12-13 16:34:45 (GMT)
committerChris Metcalf <cmetcalf@tilera.com>2012-12-14 17:56:54 (GMT)
commit395e095ed92b1ccfe74c90fee4cc637cff468ea7 (patch)
tree0c93516feaaf0c4383c1d7b5963fe5fddb7231a6 /arch/tile/include/asm/ptrace.h
parentcb67e161bc947ab467657dda38168c2b2266f5bc (diff)
downloadlinux-fsl-qoriq-395e095ed92b1ccfe74c90fee4cc637cff468ea7.tar.xz
arch/tile: clean up tile-specific PTRACE_SETOPTIONS
Use the newer idioms for setting PTRACE_O_xxx and PT_TRACE_xxx flags. Only set/clear tile-specific flags if the generic routine returns success, since otherwise we want to avoid setting any flags at all. Atomically update the ptrace flags with the new values. Eliminate the PT_TRACE_MASK_TILE bitmask and just shift PTRACE_O_MASK_TILE. Add a BUILD_BUG_ON to avoid overlapping with generic bits. Acked-by: Oleg Nesterov <oleg@redhat.com> Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/include/asm/ptrace.h')
-rw-r--r--arch/tile/include/asm/ptrace.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/tile/include/asm/ptrace.h b/arch/tile/include/asm/ptrace.h
index 1a4fd9a..5ce052e 100644
--- a/arch/tile/include/asm/ptrace.h
+++ b/arch/tile/include/asm/ptrace.h
@@ -24,8 +24,7 @@ typedef unsigned long pt_reg_t;
#include <uapi/asm/ptrace.h>
#define PTRACE_O_MASK_TILE (PTRACE_O_TRACEMIGRATE)
-#define PT_TRACE_MIGRATE 0x00080000
-#define PT_TRACE_MASK_TILE (PT_TRACE_MIGRATE)
+#define PT_TRACE_MIGRATE PT_EVENT_FLAG(PTRACE_EVENT_MIGRATE)
/* Flag bits in pt_regs.flags */
#define PT_FLAGS_DISABLE_IRQ 1 /* on return to kernel, disable irqs */