Re: [PATCH net v2] __netif_receive_skb_core: pass skb by reference

2020-05-19 Thread David Miller
From: Boris Sukholitko Date: Tue, 19 May 2020 10:32:37 +0300 > __netif_receive_skb_core may change the skb pointer passed into it (e.g. > in rx_handler). The original skb may be freed as a result of this > operation. > > The callers of __netif_receive_skb_core may further process original skb >

Re: [PATCH net v2] __netif_receive_skb_core: pass skb by reference

2020-05-19 Thread Edward Cree
On 19/05/2020 08:32, Boris Sukholitko wrote: > __netif_receive_skb_core may change the skb pointer passed into it (e.g. > in rx_handler). The original skb may be freed as a result of this > operation. > > The callers of __netif_receive_skb_core may further process original skb > by using pt_prev po