blkmtd (and YAFFS)

Wookey wookey at aleph1.co.uk
Tue May 18 14:20:03 EDT 2004


+++ Charles Manning [04-05-18 14:41 +1200]:
> As David already pointed out, CF hides the ECC stuff (indeed some CF is not 
> even based on NAND flash) 

It didn't used to be - I assume it pretty-well all is these days.

> so YAFFS is probably not really the best choice.

OK.

> > I know we're not supposed to talk about CF cards here, but I'm not sure who
> > else to ask about this...
> 
> Yes, mentioning CF on mtd is poor form :-).
> >
> > We have recently found that it's very easy to wear out crummy CF cards
> > using conventional disk-journalling systems (ext3 wears a hole in the end
> > of a 512MB flash card in <10 reboots) because every write goes through the
> > journal section of the device, and clearly its internal controller is doing
> > a very simple sector->flashpage mapping (yes, we should have turned off
> > atime, but still it's amazingly exactly not what you wanted :-)
> >
> > So what I really want to do is use something that distributes the writes
> > better than the internal controller so I'm thinking that YAFFS or JFFS2
> > should do a better job, but still give us journalling/power fail safety.
> >
> > blkmtd appears to allow this but I see few mentions of it since early 2002.
> > Is it stable, does it work, has anyone ever tried it with YAFFS?
> 
> CF always has been and always will be a "Kleenex technology" for the consumer 
> market. Designing it in as part of a rugged system has always been ill 
> advised.

I'm well aware of how crap it is, but the problem is that we have a consumer
device that uses CF cards (and MMC, and internal NAND). Now it's being
Linuxified we want to make the CF as 'least-bad' as possible.

> CF controllers don't do explicit wear levelling. At least some do "implicit 
> wear levelling"  by using a free pool rather like SmartMedia does. It would 
> appear though that some don't even do that.
> 
> CF cards do not necessarily fail due to wear-out. They can get screwed up by 
> corrupting their logical to physical mapping which I hunch is the more likely 
> scenario. If this is happening then extra wear levelling is not going to help.

OK. In this case reformatting didn't work but making the partition 32MB
smaller and thus avoiding the flash previously used by the ext3 journal
fixed the problem. It is possible that the controller got confused, or that
it simply started to run out of spare blocks to fill in holes with - it is
of course very hard to know when given a block box like this.


> > Is there a better FS for this purpose (anyone know if reiserfs helps
> > distribute writes around your 'disk' at all?)
> 
> You're making the (possibly invalid) assumption that your failures are due to 
> wear out. If that is indeed the case then some such wear levelling fs might 
> help. 
> 
> The biggest problem I see is that YAFFS and JFFSx achieve their robustness by 
> dealing with the flash directly and do not have logical to physical mapping 
> layers. Balancing YAFFS of JFFSx on top of something that relies on a logical 
> to physical mapping just gives a false sense of security since there is no 
> mechanism to repair errors at that level.
>
> Both YAFFS anf JFFSx are journaling/log structured file systems. They can 
> cope with write failures and can handle unclean dismounts, but they cannot 
> recover data that has been lost; for that you need a RAID system or such. A 
> corruption in a CF card results in lost info which will not be recoverable.

Yes, but we are relying on the CF card controller to substitute bad sectors
and essentialy say to the filesystem layer that 'everything is always OK'.

The 'problem' we want to address is not using a filesystem that does a lot
of writing in one place (e.g FAT cluster table on every write, ext2 inode
tables on every write? (I don't know how spread about these are).

A log-structure Filing system, even without the error-checking and bad-block
detection, should still spread it's writes out relatively helpfully.

Are you sure it's of no benefit to use them over a CF controller?

Wookey
-- 
Aleph One Ltd, Bottisham, CAMBRIDGE, CB5 9BA, UK  Tel +44 (0) 1223 811679
work: http://www.aleph1.co.uk/     play: http://www.chaos.org.uk/~wookey/



More information about the linux-mtd mailing list