s390/uprobes: fix address space annotation
Remove __user address space annotation for sim_stor_event() calls since it generates false positive warnings from sparse. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
2a5e91c3ac
commit
9f9d86e1e9
@ -188,7 +188,9 @@ static void adjust_psw_addr(psw_t *psw, unsigned long len)
|
||||
else if (put_user(*(input), __ptr)) \
|
||||
__rc = EMU_ADDRESSING; \
|
||||
if (__rc == 0) \
|
||||
sim_stor_event(regs, __ptr, mask + 1); \
|
||||
sim_stor_event(regs, \
|
||||
(void __force *)__ptr, \
|
||||
mask + 1); \
|
||||
__rc; \
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user