passthrough_ll: Use cache_readdir for directory open (#492)
authorMisono Tomohiro <misono.tm@gmail.com>
Fri, 24 Jan 2020 15:53:32 +0000 (00:53 +0900)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 24 Jan 2020 15:53:32 +0000 (15:53 +0000)
Upstreamed from:
  https://www.redhat.com/archives/virtio-fs/2020-January/msg00106.html

Since keep_cache(FOPEN_KEEP_CACHE) has no effect for directory as
described in fuse_common.h, use cache_readdir(FOPEN_CACHE_DIR) for
diretory open when cache=always mode.

Signed-off-by: Misono Tomohiro <misono.tomohiro@jp.fujitsu.com>
example/passthrough_ll.c

index d80b493c8016d1291ae7631e9deb65147300092a..c31dbe5f93bec53201a2a16573394c5fd1c7c055 100644 (file)
@@ -630,7 +630,7 @@ static void lo_opendir(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi
 
        fi->fh = (uintptr_t) d;
        if (lo->cache == CACHE_ALWAYS)
-               fi->keep_cache = 1;
+               fi->cache_readdir = 1;
        fuse_reply_open(req, fi);
        return;