From: viro@ZenIV.linux.org.uk Date: Fri, 9 Sep 2005 19:36:43 +0000 (+0100) Subject: [PATCH] trivial __user annotations (md) X-Git-Tag: v2.6.16.28-rc1~4043 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=87162a28acceda05dadf10a8333183f6d2b55265;p=karo-tx-linux.git [PATCH] trivial __user annotations (md) Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/drivers/md/md.c b/drivers/md/md.c index 20ca80b7dc20..373ab92e367b 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -2087,7 +2087,7 @@ static int get_array_info(mddev_t * mddev, void __user * arg) return 0; } -static int get_bitmap_file(mddev_t * mddev, void * arg) +static int get_bitmap_file(mddev_t * mddev, void __user * arg) { mdu_bitmap_file_t *file = NULL; /* too big for stack allocation */ char *ptr, *buf = NULL; @@ -2781,7 +2781,7 @@ static int md_ioctl(struct inode *inode, struct file *file, goto done_unlock; case GET_BITMAP_FILE: - err = get_bitmap_file(mddev, (void *)arg); + err = get_bitmap_file(mddev, argp); goto done_unlock; case GET_DISK_INFO: