[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 1/9] block: vhdx - minor comments and typo correc
From: |
Jeff Cody |
Subject: |
[Qemu-devel] [PATCH v3 1/9] block: vhdx - minor comments and typo correction. |
Date: |
Wed, 7 Aug 2013 21:32:29 -0400 |
Just a couple of minor comments to help note where allocated
buffers are freed, and a typo fix.
Signed-off-by: Jeff Cody <address@hidden>
---
block/vhdx.c | 6 ++++--
block/vhdx.h | 6 +++---
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/block/vhdx.c b/block/vhdx.c
index e9704b1..56bc88e 100644
--- a/block/vhdx.c
+++ b/block/vhdx.c
@@ -6,9 +6,9 @@
* Authors:
* Jeff Cody <address@hidden>
*
- * This is based on the "VHDX Format Specification v0.95", published 4/12/2012
+ * This is based on the "VHDX Format Specification v1.00", published 8/25/2012
* by Microsoft:
- * https://www.microsoft.com/en-us/download/details.aspx?id=29681
+ * https://www.microsoft.com/en-us/download/details.aspx?id=34750
*
* This work is licensed under the terms of the GNU LGPL, version 2 or later.
* See the COPYING.LIB file in the top-level directory.
@@ -262,6 +262,7 @@ static int vhdx_parse_header(BlockDriverState *bs,
BDRVVHDXState *s)
uint64_t h2_seq = 0;
uint8_t *buffer;
+ /* header1 & header2 are freed in vhdx_close() */
header1 = qemu_blockalign(bs, sizeof(VHDXHeader));
header2 = qemu_blockalign(bs, sizeof(VHDXHeader));
@@ -787,6 +788,7 @@ static int vhdx_open(BlockDriverState *bs, QDict *options,
int flags)
goto fail;
}
+ /* s->bat is freed in vhdx_close() */
s->bat = qemu_blockalign(bs, s->bat_rt.length);
ret = bdrv_pread(bs->file, s->bat_offset, s->bat, s->bat_rt.length);
diff --git a/block/vhdx.h b/block/vhdx.h
index fb687ed..9eb6b97 100644
--- a/block/vhdx.h
+++ b/block/vhdx.h
@@ -6,9 +6,9 @@
* Authors:
* Jeff Cody <address@hidden>
*
- * This is based on the "VHDX Format Specification v0.95", published 4/12/2012
+ * This is based on the "VHDX Format Specification v1.00", published 8/25/2012
* by Microsoft:
- * https://www.microsoft.com/en-us/download/details.aspx?id=29681
+ * https://www.microsoft.com/en-us/download/details.aspx?id=34750
*
* This work is licensed under the terms of the GNU LGPL, version 2 or later.
* See the COPYING.LIB file in the top-level directory.
@@ -116,7 +116,7 @@ typedef struct QEMU_PACKED VHDXHeader {
valid. */
uint16_t log_version; /* version of the log format. Mustn't
be
zero, unless log_guid is also zero
*/
- uint16_t version; /* version of th evhdx file.
Currently,
+ uint16_t version; /* version of the vhdx file.
Currently,
only supported version is "1" */
uint32_t log_length; /* length of the log. Must be multiple
of 1MB */
--
1.8.1.4
- [Qemu-devel] [PATCH v3 0/9] VHDX log replay and write support, Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 1/9] block: vhdx - minor comments and typo correction.,
Jeff Cody <=
- [Qemu-devel] [PATCH v3 2/9] block: vhdx - add header update capability., Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 3/9] block: vhdx code movement - VHDXMetadataEntries and BDRVVHDXState to header., Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 4/9] block: vhdx - log support struct and defines, Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 5/9] block: vhdx - break endian translation functions out, Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 6/9] block: vhdx - update log guid in header, and first write tracker, Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 7/9] block: vhdx - log parsing, replay, and flush support, Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 8/9] block: vhdx - add log write support, Jeff Cody, 2013/08/07
- [Qemu-devel] [PATCH v3 9/9] block: vhdx write support, Jeff Cody, 2013/08/07
- Re: [Qemu-devel] [PATCH v3 0/9] VHDX log replay and write support, Jeff Cody, 2013/08/07