[PATCH 3/3] qemu_domain.c: remove qemuDomainMemoryDeviceAlignSize()

Daniel Henrique Barboza danielhb413 at gmail.com
Sat Feb 29 17:51:14 UTC 2020


Previous patch removed all the callers of the function.

Signed-off-by: Daniel Henrique Barboza <danielhb413 at gmail.com>
---
 src/qemu/qemu_domain.c | 16 ----------------
 src/qemu/qemu_domain.h |  2 --
 2 files changed, 18 deletions(-)

diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
index 27f400005e..1c22bba052 100644
--- a/src/qemu/qemu_domain.c
+++ b/src/qemu/qemu_domain.c
@@ -12386,22 +12386,6 @@ qemuDomainAlignMemorySizes(virDomainDefPtr def)
 }
 
 
-/**
- * qemuDomainMemoryDeviceAlignSize:
- * @mem: memory device definition object
- *
- * Aligns the size of the memory module as qemu enforces it. The size is updated
- * inplace. Default rounding is now to 1 MiB (qemu requires rouding to page,
- * size so this should be safe).
- */
-void
-qemuDomainMemoryDeviceAlignSize(virDomainDefPtr def,
-                                virDomainMemoryDefPtr mem)
-{
-    mem->size = VIR_ROUND_UP(mem->size, qemuDomainGetMemorySizeAlignment(def));
-}
-
-
 /**
  * qemuDomainGetMonitor:
  * @vm: domain object
diff --git a/src/qemu/qemu_domain.h b/src/qemu/qemu_domain.h
index d27d7e78d9..efd65be779 100644
--- a/src/qemu/qemu_domain.h
+++ b/src/qemu/qemu_domain.h
@@ -956,8 +956,6 @@ bool qemuDomainHasBlockjob(virDomainObjPtr vm, bool copy_only)
     ATTRIBUTE_NONNULL(1);
 
 int qemuDomainAlignMemorySizes(virDomainDefPtr def);
-void qemuDomainMemoryDeviceAlignSize(virDomainDefPtr def,
-                                     virDomainMemoryDefPtr mem);
 
 virDomainChrDefPtr qemuFindAgentConfig(virDomainDefPtr def);
 
-- 
2.24.1





More information about the libvir-list mailing list