]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
memory: temporarily suppress the subregion collision warning
authorAnthony Liguori <aliguori@us.ibm.com>
Mon, 22 Aug 2011 16:14:56 +0000 (11:14 -0500)
committerAnthony Liguori <aliguori@us.ibm.com>
Mon, 22 Aug 2011 16:14:56 +0000 (11:14 -0500)
After 312b4234, the APIC and PCI devices are colliding with each other.  This
is harmless in practice because the APIC accesses are special cased and never
make there way onto the bus.

Avi is working on a proper fix, but until that's ready, avoid printing the
warning.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
memory.c

index 30ba4a4b37ebe0cced9db4064c9a60e3a5d5a4fd..531b57533a0900c53073a9c9c5eca00842a6d940 100644 (file)
--- a/memory.c
+++ b/memory.c
@@ -1191,11 +1191,13 @@ static void memory_region_add_subregion_common(MemoryRegion *mr,
             || offset + subregion->size <= other->offset) {
             continue;
         }
+#if 0
         printf("warning: subregion collision %llx/%llx vs %llx/%llx\n",
                (unsigned long long)offset,
                (unsigned long long)subregion->size,
                (unsigned long long)other->offset,
                (unsigned long long)other->size);
+#endif
     }
     QTAILQ_FOREACH(other, &mr->subregions, subregions_link) {
         if (subregion->priority >= other->priority) {