public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* fix for small jffs2 disks(resend)
@ 2004-05-06  7:22 Øyvind Harboe
  0 siblings, 0 replies; only message in thread
From: Øyvind Harboe @ 2004-05-06  7:22 UTC (permalink / raw)
  To: linux-mtd

[-- Attachment #1: Type: text/plain, Size: 441 bytes --]

With this patch, it is possible to write to small (e.g. single sector)
flash disks.

Single sector flash disks are useful for writing configuration data that
never change, e.g. in embedded devices for serial numbers, hardware
configuration, feature selection and the like.

It has been applied to the eCos repository. To read more:

http://ecos.sourceware.org/ml/ecos-patches/2004-04/msg00043.html

-- 

Øyvind Harboe
http://www.zylin.com



[-- Attachment #2: smalljffs2.txt --]
[-- Type: text/plain, Size: 832 bytes --]

? smalljffs2.txt
Index: build.c
===================================================================
RCS file: /home/cvs/mtd/fs/jffs2/build.c,v
retrieving revision 1.55
diff -w -u -r1.55 build.c
--- build.c	28 Oct 2003 17:02:44 -0000	1.55
+++ build.c	29 Apr 2004 07:35:07 -0000
@@ -259,6 +259,14 @@
 
 	c->resv_blocks_write = c->resv_blocks_deletion + (size / c->sector_size);
 
+	// If the flash disk is smaller than resv_blocks_write, then we 
+	// allow writing to the disk anyway. The flash disk is then most likely
+	// being used as write once - read many medimum, e.g. configuration of 
+	// static paramters.
+	if (c->resv_blocks_write * c->sector_size > c->flash_size) {
+	  c->resv_blocks_write = 0; 
+	}
+
 	/* When do we let the GC thread run in the background */
 
 	c->resv_blocks_gctrigger = c->resv_blocks_write + 1;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-05-06  7:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-06  7:22 fix for small jffs2 disks(resend) Øyvind Harboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox