OSDN Git Service

Moved tree_attach() and tree_detach() upper so that they could be used by reset_cache().
[android-x86/external-exfat.git] / libexfat /
2010-06-12 resverBumped version to 0.9.1.
2010-06-12 resverMoved version constants into a separate header.
2010-06-10 resverDo not use unions for date and time conversion to avoid...
2010-06-10 resverFixed byte order macros for Mac OS X: big-endian machin...
2010-06-09 resverAdded __packed__ attribute to all on-disk structures...
2010-06-01 resverAllow clusters bitmap size to exceed minimum value.
2010-05-27 resverParse root directory on mount to catch FS errors earlier.
2010-05-21 resverAdded missing endianness conversion for cluster number...
2010-05-16 resverAdded missing endianness conversion for cluster number...
2010-05-16 resverUse b2o() in exfat_c2o() for consistency.
2010-04-24 resverCheck FAT count on mount.
2010-04-24 resverCheck FS version on mount.
2010-04-20 resverFixed integer overflow in block number calculation...
2010-04-11 resverUpdated superblock format definition.
2010-02-22 resverBumped version to 0.9.0.
2010-02-15 resverImplemented dynamic calculation of free clusters count...
2010-02-13 resverFixed truncate(): rollback clusters allocation when...
2010-02-10 resverPass actual return code from lookup_name() instead...
2010-02-07 resverFixed rename(): replace target if it exists.
2010-01-24 resverAdded cluster size check on mount (it must not be great...
2010-01-24 resverDo not write EOD when growing directory because freshly...
2010-01-24 resverErase allocated space when growing a file.
2010-01-14 resverRenamed entries structures for consistency.
2010-01-14 resverCheck file name for characters that are not allowed.
2010-01-14 resverFixed Mac OS X support.
2010-01-12 resverMoved endianness stuff into a separate header.
2010-01-10 resverChanged source files headings to meet the FSF recommend...
2010-01-10 resverAdded patchlevel constant.
2010-01-10 resverImplemented rename in libexfat.
2010-01-08 resverMoved code that adds and removes nodes from the tree...
2010-01-08 resverBig-endian machines support.
2010-01-08 resverAdded noatime mount option.
2010-01-08 resverCheck that FS is mounted in read-write mode on node...
2010-01-08 resverCall exfat_update_mtime() instead of updating node...
2010-01-08 resverAdded function that updates node mtime.
2010-01-08 resverUpdate atime on read.
2010-01-08 resverAdded function that updates node atime.
2010-01-08 resverAdded additional check of cluster index on freeing.
2010-01-08 resverUpdate parent directory mtime when file is removed.
2010-01-08 resverOpen special file in read-only mode if FS was mounted...
2010-01-08 resverImplemented uid and gid mount options.
2009-12-22 resverFixed options string parsing.
2009-12-21 resverImplemented utimens (file time stamps updating).
2009-12-21 resverUpdate mtime of parent directory when file is created.
2009-12-21 resverUpdate mtime on file truncation.
2009-12-20 resverSet st_blocks field in struct stat (now du utility...
2009-12-20 resverFixed format string.
2009-12-20 resverFixed format strings warnings.
2009-12-20 resverAdded attributes for printf-style functions.
2009-12-20 resverImplemented umask, dmask and fmask mount options.
2009-12-20 resverPass struct exfat to exfat_stat().
2009-12-20 resverPass mount options to exfat_mount().
2009-12-20 resverImplemented mknod and mkdir in libexfat.
2009-12-20 resverAdded file name hash calculation function.
2009-12-19 resverFixed file flag updating on node flush: empty files...
2009-12-19 resverCheck exfat_truncate() return value in exfat_write().
2009-12-15 resverAdded file size fields check and comment about what...
2009-12-15 resverFixed file size updating on node flush: it must be...
2009-12-15 resverFixed FS structure definition: there are two fields...
2009-12-13 resverSplit new node allocation and initialization into separ...
2009-12-13 resverAllocate buffer immediately in opendir() function to...
2009-12-13 resverSplitted checksum calculation into a separate function.
2009-12-13 resverMoved DIV_ROUND_UP macro to header to be used by other...
2009-11-28 resverFixed memory leak: free root node structure on unmount.
2009-11-28 resverImplemented unlink and rmdir in libexfat.
2009-11-28 resverAdded function that calculates UTF-16 string length...
2009-11-28 resverFixed node flush: consider contiguous flag of the direc...
2009-11-28 resverAdded pointer to parent for each node.
2009-11-28 resverRenamed nextent() function to fetch_next_entry().
2009-11-24 resverRepresent directory entry address as cluster + offset...
2009-11-17 resverFixed directory contents reading: it failed if director...
2009-11-15 resverUpdate mtime on each write.
2009-11-14 resverRemoved non-existent functions declarations.
2009-11-14 resverFlush clusters bitmap on file close instead of flushing...
2009-11-14 resverFlush node on close instead of flushing on each node...
2009-11-14 resverPass struct exfat to exfat_put_node() function (will...
2009-11-09 resverAdded directory size verification on node creation.
2009-11-09 resverRemember recently used cluster of each node. This impro...
2009-11-07 resverImproved clusters allocation algorithm: now it attempts...
2009-11-07 resverImproved find_bit_and_set() function: now it scans...
2009-11-06 resverFixed clusters bitmap handling: it starts from cluster...
2009-11-05 resverErase struct exfat on mount to avoid uninitialized...
2009-10-31 resverImplemented existing files writing in libexfat.
2009-10-31 resverImplemented checksum verification on node creation.
2009-10-31 resverAdded checksum calculation functions.
2009-10-30 resverMoved MIN macro to header to be used by other units.
2009-10-26 resverPass pointer to a node to exfat_next_cluster() and...
2009-10-26 resverRemoved separate field for the root directory size...
2009-10-24 resverPermitted write in libexfat.
2009-10-22 resverMoved mount and unmount functions into separate file.
2009-10-22 resverImplemented nodes cache (in-core directories structure...
2009-10-11 resverMade get_comp() static because it is used only in one...
2009-10-05 resverImplemented dynamic nodes allocation.
2009-10-02 resverAdded function that converts Unix time to exFAT time...
2009-10-02 resverAdded macro that checks whether year is leap. Only...
2009-10-02 resverAdded macro that calculates leap years count passed...
2009-10-02 resverRemoved commented out debug code.
2009-10-02 resverSplitted EPOCH_DIFF_SEC macro into two macros for simpl...
2009-10-01 resverFixed leap days accounting while converting time from...
2009-10-01 resverUse timezone variable instead of gettimeofday() because...
next