On Thu, 5 Nov 2020 16:12:18 -0800 Shannon Nelson wrote:
> + work = kzalloc(sizeof(*work), GFP_ATOMIC);
> + if (!work) {
> + netdev_err(lif->netdev, "%s OOM\n", __func__);
> + return;
> + }Can you drop this message (can be a follow up, since you're just moving it). AFAICT ATOMIC doesn't imply NOWARN so the message is redundant no?
