trapexit
10e5829b8e
Merge pull request #643 from trapexit/ioctl_setuid
set uid & gid when calling ioctl
5 years ago
Antonio SJ Musumeci
4c4c27a93e
set uid & gid when calling ioctl
Turns out certain ioctl calls check the effective user id (FS_IOC_SETFLAGS).
5 years ago
trapexit
72ac1fc0d1
Merge pull request #639 from trapexit/args
accept old arguments for backwards compatibility
6 years ago
Antonio SJ Musumeci
5ca928e436
accept old arguments for backwards compatibility
6 years ago
trapexit
5d013f4a18
Merge pull request #636 from trapexit/max_pages
allow setting of 'max_pages' (via 'fuse_msg_size')
6 years ago
Antonio SJ Musumeci
7cbd88ac81
allow setting of 'max_pages' (via 'fuse_msg_size')
Linux 4.20 and above allow setting the number of pages per FUSE message
upto 256 (4K * 256 = 1MiB). This can greatly increase read and write
speeds depending on the workload.
6 years ago
trapexit
24af276542
Merge pull request #635 from trapexit/copy_file_range
add copy_file_range support
6 years ago
Antonio SJ Musumeci
8cb7195c3e
add copy_file_range support
6 years ago
trapexit
c8e178bf71
Merge pull request #633 from trapexit/cache.files
add file caching across opens and runtime control
6 years ago
Antonio SJ Musumeci
529a953e30
add file caching across opens and runtime control
6 years ago
trapexit
02b657edff
Merge pull request #632 from trapexit/async-read
jmake async_read optional again
6 years ago
Antonio SJ Musumeci
ddf6a2f105
make async_read optional again
6 years ago
trapexit
40a4762cac
Merge pull request #630 from trapexit/cache-dir
add readdir caching
6 years ago
Antonio SJ Musumeci
2323c16316
add readdir caching
6 years ago
trapexit
bac4b33ef8
Merge pull request #629 from trapexit/cache-symlink
add symlink caching
6 years ago
Antonio SJ Musumeci
1baa706d37
add symlink caching
6 years ago
trapexit
9e3331dab4
Merge pull request #628 from trapexit/hide-cleanup
fix for unlink race condition
6 years ago
Antonio SJ Musumeci
61cded5b34
fix for unlink race condition
6 years ago
trapexit
060cae6270
Merge pull request #627 from trapexit/symlink
fix mount.mergerfs generation
6 years ago
Antonio SJ Musumeci
229d8517c0
fix mount.mergerfs generation
6 years ago
trapexit
cc9381f578
Merge pull request #624 from trapexit/parallel_dirops
ensure parallel dirops is enabled if capable
6 years ago
Antonio SJ Musumeci
5f2221155c
ensure parallel dirops is enabled if capable
6 years ago
trapexit
7da8dd6b7a
Merge pull request #623 from trapexit/async_dio
ensure async_aio is enabled if capable
6 years ago
Antonio SJ Musumeci
2b019b84b0
ensure async_aio is enabled if capable
6 years ago
trapexit
741c559df1
Merge pull request #622 from trapexit/rename
ensure marking open files renamed over as hidden
6 years ago
Antonio SJ Musumeci
3a66a68edb
ensure marking open files renamed over as hidden
6 years ago
trapexit
af1c0d78e8
Merge pull request #621 from trapexit/posix-acl
add support for POSIX ACLs
6 years ago
Antonio SJ Musumeci
80d56ac94e
add support for POSIX ACLs
6 years ago
trapexit
41881f9d05
Merge pull request #620 from trapexit/flock
remove 'remote' flock support
6 years ago
Antonio SJ Musumeci
1ca70521a4
remove 'remote' flock support
6 years ago
trapexit
ee0d87d712
Merge pull request #619 from trapexit/hiddenfiles
fix renaming over open unlinked file
6 years ago
Antonio SJ Musumeci
c21aa34221
fix renaming over open unlinked file
6 years ago
trapexit
1ad79067e4
Merge pull request #617 from trapexit/docs
update support section of README
6 years ago
Antonio SJ Musumeci
810871d2df
update support section of README
6 years ago
trapexit
6404939156
Merge pull request #615 from trapexit/fsname
fix setting of fsname
6 years ago
Antonio SJ Musumeci
e052446713
fix setting of fsname
6 years ago
trapexit
5e16851c79
Merge pull request #611 from trapexit/man
tweak docs
6 years ago
Antonio SJ Musumeci
5883020784
tweak docs
6 years ago
trapexit
726c1c850c
Merge pull request #610 from trapexit/tests
create integration tests
6 years ago
Antonio SJ Musumeci
374580a85d
create integration tests
6 years ago
trapexit
4293cb7253
Merge pull request #609 from trapexit/make
cleanup and rework build system
6 years ago
Antonio SJ Musumeci
825fcf7f35
cleanup and rework build system
6 years ago
trapexit
85e2a3e71b
Merge pull request #605 from trapexit/man
add reference to 32bit mmap kernel bug
6 years ago
Antonio SJ Musumeci
3288d834a9
add reference to 32bit mmap kernel bug
6 years ago
trapexit
209dc2252a
Merge pull request #603 from trapexit/backcompat
fix outarg size to accomidate newer fuse_kernel.h on older platforms
6 years ago
Antonio SJ Musumeci
df0d0552b2
fix outarg size calculation to accomidate newer fuse_kernel.h on older platforms
6 years ago
trapexit
05f33c84e4
Merge pull request #601 from trapexit/hidden
remove .fuse_hidden file creation
6 years ago
Antonio SJ Musumeci
6ecc618d83
remove .fuse_hidden file creation
addresses #521
mergerfs is written using libfuse's high level API. The HLAPI forces a certain
behavior with regard to unlinking or rename overwriting of open files. It
renames the file to .fuse_hiddenXXXXXX and when incoming requests refer
to the unlinked file it will use path based calls and use that path.
This behavior leads to rmdirs failing or some software noticing
the .fuse_hidden files.
This patch changes the HLAPI and removes entirely the .fuse_hidden behavior.
See the README for more.
6 years ago
trapexit
46be946672
Merge pull request #599 from trapexit/clonefile
fall back to other file copy methods in clonefile
6 years ago
Antonio SJ Musumeci
2a075ead92
fall back to other file copy methods in clonefile
6 years ago