[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20170204134418.6974d7ad@xeon-e3>
Date: Sat, 4 Feb 2017 13:44:18 -0800
From: Stephen Hemminger <stephen@...workplumber.org>
To: Eric Dumazet <edumazet@...gle.com>
Cc: "David S . Miller" <davem@...emloft.net>,
netdev <netdev@...r.kernel.org>,
Eric Dumazet <eric.dumazet@...il.com>
Subject: Re: [PATCH net-next 7/9] skge: use napi_complete_done()
On Sat, 4 Feb 2017 10:20:36 -0800
Eric Dumazet <edumazet@...gle.com> wrote:
>
> -static int skge_poll(struct napi_struct *napi, int to_do)
> +static int skge_poll(struct napi_struct *napi, int budget)
Ok, but renaming parameter is not really necessary.
> - if (work_done < to_do) {
> + if ((work_done < budget) && napi_complete_done(napi, work_done)) {
> unsigned long flags;
Parenthesis around work_done < budget are unnecessary.
Other than that it looks fine.
Powered by blists - more mailing lists