From: Timo Kokkonen Date: Sat, 9 Jul 2016 11:15:06 +0000 (+0300) Subject: run_work_on_queue: Remove excess debug print X-Git-Url: http://git.itanic.dy.fi/?p=rrdd;a=commitdiff_plain;h=aa18251f716e9df74468eab15518c7306e6c8bf6 run_work_on_queue: Remove excess debug print If the thread goes to sleep, the queues must be empty. No need to have an explicit print for it. Signed-off-by: Timo Kokkonen --- diff --git a/process.c b/process.c index 35ef515..19d8ded 100644 --- a/process.c +++ b/process.c @@ -64,7 +64,6 @@ static int run_work_on_queue(struct work_queue *queue) mutex_lock(&queue->lock); if (!queue->work) { - pr_info("No work to run on queue %s\n", queue->name); mutex_unlock(&queue->lock); return 0; }