]> git.baikalelectronics.ru Git - kernel.git/commit
net: atlantic: fix "frag[0] not initialized"
authorGrant Grundler <grundler@chromium.org>
Tue, 10 May 2022 02:28:23 +0000 (19:28 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 May 2022 07:57:36 +0000 (09:57 +0200)
commitb30e803feddd947455c89bb95f23b67ad6c5b743
tree55bb981b0a186a4952d2a4e28c4086cb9dc9ea65
parent60c1b888554f9bfc9900a83ce36e495720820837
net: atlantic: fix "frag[0] not initialized"

[ Upstream commit 866e823cb6225382db0bf759960fc4a6d4b67877 ]

In aq_ring_rx_clean(), if buff->is_eop is not set AND
buff->len < AQ_CFG_RX_HDR_SIZE, then hdr_len remains equal to
buff->len and skb_add_rx_frag(xxx, *0*, ...) is not called.

The loop following this code starts calling skb_add_rx_frag() starting
with i=1 and thus frag[0] is never initialized. Since i is initialized
to zero at the top of the primary loop, we can just reference and
post-increment i instead of hardcoding the 0 when calling
skb_add_rx_frag() the first time.

Reported-by: Aashay Shringarpure <aashay@google.com>
Reported-by: Yi Chou <yich@google.com>
Reported-by: Shervin Oloumi <enlightened@google.com>
Signed-off-by: Grant Grundler <grundler@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/aquantia/atlantic/aq_ring.c