Searched hist:"76216211 f842677bac10000bfdbae1155172ddd6" (Results 1 – 1 of 1) sorted by relevance
| /rk3399_rockchip-uboot/fs/fat/ |
| H A D | fat_write.c | 76216211f842677bac10000bfdbae1155172ddd6 Sun Aug 13 19:16:17 UTC 2017 Reno Farnesi <nfarnesi4@gmail.com> fs: fat: fix fatwrite overflow calculation
The overflow calculation was incorrect. Adding the start block of the partition is not needed because the sectors are already relative to the beginning of the partition. If you attempted to write a file smaller than cur_part_info.start blocks on a full partition the old calculation fails to catch the overflow. This would cause an infinite loop in the determine_fatent function.
Old, incorrect calculation:
ending sector of new file = start sector + file size (in sectors) last sector = partition start + total sectors on the partition
Adding the partition start block number is not needed because sectors are already relative to the start of the partition.
New calculation:
ending sector of new file = start sector + file size (in sectors) last sector = total sectors on the partition
Signed-off-by: Reno Farnesi <nfarnesi4@gmail.com>
|