From: Auger Eric <eric.auger@redhat.com>
To: Peter Xu <peterx@redhat.com>
Cc: peter.maydell@linaro.org, jean-philippe@linaro.org,
jasowang@redhat.com, qemu-devel@nongnu.org, vivek.gautam@arm.com,
qemu-arm@nongnu.org, eric.auger.pro@gmail.com
Subject: Re: [PATCH] virtio-iommu: Handle non power of 2 range invalidations
Date: Thu, 18 Feb 2021 18:18:22 +0100 [thread overview]
Message-ID: <b2781e6b-d3db-8d89-4ae2-f81f12251793@redhat.com> (raw)
In-Reply-To: <20210218164203.GA108961@xz-x1>
Hi Peter,
On 2/18/21 5:42 PM, Peter Xu wrote:
> Eric,
>
> On Thu, Feb 18, 2021 at 03:16:50PM +0100, Eric Auger wrote:
>> @@ -164,12 +166,27 @@ static void virtio_iommu_notify_unmap(IOMMUMemoryRegion *mr, hwaddr virt_start,
>>
>> event.type = IOMMU_NOTIFIER_UNMAP;
>> event.entry.target_as = &address_space_memory;
>> - event.entry.addr_mask = virt_end - virt_start;
>> - event.entry.iova = virt_start;
>> event.entry.perm = IOMMU_NONE;
>> event.entry.translated_addr = 0;
>> + event.entry.addr_mask = mask;
>> + event.entry.iova = virt_start;
>>
>> - memory_region_notify_iommu(mr, 0, event);
>> + if (mask == UINT64_MAX) {
>> + memory_region_notify_iommu(mr, 0, event);
>> + }
>> +
>> + size = mask + 1;
>> +
>> + while (size) {
>> + uint8_t highest_bit = 64 - clz64(size) - 1;
>
> I'm not sure fetching highest bit would work right. E.g., with start=0x11000
> and size=0x11000 (then we need to unmap 0x11000-0x22000), current code will
> first try to invalidate range (0x11000, 0x10000), that seems still invalid
> since 0x11000 is not aligned to 0x10000 page mask.
Hum I thought aligning the size was sufficient. Where is it checked exactly?
>
> I think the same trick in vtd_address_space_unmap() would work. If you agree,
> maybe we can generalize that get_naturally_aligned_size() out, but maybe with a
> better name as a helper?
Yep I need to read the code again ;-)
Thank you!
Eric
>
> Thanks,
>
next prev parent reply other threads:[~2021-02-18 17:19 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-18 14:16 [PATCH] virtio-iommu: Handle non power of 2 range invalidations Eric Auger
2021-02-18 16:42 ` Peter Xu
2021-02-18 17:18 ` Auger Eric [this message]
2021-02-18 17:48 ` Peter Xu
2021-02-18 18:06 ` Auger Eric
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=b2781e6b-d3db-8d89-4ae2-f81f12251793@redhat.com \
--to=eric.auger@redhat.com \
--cc=eric.auger.pro@gmail.com \
--cc=jasowang@redhat.com \
--cc=jean-philippe@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=peterx@redhat.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vivek.gautam@arm.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).