Re: [PATCH v4 0/3] Fix several use after free bugs

2021-01-20 Thread Marc Kleine-Budde
On 1/20/21 12:41 PM, Vincent Mailhol wrote: > This series fix three bugs which all have the same root cause. > > When calling netif_rx(skb) and its variants, the skb will eventually > get consumed (or freed) and thus it is unsafe to dereference it after > the call returns. > > This remark especia

Re: [PATCH v4 0/3] Fix several use after free bugs

2021-01-20 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net.git (refs/heads/master): On Wed, 20 Jan 2021 20:41:34 +0900 you wrote: > This series fix three bugs which all have the same root cause. > > When calling netif_rx(skb) and its variants, the skb will eventually > get consumed (or freed) and thus it is u

[PATCH v4 0/3] Fix several use after free bugs

2021-01-20 Thread Vincent Mailhol
This series fix three bugs which all have the same root cause. When calling netif_rx(skb) and its variants, the skb will eventually get consumed (or freed) and thus it is unsafe to dereference it after the call returns. This remark especially applies to any variable with aliases the skb memory wh