qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/2] exec: further refine address_space_get_iotlb_entry()
@ 2017-10-06 11:46 Maxime Coquelin
  2017-10-06 11:46 ` [Qemu-devel] [PATCH v2 1/2] exec: add page_mask for flatview_do_translate Maxime Coquelin
  2017-10-06 11:46 ` [Qemu-devel] [PATCH v2 2/2] exec: simplify address_space_get_iotlb_entry Maxime Coquelin
  0 siblings, 2 replies; 10+ messages in thread
From: Maxime Coquelin @ 2017-10-06 11:46 UTC (permalink / raw)
  To: peterx, pbonzini, mst, jasowang, qemu-devel; +Cc: qemu-stable, Maxime Coquelin

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>

This second revision of the rebase fixes the page_mask initial value,
that was mistakenly set to its complement. This bug could only be seen
when guest kernel doesn't enable iommu support, otherwise this initial
value is overwritten.

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.

Changes since rebase:
=====================
- Fix page_mask initial value
- Apply Michael's on second patch

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

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2017-10-09  8:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-06 11:46 [Qemu-devel] [PATCH v2 0/2] exec: further refine address_space_get_iotlb_entry() Maxime Coquelin
2017-10-06 11:46 ` [Qemu-devel] [PATCH v2 1/2] exec: add page_mask for flatview_do_translate Maxime Coquelin
2017-10-06 12:31   ` Paolo Bonzini
2017-10-06 12:46     ` Maxime Coquelin
2017-10-06 12:48       ` Paolo Bonzini
2017-10-06 13:03         ` Maxime Coquelin
2017-10-09  5:17           ` Peter Xu
2017-10-09  8:30             ` Maxime Coquelin
2017-10-09  8:47               ` Peter Xu
2017-10-06 11:46 ` [Qemu-devel] [PATCH v2 2/2] exec: simplify address_space_get_iotlb_entry Maxime Coquelin

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).