Commit db469a27 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] alpha csum_partial_copy.c annotations

Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ddcd2bb1
...@@ -193,7 +193,8 @@ csum_partial_cfu_dest_aligned(const unsigned long __user *src, ...@@ -193,7 +193,8 @@ csum_partial_cfu_dest_aligned(const unsigned long __user *src,
* This is slightly less fun than the above.. * This is slightly less fun than the above..
*/ */
static inline unsigned long static inline unsigned long
csum_partial_cfu_src_aligned(const unsigned long *src, unsigned long *dst, csum_partial_cfu_src_aligned(const unsigned long __user *src,
unsigned long *dst,
unsigned long doff, unsigned long doff,
long len, unsigned long checksum, long len, unsigned long checksum,
unsigned long partial_dest, unsigned long partial_dest,
...@@ -372,7 +373,7 @@ unsigned int ...@@ -372,7 +373,7 @@ unsigned int
csum_partial_copy_from_user(const char __user *src, char *dst, int len, csum_partial_copy_from_user(const char __user *src, char *dst, int len,
unsigned int sum, int *errp) unsigned int sum, int *errp)
{ {
if (!access_ok(src, len, VERIFY_READ)) { if (!access_ok(VERIFY_READ, src, len)) {
*errp = -EFAULT; *errp = -EFAULT;
memset(dst, 0, len); memset(dst, 0, len);
return sum; return sum;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment