mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
net/sched: sch_qfq: warn about class in use while deleting
Add extack to warn that delete was rejected because the class is still in use Acked-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: Pedro Tammela <pctammela@mojatatu.com> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
7118f56e04
commit
e20e75017c
@ -543,8 +543,10 @@ static int qfq_delete_class(struct Qdisc *sch, unsigned long arg,
|
||||
struct qfq_sched *q = qdisc_priv(sch);
|
||||
struct qfq_class *cl = (struct qfq_class *)arg;
|
||||
|
||||
if (qdisc_class_in_use(&cl->common))
|
||||
if (qdisc_class_in_use(&cl->common)) {
|
||||
NL_SET_ERR_MSG_MOD(extack, "QFQ class in use");
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
sch_tree_lock(sch);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user