OSDN Git Service

Rename node field flags to attrib.
[android-x86/external-exfat.git] / libexfat / mount.c
2017-01-16 relanRename node field flags to attrib.
2016-06-03 relanUpdate copyright years.
2016-06-03 relanSupport upcase table compression.
2015-11-07 relanMove nodes flush from exfat_flush() into a separate...
2015-09-24 relanDetect infinite loop in rootdir_size().
2015-09-24 relanCheck sector and cluster size before use.
2015-08-24 relanTurn "FS is larger than device" error into warning.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanPass default_permissions to FUSE.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanUse bool type in verify_vbr_checksum().
2015-08-24 relanHandle I/O errors in exfat_put_node().
2015-08-24 relanCheck device size on mount.
2015-08-24 relanValidate VBR checksum before other checks.
2015-08-24 relanFix memory use after free on error paths.
2015-08-24 relanHandle I/O error in exfat_next_cluster().
2015-08-24 relanClose device and free super block on failure to read...
2015-08-24 relanHandle I/O errors.
2015-08-24 relanRelicense the code from GPLv3+ to GPLv2+.
2015-08-24 relanRelax mode handling.
2015-08-24 relanAdd "quiet" option.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanRename exfat_mode() to exfat_get_mode().
2015-08-24 relanUse bool type.
2015-08-24 relanRefactor device access mode handling.
2015-08-24 relanUpdate copyright years.
2015-08-24 relanRepresent device as an extensible structure.
2015-08-24 relanAdd exfat_fsync() function.
2015-08-24 relanAdd exfat_close() function.
2015-08-24 relanRename read/write functions.
2015-08-24 relanUse a more portable way to obtain timezone offset.
2015-08-24 relanRemove _XOPEN_SOURCE define.
2015-08-24 relanPut _XOPEN_SOURCE define before any includes as recomme...
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 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 relanUse exfat_open() instead of calling open() directly.
2015-08-24 relanCheck that either a block device or a regular file...
2015-08-24 relanAdd missing endianness conversion in VBR verification...
2015-08-24 relanRename block to sector to avoid confusion.
2015-08-24 relanVerify VBR checksum on mount.
2015-08-24 relanAdd fsync() on unmount.
2015-08-24 relanAdd (senseless) check of close() return code.
2015-08-24 relanInterpret version field as a structure for convenience.
2015-08-24 relanCheck upcase table and clusters bitmap presence on...
2015-08-24 relanParse root directory on mount to catch FS errors earlier.
2015-08-24 relanCheck FAT count on mount.
2015-08-24 relanCheck FS version on mount.
2015-08-24 relanAdd cluster size check on mount.
2015-08-24 relanChange source files headings to meet FSF recommendations.
2015-08-24 relanAdd noatime mount option.
2015-08-24 relanOpen special file in RO mode if FS was mounted with...
2015-08-24 relanImplement uid and gid mount options.
2015-08-24 relanFix options string parsing.
2015-08-24 relanImplement umask, dmask and fmask mount options.
2015-08-24 relanPass mount options to exfat_mount().
2015-08-24 relanFix memory leak.
2015-08-24 relanPass struct exfat to exfat_put_node() function.
2015-08-24 relanRemember recently used cluster of each node.
2015-08-24 relanErase struct exfat on mount.
2015-08-24 relanImplement existing files writing in libexfat.
2015-08-24 relanPass node to exfat_next_cluster() and exfat_advance_clu...
2015-08-24 relanRemove separate field for the root directory size.
2015-08-24 relanEnable write in libexfat.
2015-08-24 relanMove mount and unmount functions into separate file.