Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2017-07-08 | Added public fuse_lib_help(), bumped minor version | Nikolaus Rath | -1/+1 | |
2017-05-31 | Revert "example/passthrough.c: add debugging code for issue #157." | Nikolaus Rath | -9/+2 | |
This reverts commit 179fa13b40387645e722089873079488f9dbe3d8. | ||||
2017-05-25 | example/passthrough.c: add debugging code for issue #157. | Nikolaus Rath | -2/+9 | |
2017-04-07 | passthrough: implemented create() | Nikolaus Rath | -0/+14 | |
This allows calls like open(file, O_CREAT|O_RDONLY, 0200) which would otherwise fail because we cannot open the file after mknod() has created it with 0200 permissions. | ||||
2017-04-07 | example/passthrough: use fi->fh for read, write, fallocate | Nikolaus Rath | -7/+21 | |
No reason not to use it. May even be a little faster and will consume less resources :-). | ||||
2017-04-07 | passthrough:truncate(): work on file descriptor when possible | Nikolaus Rath | -2/+4 | |
This allows truncating an open file even if write permission was removed after open() (which is the expected behavior). | ||||
2017-04-07 | example/passthrough: close open files in release() | Nikolaus Rath | -5/+2 | |
That way we can use the file descriptor for other operations. | ||||
2017-04-07 | passthrough, passthrough_fh: disable attribute caching | Nikolaus Rath | -0/+12 | |
Required for better hardlink handling, see comments in patch. | ||||
2016-12-04 | Fix a grammatical error. | Jay Hankins | -1/+1 | |
2016-10-28 | Clean-up doxygen documentation | Nikolaus Rath | -4/+3 | |
Fixes: #81. | ||||
2016-10-20 | fuse_new(): don't accept options that don't make sense for end-users | Nikolaus Rath | -0/+9 | |
Several options (use_ino, etc) depend on the file system implementation. Allowing them to be set from the command line makes no sense. | ||||
2016-10-15 | Pass fuse_file_info to getattr, chown, chmod, truncate, utimens handlers | Nikolaus Rath | -5/+15 | |
This obsoletes the ftruncate & fgetattr handlers. Fixes #58. | ||||
2016-10-09 | Renamed some examples to make their function more obvious | Nikolaus Rath | -0/+432 | |
Also, added more comments for the same purpose. |