X-Git-Url: http://nv-tegra.nvidia.com/gitweb/?p=linux-2.6.git;a=blobdiff_plain;f=arch%2Fi386%2Fmm%2Ffault.c;h=8e90339d6eaaa18c96a5292c53f6590235804764;hp=92ed6c0a55da12109db9e23a82395d7388e45439;hb=c7c5844526f55b93fc9a44170cb7568c9bc95c4a;hpb=4f339ecb30c759f94a29992d4635d9194132b6cf diff --git a/arch/i386/mm/fault.c b/arch/i386/mm/fault.c index 92ed6c0..8e90339 100644 --- a/arch/i386/mm/fault.c +++ b/arch/i386/mm/fault.c @@ -146,7 +146,7 @@ static int __is_prefetch(struct pt_regs *regs, unsigned long addr) if (instr > limit) break; - if (__get_user(opcode, (unsigned char *) instr)) + if (__get_user(opcode, (unsigned char __user *) instr)) break; instr_hi = opcode & 0xf0; @@ -173,7 +173,7 @@ static int __is_prefetch(struct pt_regs *regs, unsigned long addr) scan_more = 0; if (instr > limit) break; - if (__get_user(opcode, (unsigned char *) instr)) + if (__get_user(opcode, (unsigned char __user *) instr)) break; prefetch = (instr_lo == 0xF) && (opcode == 0x0D || opcode == 0x18);