aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/orangefs/orangefs-bufmap.c
diff options
context:
space:
mode:
authorMike Marshall <hubcap@omnibond.com>2018-06-01 12:19:45 -0400
committerMike Marshall <hubcap@omnibond.com>2018-06-01 14:51:36 -0400
commit817e9b4d9e660761e1e613aa294bf77d2e7c7310 (patch)
treebdd031825e002215485f9a6b63954147f1d64ef1 /fs/orangefs/orangefs-bufmap.c
parentorangefs: formatting cleanups (diff)
downloadwireguard-linux-817e9b4d9e660761e1e613aa294bf77d2e7c7310.tar.xz
wireguard-linux-817e9b4d9e660761e1e613aa294bf77d2e7c7310.zip
orangefs: specify user pointers when using dev_map_desc and bufmap
Sparse lead me to the dev_map_desc one and Al Viro lead me to the bufmap one. Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/orangefs-bufmap.c')
-rw-r--r--fs/orangefs/orangefs-bufmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/orangefs-bufmap.c b/fs/orangefs/orangefs-bufmap.c
index e3302f8d6429..c4699a164f76 100644
--- a/fs/orangefs/orangefs-bufmap.c
+++ b/fs/orangefs/orangefs-bufmap.c
@@ -138,7 +138,7 @@ static int get(struct slot_map *m)
/* used to describe mapped buffers */
struct orangefs_bufmap_desc {
- void *uaddr; /* user space address pointer */
+ void __user *uaddr; /* user space address pointer */
struct page **page_array; /* array of mapped pages */
int array_count; /* size of above arrays */
struct list_head list_link;