From de7c39220fd2f58f77f87b9fd862e2fe775f88e3 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 23 Oct 2014 08:58:16 -0600 Subject: [PATCH] backend: remove debug du thread exit notice Signed-off-by: Jens Axboe --- backend.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/backend.c b/backend.c index dd7dc67e..14803c38 100644 --- a/backend.c +++ b/backend.c @@ -2009,10 +2009,8 @@ static void *disk_thread_main(void *data) } ret = pthread_cond_timedwait(&du_cond, &du_lock, &ts); - if (ret != ETIMEDOUT) { - printf("disk thread should exit %d\n", ret); + if (ret != ETIMEDOUT) break; - } ret = update_io_ticks(); -- 2.25.1