diff options
Diffstat (limited to 'fs/fuse/dev.c')
-rw-r--r-- | fs/fuse/dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c index 13c65dd2d37d..a42d89371748 100644 --- a/fs/fuse/dev.c +++ b/fs/fuse/dev.c | |||
@@ -33,7 +33,7 @@ static struct fuse_dev *fuse_get_dev(struct file *file) | |||
33 | * Lockless access is OK, because file->private data is set | 33 | * Lockless access is OK, because file->private data is set |
34 | * once during mount and is valid until the file is released. | 34 | * once during mount and is valid until the file is released. |
35 | */ | 35 | */ |
36 | return ACCESS_ONCE(file->private_data); | 36 | return READ_ONCE(file->private_data); |
37 | } | 37 | } |
38 | 38 | ||
39 | static void fuse_request_init(struct fuse_req *req, struct page **pages, | 39 | static void fuse_request_init(struct fuse_req *req, struct page **pages, |