diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-18 18:28:44 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-07-06 17:59:43 +0200 |
commit | 714f78c587ba628169b8ae6f91866c52fe6a799f (patch) | |
tree | 2121673648b80b571414ac4a0decf2515c26face /kvm-all.c | |
parent | d6ff5cbc1231a5aec997abf3a809c7013e60472f (diff) | |
download | qemu-714f78c587ba628169b8ae6f91866c52fe6a799f.tar.gz qemu-714f78c587ba628169b8ae6f91866c52fe6a799f.tar.bz2 qemu-714f78c587ba628169b8ae6f91866c52fe6a799f.zip |
kvm-all: remove useless typedef
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'kvm-all.c')
-rw-r--r-- | kvm-all.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; |