OSDN Git Service

Allow arbitrary changing of lower 9 bits of mode. Allow owner/group changing to the...
[android-x86/external-exfat.git] / fuse / main.c
2013-04-20 resver@gmail.comAllow arbitrary changing of lower 9 bits of mode. Allow...
2013-04-20 resver@gmail.comAdded "quiet" option that makes chmod() and chown(...
2013-03-29 resver@gmail.comAllow -v option for compatibility with mount utility...
2013-03-29 resver@gmail.comUse getopt() for options parsing.
2013-03-28 resver@gmail.comUse -V instead of -v option to print version for consis...
2013-03-18 resver@gmail.comAllow -n option for automount/autofs compatibility.
2013-02-26 resver@gmail.comAvoid extra erase on writes to the end of a file.
2013-02-13 resverAdd fsname parameter as is, without canonicalization...
2013-01-25 resverFixed "Operation not permitted" error on reading an...
2013-01-19 resverUpdated copyright years.
2013-01-11 resverAvoid using PATH_MAX constant.
2013-01-11 resverOS X: disable permission checks made by FUSE.
2012-12-26 resverFixed indentation.
2012-12-26 resverImproved trace macros.
2012-12-25 resverEnabled big_writes. This improves write speed (larger...
2012-12-25 resverFUSE read and write ops should return either buffer...
2012-12-04 resverRefactored device access mode handling.
2012-12-04 resverOS X utilities report error if fchmod() fails. Added...
2012-10-28 resverImproved error handling.
2012-05-18 resverDefine FUSE_USE_VERSION only before inclusion of fuse...
2012-05-01 resverFix copyright years.
2012-02-12 resverRenamed read/write functions:
2011-11-27 resverRetry to mount FS in read-only mode if device is write...
2011-03-01 resverAdded -v option that prints version and copyright.
2011-02-23 resverRenamed block to sector to avoid confusion.
2011-02-22 resverKeep cache on file open. This slightly improves read...
2011-02-20 resverMoved FUSE arguments construction into a separate funct...
2011-02-20 resverAdded blksize option that should solve "Invalid argumen...
2011-02-20 resverInitialize libexfat before FUSE arguments construction.
2011-01-18 resverPass user=xxxx option that allows to unmount volumes...
2011-01-15 resverUnified CLI help syntax.
2010-09-19 resverReport block size = fragment size = cluster size. This...
2010-04-13 resverAdded fsname option (required for automounting).
2010-04-13 resverImplemented dynamic allocation of mount options string...
2010-02-15 resverImplemented dynamic calculation of free clusters count...
2010-02-13 resverFixed truncate(): it always returned 0 instead of actua...
2010-01-10 resverChanged source files headings to meet the FSF recommend...
2010-01-10 resverAdded patchlevel constant.
2010-01-10 resverImplemented rename in FUSE driver.
2009-12-22 resverFixed format strings warnings.
2009-12-21 resverImplemented utimens (file time stamps updating).
2009-12-20 resverPass struct exfat to exfat_stat().
2009-12-20 resverPass mount options to exfat_mount().
2009-12-20 resverMade all FUSE operations static.
2009-12-20 resverUnified alignment of * in functions prototypes.
2009-12-20 resverImplemented mknod and mkdir in FUSE driver.
2009-11-29 resverDaemonize on mount.
2009-11-28 resverImplemented unlink and rmdir in FUSE driver.
2009-11-15 resverAdded FUSE debug option (-d).
2009-11-14 resverPass struct exfat to exfat_put_node() function (will...
2009-10-31 resverImplemented existing files writing in FUSE driver.
2009-10-22 resverImplemented nodes cache (in-core directories structure...
2009-10-11 resverAdded clean up on FUSE module shutdown.
2009-10-11 resverFixed crash in FUSE module on shutdown.
2009-10-05 resverImplemented dynamic nodes allocation.
2009-10-04 resverUse exfat_get_name() to get file name in fuse_exfat_rea...
2009-09-14 resverInitial check in.