aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorLines
2017-08-22Document meaning of zero telldir() offset.Nikolaus Rath-15/+16
2017-08-22Allow building without iconv.Nikolaus Rath-1/+9
cfg.has('HAVE_ICONV') was always true.
2017-08-22Use 'buildtype' to set debug/optimization optionsNikolaus Rath-2/+2
Until now, running `mesonconf -D buildtype=debug` didn't have any effect - which was confusing.
2017-08-14directly call fuse_new_31() instead of fuse_new() internallyuserwithuid-3/+6
this fixes building with lto, which failed since commit 503e32d01e4db00e90d7acfd81ab05386559069f
2017-08-14Fixed udev rules directory.Nikolaus Rath-2/+4
2017-08-11Skip tests that aren't supported under FreeBSD.Nikolaus Rath-8/+25
2017-08-11fuse_lib_init(): don't set FUSE_CAP_EXPORT_SUPPORT unconditionallyNikolaus Rath-1/+2
FreeBSD kernel does not support this.
2017-08-11Don't attempt to run fusermount3 under BSD.Nikolaus Rath-10/+21
2017-08-11Call cp with -p instead of --preserve=modeNikolaus Rath-1/+1
Preserving other attributes doesn't hurt, and --preserve is not supported under FreeBSD.
2017-08-11Don't pass --update to cpNikolaus Rath-1/+3
Doesn't work on FreeBSD, and not strictly necessary.
2017-08-11Don't build passthrough_ll under BSD.Nikolaus Rath-2/+10
2017-08-11fuse_kern_unmount(): fix variable type.Nikolaus Rath-1/+2
2017-08-11Fix unused variable warnings under FreeBSD.Nikolaus Rath-2/+2
2017-08-08Fix FreeBSD platform detection.Nikolaus Rath-1/+1
2017-08-07Fix support for FUSE_POSIX_ACLMarcin Sulikowski-0/+9
The kernel may set the FUSE_POSIX_ACL flag in the FUSE_INIT request to notify the userspace daemon that the OS does support POSIX ACLs for FUSE file systems. If the filesystem implementation wants to enable POSIX ACLs, it has to reply with the FUSE_POSIX_ACL flag set. However, the reply to the kernel never includes this flag, even if the implementation expresses the need by setting the FUSE_CAP_POSIX_ACL flag in the fuse_conn_info::want variable passed to its init callback. We modify the library to handle requests for FUSE_CAP_POSIX_ACL correctly, i.e., set the FUSE_POSIX_ACL flag in the FUSE_INIT reply to the kernel. Signed-off-by: Marcin Sulikowski <marcin.sulikowski@editshare.com>
2017-08-06Released 3.1.1Nikolaus Rath-6/+11
2017-08-06os_open(): don't attempt to close fd if open failed.Nikolaus Rath-1/+1
2017-08-06Added writeback cache to passthrough_llNikolaus Rath-23/+107
This fixes issue #191 (where the test was done by simply adding FUSE_CAP_WRITEBACK_CACHE without adjusting the flags in the open() call). Fixes: #191.
2017-08-06Clarified documentation for fuse_parse_cmdline()Nikolaus Rath-0/+3
2017-08-06Removed compat stuff in passthrough_llNikolaus Rath-42/+0
As the comment says, this made it compile but not work. If there is a need, we can add these checks to meson.build to only build this file if the prerequisites are satisfied.
2017-08-06Clarify how the filesystem should handle open/create flagsNikolaus Rath-25/+78
2017-08-04passthrough_ll: added more debugging outputNikolaus Rath-1/+20
2017-08-04Added append and seek testsNikolaus Rath-3/+41
2017-08-04Include ChangeLog in tarballNikolaus Rath-1/+2
2017-08-03Simplify and fix FreeBSD fsname handlingNikolaus Rath-33/+10
This should simplify the code a lot. It also corrects a bug in that the (former) add_default_fsname() function actually set the -osubtype option.
2017-08-03Simply #ifdefsNikolaus Rath-53/+0
mount_bsd.c is only used when compiling for *BSD, and FreeBSD is the only BSD that supports FUSE. So there really is no need to check if this file is compiled under FreeBSD.
2017-08-03Fix FreeBSD detection in meson.buildNikolaus Rath-2/+2
2017-08-03Added ChangeLog entry for FreeBSD commits.Nikolaus Rath-0/+3
2017-08-03FreeBSD: supprt fsname= optionBaptiste Daroussin-0/+34
2017-08-03FreeBSD: use unmount(2) and add missing FreeBSD mount optionBaptiste Daroussin-0/+12
2017-08-03FreeBSD: do not build utilitiesBaptiste Daroussin-1/+4
2017-08-03Produce more helpful message on OS-X and Windows.Nikolaus Rath-0/+10
Fixes: #186.
2017-08-03Don't check st_nlink value for mkdirNikolaus Rath-1/+6
Some filesystems don't track this for directories. Fixes: #180.
2017-08-03Added changelog entry for symbol versioning fixes.Nikolaus Rath-0/+3
2017-08-03Added changelog entry for commit f0ecf.Nikolaus Rath-0/+3
2017-08-03Fix compilation on 32bit systemsNikolaus Rath-6/+12
Fixes: #185.
2017-08-02Ask pkgconfig where we should install udev rulesHeiko Becker-2/+6
2017-08-01Fix compiler warnings of gcc-5.4.xBanglang-3/+3
Signed-off-by: Banglang <banglang.huang@foxmail.com>
2017-07-13Only declare fuse_new_30() when FUSE_USE_VERSION == 30Nikolaus Rath-26/+28
This function shouldn't be called when using a newer fuse version, so we should not define it in that case.
2017-07-13fuse_new_30(): call fuse_new_31(), not fuse_new()Nikolaus Rath-1/+1
I believe this function call is resolved by the compiler, not the linker, so this seems safer. Thanks to Chris Clayton for spotting this.
2017-07-08Fixup symbol versioning for GCC 4.xNikolaus Rath-4/+7
GCC 4.8 doesn't like to rename fuse_new_30 to fuse_new, if we also define an implementation for fuse_new.
2017-07-08Released 3.1.0Nikolaus Rath-2/+4
2017-07-08Added public fuse_lib_help(), bumped minor versionNikolaus Rath-70/+151
2017-07-08Fixed description of struct fuse_conn_info->time_granNikolaus Rath-3/+8
At least on Linux kernel 4.9, a value of zero gives more than 1-sec accuracy.
2017-07-07Error out if FUSE_USE_VERSION is not definedNikolaus Rath-1/+1
This is safer than making assumptions.
2017-07-07Don't use emacs' python-mode for meson filesNikolaus Rath-15/+0
There is a proper meson-mode now.
2017-07-07Fixed typo in ChangelogNikolaus Rath-1/+1
2017-07-06Don't redefine FUSE_USE_VERSIONNikolaus Rath-4/+0
It's already set in meson.build as compiler flag.
2017-07-06Travis: use sudo-enabled environment.Nikolaus Rath-0/+1
2017-07-06Added information about professional support.Nikolaus Rath-0/+7