diff options
| author | Eric Blake <eblake@redhat.com> | 2020-07-27 15:32:06 -0500 |
|---|---|---|
| committer | Eric Blake <eblake@redhat.com> | 2020-07-27 15:42:21 -0500 |
| commit | 37931e006f05cb768b78dcc47453b13f76ea43c5 (patch) | |
| tree | 7f33c296e90a5ad325b0c95b8dfd669039278392 /migration/block-dirty-bitmap.c | |
| parent | fbd1c1b6426019ab4410f9d01eaa1a8c6394491f (diff) | |
| download | focaccia-qemu-37931e006f05cb768b78dcc47453b13f76ea43c5.tar.gz focaccia-qemu-37931e006f05cb768b78dcc47453b13f76ea43c5.zip | |
migration: Fix typos in bitmap migration comments
Noticed while reviewing the file for newer patches. Fixes: b35ebdf076 Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <20200727203206.134996-1-eblake@redhat.com>
Diffstat (limited to 'migration/block-dirty-bitmap.c')
| -rw-r--r-- | migration/block-dirty-bitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/block-dirty-bitmap.c b/migration/block-dirty-bitmap.c index 1f675b792f..784330ebe1 100644 --- a/migration/block-dirty-bitmap.c +++ b/migration/block-dirty-bitmap.c @@ -97,7 +97,7 @@ #define DIRTY_BITMAP_MIG_START_FLAG_ENABLED 0x01 #define DIRTY_BITMAP_MIG_START_FLAG_PERSISTENT 0x02 -/* 0x04 was "AUTOLOAD" flags on elder versions, no it is ignored */ +/* 0x04 was "AUTOLOAD" flags on older versions, now it is ignored */ #define DIRTY_BITMAP_MIG_START_FLAG_RESERVED_MASK 0xf8 /* State of one bitmap during save process */ @@ -180,7 +180,7 @@ static uint32_t qemu_get_bitmap_flags(QEMUFile *f) static void qemu_put_bitmap_flags(QEMUFile *f, uint32_t flags) { - /* The code currently do not send flags more than one byte */ + /* The code currently does not send flags as more than one byte */ assert(!(flags & (0xffffff00 | DIRTY_BITMAP_MIG_EXTRA_FLAGS))); qemu_put_byte(f, flags); |