Loading arch/i386/mm/fault.c +2 −2 Original line number Diff line number Diff line Loading @@ -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; Loading @@ -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); Loading Loading
arch/i386/mm/fault.c +2 −2 Original line number Diff line number Diff line Loading @@ -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; Loading @@ -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); Loading