From: Shay Agroskin <shayagr@amazon.com>
To: Wang Hai <wanghai38@huawei.com>
Cc: <joe@perches.com>, <gtzalik@amazon.com>, <saeedb@amazon.com>,
<zorik@amazon.com>, <davem@davemloft.net>, <kuba@kernel.org>,
<sameehj@amazon.com>, <netdev@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net-next v3] net: ena: Fix using plain integer as NULL pointer in ena_init_napi_in_range
Date: Mon, 20 Jul 2020 12:23:20 +0300 [thread overview]
Message-ID: <pj41zlimeibkvr.fsf@ua97a68a4e7db56.ant.amazon.com> (raw)
In-Reply-To: <20200720075614.35676-1-wanghai38@huawei.com>
Wang Hai <wanghai38@huawei.com> writes:
> Fix sparse build warning:
>
> drivers/net/ethernet/amazon/ena/ena_netdev.c:2193:34: warning:
> Using plain integer as NULL pointer
>
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Wang Hai <wanghai38@huawei.com>
> Suggested-by: Joe Perches <joe@perches.com>
> Acked-by: Shay Agroskin <shayagr@amazon.com>
> ---
> v1->v2:
> Improve code readability based on Joe Perches's suggestion
> v2->v3:
> Simplify code based on Joe Perches's suggestion
> drivers/net/ethernet/amazon/ena/ena_netdev.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/amazon/ena/ena_netdev.c
> b/drivers/net/ethernet/amazon/ena/ena_netdev.c
> index 91be3ffa1c5c..3eb63b12dd68 100644
> --- a/drivers/net/ethernet/amazon/ena/ena_netdev.c
> +++ b/drivers/net/ethernet/amazon/ena/ena_netdev.c
> @@ -2190,14 +2190,13 @@ static void ena_del_napi_in_range(struct
> ena_adapter *adapter,
> static void ena_init_napi_in_range(struct ena_adapter *adapter,
> int first_index, int count)
> {
> - struct ena_napi *napi = {0};
> int i;
>
> for (i = first_index; i < first_index + count; i++) {
> - napi = &adapter->ena_napi[i];
> + struct ena_napi *napi = &adapter->ena_napi[i];
>
> netif_napi_add(adapter->netdev,
> - &adapter->ena_napi[i].napi,
> + &napi->napi,
> ENA_IS_XDP_INDEX(adapter, i) ?
> ena_xdp_io_poll : ena_io_poll,
> ENA_NAPI_BUDGET);
Acked-by: Shay Agroskin <shayagr@amazon.com>
Thanks a lot for your work
prev parent reply other threads:[~2020-07-20 9:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-20 7:56 Wang Hai
2020-07-20 9:23 ` Shay Agroskin [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=pj41zlimeibkvr.fsf@ua97a68a4e7db56.ant.amazon.com \
--to=shayagr@amazon.com \
--cc=davem@davemloft.net \
--cc=gtzalik@amazon.com \
--cc=joe@perches.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=saeedb@amazon.com \
--cc=sameehj@amazon.com \
--cc=wanghai38@huawei.com \
--cc=zorik@amazon.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®