From: Jason Wang <jasowang@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>,
James Bottomley <James.Bottomley@hansenpartnership.com>,
kvm@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, Ralf Baechle <ralf@linux-mips.org>,
"open list:VIRTIO GPU DRIVER"
<virtualization@lists.linux-foundation.org>,
Christoph Hellwig <hch@infradead.org>,
Linux-MM <linux-mm@kvack.org>, Paul Burton <paul.burton@mips.com>,
Paul Mackerras <paulus@samba.org>,
James Hogan <jhogan@kernel.org>,
linux@armlinux.org.uk, linux-mips@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH net] vhost: flush dcache page when logging dirty pages
Date: Wed, 10 Apr 2019 15:53:52 +0800 [thread overview]
Message-ID: <b635592f-a2c5-5687-e634-6fcd4f5a1e36@redhat.com> (raw)
In-Reply-To: <20190409085607-mutt-send-email-mst@kernel.org>
On 2019/4/9 下午9:14, Michael S. Tsirkin wrote:
> On Tue, Apr 09, 2019 at 12:16:47PM +0800, Jason Wang wrote:
>> We set dirty bit through setting up kmaps and access them through
>> kernel virtual address, this may result alias in virtually tagged
>> caches that require a dcache flush afterwards.
>>
>> Cc: Christoph Hellwig <hch@infradead.org>
>> Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
>> Cc: Andrea Arcangeli <aarcange@redhat.com>
>> Fixes: 3a4d5c94e9593 ("vhost_net: a kernel-level virtio server")
> This is like saying "everyone with vhost needs this".
> In practice only might affect some architectures.
For the archs that does need dcache flushing, the function is just a nop.
> Which ones?
There're more than 10 archs that have ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
defined, just cc some maintainers of some more influenced ones.
> You want to Cc the relevant maintainers
> who understand this...
>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
> I am not sure this is a good idea.
> The region in question is supposed to be accessed
> by userspace at the same time, through atomic operations.
>
> How do we know userspace didn't access it just before?
get_user_pages() will do both flush_annon_page() to make sure the
userspace write is visible to kernel.
>
> Is that an issue at all given we use
> atomics for access? Documentation/core-api/cachetlb.rst does
> not mention atomics.
> Which architectures are affected?
> Assuming atomics actually do need a flush, then don't we need
> a flush in the other direction too? How are atomics
> supposed to work at all?
It's the issue of visibility, atomic operation is just one of the
possible operations. If we can finally makes the write visible to each
other, there will be no issue.
It looks to me we could still end up alias if userspace is accessing the
dirty log between get_user_pages_fast() and flush_dcache_page(). But the
flush_dcache_page() can guarantee what kernel wrote is visible to
userspace finally though some bits cleared by userspace might still
there. We may end up with more dirty pages noticed by userspace which
should be harmless.
>
>
> I really think we need new APIs along the lines of
> set_bit_to_user.
Can we simply do:
get_user()
set bit
put_user()
instead?
>
>> ---
>> drivers/vhost/vhost.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
>> index 351af88231ad..34a1cedbc5ba 100644
>> --- a/drivers/vhost/vhost.c
>> +++ b/drivers/vhost/vhost.c
>> @@ -1711,6 +1711,7 @@ static int set_bit_to_user(int nr, void __user *addr)
>> base = kmap_atomic(page);
>> set_bit(bit, base);
>> kunmap_atomic(base);
>> + flush_dcache_page(page);
>> set_page_dirty_lock(page);
>> put_page(page);
>> return 0;
> Ignoring the question of whether this actually helps, I doubt
> flush_dcache_page is appropriate here. Pls take a look at
> Documentation/core-api/cachetlb.rst as well as the actual
> implementation.
>
> I think you meant flush_kernel_dcache_page, and IIUC it must happen
> before kunmap, not after (which you still have the va locked).
Looks like you're right.
Thanks
>
>> --
>> 2.19.1
parent reply other threads:[~2019-04-10 7:55 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <20190409085607-mutt-send-email-mst@kernel.org>]
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=b635592f-a2c5-5687-e634-6fcd4f5a1e36@redhat.com \
--to=jasowang@redhat.com \
--cc=James.Bottomley@hansenpartnership.com \
--cc=aarcange@redhat.com \
--cc=hch@infradead.org \
--cc=jhogan@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux@armlinux.org.uk \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=paul.burton@mips.com \
--cc=paulus@samba.org \
--cc=ralf@linux-mips.org \
--cc=virtualization@lists.linux-foundation.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