diff options
author | Jeff Bailey <jbailey@gnu.org> | 2003-07-28 01:48:26 +0000 |
---|---|---|
committer | Jeff Bailey <jbailey@gnu.org> | 2003-07-28 01:48:26 +0000 |
commit | 211ee30f24c0abf5fcd5df17451b738e32c2c2c5 (patch) | |
tree | e2281b39ab091d290441f038de849494e99a76ea /fatfs/ChangeLog | |
parent | 3099f96171c69d65a1b7add77e9a7356b073d92b (diff) |
2003-07-14 Marco Gerards <metgerards@student.han.nl>
* fat.c (fat_read_sblock): Don't test if the root dir size is a
multiple of sectors_per_cluster. Reported by Barry deFreese
(bddebian@cox.net).
* fatfs.h (LOG2_BLOCKS_PER_CLUSTER): New macro.
(FAT_FIRST_CLUSTER_BLOCK): Likewise.
(fat_first_cluster_byte): Macro removed.
* inode.c (read_node): Correctly setup diskfs_root_node for FAT32
filesystems.
* pager.c (fat_getcluster): Check for reading beyond allocsize
correctly for file systems with a clustersize > vm_page_size.
(file_pager_read_small_page): Don't use byte offsets when
calculating the block.
(file_pager_read_huge_page): Likewise.
(pending_clusters_write): Likewise.
(file_pager_write_small_page): Likewise.
(STAT_INC): Cast to void to suppress warning.
Diffstat (limited to 'fatfs/ChangeLog')
-rw-r--r-- | fatfs/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fatfs/ChangeLog b/fatfs/ChangeLog index 180ff9b3..3528d25d 100644 --- a/fatfs/ChangeLog +++ b/fatfs/ChangeLog @@ -1,3 +1,25 @@ +2003-07-14 Marco Gerards <metgerards@student.han.nl> + + * fat.c (fat_read_sblock): Don't test if the root dir size is a + multiple of sectors_per_cluster. Reported by Barry deFreese + (bddebian@cox.net). + + * fatfs.h (LOG2_BLOCKS_PER_CLUSTER): New macro. + (FAT_FIRST_CLUSTER_BLOCK): Likewise. + (fat_first_cluster_byte): Macro removed. + + * inode.c (read_node): Correctly setup diskfs_root_node for FAT32 + filesystems. + + * pager.c (fat_getcluster): Check for reading beyond allocsize + correctly for file systems with a clustersize > vm_page_size. + (file_pager_read_small_page): Don't use byte offsets when + calculating the block. + (file_pager_read_huge_page): Likewise. + (pending_clusters_write): Likewise. + (file_pager_write_small_page): Likewise. + (STAT_INC): Cast to void to suppress warning. + 2003-04-26 Marco Gerards <metgerards@student.han.nl> * dir.c (diskfs_get_directs): Consider ENTRY when adding |