Re: [PATCH net 00/10] rxrpc: Fix packet reception code

From: David Howells
Date: Mon Oct 08 2018 - 19:00:25 EST


Note that there's a conflict with net-next/master versus:

d2944b1c66a502ada8aa67f508cd29ecbf035892
rxrpc: Use rxrpc_free_skb() rather than rxrpc_lose_skb()

The issue is this change in net/rxrpc/input.c:

- rxrpc_lose_skb(skb, rxrpc_skb_rx_lost);
+ rxrpc_free_skb(skb, rxrpc_skb_rx_lost);
return;

The return statement returns 0 in one of the patches here and should do so in
the resulting merge.

David