From: Eric Dumazet <eric.dumazet@gmail.com>
To: David McKay <mckay.david@gmail.com>,
Linux Networking <netdev@vger.kernel.org>
Subject: Re: [PATCH] net: core: dev: Initialise napi state correctly
Date: Wed, 23 Jan 2019 11:00:01 -0800 [thread overview]
Message-ID: <4342bd80-9872-ceff-4660-de710b7f7dbb@gmail.com> (raw)
In-Reply-To: <CAOhhRxvVAts0N=ptDSaL5FoY_Uo2UseH5Zow2Q2nOYO6ujAS0Q@mail.gmail.com>
On 01/23/2019 10:49 AM, David McKay wrote:
> On Fri, 18 Jan 2019 at 17:15, Eric Dumazet <eric.dumazet@gmail.com> wrote:
>>
>>
>>
>> On 01/18/2019 04:46 AM, Dave McKay wrote:
>>> The state member of the napi_struct is not initialised correctly, it
>>> sets the SCHED bit without initialising the state to zero first. This
>>> results in peculiar behaviour if the original napi_struct didn't come
>>> from a zero initialised region to start with.
>>>
>>> This patch just sets it directly using the appropriate bitfield
>>> constant.
>>>
>>> Signed-off-by: Dave McKay <mckay.david@gmail.com>
>>> ---
>>> net/core/dev.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/net/core/dev.c b/net/core/dev.c
>>> index 82f20022259d..250f97bf1973 100644
>>> --- a/net/core/dev.c
>>> +++ b/net/core/dev.c
>>> @@ -6276,7 +6276,7 @@ void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
>>> #ifdef CONFIG_NETPOLL
>>> napi->poll_owner = -1;
>>> #endif
>>> - set_bit(NAPI_STATE_SCHED, &napi->state);
>>> + napi->state = NAPIF_STATE_SCHED;
>>> napi_hash_add(napi);
>>> }
>>> EXPORT_SYMBOL(netif_napi_add);
>>>
>>
>> I am curious, which driver has exhibit any issue with current code ?
>>
>
> gro_cell_init() maybe?
>
Perfect example of something that would break with your patch :/
alloc_percpu() clears all memory.
gro_cells_init() does :
set_bit(NAPI_STATE_NO_BUSY_POLL, &cell->napi.state);
netif_napi_add(dev, &cell->napi, gro_cell_poll, ...)
So clearing napi->state in netif_napi_add() would remove the NAPI_STATE_NO_BUSY_POLL setting.
next prev parent reply other threads:[~2019-01-23 19:00 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-18 12:46 [PATCH] net: core: dev: Initialise napi state correctly Dave McKay
2019-01-18 17:14 ` Eric Dumazet
2019-01-18 18:52 ` David McKay
[not found] ` <CAOhhRxvVAts0N=ptDSaL5FoY_Uo2UseH5Zow2Q2nOYO6ujAS0Q@mail.gmail.com>
2019-01-23 19:00 ` Eric Dumazet [this message]
2019-01-22 22:38 ` David Miller
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=4342bd80-9872-ceff-4660-de710b7f7dbb@gmail.com \
--to=eric.dumazet@gmail.com \
--cc=mckay.david@gmail.com \
--cc=netdev@vger.kernel.org \
/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