Skip to content

Commit a705b1e

Browse files
Erik MüllerDhineshCool
authored andcommitted
Silence workqueue
1 parent 81bd9bd commit a705b1e

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

kernel/workqueue.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4424,7 +4424,7 @@ static void show_pwq(struct pool_workqueue *pwq)
44244424
bool has_in_flight = false, has_pending = false;
44254425
int bkt;
44264426

4427-
pr_info(" pwq %d:", pool->id);
4427+
pr_debug(" pwq %d:", pool->id);
44284428
pr_cont_pool_info(pool);
44294429

44304430
pr_cont(" active=%d/%d refcnt=%d%s\n",
@@ -4440,7 +4440,7 @@ static void show_pwq(struct pool_workqueue *pwq)
44404440
if (has_in_flight) {
44414441
bool comma = false;
44424442

4443-
pr_info(" in-flight:");
4443+
pr_debug(" in-flight:");
44444444
hash_for_each(pool->busy_hash, bkt, worker, hentry) {
44454445
if (worker->current_pwq != pwq)
44464446
continue;
@@ -4465,7 +4465,7 @@ static void show_pwq(struct pool_workqueue *pwq)
44654465
if (has_pending) {
44664466
bool comma = false;
44674467

4468-
pr_info(" pending:");
4468+
pr_debug(" pending:");
44694469
list_for_each_entry(work, &pool->worklist, entry) {
44704470
if (get_work_pwq(work) != pwq)
44714471
continue;
@@ -4479,7 +4479,7 @@ static void show_pwq(struct pool_workqueue *pwq)
44794479
if (!list_empty(&pwq->delayed_works)) {
44804480
bool comma = false;
44814481

4482-
pr_info(" delayed:");
4482+
pr_debug(" delayed:");
44834483
list_for_each_entry(work, &pwq->delayed_works, entry) {
44844484
pr_cont_work(comma, work);
44854485
comma = !(*work_data_bits(work) & WORK_STRUCT_LINKED);
@@ -4503,7 +4503,7 @@ void show_workqueue_state(void)
45034503

45044504
rcu_read_lock_sched();
45054505

4506-
pr_info("Showing busy workqueues and worker pools:\n");
4506+
pr_debug("Showing busy workqueues and worker pools:\n");
45074507

45084508
list_for_each_entry_rcu(wq, &workqueues, list) {
45094509
struct pool_workqueue *pwq;
@@ -4518,7 +4518,7 @@ void show_workqueue_state(void)
45184518
if (idle)
45194519
continue;
45204520

4521-
pr_info("workqueue %s: flags=0x%x\n", wq->name, wq->flags);
4521+
pr_debug("workqueue %s: flags=0x%x\n", wq->name, wq->flags);
45224522

45234523
for_each_pwq(pwq, wq) {
45244524
spin_lock_irqsave(&pwq->pool->lock, flags);
@@ -4542,7 +4542,7 @@ void show_workqueue_state(void)
45424542
if (pool->nr_workers == pool->nr_idle)
45434543
goto next_pool;
45444544

4545-
pr_info("pool %d:", pool->id);
4545+
pr_debug("pool %d:", pool->id);
45464546
pr_cont_pool_info(pool);
45474547
pr_cont(" hung=%us workers=%d",
45484548
jiffies_to_msecs(jiffies - pool->watchdog_ts) / 1000,
@@ -5560,7 +5560,7 @@ static void __init wq_numa_init(void)
55605560
return;
55615561

55625562
if (wq_disable_numa) {
5563-
pr_info("workqueue: NUMA affinity support disabled\n");
5563+
pr_debug("workqueue: NUMA affinity support disabled\n");
55645564
return;
55655565
}
55665566

0 commit comments

Comments
 (0)