mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
memory: Constify IOMMUTLBEvent in memory_region_notify_iommu_one()
@event access is read-only. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Peter Xu <peterx@redhat.com> Message-Id: <20240612132532.85928-2-philmd@linaro.org>
This commit is contained in:
parent
80ce0d5874
commit
ec40be993b
2 changed files with 3 additions and 3 deletions
|
@ -2006,9 +2006,9 @@ void memory_region_unregister_iommu_notifier(MemoryRegion *mr,
|
|||
}
|
||||
|
||||
void memory_region_notify_iommu_one(IOMMUNotifier *notifier,
|
||||
IOMMUTLBEvent *event)
|
||||
const IOMMUTLBEvent *event)
|
||||
{
|
||||
IOMMUTLBEntry *entry = &event->entry;
|
||||
const IOMMUTLBEntry *entry = &event->entry;
|
||||
hwaddr entry_end = entry->iova + entry->addr_mask;
|
||||
IOMMUTLBEntry tmp = *entry;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue