From aa18251f716e9df74468eab15518c7306e6c8bf6 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sat, 9 Jul 2016 14:15:06 +0300 Subject: [PATCH] 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 --- process.c | 1 - 1 file changed, 1 deletion(-) 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; } -- 2.45.0