Changes between Version 48 and Version 49 of file_system
- Timestamp:
- Feb 3, 2016, 1:33:06 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
file_system
v48 v49 29 29 To support various block device peripheral, this FAT32 implementation defines a generic function to transparently access various physical block devices, using the driver specified in the ''hard_config.h'' file. Five drivers are presently supported ( IOC_BDV / IOC_HBA / IOC_SDC / IOC_SPI / IOC_RDK ). 30 30 31 31 32 '''WARNING 1''': A node name (file or directory) cannot be larger than 31 characters. 32 33 33 '''WARNING 2''': There is no rescue mechanism (at the moment) in case of heap overflow: The system crash with a nice error message on the kernel terminal if the heap defined in the mapping is too small for the File-Caches... 34 '''WARNING 2''': A directory occupy one and only one cluster in the Cache-File (1024 directory entries). 35 36 '''WARNING 3''': There is no rescue mechanism (at the moment) in case of kernel heap overflow, when allocating memory for the File-Caches : The system crash with a nice error message on the kernel terminal if the heap defined in the mapping is too small... 34 37 35 38 == 2) Cache Structure & Write Policy ==