diff options
author | Oleg Nesterov <oleg@redhat.com> | 2012-09-03 17:02:16 +0200 |
---|---|---|
committer | Oleg Nesterov <oleg@redhat.com> | 2012-09-15 17:37:32 +0200 |
commit | baedbf02b1912225d60dd7403acb4b4e003088b5 (patch) | |
tree | e211881a289c32bb1c555e470599faf1127df5a6 /arch | |
parent | d6a00b35e411519d774d978cdf80e4406d01b36b (diff) | |
download | talos-obmc-linux-baedbf02b1912225d60dd7403acb4b4e003088b5.tar.gz talos-obmc-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.h | 2 |
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; }; |