From 3f86b2040c26bd5fd95cfd80a353537919da1662 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Tue, 1 Jun 2010 04:58:19 +0000 Subject: performance/quick-read: set default cache-size value to 128MB. Signed-off-by: Raghavendra G Signed-off-by: Anand V. Avati BUG: 723 (enhancements to quick read) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=723 --- xlators/performance/quick-read/src/quick-read.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c index dfb99ac2d95..34b755d26a7 100644 --- a/xlators/performance/quick-read/src/quick-read.c +++ b/xlators/performance/quick-read/src/quick-read.c @@ -20,6 +20,8 @@ #include "quick-read.h" #include "statedump.h" +#define QR_DEFAULT_CACHE_SIZE 134217728 /* 128MB */ + int32_t qr_readv (call_frame_t *frame, xlator_t *this, fd_t *fd, size_t size, off_t offset); @@ -2516,7 +2518,7 @@ init (xlator_t *this) } } - conf->cache_size = 65536; + conf->cache_size = QR_DEFAULT_CACHE_SIZE; ret = dict_get_str (this->options, "cache-size", &str); if (ret == 0) { ret = gf_string2bytesize (str, &conf->cache_size); -- cgit