docs: fix qemu incorrect tag

The patchset merged in 71864eadd9 ("migration/dirtyrate:
introduce struct and adjust DirtyRateStat") was targeting
QEMU 6.1 but got merged later, so correct the tag for 6.2.

Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
Hyman Huang(黄勇) 2021-11-05 21:01:16 +08:00 committed by Juan Quintela
parent 565599807f
commit f78d4ed701
1 changed files with 5 additions and 5 deletions

View File

@ -1740,7 +1740,7 @@
# #
# @dirty-rate: dirty rate. # @dirty-rate: dirty rate.
# #
# Since: 6.1 # Since: 6.2
# #
## ##
{ 'struct': 'DirtyRateVcpu', { 'struct': 'DirtyRateVcpu',
@ -1774,7 +1774,7 @@
# #
# @dirty-bitmap: calculate dirtyrate by dirty bitmap. # @dirty-bitmap: calculate dirtyrate by dirty bitmap.
# #
# Since: 6.1 # Since: 6.2
# #
## ##
{ 'enum': 'DirtyRateMeasureMode', { 'enum': 'DirtyRateMeasureMode',
@ -1796,13 +1796,13 @@
# @calc-time: time in units of second for sample dirty pages # @calc-time: time in units of second for sample dirty pages
# #
# @sample-pages: page count per GB for sample dirty pages # @sample-pages: page count per GB for sample dirty pages
# the default value is 512 (since 6.1) # the default value is 512 (since 6.2)
# #
# @mode: mode containing method of calculate dirtyrate includes # @mode: mode containing method of calculate dirtyrate includes
# 'page-sampling' and 'dirty-ring' (Since 6.1) # 'page-sampling' and 'dirty-ring' (Since 6.2)
# #
# @vcpu-dirty-rate: dirtyrate for each vcpu if dirty-ring # @vcpu-dirty-rate: dirtyrate for each vcpu if dirty-ring
# mode specified (Since 6.1) # mode specified (Since 6.2)
# #
# Since: 5.2 # Since: 5.2
# #