From: "Michael S. Tsirkin" <mst@redhat.com>
To: Maxime Coquelin <maxime.coquelin@redhat.com>
Cc: peterx@redhat.com, pbonzini@redhat.com, jasowang@redhat.com,
qemu-devel@nongnu.org, qemu-stable@nongnu.org
Subject: Re: [Qemu-devel] [REBASED 0/2] exec: further refine address_space_get_iotlb_entry()
Date: Fri, 6 Oct 2017 07:04:21 +0300 [thread overview]
Message-ID: <20171006070355-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20171005171309.1250-1-maxime.coquelin@redhat.com>
On Thu, Oct 05, 2017 at 07:13:07PM +0200, Maxime Coquelin wrote:
> This series is a rebase of the first two patches of Peter's series
> improving address_space_get_iotlb_entry():
> Message-Id: <1496404254-17429-1-git-send-email-peterx@redhat.com>
>
> It is actually not only an improvement, but fixes a regression in the way
> IOTLB updates sent to the backends are generated.
> The regression is introduced by patch:
> a764040cc8 ("exec: abstract address_space_do_translate()")
>
> Prior to this patch IOTLB entries sent to the backend were aligned on the
> guest page boundaries (both addresses and size).
> For example, with the guest using 2MB pages:
> * Backend sends IOTLB miss request for iova = 0x112378fb4
> * QEMU replies with an IOTLB update with iova = 0x112200000, size = 0x200000
> * Bakend insert above entry in its cache and compute the translation
> In this case, if the backend needs later to translate 0x112378004, it will
> result in a cache it and no need to send another IOTLB miss.
>
> With this patch, the addr of the IOTLB entry will be the address requested
> via the IOTLB miss, the size is computed to cover the remaining of the guest
> page.
> The same example gives:
> * Backend sends IOTLB miss request for iova = 0x112378fb4
> * QEMU replies with an IOTLB update with iova = 112378fb4, size = 0x8704c
> * Bakend insert above entry in its cache and compute the translation
> In this case, if the backend needs later to translate 0x112378004, it will
> result in another cache miss:
> * Backend sends IOTLB miss request for iova = 0x112378004
> * QEMU replies with an IOTLB update with iova = 0x112378004, size = 0x87FFC
> * Bakend insert above entry in its cache and compute the translation
> It results in having much more IOTLB misses, and more importantly it pollutes
> the device IOTLB cache by multiplying the number of entries that moreover
> overlap.
>
> Note that current Kernel & User backends implementation do not merge contiguous
> and overlapping IOTLB entries at device IOTLB cache insertion.
>
> This series fixes this regression, so that IOTLB updates are aligned on
> guest's page boundaries.
Acked-by: Michael S. Tsirkin <mst@redhat.com>
> Peter Xu (2):
> exec: add page_mask for flatview_do_translate
> exec: simplify address_space_get_iotlb_entry
>
> exec.c | 75 +++++++++++++++++++++++++++++++++++++++++++-----------------------
> 1 file changed, 49 insertions(+), 26 deletions(-)
>
> --
> 2.13.6
prev parent reply other threads:[~2017-10-06 4:04 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-05 17:13 [Qemu-devel] [REBASED 0/2] exec: further refine address_space_get_iotlb_entry() Maxime Coquelin
2017-10-05 17:13 ` [Qemu-devel] [REBASED 1/2] exec: add page_mask for flatview_do_translate Maxime Coquelin
2017-10-06 10:28 ` Maxime Coquelin
2017-10-05 17:13 ` [Qemu-devel] [REBASED 2/2] exec: simplify address_space_get_iotlb_entry Maxime Coquelin
2017-10-06 4:04 ` Michael S. Tsirkin [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=20171006070355-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=jasowang@redhat.com \
--cc=maxime.coquelin@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.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;
as well as URLs for NNTP newsgroup(s).