OSDN Git Service

Fixed error message format.
[android-x86/external-exfat.git] / libexfat / node.c
2011-03-31 resverFixed error message format.
2011-01-21 resverUse a separate function to obtain a pointer to an entry...
2011-01-21 resverFixed typo in a comment.
2011-01-21 resverAdded functions that get and set volume label.
2010-09-05 resverImproved timestamps resolution from 2 sec to 1 sec.
2010-08-21 resverImplemented directories shrinking.
2010-08-21 resverChanged entry offset within a cluster to offset from...
2010-07-11 resverUnified error messages.
2010-07-06 resverCopy the whole name buffer on renaming to avoid garbage...
2010-07-06 resverAlways erase output name buffer in exfat_split() to...
2010-06-01 resverAllow clusters bitmap size to exceed minimum value.
2010-02-07 resverFixed rename(): replace target if it exists.
2010-01-24 resverDo not write EOD when growing directory because freshly...
2010-01-14 resverRenamed entries structures for consistency.
2010-01-14 resverCheck file name for characters that are not allowed.
2010-01-10 resverChanged source files headings to meet the FSF recommend...
2010-01-10 resverImplemented rename in libexfat.
2010-01-08 resverMoved code that adds and removes nodes from the tree...
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 resverAdded function that updates node atime.
2010-01-08 resverUpdate parent directory mtime when file is removed.
2009-12-21 resverImplemented utimens (file time stamps updating).
2009-12-21 resverUpdate mtime of parent directory when file is created.
2009-12-20 resverFixed format string.
2009-12-20 resverImplemented mknod and mkdir in libexfat.
2009-12-19 resverFixed file flag updating on node flush: empty files...
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-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 resverImplemented unlink and rmdir in libexfat.
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-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-06 resverFixed clusters bitmap handling: it starts from cluster...
2009-10-31 resverImplemented existing files writing in libexfat.
2009-10-31 resverImplemented checksum verification on node creation.
2009-10-26 resverPass pointer to a node to exfat_next_cluster() and...
2009-10-22 resverImplemented nodes cache (in-core directories structure...