Bill Fraser

Results 38 comments of Bill Fraser
trafficstars

I have fuse 2.9.5 on Linux, and it has the "-o auto_unmount" option which achieves what you want. Pass those options to the fuse::mount function, and on program exit, the...

I for one would be excited to not have the dependency on libfuse anymore. 😄 (assuming it also works on vanilla Linux)

I'm working on an experimental branch to do this in FuseMT, which is built on top of rust-fuse. See https://github.com/wfraser/fuse-mt/tree/futures for the experimental branch, and https://github.com/wfraser/fuse-mt/issues/3 for some discussion about...

I'm also working on https://github.com/wfraser/fuse-mt which sits on top of rust-fuse and does inode->path translation, and adds multi-threading for some I/O operations. It's a work-in-progress that I haven't had much...

See the documentation for the system call in `man listxattr`. You should return a list of NUL-terminated UTF-8 strings. Also note that the names have to start with `user.` if...

testing @ayosec's code on macOS big sur: crashes on startup unfortunately ``` % cargo run --release Finished release [optimized + debuginfo] target(s) in 0.32s Running `target/release/alacritty` Created log file at...

> I would assume the most sensible thing would be to only allow this annotation on data-less variants I don't know if it makes sense for all deserializers, but for...

@ThatOneCalculator: this isn't the main repository for librespot anymore, it's moved to https://github.com/librespot-org/librespot. The feature in question has already been implemented there, in https://github.com/librespot-org/librespot/pull/430

Not directly possible (not even in low-level fuse code), because inodes don't store a reference to their parent. You can only look up the parent by path (by stripping off...

Sounds reasonable. Only question I have is whether `lookup` is really necessary, because if you have `forget`, you can just check in `getattr` if you have seen a request for...