mtd/include/linux jffs2_fs_sb.h,1.56,1.57
Forrest Zhao
forrest.zhao at intel.com
Fri Nov 11 03:51:43 EST 2005
- Previous message: mtd/fs/jffs2 build.c, 1.85, 1.86 fs.c, 1.68, 1.69 gc.c, 1.155,
1.156 malloc.c, 1.31, 1.32 nodelist.c, 1.115, 1.116 nodelist.h,
1.142, 1.143 nodemgmt.c, 1.129, 1.130 readinode.c, 1.143,
1.144 scan.c, 1.127, 1.128 summary.c, 1.6, 1.7 super-v24.c,
1.87, 1.88 super.c, 1.110, 1.111 wbuf.c, 1.103, 1.104 write.c,
1.97, 1.98
- Next message: mtd/fs/jffs2 debug.c, 1.12, 1.13 erase.c, 1.87, 1.88 gc.c, 1.156,
1.157 nodelist.c, 1.116, 1.117 os-linux.h, 1.66, 1.67 read.c,
1.42, 1.43 readinode.c, 1.144, 1.145 scan.c, 1.128,
1.129 wbuf.c, 1.104, 1.105
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/mtd/include/linux
In directory phoenix.infradead.org:/tmp/cvs-serv13918/include/linux
Modified Files:
jffs2_fs_sb.h
Log Message:
This patch uses "slab cache + pointers" to replace the memory allocation mechanism for struct jffs2_eraseblock in JFFS2.
In particular, this patch reduce the continuous memory allocation pressure in kernel space.
Index: jffs2_fs_sb.h
===================================================================
RCS file: /home/cvs/mtd/include/linux/jffs2_fs_sb.h,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- jffs2_fs_sb.h 7 Nov 2005 11:14:52 -0000 1.56
+++ jffs2_fs_sb.h 11 Nov 2005 08:51:40 -0000 1.57
@@ -64,7 +64,7 @@
uint32_t nospc_dirty_size;
uint32_t nr_blocks;
- struct jffs2_eraseblock *blocks; /* The whole array of blocks. Used for getting blocks
+ struct jffs2_eraseblock **blocks; /* The whole array of blocks. Used for getting blocks
* from the offset (blocks[ofs / sector_size]) */
struct jffs2_eraseblock *nextblock; /* The block we're currently filling */
- Previous message: mtd/fs/jffs2 build.c, 1.85, 1.86 fs.c, 1.68, 1.69 gc.c, 1.155,
1.156 malloc.c, 1.31, 1.32 nodelist.c, 1.115, 1.116 nodelist.h,
1.142, 1.143 nodemgmt.c, 1.129, 1.130 readinode.c, 1.143,
1.144 scan.c, 1.127, 1.128 summary.c, 1.6, 1.7 super-v24.c,
1.87, 1.88 super.c, 1.110, 1.111 wbuf.c, 1.103, 1.104 write.c,
1.97, 1.98
- Next message: mtd/fs/jffs2 debug.c, 1.12, 1.13 erase.c, 1.87, 1.88 gc.c, 1.156,
1.157 nodelist.c, 1.116, 1.117 os-linux.h, 1.66, 1.67 read.c,
1.42, 1.43 readinode.c, 1.144, 1.145 scan.c, 1.128,
1.129 wbuf.c, 1.104, 1.105
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the linux-mtd-cvs
mailing list