|
@@ -20,6 +20,7 @@
|
|
|
#include "qemu/osdep.h"
|
|
|
#include "qemu/log.h"
|
|
|
#include "qemu/iov.h"
|
|
|
+#include "exec/target_page.h"
|
|
|
#include "hw/qdev-properties.h"
|
|
|
#include "hw/virtio/virtio.h"
|
|
|
#include "sysemu/kvm.h"
|
|
@@ -1164,7 +1165,7 @@ static void virtio_iommu_device_realize(DeviceState *dev, Error **errp)
|
|
|
* in vfio realize
|
|
|
*/
|
|
|
s->config.bypass = s->boot_bypass;
|
|
|
- s->config.page_size_mask = TARGET_PAGE_MASK;
|
|
|
+ s->config.page_size_mask = qemu_target_page_mask();
|
|
|
s->config.input_range.end = UINT64_MAX;
|
|
|
s->config.domain_range.end = UINT32_MAX;
|
|
|
s->config.probe_size = VIOMMU_PROBE_SIZE;
|