All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC PATCH] vpc: Ignore geometry for large images
@ 2015-02-09 16:09 Kevin Wolf
  2015-02-10 11:41 ` Peter Lieven
  0 siblings, 1 reply; 20+ messages in thread
From: Kevin Wolf @ 2015-02-09 16:09 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf, jcody, pl, stefanha

The CHS calculation as done per the VHD spec imposes a maximum image
size of ~127 GB. Real VHD images exist that are larger than that.

Apparently there are two separate non-standard ways to achieve this:
You could use more heads than the spec does - this is the option that
qemu-img create chooses.

However, other images exist where the geometry is set to the maximum
(65536/16/255), but the actual image size is larger. Until now, such
images are truncated at 127 GB when opening them with qemu.

This patch changes the vpc driver to ignore geometry in this case and
only trust the size field in the header.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---

Peter, I'm replacing some of your code in the hope that the new approach
is more generally valid. Of course, I haven't tested if your case with
disk2vhd is still covered. Could you check this, please?

 block/vpc.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/block/vpc.c b/block/vpc.c
index 46803b1..00409a6 100644
--- a/block/vpc.c
+++ b/block/vpc.c
@@ -215,12 +215,10 @@ static int vpc_open(BlockDriverState *bs, QDict *options, int flags,
     bs->total_sectors = (int64_t)
         be16_to_cpu(footer->cyls) * footer->heads * footer->secs_per_cyl;
 
-    /* images created with disk2vhd report a far higher virtual size
-     * than expected with the cyls * heads * sectors_per_cyl formula.
-     * use the footer->size instead if the image was created with
-     * disk2vhd.
-     */
-    if (!strncmp(footer->creator_app, "d2v", 4)) {
+    /* Images that have exactly the maximum geometry are probably bigger and
+     * would be truncated if we adhered to the geometry for them. Rely on
+     * footer->size for them. */
+    if (bs->total_sectors == 65535ULL * 16 * 255) {
         bs->total_sectors = be64_to_cpu(footer->size) / BDRV_SECTOR_SIZE;
     }
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2015-02-18 14:12 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-09 16:09 [Qemu-devel] [RFC PATCH] vpc: Ignore geometry for large images Kevin Wolf
2015-02-10 11:41 ` Peter Lieven
2015-02-10 13:34   ` Kevin Wolf
2015-02-10 13:42     ` Jeff Cody
2015-02-10 13:54       ` Kevin Wolf
2015-02-10 14:00         ` Peter Lieven
2015-02-10 14:53           ` Kevin Wolf
2015-02-12  9:23             ` Peter Lieven
2015-02-12  9:58               ` Kevin Wolf
2015-02-12 10:02                 ` Peter Lieven
2015-02-12 10:06                   ` Kevin Wolf
2015-02-12 10:09                     ` Peter Lieven
2015-02-12 10:23                       ` Kevin Wolf
2015-02-12 10:30                         ` Peter Lieven
2015-02-12 17:18                         ` Charles Arnold
2015-02-12 19:05                           ` Peter Lieven
2015-02-12 21:01                             ` Charles Arnold
2015-02-18 13:38                               ` Peter Lieven
2015-02-18 14:11                                 ` Eric Blake
2015-02-10 14:11         ` Jeff Cody

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.