From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo Tosatti Subject: [patch 4/6] qemu-kvm: use upstream kvm_flush_coalesced_mmio_buffer Date: Tue, 23 Mar 2010 13:53:37 -0300 Message-ID: <20100323165347.307341883@amt.cnet> References: <20100323165333.062022913@amt.cnet> Cc: Marcelo Tosatti To: kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:22409 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752624Ab0CWQzI (ORCPT ); Tue, 23 Mar 2010 12:55:08 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o2NGt766017792 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 23 Mar 2010 12:55:08 -0400 Content-Disposition: inline; filename=flush-coalesced-cleanup Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Marcelo Tosatti Index: qemu-kvm-cleanups/qemu-kvm.c =================================================================== --- qemu-kvm-cleanups.orig/qemu-kvm.c +++ qemu-kvm-cleanups/qemu-kvm.c @@ -935,19 +935,7 @@ int kvm_run(CPUState *env) post_kvm_run(kvm, env); -#if defined(KVM_CAP_COALESCED_MMIO) - if (kvm_state->coalesced_mmio) { - struct kvm_coalesced_mmio_ring *ring = - (void *) run + kvm_state->coalesced_mmio * PAGE_SIZE; - while (ring->first != ring->last) { - cpu_physical_memory_rw(ring->coalesced_mmio[ring->first].phys_addr, - &ring->coalesced_mmio[ring->first].data[0], - ring->coalesced_mmio[ring->first].len, 1); - smp_wmb(); - ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX; - } - } -#endif + kvm_flush_coalesced_mmio_buffer(); #if !defined(__s390__) if (r == -1) {