You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the c libfuse, getattr calls receive fh if there is some (see fuse_lowlevel.c:1087, static void do_getattr). In rust-fuse, only setattr receives _fh: Option<u64>.
The text was updated successfully, but these errors were encountered:
That's because rust-fuse still uses the FUSE kernel ABI version 7.6 and fh in getattr was introduced in 7.9. We definitely need to add support for newer versions, but it's hard to support a range of versions and it's not unclear yet how rust-fuse should handle it (see also #83).
In the c libfuse,
getattr
calls receivefh
if there is some (see fuse_lowlevel.c:1087,static void do_getattr
). In rust-fuse, onlysetattr
receives_fh: Option<u64>
.The text was updated successfully, but these errors were encountered: