fuse: add noreply to fuse_args
authorMiklos Szeredi <mszeredi@redhat.com>
Tue, 10 Sep 2019 13:04:08 +0000 (15:04 +0200)
committerMiklos Szeredi <mszeredi@redhat.com>
Tue, 10 Sep 2019 14:29:48 +0000 (16:29 +0200)
This will be used by fuse_force_forget().

We can expand fuse_request_send() into fuse_simple_request().  The
FR_WAITING bit has already been set, no need to check.

Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/fuse/dev.c
fs/fuse/fuse_i.h

index a7be13b..85ed1ab 100644 (file)
@@ -591,7 +591,9 @@ ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
        req->out.numargs = args->out_numargs;
        memcpy(req->out.args, args->out_args,
               args->out_numargs * sizeof(struct fuse_arg));
-       fuse_request_send(fc, req);
+       if (!args->noreply)
+               __set_bit(FR_ISREPLY, &req->flags);
+       __fuse_request_send(fc, req);
        ret = req->out.h.error;
        if (!ret && args->out_argvar) {
                BUG_ON(args->out_numargs != 1);
index 24269f4..ed6538e 100644 (file)
@@ -292,6 +292,7 @@ struct fuse_args {
        unsigned short in_numargs;
        unsigned short out_numargs;
        bool force:1;
+       bool noreply:1;
        bool out_argvar:1;
        struct fuse_in_arg in_args[3];
        struct fuse_arg out_args[2];