aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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.
* Merge pull request #109 from divinity76/patch-1Gravatar Nikolaus Rath2016-10-31
|\ | | | | silence bogus eclipse linter warning
| * silence bogus eclipse linter warningGravatar divinity762016-10-31
|/ | | "No break at the end of case cuse.c /example line 235 Code Analysis Problem"
* Clean-up doxygen documentationGravatar Nikolaus Rath2016-10-28
| | | | Fixes: #81.
* Fix memory leak in fusermount.Gravatar Nikolaus Rath2016-10-28
|
* Renamed fusermount / mount.fuse to fusermount3 / mount.fuse3Gravatar Nikolaus Rath2016-10-28
|
* Released 3.0.0rc1Gravatar Nikolaus Rath2016-10-28
|
* man: Document suid requirementGravatar Mihail Konev2016-10-27
|
* Add max_read to fuse_conn_infoGravatar Nikolaus Rath2016-10-27
| | | | | | | | | | Eventually, this setting should be negotiated in the filesystem's init() handler (like e.g. max_write). However, this requires corresponding changes in the FUSE kernel module. In preparation for this (and to allow a transition period) we already allow (and require) filesystems to set the value in the init() handler in addition to the mount option. The end-goal is tracked in issue #91.
* Removed obsolete FUSE_DEV_OLDGravatar Nikolaus Rath2016-10-27
|
* Removed some more "Changed in version x.py" comments.Gravatar Nikolaus Rath2016-10-27
|
* Recommend when to use -o default_permissions automaticallyGravatar Nikolaus Rath2016-10-27
|
* Describe all mount options in mount.fuse(8).Gravatar Nikolaus Rath2016-10-27
| | | | Also improved manpage in several ways.
* Improve documentation of -o default_permissionsGravatar Nikolaus Rath2016-10-27
|
* Improve documentation of capability flags.Gravatar Nikolaus Rath2016-10-27
|
* Improve man page titleGravatar Nikolaus Rath2016-10-27
|
* Clarify which mount options are intended for file-system internal use.Gravatar Nikolaus Rath2016-10-25
|
* Clarify difference between notify_inval_entry and notify_delete().Gravatar Nikolaus Rath2016-10-25
| | | | Fixes #85.