dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] trivial __user annotations (md)

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
viro@ZenIV.linux.org.uk 2005-09-09 20:36:43 +01:00 committed by Linus Torvalds
parent 01703597ea
commit 87162a28ac
1 changed files with 2 additions and 2 deletions

View File

@ -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: