From: Al Viro Date: Fri, 9 Feb 2007 16:38:00 +0000 (+0000) Subject: [PATCH] hidp __user annotations X-Git-Tag: v2.6.21-rc1~83^2~52 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=55e747445beec8df1133bb8681c884500546775c;p=powerpc.git [PATCH] hidp __user annotations Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/net/bluetooth/hidp/hidp.h b/net/bluetooth/hidp/hidp.h index c2775f587d..c8dfacd40a 100644 --- a/net/bluetooth/hidp/hidp.h +++ b/net/bluetooth/hidp/hidp.h @@ -86,7 +86,7 @@ struct hidp_connadd_req { int intr_sock; // Connteted interrupt socket __u16 parser; __u16 rd_size; - __u8 *rd_data; + __u8 __user *rd_data; __u8 country; __u8 subclass; __u16 vendor; diff --git a/net/bluetooth/hidp/sock.c b/net/bluetooth/hidp/sock.c index 407fba43c1..93cf9e5861 100644 --- a/net/bluetooth/hidp/sock.c +++ b/net/bluetooth/hidp/sock.c @@ -189,7 +189,7 @@ static int hidp_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigne uca = compat_alloc_user_space(sizeof(*uca)); - if (copy_from_user(&ca, (void *) arg, sizeof(ca))) + if (copy_from_user(&ca, (void __user *) arg, sizeof(ca))) return -EFAULT; if (put_user(ca.ctrl_sock, &uca->ctrl_sock) ||