mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
bitmaps: Fix typo in function name
Commit a88b179f
introduced the ability to set and query bitmap
persistence, but with an atypical spelling.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-id: 20190308205845.25734-1-eblake@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
parent
74da6b9435
commit
796a3798ab
5 changed files with 11 additions and 11 deletions
|
@ -321,7 +321,7 @@ static int init_dirty_bitmap_migration(void)
|
|||
if (bdrv_dirty_bitmap_enabled(bitmap)) {
|
||||
dbms->flags |= DIRTY_BITMAP_MIG_START_FLAG_ENABLED;
|
||||
}
|
||||
if (bdrv_dirty_bitmap_get_persistance(bitmap)) {
|
||||
if (bdrv_dirty_bitmap_get_persistence(bitmap)) {
|
||||
dbms->flags |= DIRTY_BITMAP_MIG_START_FLAG_PERSISTENT;
|
||||
}
|
||||
|
||||
|
@ -473,7 +473,7 @@ static int dirty_bitmap_load_start(QEMUFile *f, DirtyBitmapLoadState *s)
|
|||
}
|
||||
|
||||
if (flags & DIRTY_BITMAP_MIG_START_FLAG_PERSISTENT) {
|
||||
bdrv_dirty_bitmap_set_persistance(s->bitmap, true);
|
||||
bdrv_dirty_bitmap_set_persistence(s->bitmap, true);
|
||||
}
|
||||
|
||||
bdrv_disable_dirty_bitmap(s->bitmap);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue