OSDN Git Service

Move nodes flush from exfat_flush() into a separate function.
[android-x86/external-exfat.git] / libexfat /
2015-08-24 relanBump version to 0.9.7 and update changelog.
2015-08-24 relanFix format warnings produced by clang.
2015-08-24 relanFix error message about device type.
2015-08-24 relanAdd ublio support for FreeBSD.
2015-08-24 relanRepresent device as an extensible structure.
2015-08-24 relanAdd exfat_seek() interface (wrapper for lseek()).
2015-08-24 relanAdd exfat_read() and exfat_write() interfaces.
2015-08-24 relanUse appropriate feature test macro for pread() and...
2015-08-24 relanAdd exfat_fsync() function.
2015-08-24 relanAdd exfat_close() function.
2015-08-24 relanRename read/write functions.
2015-08-24 relanFix mtime centiseconds field initialization.
2015-08-24 relanUse a more portable way to obtain timezone offset.
2015-08-24 relanMove time-related stuff into a separate file.
2015-08-24 relanRemove _XOPEN_SOURCE define.
2015-08-24 relanPut _XOPEN_SOURCE define before any includes as recomme...
2015-08-24 relanFix minutes field extraction.
2015-08-24 relanIncrease comments indentation.
2015-08-24 relanRemove obsolete FIXME comment.
2015-08-24 relanRemove obsolete FIXME comment.
2015-08-24 relanRemove EOD entry handling.
2015-08-24 relanBump version to 0.9.6 and update changelog.
2015-08-24 relanMore precise rounding for exfat_humanize_bytes().
2015-08-24 relanSet ctime to mtime.
2015-08-24 relanUpdate allocated space percent on unmount.
2015-08-24 relanSet "mounted" flag on mount and clear it on unmount.
2015-08-24 relanRetry to mount FS in read-only mode if device is write...
2015-08-24 relanPrint desired mode when device opening fails.
2015-08-24 relanMore concrete error message on memory allocation failure.
2015-08-24 relanParse options and open device before super block alloca...
2015-08-24 relanErase whole clusters instead of sectors.
2015-08-24 relanFix possible memory leak in readdir().
2015-08-24 relanCheck EOD entry presence.
2015-08-24 relanBump version to 0.9.5 and update changelog.
2015-08-24 relanClean up meta2 flags.
2015-08-24 relanUse exfat_open() instead of calling open() directly.
2015-08-24 relanAdd exfat_open() function.
2015-08-24 relanFix error message format.
2015-08-24 relanCheck that either a block device or a regular file...
2015-08-24 relanBump version to 0.9.4 and update changelog.
2015-08-24 relanAdd missing endianness conversion in VBR verification...
2015-08-24 relanRename block to sector to avoid confusion.
2015-08-24 relanAdd -u option for dumpexfat that prints used sectors.
2015-08-24 relanRename block to sector in the utilities output to avoid...
2015-08-24 relanFix alignment of big numbers in exfat_print_info().
2015-08-24 relanAdd get_entry_ptr() function.
2015-08-24 relanFix typo in a comment.
2015-08-24 relanAdd functions that get and set volume label.
2015-08-24 relanRemove excess error messages.
2015-08-24 relanDuplicate errors and warnings to syslog.
2015-08-24 relanVerify VBR checksum on mount.
2015-08-24 relanMove VBR checksum calculation functions to libexfat.
2015-08-24 relanAdd fsync() on unmount.
2015-08-24 relanAdd (senseless) check of close() return code.
2015-08-24 relanAdd a function that prints basic information about...
2015-08-24 relanInterpret version field as a structure for convenience.
2015-08-24 relanexfat_count_free_clusters() should not modify the argument.
2015-08-24 relanAdd facilities for printing byte values in human-readab...
2015-08-24 relanMove bitmap macros to header to be used by other units.
2015-08-24 relanBump version to 0.9.3 and update changelog.
2015-08-24 relanImprove timestamps resolution from 2 sec to 1 sec.
2015-08-24 relanImplement directories shrinking.
2015-08-24 relanModify entry offset meaning.
2015-08-24 relanAdd assertion.
2015-08-24 relanBump version to 0.9.2.
2015-08-24 relanImprove allowed file name characters filter.
2015-08-24 relanAdd #include guard for version.h.
2015-08-24 relanUnify error messages.
2015-08-24 relanCheck upcase table and clusters bitmap presence on...
2015-08-24 relanCopy the whole name buffer on renaming.
2015-08-24 relanAlways erase output name buffer in exfat_split().
2015-08-24 relanAdd byte order macros for *BSD and Solaris.
2015-08-24 relanBump version to 0.9.1.
2015-08-24 relanMove version constants into a separate header.
2015-08-24 relanDo not use unions for date and time conversion.
2015-08-24 relanFix byte order macros for Mac OS X.
2015-08-24 relanAdd __packed__ attribute to all on-disk structures...
2015-08-24 relanAllow clusters bitmap size to exceed minimum value.
2015-08-24 relanParse root directory on mount to catch FS errors earlier.
2015-08-24 relanAdd cluster number endianness conversion when writing...
2015-08-24 relanAdd missing endianness conversion for cluster number.
2015-08-24 relanUse b2o() in exfat_c2o() for consistency.
2015-08-24 relanCheck FAT count on mount.
2015-08-24 relanCheck FS version on mount.
2015-08-24 relanFix integer overflow in block number calculation code.
2015-08-24 relanUpdate superblock format definition.
2015-08-24 relanBump version to 0.9.0.
2015-08-24 relanImplement dynamic calculation of free clusters count.
2015-08-24 relanFix truncate().
2015-08-24 relanPass actual return code from lookup_name() instead...
2015-08-24 relanFix rename(): replace target if it exists.
2015-08-24 relanAdd cluster size check on mount.
2015-08-24 relanDo not write EOD when growing directory.
2015-08-24 relanErase allocated space when growing a file.
2015-08-24 relanRename entries structures for consistency.
2015-08-24 relanCheck file name for characters that are not allowed.
2015-08-24 relanFix Mac OS X support.
2015-08-24 relanMove endianness stuff into a separate header.
2015-08-24 relanChange source files headings to meet FSF recommendations.
2015-08-24 relanAdd patchlevel constant.
next