summaryrefslogtreecommitdiffstats
path: root/lib/libfuse (follow)
Commit message (Expand)AuthorAgeFilesLines
* Use waitpid()/EINTR idiom for the specific pid, rather than generic wait(),deraadt2017-08-211-3/+6
* Revert fuse_opt.c r1.17. It broke exfat-fuse and perhaps other plugins.stsp2017-01-041-2/+2
* Empty strings are invalid arguments.mpi2016-11-231-2/+2
* Generate pkg-config files at build time like everything else. Thisnatano2016-09-141-2/+3
* Fix fuse node lookups. Currently fusefs nodes in the kernel remember thenatano2016-09-073-26/+69
* only regen pkg-config files when required; ok jaspernatano2016-09-041-2/+4
* Use struct stat for storing attributes in fusebufs, because using structnatano2016-08-302-59/+35
* Pull in <sys/time.h> for struct timespecguenther2016-08-271-1/+2
* NUL-terminate argv when parsing options, following otherokan2016-05-241-2/+3
* Add missing strdup NULL checks; from Ray Lai.okan2016-05-242-3/+9
* update links; from rayjmc2016-05-181-5/+7
* for some time now mandoc has not required MLINKS to functionjmc2016-03-301-18/+1
* remove NULL-check before free()mmcc2015-12-241-3/+2
* missing deref on char check. from David Bindermantedu2015-10-191-2/+2
* When an option is not recognized call the processing function withmpi2015-08-241-4/+6
* Skip mountpoint checking in case we only want the version or helpajacoutot2015-07-071-3/+3
* Unbreak option parsing:ajacoutot2015-07-071-1/+8
* Remove -Werror from the Makefile: as it happened with asprintf, itreyk2015-06-031-2/+2
* It is better to check the asprintf return value for -1 instead of thereyk2015-06-031-5/+5
* Add a stub option for big_writes. This is needed by gvfs.ajacoutot2015-02-101-1/+2
* SIZE_MAX is standard, we should be using it in preference to themillert2015-02-061-2/+3
* Move to the <limits.h> universe.deraadt2015-01-161-2/+2
* use reallocarray(); ok dougderaadt2014-10-081-2/+2
* Add -o max_read=XXX support in fuse. This is needed by usmb to have asyl2014-05-201-1/+2
* Add support for -o XXX or -oXXX options in libfuse.syl2014-05-203-22/+59
* as reported by Helg, should use realpath for mounts. ok guenther syltedu2014-05-191-3/+3
* Add support for 255 character file names in fuse.syl2014-04-283-8/+12
* Init outargs only once, and fix a bad bzero().syl2014-04-151-3/+3
* Warn the user if there is a missing mountpoint parameter.syl2014-03-241-2/+4
* Allow libfuse to compile with WARNINGS=yes. No functional change.syl2014-02-051-3/+4
* check return values in libfuse.syl2014-02-054-14/+245
* Add fuse support for IO_APPEND.syl2014-01-291-3/+1
* Fix .readdir() code following what is done in .getdir().syl2014-01-231-16/+12
* Mark fuse_opt_parse()'s third argument as a point to const, to match thejca2014-01-212-7/+7
* Include fuse_opt.h in fuse.h.syl2014-01-201-1/+3
* hook mknod() if create() implementation is not present.syl2014-01-201-3/+9
* Add support for mknod in fuse.syl2014-01-161-1/+32
* Call fuse callbacks on FBT_INIT and FBT_DESTROY.syl2014-01-021-3/+21
* Add support for truncate in fuse.syl2013-12-201-1/+9
* define FUSE_{MAJOR,MINOR}_VERSION which many fuse helpers assume is defined.jasper2013-12-171-1/+3
* Remove an attempt to free a non-heap object.syl2013-12-101-3/+3
* Fix issues with dirent returning junk due to removal of bzero in version 1.14.beck2013-12-091-4/+5
* Does not append a NUL character to buf in readlink(2).syl2013-12-031-3/+14
* Add support for FBT_RECLAIM that allow us to free the representationsyl2013-12-033-3/+56
* Fix a big memory leak in libfuse.syl2013-11-211-11/+10
* Document the negative errno quirk used by callbacks in struct fuse_operations.stsp2013-11-131-1/+6
* In fuse_loop(), use ssize_t to store return values from read(2) and write(2).stsp2013-11-111-6/+6
* Simplify fuse_unmount(). No functional change.stsp2013-11-091-7/+3
* Properly check realpath() return value during argv processing in libfuse.stsp2013-11-091-3/+8
* add fuse_invalidate() and fuse_setup() functions.syl2013-11-072-11/+33