Re: [PATCH] net: macb: Only disable NAPI on the actual error path

2020-06-15 Thread David Miller
From: Charles Keepax Date: Mon, 15 Jun 2020 14:18:54 +0100 > A recent change added a disable to NAPI into macb_open, this was > intended to only happen on the error path but accidentally applies > to all paths. This causes NAPI to be disabled on the success path, which > leads to the network to n

Re: [PATCH] net: macb: Only disable NAPI on the actual error path

2020-06-15 Thread LABBE Corentin
On Mon, Jun 15, 2020 at 02:18:54PM +0100, Charles Keepax wrote: > A recent change added a disable to NAPI into macb_open, this was > intended to only happen on the error path but accidentally applies > to all paths. This causes NAPI to be disabled on the success path, which > leads to the network t

[PATCH] net: macb: Only disable NAPI on the actual error path

2020-06-15 Thread Charles Keepax
A recent change added a disable to NAPI into macb_open, this was intended to only happen on the error path but accidentally applies to all paths. This causes NAPI to be disabled on the success path, which leads to the network to no longer functioning. Fixes: 014406babc1f ("net: cadence: macb: disa