From c28810e08fb4f96cc714d7d69a8eb01415c0ed5c Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 7 Mar 2011 09:56:22 +0100 Subject: ramfs: increase chunk size to 4 kbyte This greatly increases speed on ramfs. Signed-off-by: Sascha Hauer --- fs/ramfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/ramfs.c') diff --git a/fs/ramfs.c b/fs/ramfs.c index 62225504b5..91001f13c6 100644 --- a/fs/ramfs.c +++ b/fs/ramfs.c @@ -30,7 +30,7 @@ #include #include -#define CHUNK_SIZE 512 +#define CHUNK_SIZE 4096 struct ramfs_chunk { char *data; -- cgit v1.2.3