aboutsummaryrefslogtreecommitdiff
path: root/hw/vfio
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2019-02-27 19:51:46 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2019-03-12 10:50:59 +1100
commit3cdd801b0b65ec3fbb9280a2fa22976ad96645b0 (patch)
tree8a0033c0240ab8d93d27da262a8bef9f821fd308 /hw/vfio
parent16107998761c1ce97d5c1d56a3e7092acb27d8d1 (diff)
downloadqemu-3cdd801b0b65ec3fbb9280a2fa22976ad96645b0.zip
qemu-3cdd801b0b65ec3fbb9280a2fa22976ad96645b0.tar.gz
qemu-3cdd801b0b65ec3fbb9280a2fa22976ad96645b0.tar.bz2
vfio/spapr: Rename local systempagesize variable
The "systempagesize" name suggests that it is the host system page size while it is the smallest page size of memory backing the guest RAM so let's rename it to stop confusion. This should cause no behavioral change. Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Message-Id: <20190227085149.38596-4-aik@ozlabs.ru> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/vfio')
-rw-r--r--hw/vfio/spapr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/vfio/spapr.c b/hw/vfio/spapr.c
index 88437a7..57fe758 100644
--- a/hw/vfio/spapr.c
+++ b/hw/vfio/spapr.c
@@ -148,14 +148,14 @@ int vfio_spapr_create_window(VFIOContainer *container,
uint64_t pagesize = memory_region_iommu_get_min_page_size(iommu_mr);
unsigned entries, bits_total, bits_per_level, max_levels;
struct vfio_iommu_spapr_tce_create create = { .argsz = sizeof(create) };
- long systempagesize = qemu_getrampagesize();
+ long rampagesize = qemu_getrampagesize();
/*
* The host might not support the guest supported IOMMU page size,
* so we will use smaller physical IOMMU pages to back them.
*/
- if (pagesize > systempagesize) {
- pagesize = systempagesize;
+ if (pagesize > rampagesize) {
+ pagesize = rampagesize;
}
pagesize = 1ULL << (63 - clz64(container->pgsizes &
(pagesize | (pagesize - 1))));