qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Auger Eric <eric.auger@redhat.com>
To: Peter Xu <peterx@redhat.com>
Cc: peter.maydell@linaro.org, mst@redhat.com, qemu-devel@nongnu.org,
	armbru@redhat.com, qemu-arm@nongnu.org, jean-philippe@linaro.org,
	bbhushan2@marvell.com, eric.auger.pro@gmail.com
Subject: Re: [PATCH 3/5] virtio-iommu: Handle reserved regions in the translation process
Date: Fri, 8 May 2020 08:34:09 +0200	[thread overview]
Message-ID: <b10251bc-e63f-a593-1a1b-5ac7b7c573ab@redhat.com> (raw)
In-Reply-To: <20200507194736.GM228260@xz-x1>

Hi Peter,

On 5/7/20 9:47 PM, Peter Xu wrote:
> Hi, Eric,
> 
> On Thu, May 07, 2020 at 04:31:59PM +0200, Eric Auger wrote:
>> @@ -640,6 +641,24 @@ static IOMMUTLBEntry virtio_iommu_translate(IOMMUMemoryRegion *mr, hwaddr addr,
>>          goto unlock;
>>      }
>>  
>> +    for (i = 0; i < s->nb_reserved_regions; i++) {
>> +        if (interval.low >= s->reserved_regions[i].low &&
>> +            interval.low <= s->reserved_regions[i].high) {
> 
> Should this be s/low/high/?
I meant addr >= s->reserved_regions[i].low && addr <=
s->reserved_regions[i].high

We only compare a single iova against reserved range boundaries and
boundaries are inclusive
> 
> For this case (high==low+1) I guess maybe it's also easier to use "addr >= low
> && addr < high".
Yes using addr directly is definitively more readable ;-)

Thanks

Eric
> 
> Thanks,
> 
>> +            switch (s->reserved_regions[i].type) {
>> +            case VIRTIO_IOMMU_RESV_MEM_T_MSI:
>> +                entry.perm = flag;
>> +                break;
>> +            case VIRTIO_IOMMU_RESV_MEM_T_RESERVED:
>> +            default:
>> +                virtio_iommu_report_fault(s, VIRTIO_IOMMU_FAULT_R_MAPPING,
>> +                                          VIRTIO_IOMMU_FAULT_F_ADDRESS,
>> +                                          sid, addr);
>> +                break;
>> +            }
>> +            goto unlock;
>> +        }
>> +    }
>> +
>>      if (!ep->domain) {
>>          if (!bypass_allowed) {
>>              error_report_once("%s %02x:%02x.%01x not attached to any domain",
>> -- 
>> 2.20.1
>>
> 



  reply	other threads:[~2020-05-08  6:35 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-07 14:31 [PATCH 0/5] VIRTIO-IOMMU probe request support and MSI bypass on ARM Eric Auger
2020-05-07 14:31 ` [PATCH 1/5] qdev: Introduce DEFINE_PROP_RESERVED_REGION Eric Auger
2020-05-07 14:31 ` [PATCH 2/5] virtio-iommu: Implement RESV_MEM probe request Eric Auger
2020-05-07 19:40   ` Peter Xu
2020-05-08  6:23     ` Auger Eric
2020-05-08  9:26   ` Jean-Philippe Brucker
2020-05-08 14:02     ` Auger Eric
2020-05-07 14:31 ` [PATCH 3/5] virtio-iommu: Handle reserved regions in the translation process Eric Auger
2020-05-07 19:47   ` Peter Xu
2020-05-08  6:34     ` Auger Eric [this message]
2020-05-07 14:32 ` [PATCH 4/5] virtio-iommu-pci: Add array of Interval properties Eric Auger
2020-05-07 14:32 ` [PATCH 5/5] hw/arm/virt: Let the virtio-iommu bypass MSIs Eric Auger
2020-05-08  8:21   ` Jean-Philippe Brucker
2020-05-08  8:40     ` 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=b10251bc-e63f-a593-1a1b-5ac7b7c573ab@redhat.com \
    --to=eric.auger@redhat.com \
    --cc=armbru@redhat.com \
    --cc=bbhushan2@marvell.com \
    --cc=eric.auger.pro@gmail.com \
    --cc=jean-philippe@linaro.org \
    --cc=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=peterx@redhat.com \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@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).