From: Dan Carpenter <dan.carpenter@oracle.com>
To: kernel-janitors@vger.kernel.org
Subject: [bug report] net: vlan: Avoid using BUG() in vlan_proto_idx()
Date: Tue, 29 Sep 2020 09:28:08 +0000 [thread overview]
Message-ID: <20200929092808.GA485919@mwanda> (raw)
Hello Florian Fainelli,
The patch d0186842ec5f: "net: vlan: Avoid using BUG() in
vlan_proto_idx()" from Sep 24, 2020, leads to the following static
checker warning:
net/8021q/vlan.c:60 vlan_group_prealloc_vid()
warn: unsigned 'pidx' is never less than zero.
net/8021q/vlan.c
50 static int vlan_group_prealloc_vid(struct vlan_group *vg,
51 __be16 vlan_proto, u16 vlan_id)
52 {
53 struct net_device **array;
54 unsigned int pidx, vidx;
^^^^^^^^^^^^^^^^^^^^^^^^
55 unsigned int size;
56
57 ASSERT_RTNL();
58
59 pidx = vlan_proto_idx(vlan_proto);
60 if (pidx < 0)
^^^^^^^^
This is unsigned.
61 return -EINVAL;
62
63 vidx = vlan_id / VLAN_GROUP_ARRAY_PART_LEN;
64 array = vg->vlan_devices_arrays[pidx][vidx];
65 if (array != NULL)
66 return 0;
regards,
dan carpenter
next reply other threads:[~2020-09-29 9:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-29 9:28 Dan Carpenter [this message]
2020-09-29 16:45 ` [bug report] net: vlan: Avoid using BUG() in vlan_proto_idx() Florian Fainelli
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=20200929092808.GA485919@mwanda \
--to=dan.carpenter@oracle.com \
--cc=kernel-janitors@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.