Intel Stomps Into Flash Memory
jcatcw writes "Intel's first NAND flash memory product, the Z-U130 Value Solid-State Drive, is a challenge to other hardware vendors. Intel claims read rates of 28 MB/sec, write speeds of 20 MB/sec., and capacity of 1GB to 8GB, which is much smaller than products from SanDisk. 'But Intel also touts extreme reliability numbers, saying the Z-U130 has an average mean time between failure of 5 million hours compared with SanDisk, which touts an MTBF of 2 million hours.'"
Yeah. Would you choose a neurosurgeon who pokes around people's brains in his spare time? I wouldn't.
2,000,000 hours = 228 years and 4 months or so. Who the hell cares if you make it to 5,000,000?
Different file systems and block managers do different things to code with wear levelling etc. For some file systems (eg. FAT) wear levelling is very important. For some other file systems - particularly those designed to work with NAND flash - wear levelling is not important.
Engineering is the art of compromise.
Putting a FAT partition onto such a device, or into a file via loop mounting, only gives you wear levelling. It does not buy you integrity. If you eject a FAT file system before mounting it then you are likely to damage the file system (potentially killing all the files in the partition). This might be correctable via a fschk.
Proper flash file systems are designed to be safe from bad unmounts. THese tend to be log structured (eg. YAFFS and JFFS2). Sure, you might lose the data that was in flight, but you should not lose other files. That's why most embedded systems don't use FAT for critical files and only use it where FAT-ness is important (eg. data transfer to a PC).
Engineering is the art of compromise.