OSDN Git Service

android-x86/external-exfat.git
2015-08-24 relanMake all FUSE operations static.
2015-08-24 relanUnify alignment of * in functions prototypes.
2015-08-24 relanImplement mknod and mkdir in FUSE driver.
2015-08-24 relanImplement mknod and mkdir in libexfat.
2015-08-24 relanAdd file name hash calculation function.
2015-08-24 relanFix file flag updating on node flush.
2015-08-24 relanFix error message in fsck.
2015-08-24 relanCheck exfat_truncate() return value in exfat_write().
2015-08-24 relanAdd file size fields check.
2015-08-24 relanFix file size updating on node flush.
2015-08-24 relanFix FS structure definition.
2015-08-24 relanMove new node allocation and initialization into functions.
2015-08-24 relanAllocate buffer immediately in opendir() function.
2015-08-24 relanSplit checksum calculation into a separate function.
2015-08-24 relanMove DIV_ROUND_UP macro to header to be used by other...
2015-08-24 relanDaemonize on mount.
2015-08-24 relanFix memory leak.
2015-08-24 relanImplement unlink and rmdir in the FUSE driver.
2015-08-24 relanImplement unlink and rmdir in libexfat.
2015-08-24 relanAdd function that calculates UTF-16 string length.
2015-08-24 relanFix node flush.
2015-08-24 relanAdd pointer to parent for each node.
2015-08-24 relanRename nextent() function to fetch_next_entry().
2015-08-24 relanAdd install target to SConscript.
2015-08-24 relanRepresent directory entry address as cluster + offset.
2015-08-24 relanFix directory contents reading.
2015-08-24 relanAdd FUSE debug option (-d).
2015-08-24 relanUpdate mtime on each write.
2015-08-24 relanRemove non-existent functions declarations.
2015-08-24 relanFlush clusters bitmap on file close.
2015-08-24 relanFlush node on close instead of flushing on each node...
2015-08-24 relanPass struct exfat to exfat_put_node() function.
2015-08-24 relanAdd node clusters check in fsck.
2015-08-24 relanAdd directory size verification on node creation.
2015-08-24 relanRemember recently used cluster of each node.
2015-08-24 relanImprove clusters allocation algorithm.
2015-08-24 relanImprove find_bit_and_set() function.
2015-08-24 relanFix clusters bitmap handling: it starts from cluster...
2015-08-24 relanErase struct exfat on mount.
2015-08-24 relanImplement existing files writing in FUSE driver.
2015-08-24 relanImplement existing files writing in libexfat.
2015-08-24 relanImplement checksum verification on node creation.
2015-08-24 relanAdd checksum calculation functions.
2015-08-24 relanMove MIN macro to header to be used by other units.
2015-08-24 relanShow in fsck only percentage of used space.
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.
2015-08-24 relanImplement nodes cache (in-core directory structure...
2015-08-24 relanFix integer overflow in fsck.
2015-08-24 relanAdd cleanup on FUSE module shutdown.
2015-08-24 relanFix crash in FUSE module on shutdown.
2015-08-24 relanMake get_comp() static because it is used only in one...
2015-08-24 relanFix debug output in fsck.
2015-08-24 relanImplement dynamic nodes allocation.
2015-08-24 relanUse exfat_get_name() to get file name in fuse_exfat_rea...
2015-08-24 relanAdd function that converts Unix time to exFAT time.
2015-08-24 relanAdd macro that checks whether year is leap.
2015-08-24 relanAdd macro that calculates leap years count passed from...
2015-08-24 relanRemove commented out debug code.
2015-08-24 relanSplit EPOCH_DIFF_SEC macro into two macros for simplicity.
2015-08-24 relanFix leap days accounting.
2015-08-24 relanUse timezone variable instead of gettimeofday().
2015-08-24 relanAdd parentheses to macro definition.
2015-08-24 relanUse positive time shift for simplicity.
2015-08-24 relanFix time conversion from exFAT to Unix format.
2015-08-24 relanFix atime and mtime for the root directory.
2015-08-24 relanCalculate root directory size and represent it.
2015-08-24 relanPath parsing cleanup.
2015-08-24 relanFix integer underflow in compare_char().
2015-08-24 relanRemove char substraction from compare_name().
2015-08-24 relanReturn error if entry type is unrecognized.
2015-08-24 relanAdd check for label entry.
2015-08-24 relanAdd checks for clusters bitmap entry.
2015-08-24 relanUse exfat_read_raw() to read upcase table.
2015-08-24 relanAdd check of malloc() return value.
2015-08-24 relanInitial code drop.