From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49434) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5cgf-0006vW-FH for qemu-devel@nongnu.org; Thu, 18 Jun 2015 12:29:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z5cge-0002J8-Cf for qemu-devel@nongnu.org; Thu, 18 Jun 2015 12:29:09 -0400 Received: from mail-wi0-x22d.google.com ([2a00:1450:400c:c05::22d]:38653) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5cge-0002Iu-5q for qemu-devel@nongnu.org; Thu, 18 Jun 2015 12:29:08 -0400 Received: by wibdq8 with SMTP id dq8so92340814wib.1 for ; Thu, 18 Jun 2015 09:29:07 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 18 Jun 2015 18:28:44 +0200 Message-Id: <1434644932-90017-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1434644648-89776-1-git-send-email-pbonzini@redhat.com> References: <1434644648-89776-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 04/12] kvm-all: remove useless typedef List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: lersek@redhat.com, mst@redhat.com Signed-off-by: Paolo Bonzini --- kvm-all.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kvm-all.c b/kvm-all.c index 195886d..abde1cf 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -69,8 +69,6 @@ typedef struct KVMSlot int flags; } KVMSlot; -typedef struct kvm_dirty_log KVMDirtyLog; - struct KVMState { AccelState parent_obj; @@ -393,7 +391,7 @@ static int kvm_physical_sync_dirty_bitmap(MemoryRegionSection *section) { KVMState *s = kvm_state; unsigned long size, allocated_size = 0; - KVMDirtyLog d = {}; + struct kvm_dirty_log d = {}; KVMSlot *mem; int ret = 0; hwaddr start_addr = section->offset_within_address_space; -- 1.8.3.1