aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorLines
2016-05-13Add 'traceback' as suspicious test output pattern.Nikolaus Rath-1/+1
2016-05-13Added Travis integrationNikolaus Rath-0/+20
2016-05-13Merge remote-tracking branch 'origin/master'Nikolaus Rath-1/+1
2016-05-13Merge branch 'ioctl-test'Nikolaus Rath-83/+43
2016-05-13Add ioctl tests.Nikolaus Rath-0/+24
2016-05-13Fix ioctl exampleNikolaus Rath-83/+19
Fixes issue #39.
2016-05-11lib/fuse_lowlevel.c: fix small typo in fuse_ll_help (#44)David Sheets-1/+1
s/disable remove file locking/disable remote file locking/
2016-04-27Fixup commit 482a49c.Nikolaus Rath-1/+1
2016-04-27Merge remote-tracking branch 'origin/master'Nikolaus Rath-17/+17
2016-04-23Remove leading _ on header guards to comply with reserved identifier ↵Sam Stuewe-15/+15
requirements (#29) Remove leading _ on header guards to comply with reserved identifier requirements
2016-04-02Merge pull request #35 from 1ace/masterNikolaus Rath-1/+1
Fix spelling mistake in comment
2016-04-02Fix spelling mistakeEric Engestrom-1/+1
2016-03-29Added test_fselNikolaus Rath-2/+17
2016-03-29Added unit tests for fusexmp and helloNikolaus Rath-0/+306
2016-03-29Added basic unit tests.Nikolaus Rath-26/+190
Fixes issue #33.
2016-03-29Integrate tests with autotoolsNikolaus Rath-12/+11
2016-03-29Whitespace cleanup.Nikolaus Rath-27/+25
Applied (whitespace-cleanup) to each file. Having whitespace changes in the VCS is ugly, but it ensures that in the future committers can run this function to *avoid* commiting any whitespace.
2016-03-29Added .dir-locals.el to customize emacs settingsNikolaus Rath-0/+25
2016-03-29Inlined fuse_chan_fdNikolaus Rath-21/+8
2016-03-29Inlined fuse_chan_{send, recv}Nikolaus Rath-81/+60
2016-03-23Merge pull request #24 from jblumsch/doc-statfs-frsizeNikolaus Rath-1/+1
doc fix: The f_frsize field is not ignored by the statfs operation
2016-03-11cuse_lowlevel.setup(): fix double free of local variable 'args'Winfried Koehler-7/+9
Signed-off-by: Winfried Koehler <w_scan@gmx-topmail.de>
2016-03-09fuse.h doc fix: The f_frsize field is not ignored by the statfs operation.Jan Blumschein-1/+1
Apparently f_frsize has been passed on transparently since 2b4781100812d42e704c39c51303cd28ad3f9aa6 (Nov 28, 2005).
2016-03-01Improve description of issue #15.Nikolaus Rath-8/+10
2016-02-02Fix description of bug #15.Nikolaus Rath-9/+19
2016-02-01Document bug #15.Nikolaus Rath-2/+12
2016-01-28Include documentation in tarball.Nikolaus Rath-3/+6
2016-01-28Remove "credits" section, we now have an AUTHORS file.Nikolaus Rath-12/+0
2016-01-14Removed placeholder README file and switch automake to foreign flavor.Nikolaus Rath-4/+1
The GNU flavor merely requires to existence of some files (including README, but we prefer README.md), so there seems to be little point in using it.
2016-01-14Removed hopelessly outdated files.Nikolaus Rath-427/+1
2016-01-14Update makeconf.shNikolaus Rath-26/+7
Describe why manual copying of config.rpath is necessary, and fail with a more helpful message if it can't be found. Remove code for systems without autoreconf - it's apparently not used by anyone since it has been broken for quite some time (there is no `kernel` directory anymore).
2016-01-14Update maintainer and contributor listNikolaus Rath-6/+49
2016-01-14Extend write_buf documentationNikolaus Rath-0/+5
2016-01-14Initialize padding to zero.Nikolaus Rath-0/+1
This should prevent some valgrind warnings.
2015-12-21Updated homepage URL and added download location.Nikolaus Rath-1/+5
2015-12-20Migrated README to README.md for Markdown rendering on GitHub.Nikolaus Rath-379/+100
2015-09-29Merge branch 'clone_fd'Miklos Szeredi-13/+113
2015-08-14Merge git://git.code.sf.net/u/xophmeister/fuseMiklos Szeredi-0/+14
2015-08-12Canonicalised whitespace and added ChangeLog entryChristopher Harrison-1/+6
2015-08-12libfuse: fix warning mount.c:receive_fd()Miklos Szeredi-1/+6
Reported by Albert Berger
2015-07-30Added fuse_pkgversion functionChristopher Harrison-0/+11
Returns the full PACKAGE_VERSION string, per autoconf
2015-06-29libfuse: fix possible memory leakMiklos Szeredi-1/+5
Reported by Jose R. Guzman
2015-05-26Use system directory for system-wide udev rules by defaultIkey Doherty-1/+8
This ensures that fuse functions correctly on stateless operating systems without requiring use of the site configuration directory (/etc/). Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
2015-05-22libfuse: fix exec environment for mount and umountMiklos Szeredi-6/+22
Found by Tavis Ormandy (CVE-2015-3202).
2015-05-18libfuse: add "clone_fd" optionMiklos Szeredi-2/+63
This creates a separate device file descriptor for each processing thread, which might improve performance.
2015-05-18libfuse: get ref for reqMiklos Szeredi-1/+3
While the request lives don't free the channel associated with the request, the answer will need to be written on the channel.
2015-05-18libfuse: refcount fuse_chan objectsMiklos Szeredi-10/+47
New functions: fuse_chan_get(), fuse_chan_put(). Removed function: fuse_chan_destroy().
2015-04-23libfuse: add FUSE_CAP_NO_OPEN_SUPPORT flag to ->init()Miklos Szeredi-0/+11
2015-02-26libfuse: fix handling of '.' and '..' in highlevel readdirplusMiklos Szeredi-4/+14
2015-02-26libfuse: fix fuse_remove_signal_handlers()Miklos Szeredi-11/+16
to properly restore the default signal handler. Reported by: Chris Johnson <johnsocg@gmail.com>