summaryrefslogtreecommitdiffstats
path: root/xlators/performance/io-threads/src/io-threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/performance/io-threads/src/io-threads.c')
-rw-r--r--xlators/performance/io-threads/src/io-threads.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c
index a04f664e8..3136c9c1a 100644
--- a/xlators/performance/io-threads/src/io-threads.c
+++ b/xlators/performance/io-threads/src/io-threads.c
@@ -2342,7 +2342,7 @@ iot_ordered_exit (int cond_waitres, iot_worker_t *worker)
gf_boolean_t allow_exit = _gf_false;
if (worker->state == IOT_STATE_EXIT_REQUEST) {
- allow_exit = 1;
+ allow_exit = _gf_true;
} else if (cond_waitres == ETIMEDOUT) {
allow_exit = iot_can_ordered_exit (worker);
}
@@ -2457,7 +2457,7 @@ iot_unordered_exit (int cond_waitres, iot_worker_t *worker)
gf_boolean_t allow_exit = _gf_false;
if (worker->state == IOT_STATE_EXIT_REQUEST) {
- allow_exit = 1;
+ allow_exit = _gf_true;
} else if (cond_waitres == ETIMEDOUT) {
allow_exit = iot_can_unordered_exit (worker);
}