From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38500) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrAD7-0007PI-43 for qemu-devel@nongnu.org; Tue, 17 Jul 2012 12:01:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SrACx-0005pO-Ks for qemu-devel@nongnu.org; Tue, 17 Jul 2012 12:01:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47021) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrACw-0005p7-UM for qemu-devel@nongnu.org; Tue, 17 Jul 2012 12:01:07 -0400 From: Kevin Wolf Date: Tue, 17 Jul 2012 18:00:12 +0200 Message-Id: <1342540838-9027-16-git-send-email-kwolf@redhat.com> In-Reply-To: <1342540838-9027-1-git-send-email-kwolf@redhat.com> References: <1342540838-9027-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 15/41] blockdev: Save geometry in DriveInfo List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Markus Armbruster In preparation of purging it from the block layer, which will happen later in this series. Signed-off-by: Markus Armbruster Signed-off-by: Kevin Wolf --- blockdev.c | 4 ++++ blockdev.h | 1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/blockdev.c b/blockdev.c index a85a429..161985b 100644 --- a/blockdev.c +++ b/blockdev.c @@ -530,6 +530,10 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) dinfo->type = type; dinfo->bus = bus_id; dinfo->unit = unit_id; + dinfo->cyls = cyls; + dinfo->heads = heads; + dinfo->secs = secs; + dinfo->trans = translation; dinfo->opts = opts; dinfo->refcount = 1; if (serial) { diff --git a/blockdev.h b/blockdev.h index 260e16b..9c29948 100644 --- a/blockdev.h +++ b/blockdev.h @@ -35,6 +35,7 @@ struct DriveInfo { int unit; int auto_del; /* see blockdev_mark_auto_del() */ int media_cd; + int cyls, heads, secs, trans; QemuOpts *opts; char serial[BLOCK_SERIAL_STRLEN + 1]; QTAILQ_ENTRY(DriveInfo) next; -- 1.7.6.5