diff options
author | Aleksandr Mikhailov <AM5800@users.noreply.github.com> | 2023-08-03 19:01:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 18:01:46 +0100 |
commit | 98eb80890446c18bee0e9c5fefc5947086672ee0 (patch) | |
tree | 9d71fbf0799ec54e431054ca54f5bf78a5cc8d42 /lib/fuse.c | |
parent | 7c109e2ecfb5cb414669983ed44ff1204adbab74 (diff) | |
download | libfuse-98eb80890446c18bee0e9c5fefc5947086672ee0.tar.gz |
Pass cache_readdir and keep_cache from high level API (#822)
* Pass cache_readdir and keep_cache from high level API
* Update ChangeLog.rst
Diffstat (limited to 'lib/fuse.c')
-rw-r--r-- | lib/fuse.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3374,6 +3374,8 @@ static void fuse_lib_opendir(fuse_req_t req, fuse_ino_t ino, err = fuse_fs_opendir(f->fs, path, &fi); fuse_finish_interrupt(f, req, &d); dh->fh = fi.fh; + llfi->cache_readdir = fi.cache_readdir; + llfi->keep_cache = fi.keep_cache; } if (!err) { if (fuse_reply_open(req, llfi) == -ENOENT) { |