mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 02:55:55 +02:00
- Update from version 3.11.0 to 3.13.0 - Update of rootfile - Changelog libfuse 3.13.0 (2023-01-13) - There is a new low-level API function `fuse_session_custom_io` that allows to implement a daemon with a custom io. This can be used to create a daemon that can process incoming FUSE requests to other destinations than `/dev/fuse`. - A segfault when loading custom FUSE modules has been fixed. - There is a new `fuse_notify_expire_entry` function. - A deadlock when resolving paths in the high-level API has been fixed. - libfuse can now be build explicitly for C libraries without symbol versioning support. libfuse 3.12.0 (2022-09-08) - There is a new build parameter to specify where the SysV init script should be installed. - The *max_idle_threads* parameter has been deprecated in favor of the new max_threads* parameter (which avoids the excessive overhead of creating and destructing threads). Using max_threads == 1 and calling fuse_session_loop_mt() will run single threaded similar to fuse_session_loop(). The following changes apply when using the most recent API (-DFUSE_USE_VERSION=312, see `example/passthrough_hp.cc` for an example for how to usse the new API): - `struct fuse_loop_config` is now private and has to be constructed using - fuse_loop_cfg_create()* and detroyed with *fuse_loop_cfg_destroy()*. Parameters can be - changed using `fuse_loop_cfg_set_*()` functions. - fuse_session_loop_mt()* now accepts `struct fuse_loop_config *` as NULL pointer. - fuse_parse_cmdline()* now accepts a *max_threads* option. Signed-off-by: Adolf Belka <adolf.belka@ipfire.org> Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
19 lines
481 B
Plaintext
19 lines
481 B
Plaintext
#etc/fuse.conf
|
|
#etc/rc.d/init.d/fuse3
|
|
etc/udev/rules.d/99-fuse3.rules
|
|
sbin/mount.fuse3
|
|
usr/bin/fusermount3
|
|
#usr/include/fuse3
|
|
#usr/include/fuse3/cuse_lowlevel.h
|
|
#usr/include/fuse3/fuse.h
|
|
#usr/include/fuse3/fuse_common.h
|
|
#usr/include/fuse3/fuse_log.h
|
|
#usr/include/fuse3/fuse_lowlevel.h
|
|
#usr/include/fuse3/fuse_opt.h
|
|
#usr/lib/libfuse3.so
|
|
usr/lib/libfuse3.so.3
|
|
usr/lib/libfuse3.so.3.13.0
|
|
#usr/lib/pkgconfig/fuse3.pc
|
|
#usr/share/man/man1/fusermount3.1
|
|
#usr/share/man/man8/mount.fuse3.8
|