From: Florian Westphal <fw@strlen.de>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Florian Westphal <fw@strlen.de>,
syzbot <syzbot+dc9071cc5a85950bdfce@syzkaller.appspotmail.com>,
davem@davemloft.net, jhs@mojatatu.com, jiri@resnulli.us,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
syzkaller-bugs@googlegroups.com, xiyou.wangcong@gmail.com
Subject: Re: INFO: rcu detected stall in br_handle_frame (2)
Date: Tue, 31 Dec 2019 00:02:16 +0100 [thread overview]
Message-ID: <20191230230216.GK795@breakpoint.cc> (raw)
In-Reply-To: <30e6a8c6-b857-00b8-24d8-076b92409636@gmail.com>
Eric Dumazet <eric.dumazet@gmail.com> wrote:
> On 12/28/19 3:15 AM, Florian Westphal wrote:
> > If you don't have a better idea/suggestion for an upperlimit INT_MAX
> > would be enough to prevent perpetual <= 0 condition.
>
> Thanks Florian for the analysis.
>
> I guess we could use a conservative upper bound value of (1 << 20)
> ( about 16 64KB packets )
>
> diff --git a/net/sched/sch_fq.c b/net/sched/sch_fq.c
> index ff4c5e9d0d7778d86f20f4bd67cc627eed0713d9..12f1d1c6044fac9db987f7ce3a50a7e2c711358b 100644
> --- a/net/sched/sch_fq.c
> +++ b/net/sched/sch_fq.c
> @@ -786,15 +786,20 @@ static int fq_change(struct Qdisc *sch, struct nlattr *opt,
> if (tb[TCA_FQ_QUANTUM]) {
> u32 quantum = nla_get_u32(tb[TCA_FQ_QUANTUM]);
>
> - if (quantum > 0)
> + if (quantum > 0 && quantum <= (1 << 20))
> q->quantum = quantum;
> else
> err = -EINVAL;
> }
>
> - if (tb[TCA_FQ_INITIAL_QUANTUM])
> - q->initial_quantum = nla_get_u32(tb[TCA_FQ_INITIAL_QUANTUM]);
> + if (tb[TCA_FQ_INITIAL_QUANTUM]) {
> + u32 quantum = nla_get_u32(tb[TCA_FQ_INITIAL_QUANTUM]);
>
> + if (quantum > 0 && quantum <= (1 << 20))
> + q->initial_quantum = quantum;
> + else
> + err = -EINVAL;
> + }
> if (tb[TCA_FQ_FLOW_DEFAULT_RATE])
> pr_warn_ratelimited("sch_fq: defrate %u ignored.\n",
> nla_get_u32(tb[TCA_FQ_FLOW_DEFAULT_RATE]));
>
Perhaps it would make sense to add an #ifdef for the 1 << 20 and
a small comment as to what this is / where this comes from.
But other than that nit, this looks good to me, thanks Eric!
prev parent reply other threads:[~2019-12-30 23:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-24 13:55 INFO: rcu detected stall in br_handle_frame (2) syzbot
2019-12-28 11:15 ` Florian Westphal
2019-12-28 15:01 ` Eric Dumazet
2019-12-30 23:02 ` Florian Westphal [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191230230216.GK795@breakpoint.cc \
--to=fw@strlen.de \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=jhs@mojatatu.com \
--cc=jiri@resnulli.us \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=syzbot+dc9071cc5a85950bdfce@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
--cc=xiyou.wangcong@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).