From: Philipp Hahn <hahn@univention.de>
To: Xiaodong Gong <gordongong0350@gmail.com>, kwolf@redhat.com
Cc: qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2] Support vhd type VHD_DIFFERENCING
Date: Tue, 09 Sep 2014 11:00:12 +0200 [thread overview]
Message-ID: <540EC19C.6070809@univention.de> (raw)
In-Reply-To: <1410187299-8463-1-git-send-email-gordon@localhost.localdomain>
Hello,
I'm no qemu-devel expert, but as I tried myself at adding VHD_DIFF
support some time ago, here are some comments:
On 08.09.2014 16:41, Xiaodong Gong wrote:
> diff --git a/block/vpc.c b/block/vpc.c
...
> + /* Read backing file location from dyn header table */
> + if (dyndisk_header->parent_name[0] || dyndisk_header->parent_name[1]) {
> + for (i = 0; i < PARENT_LOCATOR_NUM; i++) {
...
> + if (MACX == platform) {
Most images I have luckily have the MACX entry, but from reading the
spec I think this is not guaranteed. What about the other more
Windows-agnostic types?
There's also dyndisk_header->parent_name (which uses UTF-16-BE).
> + ret = bdrv_pread(bs->file, data_offset + PARENT_PREFIX_LEN,
> + bs->backing_file, data_length - PARENT_PREFIX_LEN);
You assume that the system locale is UTF-8 (which MACX uses as the
encoding). I don't know how QEMU handles that internally, but AFAIK for
correctness you would need to convert that from UTF-8 to $LC_CTYPE.
Using iconv() is currently is not possible, since it requires calling
setlocale() to be called from all main programs using that code.
> static int vpc_write(BlockDriverState *bs, int64_t sector_num,
...
> + bool isdiff = true;
...
> + if (true == isdiff) {
if (isdiff) {
is enough - no need to add any confusing ==true IMHO.
Other notes:
- Using backing files requires CONFIG_UUID. I once created a VHD file
using qemu-img, which set UUID:=0. This lead to Xen handling the image
as a raw-file instead of a vhd file instead.
Otherwise thank you for working on VHD support.
Sincerely
Philipp
prev parent reply other threads:[~2014-09-09 9:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-08 14:41 [Qemu-devel] [PATCH v2] Support vhd type VHD_DIFFERENCING Xiaodong Gong
2014-09-08 16:15 ` Kevin Wolf
2014-09-09 9:00 ` Philipp Hahn [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=540EC19C.6070809@univention.de \
--to=hahn@univention.de \
--cc=gordongong0350@gmail.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).