]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
sock_map: Add a cond_resched() in sock_hash_free()
authorEric Dumazet <edumazet@google.com>
Fri, 6 Sep 2024 15:44:49 +0000 (15:44 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Oct 2024 14:28:58 +0000 (16:28 +0200)
commit80bd490ac0a3b662a489e17d8eedeb1e905a3d40
treebcfe07e5f47171037f5fde5c093193bcb2c547e2
parent7eebbdde4b947b41ee421478ebef04794a6111c5
sock_map: Add a cond_resched() in sock_hash_free()

[ Upstream commit b1339be951ad31947ae19bc25cb08769bf255100 ]

Several syzbot soft lockup reports all have in common sock_hash_free()

If a map with a large number of buckets is destroyed, we need to yield
the cpu when needed.

Fixes: 75e68e5bf2c7 ("bpf, sockhash: Synchronize delete from bucket list on map free")
Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Martin KaFai Lau <martin.lau@kernel.org>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Link: https://lore.kernel.org/bpf/20240906154449.3742932-1-edumazet@google.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/core/sock_map.c