Skip to content

Commit cf074ec

Browse files
n132Paolo Abeni
authored andcommitted
net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in qfq_delete_class
might_sleep could be trigger in the atomic context in qfq_delete_class. qfq_destroy_class was moved into atomic context locked by sch_tree_lock to avoid a race condition bug on qfq_aggregate. However, might_sleep could be triggered by qfq_destroy_class, which introduced sleeping in atomic context (path: qfq_destroy_class->qdisc_put->__qdisc_destroy->lockdep_unregister_key ->might_sleep). Considering the race is on the qfq_aggregate objects, keeping qfq_rm_from_agg in the lock but moving the left part out can solve this issue. Fixes: 5e28d5a ("net/sched: sch_qfq: Fix race condition on qfq_aggregate") Reported-by: Dan Carpenter <[email protected]> Signed-off-by: Xiang Mei <[email protected]> Link: https://patch.msgid.link/[email protected] Reviewed-by: Cong Wang <[email protected]> Reviewed-by: Dan Carpenter <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Paolo Abeni <[email protected]>
1 parent b03f15c commit cf074ec

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

net/sched/sch_qfq.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -536,9 +536,6 @@ static int qfq_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
536536

537537
static void qfq_destroy_class(struct Qdisc *sch, struct qfq_class *cl)
538538
{
539-
struct qfq_sched *q = qdisc_priv(sch);
540-
541-
qfq_rm_from_agg(q, cl);
542539
gen_kill_estimator(&cl->rate_est);
543540
qdisc_put(cl->qdisc);
544541
kfree(cl);
@@ -559,10 +556,11 @@ static int qfq_delete_class(struct Qdisc *sch, unsigned long arg,
559556

560557
qdisc_purge_queue(cl->qdisc);
561558
qdisc_class_hash_remove(&q->clhash, &cl->common);
562-
qfq_destroy_class(sch, cl);
559+
qfq_rm_from_agg(q, cl);
563560

564561
sch_tree_unlock(sch);
565562

563+
qfq_destroy_class(sch, cl);
566564
return 0;
567565
}
568566

@@ -1503,6 +1501,7 @@ static void qfq_destroy_qdisc(struct Qdisc *sch)
15031501
for (i = 0; i < q->clhash.hashsize; i++) {
15041502
hlist_for_each_entry_safe(cl, next, &q->clhash.hash[i],
15051503
common.hnode) {
1504+
qfq_rm_from_agg(q, cl);
15061505
qfq_destroy_class(sch, cl);
15071506
}
15081507
}

0 commit comments

Comments
 (0)