lkml.org 
[lkml]   [2005]   [May]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: Sync option destroys flash!
From
Date
Hey Alan...

On Fri, 2005-05-13 at 19:40 +0100, Alan Cox wrote:
> > What happens, with the sync option on a VFAT file system, is that the
> > FAT tables are getting pounded and over-written over and over and over
> > again as each and every block/cluster is allocated while a new file is
> > written out. This constant overwriting eventually wears out the first
> > block or two of the flash drive.

> All non-shite quality flash keys have an on media log structured file
> system and will take 100,000+ writes per sector or so. They decent ones
> also map out bad blocks and have spares. The "wear out the same sector"
> stuff is a myth except on ultra-crap devices.

Yah know... I've been thinking about this... In a former life, we use
to do something very similar with a virtual memory system on some real
early (80's vintage) networked VM workstations (back when memory was
actually valuable and scarce).

So... This would have to work with a list or pool of "spares" that are
not allocated to the "visible" file system. We used a "least used"
algorithm for that VM system. This would seem to be a "replace as
rewritten" algorithm. Each time you write to the file system, it grabs
a block off the head of the spares list, writes your data to it, and
then adds the old block to the tail of the list. Pretty basic stuff and
it doesn't have to track what kind of high level file system you are
using or know anything about its structure. Cool...

That makes sense. But... How big might this "list" be? Maybe an
additional 10% of the entire drive capacity? That's quite a bit... But
now you're beating on that FAT table pretty heavy. For each block
allocated and written to, we're rewriting the FAT table (actually TWO
FAT tables if you count the back up FAT). Ok... One data block, two
FAT table rewrites. So a FAT table block gets added back to the list
and a block is grabbed off the list. Seems like there would be a pretty
high percentage of old FAT table blocks sitting there circulating on the
spares list. That would make the probability of grabbing an old FAT
table block and rewriting it again pretty high. Then it would get added
back to the list again, in turn.

Because of this systematic thumping of the FAT tables, these old FAT
blocks are going to be circulating in that spares list at a pretty high
density. The wear leveling is not going to be nearly as effective
BECAUSE of the thumping. I'm not certain if that will be better or
worse if there are more blocks in the spares list. Seems like you are
going to end up with 50% - 60% (WAG) of the blocks in the spares list
being old FAT table blocks and end up with a number that just keep
recirculating until they burn out. I would think that they'll burn out
faster if that spares list is small and they get reused more frequently
(note to follow).

The up side is that, once an beat up old FAT table block does get
allocated to a file data block, it gets to retire in comfort and not get
rewritten until the file gets rewritten. But... That's reducing the
pool of circulating blocks in the allocated file system... So, a file
system that's full is going to rotate through it's spare and free blocks
faster as well... Some pluses... Some minuses...

It would seem like this would work well for something like a camera (or
a Mars Rover) where you are periodically removing almost everything from
the flash memory and all the blocks have a chance to return to the
spares list. But I see lots of possibilities for degrading the wear
leveling in other cases...

Now... Flaw recovery could be a big help there. Write the block but
notice that the old one is now bad and don't add it back or the new one
failed and you grab another. But then your spares list shrinks.
Failure occurs on the first failure where the spares list hits zero.
Probability (in the FAT thumping case with the sync option) is that it's
going to be a FAT block that takes the hit and takes then entire drive
out.

Am I seeing this correctly? Seems to me that the wear leveling is not
going to be nearly as effective as it should in the case where we are
beating up on the FAT simply because of this systematic bias the sync
option introduces into the write patterns on a FAT file system. And
that will be aggravated by significant load of static data. If
anything, the "sync" option almost appears to be defeating the wear
leveling logic on FAT and VFAT file systems.

> > I'm also going to file a couple of bug reports in bugzilla at RedHat
> > but this seems to be a more fundamental problem than a RedHat specific
> > problem. But, IMHO, they should never be setting that damn sync flag
> > arbitrarily.
>
> It sounds like your need to find a vendor who makes decent keys. For
> that matter several vendors now offer life time guarantees with their
> USB flash media.
>
> Sync gets set by RH because it seemed the right thing to do to handle
> random user device pulls. Now O_SYNC works so excessively well on
> fat/vfat that needs looking at - and as you say likewise perhaps the
> nature of the FAT rewriting.
>
> However its not a media issue, its primarily a performance issue.
>
> Alan

Mike
--
Michael H. Warfield | (770) 985-6132 | mhw@WittsEnd.com
/\/\|=mhw=|\/\/ | (678) 463-0932 | http://www.wittsend.com/mhw/
NIC whois: MHW9 | An optimist believes we live in the best of all
PGP Key: 0xDF1DD471 | possible worlds. A pessimist is sure of it!
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2005-05-14 03:11    [W:0.172 / U:0.732 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site