Antonio SJ Musumeci
3288d834a9
add reference to 32bit mmap kernel bug
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
trapexit
8bd09628ef
Merge pull request #593 from trapexit/outbuf
ioctl: don't set outbufsz when not needed
6 years ago
Antonio SJ Musumeci
b69819e4b2
ioctl: don't set outbufsz when not needed
6 years ago
trapexit
2ca0cb0fbf
Merge pull request #592 from trapexit/tarball
makefile: remove superclean dependency from tarball
6 years ago
Antonio SJ Musumeci
61d764d0fd
makefile: remove superclean dependency from tarball
6 years ago
trapexit
8b007ada61
Merge pull request #591 from trapexit/parallel-deb
parallel deb building
6 years ago
Antonio SJ Musumeci
b0b265b8e5
parallel deb building
6 years ago
trapexit
cab7033d5b
Merge pull request #589 from trapexit/make
rework makefiles for better manage parallel builds
6 years ago
Antonio SJ Musumeci
1be9900733
rework makefiles for better manage parallel builds
6 years ago
trapexit
3c2a9cd4f8
Merge pull request #586 from trapexit/man
replace {attr,entry,negative}_timeout references
6 years ago
Antonio SJ Musumeci
38037feab7
replace {attr,entry,negative}_timeout references
6 years ago
trapexit
99d44cfc5d
Merge pull request #585 from trapexit/debfix
fix building of deb pkg
6 years ago
Antonio SJ Musumeci
2af0dcd273
fix building of deb pkg
6 years ago
trapexit
d9f430fda8
Merge pull request #584 from trapexit/timeouts
make attr, entry, negative_entry cache timeouts runtime configurable
6 years ago
Antonio SJ Musumeci
0918dfd117
make attr, entry, negative_entry cache timeouts runtime configurable
6 years ago
trapexit
a64c7c97ad
Merge pull request #583 from trapexit/libfuse
replace libfuse's autoconf with makefile and ecfd
6 years ago
Antonio SJ Musumeci
95c0cc741d
replace libfuse's autoconf with makefile
6 years ago
trapexit
8b0342067c
Merge pull request #582 from trapexit/discord
add discord server to docs
6 years ago
Antonio SJ Musumeci
1d48dba0b7
add discord server to docs
6 years ago
trapexit
e8622fdd64
Merge pull request #581 from trapexit/ioctl
fix FS_IOC_{GET,SET}{FLAGS,VERSION} ioctl calls
6 years ago
Antonio SJ Musumeci
7bf607bb6b
fix FS_IOC_{GET,SET}{FLAGS,VERSION} ioctl calls
6 years ago
trapexit
a80f9a0b29
Merge pull request #580 from trapexit/freebsd
misc fixes for FreeBSD
6 years ago
Antonio SJ Musumeci
940c323251
misc fixes for FreeBSD
6 years ago
trapexit
babe8bcf47
Merge pull request #579 from trapexit/freebsd
remove O_LARGEFILE
6 years ago
Antonio SJ Musumeci
5ab7d2dd72
remove O_LARGEFILE
6 years ago
trapexit
401502579b
Merge pull request #577 from trapexit/modules
remove libfuse modules
6 years ago
Antonio SJ Musumeci
65d3bfe84d
remove libfuse modules
6 years ago
trapexit
cfd5d31338
Merge pull request #575 from trapexit/cleanup
general code cleanup
6 years ago
Antonio SJ Musumeci
9d9ee7b71d
general code cleanup
6 years ago
trapexit
5a1a60742e
Merge pull request #574 from trapexit/opts
remove `defaults`, hard code atomic_o_trunc, big_writes, and default_…
6 years ago
Antonio SJ Musumeci
c5b2415daf
remove `defaults`, hard code atomic_o_trunc, big_writes, and default_permissions
`defaults` is a value used by all filesystems and isn't passed through to
mergerfs when mounting via the fstab or the mount command. This led
to inconsistent application of options. atomic_o_trunc, big_writes, and
default_permissions should be enabled all the time anyway and splice_*
can lead to issues so they are not always enabled.
6 years ago
trapexit
a0bb2f8480
Merge pull request #568 from trapexit/docs
fix <> escaping in argument list
6 years ago
Antonio SJ Musumeci
f4a06cae18
fix <> escaping in argument list
6 years ago
trapexit
21d690a210
Merge pull request #567 from trapexit/statfs_cache
add statfs cache
6 years ago
Antonio SJ Musumeci
5be7e007ce
add statfs cache
6 years ago
trapexit
f42bd8666e
Merge pull request #565 from trapexit/open_cache
add policy cache for 'open'
6 years ago
Antonio SJ Musumeci
7a057daa0c
add policy cache for 'open'
A fusepath -> basepath cache for `open` to limit the overhead of FUSE in 'open, read/write, close' patterns (such as Transmission).
6 years ago
trapexit
8e0aa1d9a6
Merge pull request #564 from trapexit/nfs
add mention of noforget argument for NFS exports
6 years ago
Antonio SJ Musumeci
a13b822543
add mention of noforget argument for NFS exports
6 years ago
trapexit
40319081e0
Merge pull request #563 from trapexit/ioctl
make ioctl on directories use open policy
6 years ago
Antonio SJ Musumeci
9fd3b968fc
make ioctl on directories use open policy
6 years ago
trapexit
24a7973955
Merge pull request #559 from trapexit/docs
clarify descriptions regarding funcitons and those without policies
6 years ago
Antonio SJ Musumeci
a57c680cc8
clarify descriptions regarding funcitons and those without policies
6 years ago
trapexit
11be067895
Merge pull request #558 from trapexit/docs
add more info on different caching techniques
6 years ago
Antonio SJ Musumeci
3a1213435f
add more info on different caching techniques
6 years ago
trapexit
56f7df028b
Merge pull request #556 from trapexit/direct
set direct_io per open/create, now runtime configurable
6 years ago