[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20250718175418.0b6a62c5@kernel.org>
Date: Fri, 18 Jul 2025 17:54:18 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: chia-yu.chang@...ia-bell-labs.com
Cc: alok.a.tiwari@...cle.com, pctammela@...atatu.com, horms@...nel.org,
donald.hunter@...il.com, xandfury@...il.com, netdev@...r.kernel.org,
dave.taht@...il.com, pabeni@...hat.com, jhs@...atatu.com,
stephen@...workplumber.org, xiyou.wangcong@...il.com, jiri@...nulli.us,
davem@...emloft.net, edumazet@...gle.com, andrew+netdev@...n.ch,
ast@...erby.net, liuhangbin@...il.com, shuah@...nel.org,
linux-kselftest@...r.kernel.org, ij@...nel.org, ncardwell@...gle.com,
koen.de_schepper@...ia-bell-labs.com, g.white@...lelabs.com,
ingemar.s.johansson@...csson.com, mirja.kuehlewind@...csson.com,
cheshire@...le.com, rs.ietf@....at, Jason_Livingood@...cast.com,
vidhi_goel@...le.com
Subject: Re: [PATCH v24 net-next 1/6] sched: Struct definition and parsing
of dualpi2 qdisc
On Fri, 18 Jul 2025 01:24:22 +0200 chia-yu.chang@...ia-bell-labs.com
wrote:
> + if (!opt || !nla_len(opt)) {
> + NL_SET_ERR_MSG_MOD(extack, "Dualpi2 options are required");
> + return -EINVAL;
> + }
> + err = nla_parse_nested(tb, TCA_DUALPI2_MAX, opt, dualpi2_policy,
> + extack);
> + if (err < 0)
> + return err;
> +
> + q = qdisc_priv(sch);
> + sch_tree_lock(sch);
[...]
> + if (tb[TCA_DUALPI2_STEP_THRESH_PKTS] && tb[TCA_DUALPI2_STEP_THRESH_US]) {
> + NL_SET_ERR_MSG_MOD(extack, "multiple step thresh attributes");
> + return -EINVAL;
> + }
You're missing an unlock, please place the validation before
sch_tree_lock().
--
pw-bot: cr
Powered by blists - more mailing lists