diff options
author | Mao Zhongyi <maozhongyi@cmss.chinamobile.com> | 2020-03-20 22:32:16 +0800 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2020-03-25 12:31:38 +0000 |
commit | 06b1c6f8b7efeaab5da5e092727cd1391a1d9f2c (patch) | |
tree | 69b9abeb8fd701d99a6a53b97fa96376389a70b0 /migration | |
parent | 33ee3d96c7c21febbfb90b005ee9e646cf1f3794 (diff) | |
download | qemu-06b1c6f8b7efeaab5da5e092727cd1391a1d9f2c.zip qemu-06b1c6f8b7efeaab5da5e092727cd1391a1d9f2c.tar.gz qemu-06b1c6f8b7efeaab5da5e092727cd1391a1d9f2c.tar.bz2 |
xbzrle: update xbzrle doc
Add new parameter description, also:
1. Remove unsociable space.
2. Nit picking: s/two/2 in report
Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com>
Message-Id: <20200320143216.423374-1-maozhongyi@cmss.chinamobile.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r-- | migration/migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/migration.c b/migration/migration.c index c1d88ac..4b26110 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1243,7 +1243,7 @@ static bool migrate_params_check(MigrationParameters *params, Error **errp) error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "xbzrle_cache_size", "is invalid, it should be bigger than target page size" - " and a power of two"); + " and a power of 2"); return false; } |