RxRPC: Fix missing __user annotation
Fix a missing __user annotation in a cast of a user space pointer (found by checker). Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
37b7021d9d
commit
ed3bfdfdce
@@ -1143,7 +1143,7 @@ static long rxrpc_read(const struct key *key,
|
|||||||
if (copy_to_user(xdr, (s), _l) != 0) \
|
if (copy_to_user(xdr, (s), _l) != 0) \
|
||||||
goto fault; \
|
goto fault; \
|
||||||
if (_l & 3 && \
|
if (_l & 3 && \
|
||||||
copy_to_user((u8 *)xdr + _l, &zero, 4 - (_l & 3)) != 0) \
|
copy_to_user((u8 __user *)xdr + _l, &zero, 4 - (_l & 3)) != 0) \
|
||||||
goto fault; \
|
goto fault; \
|
||||||
xdr += (_l + 3) >> 2; \
|
xdr += (_l + 3) >> 2; \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
Reference in New Issue
Block a user