diff options
| author | Vijay Bellur <vbellur@redhat.com> | 2018-05-31 14:17:39 -0700 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2018-05-31 14:19:24 -0700 | 
| commit | be086493c07e190763048f66cdc057bdc61ada00 (patch) | |
| tree | d3a484f0dbd57b1cb78c134b839f16544b11189b | |
| parent | f1f2bfd7c966c6d1efc5c0397caf056cd38ddbbc (diff) | |
performance/io-cache: fix a missing unlock
Fixes: bz789278
Change-Id: If8ca1fef8a10f1e7270390b61121f8a20a76b1d0
updates: bz#789278
Signed-off-by: Vijay Bellur <vbellur@redhat.com>
| -rw-r--r-- | xlators/performance/io-cache/src/io-cache.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/performance/io-cache/src/io-cache.c b/xlators/performance/io-cache/src/io-cache.c index 1614166d973..ef7f2ff216d 100644 --- a/xlators/performance/io-cache/src/io-cache.c +++ b/xlators/performance/io-cache/src/io-cache.c @@ -1665,7 +1665,7 @@ reconfigure (xlator_t *this, dict_t *options)          ioc_table_lock (table);          {                  GF_OPTION_RECONF ("pass-through", this->pass_through, options, -                                  bool, out); +                                  bool, unlock);                  GF_OPTION_RECONF ("cache-timeout", table->cache_timeout,                                    options, int32, unlock);  | 
