Set FUSE_INIT_EXT in fuse_init_out::flags
authorBernd Schubert <bschubert@ddn.com>
Mon, 11 Apr 2022 18:39:41 +0000 (20:39 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 17 Apr 2022 12:45:18 +0000 (13:45 +0100)
It is better to tell the kernel that libfuse knows
about the 64 bit flag extension.

lib/fuse_lowlevel.c

index 1d75724d21c61c340d36c20b04323e55a8710dcf..e5de2a56d30ee6b374ea5baa77b76fa65a6185c2 100644 (file)
@@ -2106,10 +2106,13 @@ void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
        if (se->conn.want & FUSE_CAP_EXPLICIT_INVAL_DATA)
                outargflags |= FUSE_EXPLICIT_INVAL_DATA;
 
+       if (inargflags & FUSE_INIT_EXT) {
+               outargflags |= FUSE_INIT_EXT;
+               outarg.flags2 = outargflags >> 32;
+       }
+
        outarg.flags = outargflags;
 
-       if (inargflags & FUSE_INIT_EXT)
-               outarg.flags2 = outargflags >> 32;
        outarg.max_readahead = se->conn.max_readahead;
        outarg.max_write = se->conn.max_write;
        if (se->conn.proto_minor >= 13) {