[PATCH] arch/i386/mm/fault.c: fix sparse warnings
Signed-off-by: Alexey Dobriyan <adobriyan@mail.ru> Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
77617bd806
commit
c7c5844526
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue