summaryrefslogtreecommitdiffstats
path: root/lib/libfuse/fuse_ops.c
AgeCommit message (Expand)AuthorFilesLines
2018-07-16Implement FBT_FSYNC, which is called on fsync(2) and fdatasync(2).helg1-1/+40
2018-06-08Minor cleanup in ifuse_ops_setattr.helg1-10/+10
2018-05-22Implement support for libfuse use_ino option. This returns the filehelg1-16/+22
2018-05-21Reformat debug output to one line per opcode to make it easier tohelg1-25/+41
2018-05-20Implement FBT_FLUSH. This is sent whenever a file descriptor is closed withhelg1-1/+35
2018-05-16libfuse should not maintain state for FBT_READDIR. If a directory ishelg1-55/+34
2018-05-15Use memset(3) instead of bzero(3) for consistency and as per POSIXhelg1-10/+10
2017-11-30vn_open(9) does not pass the open(2) flags to VOP_CREATE(9) so we can'thelg1-51/+1
2017-11-17Fixes the following bugs when getcwd(3) is used on a fuse file systemhelg1-9/+22
2016-09-07Fix fuse node lookups. Currently fusefs nodes in the kernel remember thenatano1-13/+24
2016-08-30Use struct stat for storing attributes in fusebufs, because using structnatano1-56/+31
2014-02-05check return values in libfuse.syl1-8/+234
2014-01-29Add fuse support for IO_APPEND.syl1-3/+1
2014-01-23Fix .readdir() code following what is done in .getdir().syl1-16/+12
2014-01-20hook mknod() if create() implementation is not present.syl1-3/+9
2014-01-16Add support for mknod in fuse.syl1-1/+32
2014-01-02Call fuse callbacks on FBT_INIT and FBT_DESTROY.syl1-3/+21
2013-12-20Add support for truncate in fuse.syl1-1/+9
2013-12-09Fix issues with dirent returning junk due to removal of bzero in version 1.14.beck1-4/+5
2013-12-03Does not append a NUL character to buf in readlink(2).syl1-3/+14
2013-12-03Add support for FBT_RECLAIM that allow us to free the representationsyl1-1/+18
2013-11-21Fix a big memory leak in libfuse.syl1-11/+10
2013-10-081) our dirent entries are now 8 byte aligned.guenther1-4/+5
2013-10-07Fix some different signedness error. this commit make clang happier.syl1-7/+8
2013-10-07Remove an unused variable and a useless bzerosyl1-3/+1
2013-10-07Refactor fb_len and fb_err handling in libfuse.syl1-73/+13
2013-10-07Remove useless debug code from libfusesyl1-9/+2
2013-10-07Adapt libfuse to FUSE kernel changessyl1-19/+31
2013-08-10Remove some useless DPRINTF.syl1-24/+2
2013-08-08Prep for big ino_t: cast to unsigned long long and format with %ll or %qguenther1-12/+13
2013-06-14hard code default values in the struct stat returned by getattr.syl1-1/+8
2013-06-05rename should be working now, from Sylvestre Gallontedu1-1/+31
2013-06-04fix readdir, from sylvestretedu1-3/+5
2013-06-03rcsidstedu1-0/+1
2013-06-03add userland fuse library. ok beck deraadttedu1-0/+884