aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add doc/Makefile.amGravatar Miklos Szeredi2012-01-26
|
* Add man pages for fusermount, mount.fuse and ulockmgr_serverGravatar Miklos Szeredi2012-01-26
| | | | | Lifted from the Debian package. The man pages were written by Daniel Baumann and Bastien Roucaries
* Revert "Add mmap() and munmap() methods to low level API"Gravatar Miklos Szeredi2012-01-24
| | | | | | | | | | This partially reverts commit 4b2157c44e6ad7e692fcffb7450143e83151d36b. Remove mmap/munmap suppor as this missed the interface changes for Linux-3.3 (API version 7.18). Only revert the mmap/munmap bits and leave the retrieve_reply API fix in place as well as the optimization in fuse_send_data_iov_fallback().
* Disable symbol versions on MacOSXGravatar Anatol Pomozov2012-01-13
| | | | | | MacOSX uses MachO binary format that does not support symbols. This change comes from fuse4x project (fuse implementation for macosx).
* Remove unnecessary mutex unlock at the end of multithreaded event loopGravatar Miklos Szeredi2012-01-02
|
* Free request in fuse_reply_data()Gravatar Miklos Szeredi2011-12-09
| | | | Fix memory leak caused by a missing fuse_request_free() in fuse_reply_data().
* Don't unhash name in FORGETGravatar Miklos Szeredi2011-12-09
| | | | | | | This resulted in ENOENT being returned for unlinked but still open files if the kernel sent a FORGET request for the parent directory. Discovered with fs_racer in LTP.
* Fix hang in wait_on_path()Gravatar Miklos Szeredi2011-12-09
| | | | | | Ville Silventoinen reported that fs_racer in LTP triggered a hang in wait_on_path(). This bug was caused by try_get_path() not resetting "ticket" on permanent failure.
* utimens availability checkGravatar Emmanuel Dreyfus2011-12-08
| | | | | | fusexmp uses utimens and takes that function for granted. It is part of POSIX exended API set 2 and some systems do not have it yet. Attached patch checks for utimens availability and returns ENOSYS if unavailable.
* FUSE_NODE_SLAB buildfixGravatar Emmanuel Dreyfus2011-12-08
| | | | | When FUSE_NODE_SLAB is not defined, the build fails because of undefined functions. Attached patch fixes the problem.
* fuse: documentation update for forgetGravatar Nikolaus Rath2011-12-08
| | | | Update documentation for forget and related methods
* libfuse: Notifying the kernel of deletion.Gravatar John Muir2011-12-07
| | | | | | | | | libfuse part to allow a FUSE file-system to tell the kernel when a file or directory is deleted. If the specified dentry has the specified inode number, the kernel will unhash it. Signed-off-by: John Muir <john@jmuir.com> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
* Add mmap() and munmap() methods to low level APIGravatar Miklos Szeredi2011-12-06
| | | | | Currently this is only useful for CUSE. Also update retrieve_reply() method.
* Add support for ioctl on directoriesGravatar Miklos Szeredi2011-12-05
| | | | Reported by Antonio SJ Musumeci
* Make lock argument of fuse_reply_lock constGravatar Miklos Szeredi2011-12-05
| | | | | | | Low level API: lock argument of fuse_reply_lock should have a 'const' qualifier. Reported by Shachar Sharon
* Fix the following compile errorGravatar Miklos Szeredi2011-11-17
| | | | | | | | fusermount.c: In function 'clone_newns': fusermount.c:315:2: warning: implicit declaration of function 'clone' [-Wimplicit-function-declaration] fusermount.c:315:44: error: 'CLONE_NEWNS' undeclared (first use in this function) fusermount.c:315:44: note: each undeclared identifier is reported only once for each function it appears in fusermount.c:317:1: warning: control reaches end of non-void function [-Wreturn-type]
* Reply with ENOMEM in case of failure to allocate requestGravatar Miklos Szeredi2011-10-23
| | | | | | Reply to request with ENOMEM in case of failure to allocate request structure. Otherwise the task issuing the request will just freeze up until the filesystem daemon is killed. Reported by Stephan Kulow
* Replace daemon() function with fork()Gravatar Anatol Pomozov2011-09-23
| | | | | | | | daemon() is a BSD-ism. Although it is available on many platforms it is not a standard function. Some platforms (e.g. MacOSX) deprecated it. It is safer just to use fork() function that is a part of POSIX.
* Don't ignore --disable-mtabGravatar Miklos Szeredi2011-08-31
| | | | | | | If configured with --disable-mtab then don't call mount(8) from libfuse to update the mtab. Reported by: James Sierp
* add lru for remember optionGravatar therealneworld@gmail.com2011-08-24
| | | | | Use LRU list for cleaning up the cache if the "remember=T" option was given.
* Add ->flock() operation to low and high level interfacesGravatar Miklos Szeredi2011-07-06
| | | | | | | | | | This fixes problems with emulating flock() with POSIX locking. Reported by Sebastian Pipping. As with lock/setlk/getlk most filesystems don't need to implement this, as the kernel takes care of file locking. The only reason to implement locking operations is for network filesystems which want file locking to work between clients.
* utimens must not follow symlinksGravatar Sebastian Pipping2011-07-04
| | | | | Make xmp_utimens of examples "fusexmp" and "fusexmp_fh" not follow symlinks as other layers do that already.
* In ./configure check if umount support --fake and --no-canonicalizeGravatar Miklos Szeredi2011-06-02
| | | | options and warn othewise
* add "remember" optionGravatar therealneworld@gmail.com2011-06-02
| | | | | This works similar to "noforget" except that eventually the node will be allowed to expire from the cache.
* Check if splice/vmsplice are supportedGravatar Miklos Szeredi2011-05-27
|
* Update COPYING*Gravatar Miklos Szeredi2011-05-26
|
* Update NEWSGravatar Miklos Szeredi2011-05-26
|
* Fix lost ChangeLog entry.Gravatar Miklos Szeredi2011-05-26
|
* Remove -lrt -ldl from fuse.pc for dynamic linkingGravatar Miklos Szeredi2011-05-26
| | | | | | | Remove -lrt -ldl from fuse.pc for dynamic linking since libfuse.so is already linked with these libraries. Reported by: Nikolaus Rath
* adding details to utimens doxygen commentsGravatar Reuben Hawkins2011-05-25
| | | | modified: include/fuse.h
* Spell checking comments, etc...Gravatar Reuben Hawkins2011-05-25
| | | | | | | | | | | ...with the help of vim :set spell modified: FAQ modified: include/fuse.h modified: include/fuse_common.h modified: include/fuse_opt.h modified: lib/fuse_kern_chan.c modified: util/fusermount.c
* cleaning up warningsGravatar Reuben Hawkins2011-05-23
| | | | | | | | | fprintf(stderr, whatever); -> fprintf(stderr, "%s", whatever); checking return values on chdir and lockf where we weren't already modified: example/cusexmp.c modified: example/fioclient.c modified: util/fusermount.c
* Cleaner build outputGravatar Reuben Hawkins2011-05-20
| | | | | Add m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) for cleaner build output. The verbose output is still available with 'make V=1'
* Fix ioctl ABIGravatar Miklos Szeredi2011-05-19
| | | | | Fix the ambiguity of ioctl ABI on the kernel/userspace boundary for 32bit vs. 64bit userspace
* Add ->forget_multi() operationGravatar Miklos Szeredi2011-05-19
| | | | | Add ->forget_multi() operation to the lowlevel API. The filesystem may implement this to process multiple forget requests in one call
* Allow batching of forget requestsGravatar Miklos Szeredi2011-05-19
| | | | | This allows forget requests to be processed faster and doesn't require a modification to fuse filesystems. Reported by Terje Malmedal
* Fix splice_readGravatar Miklos Szeredi2011-05-19
|
* Disable splice by defaultGravatar Miklos Szeredi2011-05-19
| | | | | | Disable splice by default, add "splice_read", "splice_write" and "splice_move" options. Keep the "no_splice_*" variants, which can disable splice even if the filesystem explicitly enables it.
* Don't hide output of /bin/mountGravatar Miklos Szeredi2011-05-19
|
* Added changelog entry for the auto_unmount optionGravatar Max Krasnyansky2011-04-15
|
* fusermount: Added support for auto_unmount optionGravatar Max Krasnyansky2011-04-15
| | | | | | When this option is specified fusermount will become a daemon and wait for the parent to exit or die, which causes control fd to get closed. It will then try to unmount the original mountpoint.
* libfuse: Added support for auto_unmount optionGravatar Max Krasnyansky2011-04-15
| | | | | | | | | | | This change adds support for "auto_unmount" option to libfuse. auto_umount option unmounts the fs automatically on application termination, whether normal or not (segfault, etc). When auto_unmount option is specified libfuse will alway use fusermount for mounting the fs. This change is selfcontained but for complete functionaly it requires auto_unmount support in fusermount tool.
* Update ChangeLogGravatar Miklos Szeredi2011-03-30
| | | | | Patches by Laszlo Papp fixing various issues found by the Coverity checker.
* Check the 'mtablock' for negative valueGravatar Laszlo Papp2011-03-30
|
* Fix a potential null pointer dereference issueGravatar Laszlo Papp2011-03-30
|
* Fix a potential resource leak (newargv)Gravatar Laszlo Papp2011-03-30
|
* Initialize an allocated, but uninitialized memoryGravatar Laszlo Papp2011-03-30
|
* Initialize the variable properly before passing to any functionGravatar Laszlo Papp2011-03-30
|
* fusermount: clean up do_mount() functionGravatar Miklos Szeredi2011-03-30
|
* Remove unnecessary variable assignmentGravatar Miklos Szeredi2011-03-30
|