diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-01-30 07:33:12 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:12 -0500 |
commit | 37cd9cf3dafed82f7cf905785883300f6ff7c818 (patch) | |
tree | f1ec07a057955f71729d99318792e134f98f9264 /arch/x86/kernel/step.c | |
parent | f13bd3e7935f7020f7c622bf3f8cae8eee757a53 (diff) |
x86: common x86_32|64 naming
Rename convert_rip_to_linear to convert_ip_to_linear for shared
X86_32|64 use.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/step.c')
-rw-r--r-- | arch/x86/kernel/step.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/step.c b/arch/x86/kernel/step.c index b801e76cebf7..80b37181a42b 100644 --- a/arch/x86/kernel/step.c +++ b/arch/x86/kernel/step.c | |||
@@ -89,7 +89,7 @@ unsigned long get_segment_eip(struct pt_regs *regs, | |||
89 | #ifdef CONFIG_X86_32 | 89 | #ifdef CONFIG_X86_32 |
90 | static | 90 | static |
91 | #endif | 91 | #endif |
92 | unsigned long convert_rip_to_linear(struct task_struct *child, struct pt_regs *regs) | 92 | unsigned long convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs) |
93 | { | 93 | { |
94 | unsigned long addr, seg; | 94 | unsigned long addr, seg; |
95 | 95 | ||
@@ -136,7 +136,7 @@ static int is_setting_trap_flag(struct task_struct *child, struct pt_regs *regs) | |||
136 | { | 136 | { |
137 | int i, copied; | 137 | int i, copied; |
138 | unsigned char opcode[15]; | 138 | unsigned char opcode[15]; |
139 | unsigned long addr = convert_rip_to_linear(child, regs); | 139 | unsigned long addr = convert_ip_to_linear(child, regs); |
140 | 140 | ||
141 | copied = access_process_vm(child, addr, opcode, sizeof(opcode), 0); | 141 | copied = access_process_vm(child, addr, opcode, sizeof(opcode), 0); |
142 | for (i = 0; i < copied; i++) { | 142 | for (i = 0; i < copied; i++) { |