diff options
author | Ville Skyttä | 2018-06-12 08:51:50 +0200 |
---|---|---|
committer | Peter Maydell | 2018-07-13 11:16:04 +0200 |
commit | 9277d81f5c2c6f4d0b5e47c8476eb7ee7e5c0beb (patch) | |
tree | 40a083214c61e587010e8dbb9465808ec929b548 /docs/interop/qcow2.txt | |
parent | Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (diff) | |
download | qemu-9277d81f5c2c6f4d0b5e47c8476eb7ee7e5c0beb.tar.gz qemu-9277d81f5c2c6f4d0b5e47c8476eb7ee7e5c0beb.tar.xz qemu-9277d81f5c2c6f4d0b5e47c8476eb7ee7e5c0beb.zip |
docs: Grammar and spelling fixes
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 20180612065150.21110-1-ville.skytta@iki.fi
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'docs/interop/qcow2.txt')
-rw-r--r-- | docs/interop/qcow2.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/interop/qcow2.txt b/docs/interop/qcow2.txt index 8e1547ded2..845d40a086 100644 --- a/docs/interop/qcow2.txt +++ b/docs/interop/qcow2.txt @@ -326,8 +326,8 @@ in the image file. It contains pointers to the second level structures which are called refcount blocks and are exactly one cluster in size. -Given a offset into the image file, the refcount of its cluster can be obtained -as follows: +Given an offset into the image file, the refcount of its cluster can be +obtained as follows: refcount_block_entries = (cluster_size * 8 / refcount_bits) @@ -365,7 +365,7 @@ The L1 table has a variable size (stored in the header) and may use multiple clusters, however it must be contiguous in the image file. L2 tables are exactly one cluster in size. -Given a offset into the virtual disk, the offset into the image file can be +Given an offset into the virtual disk, the offset into the image file can be obtained as follows: l2_entries = (cluster_size / sizeof(uint64_t)) |