From 8d69845dfdd31b798fb02b08a1eabbc88d31243c Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Tue, 25 Jan 2011 15:03:50 +0000 Subject: io-threads: whitespace cleanup Signed-off-by: Anand Avati Signed-off-by: Anand V. Avati BUG: 2241 (GlusterFs Stat Actions Degrade During I/O) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2241 --- xlators/performance/io-threads/src/io-threads.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'xlators/performance/io-threads/src/io-threads.c') diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c index 7aaeed962..39943f633 100644 --- a/xlators/performance/io-threads/src/io-threads.c +++ b/xlators/performance/io-threads/src/io-threads.c @@ -1958,6 +1958,7 @@ iot_fxattrop_wrapper (call_frame_t *frame, xlator_t *this, fd_t *fd, return 0; } + int iot_fxattrop (call_frame_t *frame, xlator_t *this, fd_t *fd, gf_xattrop_flags_t optype, dict_t *xattr) @@ -2114,6 +2115,7 @@ set_stack_size (iot_conf_t *conf) } } + int32_t mem_acct_init (xlator_t *this) { @@ -2123,24 +2125,23 @@ mem_acct_init (xlator_t *this) return ret; ret = xlator_mem_acct_init (this, gf_iot_mt_end + 1); - + if (ret != 0) { gf_log (this->name, GF_LOG_ERROR, "Memory accounting init" "failed"); return ret; } - - return ret; } + int validate_options ( xlator_t *this, dict_t *options, char **op_errstr) { int ret = 0; int thread_count; - + if (dict_get (options, "thread-count")) { thread_count = data_to_int32 (dict_get (options, @@ -2161,16 +2162,12 @@ validate_options ( xlator_t *this, dict_t *options, char **op_errstr) ret = -1; goto out; } - - } ret = 0; out: - return ret; - - + return ret; } @@ -2184,7 +2181,7 @@ reconfigure ( xlator_t *this, dict_t *options) conf = this->private; if (!conf) goto out; - + thread_count = conf->max_count; if (dict_get (options, "thread-count")) { @@ -2208,8 +2205,7 @@ reconfigure ( xlator_t *this, dict_t *options) } conf->max_count = thread_count; - } - else + } else conf->max_count = thread_count; ret = 0; @@ -2218,6 +2214,7 @@ out: return ret; } + int init (xlator_t *this) { -- cgit