index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libfuse
/
fuse_ops.c
Age
Commit message (
Expand
)
Author
2018-07-16
Implement FBT_FSYNC, which is called on fsync(2) and fdatasync(2).
helg
2018-06-08
Minor cleanup in ifuse_ops_setattr.
helg
2018-05-22
Implement support for libfuse use_ino option. This returns the file
helg
2018-05-21
Reformat debug output to one line per opcode to make it easier to
helg
2018-05-20
Implement FBT_FLUSH. This is sent whenever a file descriptor is closed with
helg
2018-05-16
libfuse should not maintain state for FBT_READDIR. If a directory is
helg
2018-05-15
Use memset(3) instead of bzero(3) for consistency and as per POSIX
helg
2017-11-30
vn_open(9) does not pass the open(2) flags to VOP_CREATE(9) so we can't
helg
2017-11-17
Fixes the following bugs when getcwd(3) is used on a fuse file system
helg
2016-09-07
Fix fuse node lookups. Currently fusefs nodes in the kernel remember the
Martin Natano
2016-08-30
Use struct stat for storing attributes in fusebufs, because using struct
Martin Natano
2014-02-05
check return values in libfuse.
Sylvestre Gallon
2014-01-29
Add fuse support for IO_APPEND.
Sylvestre Gallon
2014-01-23
Fix .readdir() code following what is done in .getdir().
Sylvestre Gallon
2014-01-20
hook mknod() if create() implementation is not present.
Sylvestre Gallon
2014-01-16
Add support for mknod in fuse.
Sylvestre Gallon
2014-01-02
Call fuse callbacks on FBT_INIT and FBT_DESTROY.
Sylvestre Gallon
2013-12-20
Add support for truncate in fuse.
Sylvestre Gallon
2013-12-09
Fix issues with dirent returning junk due to removal of bzero in version 1.14.
Bob Beck
2013-12-03
Does not append a NUL character to buf in readlink(2).
Sylvestre Gallon
2013-12-03
Add support for FBT_RECLAIM that allow us to free the representation
Sylvestre Gallon
2013-11-21
Fix a big memory leak in libfuse.
Sylvestre Gallon
2013-10-08
1) our dirent entries are now 8 byte aligned.
Philip Guenther
2013-10-07
Fix some different signedness error. this commit make clang happier.
Sylvestre Gallon
2013-10-07
Remove an unused variable and a useless bzero
Sylvestre Gallon
2013-10-07
Refactor fb_len and fb_err handling in libfuse.
Sylvestre Gallon
2013-10-07
Remove useless debug code from libfuse
Sylvestre Gallon
2013-10-07
Adapt libfuse to FUSE kernel changes
Sylvestre Gallon
2013-08-10
Remove some useless DPRINTF.
Sylvestre Gallon
2013-08-08
Prep for big ino_t: cast to unsigned long long and format with %ll or %q
Philip Guenther
2013-06-14
hard code default values in the struct stat returned by getattr.
syl
2013-06-05
rename should be working now, from Sylvestre Gallon
Ted Unangst
2013-06-04
fix readdir, from sylvestre
Ted Unangst
2013-06-03
rcsids
Ted Unangst
2013-06-03
add userland fuse library. ok beck deraadt
Ted Unangst