]> git.itanic.dy.fi Git - rrdd/commitdiff
run_work_on_queue: Remove excess debug print
authorTimo Kokkonen <timo.t.kokkonen@iki.fi>
Sat, 9 Jul 2016 11:15:06 +0000 (14:15 +0300)
committerTimo Kokkonen <timo.t.kokkonen@iki.fi>
Sat, 9 Jul 2016 11:15:06 +0000 (14:15 +0300)
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 <timo.t.kokkonen@iki.fi>
process.c

index 35ef51511a31e99ed7cfd3d8e1e29cc8fe5e87e3..19d8ded186e9c7976761ef9b8da63a9ebc7a8b15 100644 (file)
--- 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;
        }