aboutsummaryrefslogtreecommitdiffstats
path: root/fuse/main.c
Commit message (Expand)AuthorAgeFilesLines
* Changed off_t to loff_tstaging/cm-12.1stable/cm-12.1-YOG7Dstable/cm-12.1-YOG4Pstable/cm-12.1-YOG3Cstable/cm-12.0-YNG4Nstable/cm-12.0-YNG3Cstable/cm-12.0-YNG1TAstable/cm-12.0-YNG1Tstable/cm-12.0-YNG1Icm-12.1cm-12.0Spegelius2014-11-231-4/+4
* Merge branch 'master' of http://exfat.googlecode.com/svn/trunk/ into cm-10.2cm-11.0-XNPH44S-bacon-5fa8c79c0bcm-11.0-XNPH33R-bacon-3628510d76cm-11.0-XNPH30O-bacon-4f280f505acm-11.0-XNPH25R-bacon-d22b777afacm-11.0-XNPH22R-bacon-03d77315eacm-10.2.1cm-10.2.0cm-10.2-M1stable/cm-10.2cm-10.2Steve Kondik2013-08-221-4/+23
|\
| * Handle I/O error in exfat_flush().resver@gmail.com2013-08-061-1/+3
| * Handle I/O errors in exfat_flush_node().resver@gmail.com2013-08-061-1/+5
| * Implemented fsync() and fsyncdir().resver@gmail.com2013-07-221-0/+11
| * Relicensed the code from GPLv3+ to GPLv2+.resver@gmail.com2013-07-081-4/+6
* | exfat: Recovery friendlinessSteve Kondik2013-08-181-2/+2
* | Handle 64-bit offsets correctly on AndroidSteve Kondik2013-07-071-1/+1
|/
* Fixed handling of long non-ASCII file names.resver@gmail.com2013-05-201-2/+2
* Allow arbitrary changing of lower 9 bits of mode. Allow owner/group changing ...resver@gmail.com2013-04-201-7/+10
* Added "quiet" option that makes chmod() and chown() always succeed. Useful fo...resver@gmail.com2013-04-201-7/+13
* Allow -v option for compatibility with mount utility (it passes -v to its hel...resver@gmail.com2013-03-291-1/+3
* Use getopt() for options parsing.resver@gmail.com2013-03-291-22/+17
* Use -V instead of -v option to print version for consistency with other utili...resver@gmail.com2013-03-281-2/+2
* Allow -n option for automount/autofs compatibility.resver@gmail.com2013-03-181-0/+2
* Avoid extra erase on writes to the end of a file.resver@gmail.com2013-02-261-1/+1
* Add fsname parameter as is, without canonicalization and symbolic links expan...resver2013-02-131-16/+1
* Fixed "Operation not permitted" error on reading an empty file: FUSE read/wri...resver2013-01-251-6/+12
* Updated copyright years.resver2013-01-191-2/+2
* Avoid using PATH_MAX constant.resver2013-01-111-3/+5
* OS X: disable permission checks made by FUSE.resver2013-01-111-1/+2
* Fixed indentation.resver2012-12-261-1/+1
* Improved trace macros.resver2012-12-261-15/+20
* Enabled big_writes. This improves write speed (larger block size means less s...resver2012-12-251-1/+10
* FUSE read and write ops should return either buffer size on success or EOF ot...resver2012-12-251-2/+6
* Refactored device access mode handling.resver2012-12-041-1/+1
* OS X utilities report error if fchmod() fails. Added empty chmod() handler as...resver2012-12-041-0/+12
* Improved error handling.resver2012-10-281-8/+13
* Define FUSE_USE_VERSION only before inclusion of fuse.h, no need to define it...resver2012-05-181-0/+1
* Fix copyright years.resver2012-05-011-2/+2
* Renamed read/write functions:resver2012-02-121-2/+2
* Retry to mount FS in read-only mode if device is write-protected.resver2011-11-271-1/+11
* Added -v option that prints version and copyright.resver2011-03-011-1/+7
* Renamed block to sector to avoid confusion.resver2011-02-231-3/+3
* Keep cache on file open. This slightly improves read performance by avoiding ...resver2011-02-221-0/+1
* Moved FUSE arguments construction into a separate function to simplify error ...resver2011-02-201-13/+16
* Added blksize option that should solve "Invalid argument" error while mountin...resver2011-02-201-0/+18
* Initialize libexfat before FUSE arguments construction.resver2011-02-201-14/+20
* Pass user=xxxx option that allows to unmount volumes as user (fusermount -u) ...resver2011-01-181-0/+24
* Unified CLI help syntax.resver2011-01-151-1/+1
* Report block size = fragment size = cluster size. This fixes displaying of FS...resver2010-09-191-6/+3
* Added fsname option (required for automounting).resver2010-04-131-0/+16
* Implemented dynamic allocation of mount options string; enabled allow_other a...resver2010-04-131-2/+56
* Implemented dynamic calculation of free clusters count (now df utility behave...resver2010-02-151-1/+2
* Fixed truncate(): it always returned 0 instead of actual result.resver2010-02-131-2/+2
* Changed source files headings to meet the FSF recommendations.resver2010-01-101-7/+18
* Added patchlevel constant.resver2010-01-101-1/+2
* Implemented rename in FUSE driver.resver2010-01-101-0/+7
* Fixed format strings warnings.resver2009-12-221-3/+4
* Implemented utimens (file time stamps updating).resver2009-12-211-0/+17