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/mm/fault_32.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/mm/fault_32.c')
-rw-r--r-- | arch/x86/mm/fault_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/fault_32.c b/arch/x86/mm/fault_32.c index b92922a1d65f..b4d19c2d4f05 100644 --- a/arch/x86/mm/fault_32.c +++ b/arch/x86/mm/fault_32.c | |||
@@ -95,7 +95,7 @@ static int is_prefetch(struct pt_regs *regs, unsigned long addr, | |||
95 | /* If it was a exec fault ignore */ | 95 | /* If it was a exec fault ignore */ |
96 | if (error_code & PF_INSTR) | 96 | if (error_code & PF_INSTR) |
97 | return 0; | 97 | return 0; |
98 | instr = (unsigned char __user *)convert_rip_to_linear(current, regs); | 98 | instr = (unsigned char __user *)convert_ip_to_linear(current, regs); |
99 | #endif | 99 | #endif |
100 | 100 | ||
101 | max_instr = instr + 15; | 101 | max_instr = instr + 15; |