summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-02-20 17:58:34 +0100
committerKevin Wolf <kwolf@redhat.com>2012-02-29 12:48:47 +0100
commit56116a14699b9d898a8d6581a58ec81e4abae6e6 (patch)
treea811c691e54baf4ddd2480afc26626ed63bcd8cb
parent423477e5568c75e5b6e468c561e75417d8ae9585 (diff)
downloadfocaccia-qemu-56116a14699b9d898a8d6581a58ec81e4abae6e6.tar.gz
focaccia-qemu-56116a14699b9d898a8d6581a58ec81e4abae6e6.zip
block: remove unused fields in BlockDriverState
sync_aiocb is unused since commit ce1a14d (Dynamically allocate AIO
Completion Blocks., 2006-08-07).

private is unused since commit 56a1493 (drive cleanup fixes., 2009-09-25).

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block_int.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/block_int.h b/block_int.h
index 04f4b836ca..25aff8013f 100644
--- a/block_int.h
+++ b/block_int.h
@@ -259,10 +259,6 @@ struct BlockDriverState {
     /* number of in-flight copy-on-read requests */
     unsigned int copy_on_read_in_flight;
 
-    /* async read/write emulation */
-
-    void *sync_aiocb;
-
     /* the time for latest disk I/O */
     int64_t slice_time;
     int64_t slice_start;
@@ -299,7 +295,6 @@ struct BlockDriverState {
     int64_t dirty_count;
     int in_use; /* users other than guest access, eg. block migration */
     QTAILQ_ENTRY(BlockDriverState) list;
-    void *private;
 
     QLIST_HEAD(, BdrvTrackedRequest) tracked_requests;