diff options
author | Zhang Huan <zhanghuan@open-fs.com> | 2017-12-05 12:45:46 +0800 |
---|---|---|
committer | Jeff Darcy <jeff@pl.atyp.us> | 2017-12-06 23:45:23 +0000 |
commit | 28202631fecbc3b20a55cfc5fa339663db37e955 (patch) | |
tree | 28124115916e36068848473a9327360844f7cfb4 /xlators/meta | |
parent | c502ca166473f4f0e027f3475924d8dc4e486bd3 (diff) |
libglusterfs: specify ctx in gf_log_set_loglevel
specify ctx in gf_log_set_loglevel, instead of getting it from a thread
specific variable.
Change-Id: I498f826e8e32231235a6b0005026a27c327727fd
BUG: 1521213
Signed-off-by: Zhang Huan <zhanghuan@open-fs.com>
Diffstat (limited to 'xlators/meta')
-rw-r--r-- | xlators/meta/src/loglevel-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/meta/src/loglevel-file.c b/xlators/meta/src/loglevel-file.c index f9c5a993d73..4399da2c948 100644 --- a/xlators/meta/src/loglevel-file.c +++ b/xlators/meta/src/loglevel-file.c @@ -32,7 +32,7 @@ loglevel_file_write (xlator_t *this, fd_t *fd, struct iovec *iov, int count) level = strtol (iov[0].iov_base, NULL, 0); if (level >= GF_LOG_NONE && level <= GF_LOG_TRACE) - gf_log_set_loglevel (level); + gf_log_set_loglevel (this->ctx, level); return iov_length (iov, count); } |