aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fuse/dev.c')
-rw-r--r--fs/fuse/dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c
index d76432b757c9..4f1ca7b119ed 100644
--- a/fs/fuse/dev.c
+++ b/fs/fuse/dev.c
@@ -361,8 +361,8 @@ void request_send_background(struct fuse_conn *fc, struct fuse_req *req)
361void fuse_send_init(struct fuse_conn *fc) 361void fuse_send_init(struct fuse_conn *fc)
362{ 362{
363 /* This is called from fuse_read_super() so there's guaranteed 363 /* This is called from fuse_read_super() so there's guaranteed
364 to be a request available */ 364 to be exactly one request available */
365 struct fuse_req *req = do_get_request(fc); 365 struct fuse_req *req = fuse_get_request(fc);
366 struct fuse_init_in *arg = &req->misc.init_in; 366 struct fuse_init_in *arg = &req->misc.init_in;
367 arg->major = FUSE_KERNEL_VERSION; 367 arg->major = FUSE_KERNEL_VERSION;
368 arg->minor = FUSE_KERNEL_MINOR_VERSION; 368 arg->minor = FUSE_KERNEL_MINOR_VERSION;