summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorOleg Nesterov2012-09-03 17:02:16 +0200
committerOleg Nesterov2012-09-15 17:37:32 +0200
commitbaedbf02b1912225d60dd7403acb4b4e003088b5 (patch)
treee211881a289c32bb1c555e470599faf1127df5a6 /arch
parentuprobes/x86: Fix arch_uprobe_disable_step() && UTASK_SSTEP_TRAPPED interaction (diff)
downloadkernel-qcow2-linux-baedbf02b1912225d60dd7403acb4b4e003088b5.tar.gz
kernel-qcow2-linux-baedbf02b1912225d60dd7403acb4b4e003088b5.tar.xz
kernel-qcow2-linux-baedbf02b1912225d60dd7403acb4b4e003088b5.zip
uprobes: Make arch_uprobe_task->saved_trap_nr "unsigned int"
Make arch_uprobe_task->saved_trap_nr "unsigned int" and move it down after ->saved_scratch_register, this changes sizeof() from 24 to 16. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/include/asm/uprobes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/uprobes.h b/arch/x86/include/asm/uprobes.h
index d561ff5a3d4d..8ff8be7835ab 100644
--- a/arch/x86/include/asm/uprobes.h
+++ b/arch/x86/include/asm/uprobes.h
@@ -42,10 +42,10 @@ struct arch_uprobe {
};
struct arch_uprobe_task {
- unsigned long saved_trap_nr;
#ifdef CONFIG_X86_64
unsigned long saved_scratch_register;
#endif
+ unsigned int saved_trap_nr;
unsigned int saved_tf;
};