Re: [Patch net] vsock: fix recursive ->recvmsg calls

2024-08-15 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Paolo Abeni : On Sun, 11 Aug 2024 19:21:53 -0700 you wrote: > From: Cong Wang > > After a vsock socket has been added to a BPF sockmap, its prot->recvmsg > has been replaced with vsock_bpf_recvmsg(). Thus the following > recursiion could

Re: [Patch net] vsock: fix recursive ->recvmsg calls

2024-08-12 Thread Michael S. Tsirkin
On Sun, Aug 11, 2024 at 07:21:53PM -0700, Cong Wang wrote: > From: Cong Wang > > After a vsock socket has been added to a BPF sockmap, its prot->recvmsg > has been replaced with vsock_bpf_recvmsg(). Thus the following > recursiion could happen: > > vsock_bpf_recvmsg() > -> __vsock_recvmsg() >

[Patch net] vsock: fix recursive ->recvmsg calls

2024-08-11 Thread Cong Wang
From: Cong Wang After a vsock socket has been added to a BPF sockmap, its prot->recvmsg has been replaced with vsock_bpf_recvmsg(). Thus the following recursiion could happen: vsock_bpf_recvmsg() -> __vsock_recvmsg() -> vsock_connectible_recvmsg() -> prot->recvmsg() -> vsock_bpf_recvms