From: Jason Wang <jasowang@redhat.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, mst@redhat.com, yuehaibing@huawei.com,
xiyou.wangcong@gmail.com, weiyongjun1@huawei.com,
eric.dumazet@gmail.com
Subject: Re: [PATCH net V2] tuntap: synchronize through tfiles array instead of tun->numqueues
Date: Thu, 9 May 2019 11:16:13 +0800 [thread overview]
Message-ID: <7f45aef5-c55b-875f-3458-c34a9b90b564@redhat.com> (raw)
In-Reply-To: <20190508.103613.1782548019381525988.davem@davemloft.net>
On 2019/5/9 上午1:36, David Miller wrote:
> From: Jason Wang <jasowang@redhat.com>
> Date: Tue, 7 May 2019 00:03:36 -0400
>
>> @@ -1313,6 +1315,10 @@ static int tun_xdp_xmit(struct net_device *dev, int n,
>>
>> tfile = rcu_dereference(tun->tfiles[smp_processor_id() %
>> numqueues]);
>> + if (!tfile) {
>> + rcu_read_unlock();
>> + return -ENXIO; /* Caller will free/return all frames */
>> + }
>>
>> spin_lock(&tfile->tx_ring.producer_lock);
>> for (i = 0; i < n; i++) {
> The only way we can see a NULL here is if a detach happened in parallel,
> and if that happens we should retry the tfile[] indexing after resampling
> numqueues rather than dropping the packet.
Ok, will fix this in V3.
Thanks
prev parent reply other threads:[~2019-05-09 3:16 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-07 4:03 [PATCH net V2] tuntap: synchronize through tfiles array instead of tun->numqueues Jason Wang
2019-05-07 4:54 ` Cong Wang
2019-05-07 6:19 ` Jason Wang
2019-05-07 14:41 ` Cong Wang
2019-05-08 2:54 ` Jason Wang
2019-05-09 5:34 ` Cong Wang
2019-05-09 12:55 ` Jason Wang
2019-05-08 4:16 ` Michael S. Tsirkin
2019-05-08 4:30 ` Jason Wang
2019-05-08 17:36 ` David Miller
2019-05-09 3:16 ` Jason Wang [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=7f45aef5-c55b-875f-3458-c34a9b90b564@redhat.com \
--to=jasowang@redhat.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=weiyongjun1@huawei.com \
--cc=xiyou.wangcong@gmail.com \
--cc=yuehaibing@huawei.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;
as well as URLs for NNTP newsgroup(s).