1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>Chapter&#160;6.&#160;Filesystem support</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="MTD NAND Driver Programming Interface"><link rel="up" href="index.html" title="MTD NAND Driver Programming Interface"><link rel="prev" href="Spare_area_autoplacement_default.html" title="Spare area autoplacement default schemes"><link rel="next" href="tools.html" title="Chapter&#160;7.&#160;Tools"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&#160;6.&#160;Filesystem support</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="Spare_area_autoplacement_default.html">Prev</a>&#160;</td><th width="60%" align="center">&#160;</th><td width="20%" align="right">&#160;<a accesskey="n" href="tools.html">Next</a></td></tr></table><hr></div><div class="chapter"><div class="titlepage"><div><div><h1 class="title"><a name="filesystems"></a>Chapter&#160;6.&#160;Filesystem support</h1></div></div></div><p>
2		The NAND driver provides all necessary functions for a
3		filesystem via the MTD interface.
4	</p><p>
5		Filesystems must be aware of the NAND peculiarities and
6		restrictions. One major restrictions of NAND Flash is, that you cannot 
7		write as often as you want to a page. The consecutive writes to a page, 
8		before erasing it again, are restricted to 1-3 writes, depending on the 
9		manufacturers specifications. This applies similar to the spare area. 
10	</p><p>
11		Therefore NAND aware filesystems must either write in page size chunks
12		or hold a writebuffer to collect smaller writes until they sum up to 
13		pagesize. Available NAND aware filesystems: JFFS2, YAFFS. 		
14	</p><p>
15		The spare area usage to store filesystem data is controlled by
16		the spare area placement functionality which is described in one
17		of the earlier chapters.
18	</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="Spare_area_autoplacement_default.html">Prev</a>&#160;</td><td width="20%" align="center">&#160;</td><td width="40%" align="right">&#160;<a accesskey="n" href="tools.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Spare area autoplacement default schemes&#160;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&#160;Chapter&#160;7.&#160;Tools</td></tr></table></div></body></html>
19