Re: [PATCH net-next v3 0/9] do not leave dangling sk pointers in pf->create functions

2024-10-16 Thread patchwork-bot+bluetooth
Hello: This series was applied to bluetooth/bluetooth-next.git (master) by Jakub Kicinski : On Mon, 14 Oct 2024 16:37:59 +0100 you wrote: > Some protocol family create() implementations have an error path after > allocating the sk object and calling sock_init_data(). sock_init_data() > attaches t

Re: [PATCH net-next v3 0/9] do not leave dangling sk pointers in pf->create functions

2024-10-15 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Mon, 14 Oct 2024 16:37:59 +0100 you wrote: > Some protocol family create() implementations have an error path after > allocating the sk object and calling sock_init_data(). sock_init_data() > attaches the allocate

[PATCH net-next v3 0/9] do not leave dangling sk pointers in pf->create functions

2024-10-14 Thread Ignat Korchagin
Some protocol family create() implementations have an error path after allocating the sk object and calling sock_init_data(). sock_init_data() attaches the allocated sk object to the sock object, provided by the caller. If the create() implementation errors out after calling sock_init_data(), it r