net/packet: annotate data race in packet_sendmsg()
authorEric Dumazet <edumazet@google.com>
Thu, 10 Jun 2021 16:00:12 +0000 (09:00 -0700)
committerSasha Levin <sashal@kernel.org>
Wed, 30 Jun 2021 12:46:59 +0000 (08:46 -0400)
commitad91e20dfffdbc0b6d80bbbc2150671fabbf27a5
treea76ad4f5e4206b9d683b00f3dbed9d679dd3ab38
parent231504bdfa03ce79ab34a25fccd484156481d4c5
net/packet: annotate data race in packet_sendmsg()

[ Upstream commit d1b5bee4c8be01585033be9b3a8878789285285f ]

There is a known race in packet_sendmsg(), addressed
in commit 32d3182cd2cd ("net/packet: fix race in tpacket_snd()")

Now we have data_race(), we can use it to avoid a future KCSAN warning,
as syzbot loves stressing af_packet sockets :)

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/packet/af_packet.c