aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Use tabs in configure.acGravatar Nikolaus Rath2016-12-23
|
* Memory leak fixed in file : mount_bsd.cGravatar itsdeepak2016-12-23
|
* Added documentation and test case for null exampleGravatar Nikolaus Rath2016-12-23
|
* Fixed use of uninitialized memory.Gravatar Nikolaus Rath2016-12-23
|
* Revert "Dropped example/null.c"Gravatar Csaba Henk2016-12-23
| | | | | | | | | | | This reverts commit d5cdbb94a0650b0a462682cf0a84463ff1513900. null works completely fine, just the mountpoint should be a regular file -- so there is no need to dismiss it. Also: - fixing up compiler warnings - checking if the mountpoint is a regular file
* Adding the markdown for travis CI build.Gravatar Arunav Sanyal2016-12-11
|
* Released 3.0.0Gravatar Nikolaus Rath2016-12-09
|
* Fix a grammatical error.Gravatar Jay Hankins2016-12-04
|
* Released 3.0.0rc3Gravatar Nikolaus Rath2016-11-29
|
* Improve documentation of fuse_session_unmountGravatar Nikolaus Rath2016-11-29
|
* Return signal value if session loop is terminated by signal and improve ↵Gravatar Nikolaus Rath2016-11-29
| | | | documentation
* Improve documentation of `fuse_file_info.keep_cache`Gravatar Nikolaus Rath2016-11-29
|
* examples/passthrough_ll.c: Include <limits.h> (for PATH_MAX macro).Gravatar Przemyslaw Pawelczyk2016-11-28
| | | | | | | | | | Otherwise building w/o optimization (-O0) fails. passthrough_ll.c: In function 'lo_readlink': passthrough_ll.c:251:11: error: 'PATH_MAX' undeclared (first use in this function) char buf[PATH_MAX + 1]; (gcc v5.3.0 in Alpine Linux v3.4.6 x86_64 w/ musl-libc v1.1.14.)
* examples/passthrough_ll.c: Close root fd before application ends.Gravatar Przemyslaw Pawelczyk2016-11-28
| | | | | If we want to do, what system would do anyway upon program termination, then let's try to be a bit more scrupulous.
* examples/passthrough_ll.c: Fix segfault when showing help or version.Gravatar Przemyslaw Pawelczyk2016-11-28
| | | | | | root lo_inode's next and prev were not set early enough, which led to accessing addr 0x8 (or 0x4, depending on ptr size) when setting prev variable in lo_free(lo.root.next), because lo.root.next was NULL.
* Rename more things from fuse to fuse3Gravatar Przemysław Pawełczyk2016-11-28
|
* Document that FUSE_CAP_POSIX_ACL turns on -o default_permissionsGravatar Nikolaus Rath2016-11-22
|
* Make handling of -oallow_root easier to understandGravatar Nikolaus Rath2016-11-22
| | | | | | -oallow_root is handled in userspace, and requires passing -oallow_other to the kernel. This patch should make the code easier to understand and avoid the confusion that gave rise to issue #86.
* Add support for FUSE_HANDLE_KILLPRIVGravatar Nikolaus Rath2016-11-22
| | | | Fixes #116.
* Add support for FUSE_POSIX_ACLGravatar Nikolaus Rath2016-11-22
| | | | Fixes #117.
* Added support for FUSE_PARALLEL_DIROPSGravatar Nikolaus Rath2016-11-22
| | | | | | Enabled by default since we haven't released libfuse 3.0 yet :-). Fixes #112.
* Updated kernel API headers.Gravatar Nikolaus Rath2016-11-22
| | | | Taken from Linux kernel commit 27bcd37.
* Document fuse_conn_info.max_backgroundGravatar Nikolaus Rath2016-11-22
| | | | Fixes #95.
* Distinguish between mount options and libfuse optionsGravatar Nikolaus Rath2016-11-17
|
* Fixed manpage formatting.Gravatar Nikolaus Rath2016-11-17
|
* Enable more capabilities by default, and document defaults.Gravatar Nikolaus Rath2016-11-16
| | | | Fixes #112.
* Update ChangeLog to include recent documentation improvementsGravatar Nikolaus Rath2016-11-16
|
* Abort if fs requests capabilities not supported by kernel.Gravatar Nikolaus Rath2016-11-16
| | | | See also issue #114.
* Fail more nicely on max_read mismatchGravatar Nikolaus Rath2016-11-16
| | | | | Instead of abort()ing, close the session properly and return an error code.
* Fix typo in commentGravatar Nikolaus Rath2016-11-16
|
* Add support for more detailed error codes from main loopGravatar Nikolaus Rath2016-11-16
|
* Fix typo in commentGravatar Nikolaus Rath2016-11-16
|
* Document special semantics of ENOSYS error code.Gravatar Nikolaus Rath2016-11-16
|
* Document "congestion_threshold" parameter.Gravatar Nikolaus Rath2016-11-16
| | | | | | Fixes #96. Thanks to Maxim Patlasov <mpatlasov@virtuozzo.com> for help!
* Make max_background and congestion_threshold "officially undocumented"Gravatar Nikolaus Rath2016-11-14
|
* Improve documentation of FUSE_CAP_AUTO_INVAL_DATAGravatar Nikolaus Rath2016-11-14
| | | | Fixes #84.
* Improve getattr() descriptionGravatar Nikolaus Rath2016-11-14
| | | | | When writeback caching is enabled, the st_size value reported by the filesystem may be ignored.
* Improve description of FUSE_CAP_NO_OPEN_SUPPORT flag.Gravatar Nikolaus Rath2016-11-14
| | | | Fixes #107.
* Added documentation for FUSE_CAP_FLOCK_LOCKSGravatar Nikolaus Rath2016-11-10
| | | | Fixes #106.
* Improve documentation of fuse_conn_info.time_gran.Gravatar Nikolaus Rath2016-11-10
| | | | Fixes #97.
* Make test for util-linux version more robustGravatar Nikolaus Rath2016-11-10
| | | | | | | The current version fails on Amazon Linux. This check should work better. Fixes #64.
* Don't expect EACCESS errors as rootGravatar Nikolaus Rath2016-11-10
| | | | Fixes #111.
* Released 3.0.0-rc2Gravatar Nikolaus Rath2016-11-06
|
* Removed reference to developer-notes.rst (was removed earlier)Gravatar Nikolaus Rath2016-11-06
|
* Fixed section names in documentation indexGravatar Nikolaus Rath2016-11-06
|
* Fix documentation: fuse_file_info may be NULL for open filesGravatar Nikolaus Rath2016-11-06
| | | | This turns issue #62 from a bug into an enhancement :-).
* Removed reference to fgetattr and ftruncate (don't exist anymore)Gravatar Nikolaus Rath2016-11-06
|
* Fixed typo in comment.Gravatar Nikolaus Rath2016-11-06
|
* Don't hardcode test file name.Gravatar Nikolaus Rath2016-11-06
|
* Added test for fchmodGravatar Nikolaus Rath2016-11-06
| | | | | At the moment this test fails (cf. issue #62). If that gets fixed in the kernel, this test can be activated conditionally.