aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jffs2/fs.c
diff options
context:
space:
mode:
authorFerenc Havasi <havasi@inf.u-szeged.hu>2005-08-31 09:51:04 -0400
committerThomas Gleixner <tglx@mtd.linutronix.de>2005-11-06 15:08:27 -0500
commit4ce1f562189696605a84813cf71847c0cc698414 (patch)
tree1ec543b00db38f5ae8db38f0f881db11ebb5d010 /fs/jffs2/fs.c
parentf0507530cbedf37515e0d803c332cdb81b34e71a (diff)
[JFFS2] Remove support for virtual blocks
Remove support for virtual blocks, which are build by concatenation of multiple physical erase blocks. For more information please read the MTD mailing list thread "[PATCH] remove support for virtual blocks" Signed-off-by: Ferenc Havasi <havasi@inf.u-szeged.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/jffs2/fs.c')
-rw-r--r--fs/jffs2/fs.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/fs/jffs2/fs.c b/fs/jffs2/fs.c
index 79b4bdc76f7a..c99451ae4b77 100644
--- a/fs/jffs2/fs.c
+++ b/fs/jffs2/fs.c
@@ -7,7 +7,7 @@
7 * 7 *
8 * For licensing information, see the file 'LICENCE' in this directory. 8 * For licensing information, see the file 'LICENCE' in this directory.
9 * 9 *
10 * $Id: fs.c,v 1.62 2005/08/06 04:51:30 nico Exp $ 10 * $Id: fs.c,v 1.64 2005/09/01 08:42:31 havasi Exp $
11 * 11 *
12 */ 12 */
13 13
@@ -457,19 +457,8 @@ int jffs2_do_fill_super(struct super_block *sb, void *data, int silent)
457#endif 457#endif
458 458
459 c->flash_size = c->mtd->size; 459 c->flash_size = c->mtd->size;
460
461 /*
462 * Check, if we have to concatenate physical blocks to larger virtual blocks
463 * to reduce the memorysize for c->blocks. (kmalloc allows max. 128K allocation)
464 */
465 c->sector_size = c->mtd->erasesize; 460 c->sector_size = c->mtd->erasesize;
466 blocks = c->flash_size / c->sector_size; 461 blocks = c->flash_size / c->sector_size;
467 if (!(c->mtd->flags & MTD_NO_VIRTBLOCKS)) {
468 while ((blocks * sizeof (struct jffs2_eraseblock)) > (128 * 1024)) {
469 blocks >>= 1;
470 c->sector_size <<= 1;
471 }
472 }
473 462
474 /* 463 /*
475 * Size alignment check 464 * Size alignment check
@@ -480,10 +469,6 @@ int jffs2_do_fill_super(struct super_block *sb, void *data, int silent)
480 c->flash_size / 1024); 469 c->flash_size / 1024);
481 } 470 }
482 471
483 if (c->sector_size != c->mtd->erasesize)
484 printk(KERN_INFO "jffs2: Erase block size too small (%dKiB). Using virtual blocks size (%dKiB) instead\n",
485 c->mtd->erasesize / 1024, c->sector_size / 1024);
486
487 if (c->flash_size < 5*c->sector_size) { 472 if (c->flash_size < 5*c->sector_size) {
488 printk(KERN_ERR "jffs2: Too few erase blocks (%d)\n", c->flash_size / c->sector_size); 473 printk(KERN_ERR "jffs2: Too few erase blocks (%d)\n", c->flash_size / c->sector_size);
489 return -EINVAL; 474 return -EINVAL;
@@ -533,7 +518,7 @@ int jffs2_do_fill_super(struct super_block *sb, void *data, int silent)
533 iput(root_i); 518 iput(root_i);
534 jffs2_free_ino_caches(c); 519 jffs2_free_ino_caches(c);
535 jffs2_free_raw_node_refs(c); 520 jffs2_free_raw_node_refs(c);
536 if (c->mtd->flags & MTD_NO_VIRTBLOCKS) 521 if (jffs2_blocks_use_vmalloc(c))
537 vfree(c->blocks); 522 vfree(c->blocks);
538 else 523 else
539 kfree(c->blocks); 524 kfree(c->blocks);