From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo Tosatti Subject: [patch 5/6] qemu-kvm: remove unused qemu_kvm_get_dirty_pages Date: Tue, 23 Mar 2010 13:53:38 -0300 Message-ID: <20100323165347.494060332@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]:48412 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752122Ab0CWQzH (ORCPT ); Tue, 23 Mar 2010 12:55:07 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o2NGt5DW020946 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 23 Mar 2010 12:55:06 -0400 Content-Disposition: inline; filename=qemukvm-remove-get-dirty-pages 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 @@ -2349,11 +2349,6 @@ int kvm_set_irq(int irq, int level, int #endif -int qemu_kvm_get_dirty_pages(unsigned long phys_addr, void *buf) -{ - return kvm_get_dirty_pages(kvm_context, phys_addr, buf); -} - void kvm_mutex_unlock(void) { assert(!cpu_single_env); Index: qemu-kvm-cleanups/qemu-kvm.h =================================================================== --- qemu-kvm-cleanups.orig/qemu-kvm.h +++ qemu-kvm-cleanups/qemu-kvm.h @@ -874,8 +874,6 @@ void qemu_kvm_notify_work(void); void kvm_tpr_access_report(CPUState *env, uint64_t rip, int is_write); -int qemu_kvm_get_dirty_pages(unsigned long phys_addr, void *buf); - int kvm_arch_init_irq_routing(void); int kvm_mmio_read(void *opaque, uint64_t addr, uint8_t * data, int len);