OSDN Git Service

Use bool type.
[android-x86/external-exfat.git] / libexfat / mount.c
2012-12-08 resverUse bool type.
2012-12-04 resverRefactored device access mode handling.
2012-05-01 resverFix copyright years.
2012-03-03 resverRepresent device as an extensible structure instead...
2012-02-14 resverAdded exfat_fsync() function that performs fsync agains...
2012-02-14 resverAdded exfat_close() function that closes the device...
2012-02-12 resverRenamed read/write functions:
2012-02-04 resverUse a more portable way to obtain timezone offset.
2012-02-01 resverRemove _XOPEN_SOURCE define since it looks to be not...
2012-01-31 resverPut _XOPEN_SOURCE define before any includes as recomme...
2011-12-04 resverUpdate allocated space percent on unmount.
2011-12-04 resverSet "mounted" flag on mount and clear it on unmount...
2011-11-27 resverRetry to mount FS in read-only mode if device is write...
2011-11-27 resverMore concrete error message on failure to allocate...
2011-11-27 resverParse options and open device before super block alloca...
2011-11-12 resverErase whole clusters instead of sectors. This fixes...
2011-04-22 resverUse exfat_open() instead of calling open() directly.
2011-03-19 resverCheck that either a block device or a regular file...
2011-02-23 resverAdded missing endianness conversion in VBR verification...
2011-02-23 resverRenamed block to sector to avoid confusion.
2010-12-29 resverVerify VBR checksum on mount.
2010-11-12 resverAdded fsync() on unmount.
2010-11-12 resverAdded (senseless) check of close() return code.
2010-11-09 resverInterpret version field as a structure for convenience.
2010-07-11 resverCheck upcase table and clusters bitmap presence on...
2010-05-27 resverParse root directory on mount to catch FS errors earlier.
2010-04-24 resverCheck FAT count on mount.
2010-04-24 resverCheck FS version on mount.
2010-01-24 resverAdded cluster size check on mount (it must not be great...
2010-01-10 resverChanged source files headings to meet the FSF recommend...
2010-01-08 resverAdded noatime mount option.
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-20 resverImplemented umask, dmask and fmask mount options.
2009-12-20 resverPass mount options to exfat_mount().
2009-11-28 resverFixed memory leak: free root node structure on unmount.
2009-11-14 resverPass struct exfat to exfat_put_node() function (will...
2009-11-09 resverRemember recently used cluster of each node. This impro...
2009-11-05 resverErase struct exfat on mount to avoid uninitialized...
2009-10-31 resverImplemented existing files writing in libexfat.
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.