[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v10 01/10] qcow2: Fix capitalization of header extension constant
From: |
Andrey Shinkevich |
Subject: |
[PATCH v10 01/10] qcow2: Fix capitalization of header extension constant. |
Date: |
Tue, 14 Jul 2020 00:36:34 +0300 |
Make the capitalization of the hexadecimal numbers consistent for the
QCOW2 header extension constants in docs/interop/qcow2.txt.
Suggested-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
---
block/qcow2.c | 2 +-
docs/interop/qcow2.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/block/qcow2.c b/block/qcow2.c
index ea33673..6c6bee3 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -66,7 +66,7 @@ typedef struct {
} QEMU_PACKED QCowExtension;
#define QCOW2_EXT_MAGIC_END 0
-#define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
+#define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca
#define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
#define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77
#define QCOW2_EXT_MAGIC_BITMAPS 0x23852875
diff --git a/docs/interop/qcow2.txt b/docs/interop/qcow2.txt
index cb72346..f072e27 100644
--- a/docs/interop/qcow2.txt
+++ b/docs/interop/qcow2.txt
@@ -231,7 +231,7 @@ be stored. Each extension has a structure like the
following:
Byte 0 - 3: Header extension type:
0x00000000 - End of the header extension area
- 0xE2792ACA - Backing file format name string
+ 0xe2792aca - Backing file format name string
0x6803f857 - Feature name table
0x23852875 - Bitmaps extension
0x0537be77 - Full disk encryption header pointer
--
1.8.3.1
- Re: [PATCH v10 04/10] qcow2_format.py: dump bitmap flags in human readable way., (continued)
- [PATCH v10 06/10] qcow2_format.py: pass cluster size to substructures, Andrey Shinkevich, 2020/07/13
- [PATCH v10 07/10] qcow2_format.py: Dump bitmap table serialized entries, Andrey Shinkevich, 2020/07/13
- [PATCH v10 03/10] qcow2_format.py: change Qcow2BitmapExt initialization method, Andrey Shinkevich, 2020/07/13
- [PATCH v10 05/10] qcow2_format.py: Dump bitmap directory information, Andrey Shinkevich, 2020/07/13
- [PATCH v10 02/10] qcow2_format.py: make printable data an extension class member, Andrey Shinkevich, 2020/07/13
- [PATCH v10 01/10] qcow2: Fix capitalization of header extension constant.,
Andrey Shinkevich <=