]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: single_step segment macros
authorRoland McGrath <roland@redhat.com>
Wed, 30 Jan 2008 12:30:50 +0000 (13:30 +0100)
committerIngo Molnar <mingo@elte.hu>
Wed, 30 Jan 2008 12:30:50 +0000 (13:30 +0100)
This cleans up the single-step code to use the asm/segment.h macros
for segment selector magic bits, rather than its own constant.

Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kernel/step.c

index cb3c8bc2939a462c440efdf3c369822f8f6689a6..3b70f20f21f9e2a54276b1249940ad01bf397a91 100644 (file)
@@ -5,8 +5,6 @@
 #include <linux/mm.h>
 #include <linux/ptrace.h>
 
-#define LDT_SEGMENT 4
-
 unsigned long convert_rip_to_linear(struct task_struct *child, struct pt_regs *regs)
 {
        unsigned long addr, seg;
@@ -20,7 +18,7 @@ unsigned long convert_rip_to_linear(struct task_struct *child, struct pt_regs *r
         * TLS segments are used for data, and the PNPBIOS
         * and APM bios ones we just ignore here.
         */
-       if (seg & LDT_SEGMENT) {
+       if ((seg & SEGMENT_TI_MASK) == SEGMENT_LDT) {
                u32 *desc;
                unsigned long base;