* [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch
@ 2023-12-25 10:29 Hyman Huang
2023-12-25 10:29 ` [PULL 1/1] migration/dirtyrate: Remove an extra parameter Hyman Huang
2023-12-26 14:15 ` [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch Stefan Hajnoczi
0 siblings, 2 replies; 3+ messages in thread
From: Hyman Huang @ 2023-12-25 10:29 UTC (permalink / raw)
To: qemu-devel; +Cc: yong.huang
The following changes since commit 191710c221f65b1542f6ea7fa4d30dde6e134fd7:
Merge tag 'pull-request-2023-12-20' of https://gitlab.com/thuth/qemu into staging (2023-12-20 09:40:16 -0500)
are available in the Git repository at:
https://github.com/newfriday/qemu.git tags/dirtylimit-dirtyrate-pull-request-20231225
for you to fetch changes up to 4918712fb1c34ae43361b402642e426be85a789e:
migration/dirtyrate: Remove an extra parameter (2023-12-25 18:05:47 +0800)
----------------------------------------------------------------
dirtylimit dirtyrate pull request 20231225
Nitpick about an unused parameter
Please apply, thanks,
Yong
----------------------------------------------------------------
Wafer (1):
migration/dirtyrate: Remove an extra parameter
migration/dirtyrate.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 3+ messages in thread* [PULL 1/1] migration/dirtyrate: Remove an extra parameter 2023-12-25 10:29 [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch Hyman Huang @ 2023-12-25 10:29 ` Hyman Huang 2023-12-26 14:15 ` [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch Stefan Hajnoczi 1 sibling, 0 replies; 3+ messages in thread From: Hyman Huang @ 2023-12-25 10:29 UTC (permalink / raw) To: qemu-devel; +Cc: yong.huang, Wafer From: Wafer <wafer@jaguarmicro.com> vcpu_dirty_stat_collect() has an unused parameter so remove it. Signed-off-by: Wafer <wafer@jaguarmicro.com> Reviewed-by: Hyman Huang <yong.huang@smartx.com> Message-Id: <20231204012230.4123-1-wafer@jaguarmicro.com> --- migration/dirtyrate.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/migration/dirtyrate.c b/migration/dirtyrate.c index 036ac017fc..62d86b8be2 100644 --- a/migration/dirtyrate.c +++ b/migration/dirtyrate.c @@ -129,8 +129,7 @@ static DirtyPageRecord *vcpu_dirty_stat_alloc(VcpuStat *stat) return g_new0(DirtyPageRecord, nvcpu); } -static void vcpu_dirty_stat_collect(VcpuStat *stat, - DirtyPageRecord *records, +static void vcpu_dirty_stat_collect(DirtyPageRecord *records, bool start) { CPUState *cpu; @@ -158,7 +157,7 @@ retry: WITH_QEMU_LOCK_GUARD(&qemu_cpu_list_lock) { gen_id = cpu_list_generation_id_get(); records = vcpu_dirty_stat_alloc(stat); - vcpu_dirty_stat_collect(stat, records, true); + vcpu_dirty_stat_collect(records, true); } duration = dirty_stat_wait(calc_time_ms, init_time_ms); @@ -172,7 +171,7 @@ retry: cpu_list_unlock(); goto retry; } - vcpu_dirty_stat_collect(stat, records, false); + vcpu_dirty_stat_collect(records, false); } for (i = 0; i < stat->nvcpu; i++) { -- 2.39.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch 2023-12-25 10:29 [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch Hyman Huang 2023-12-25 10:29 ` [PULL 1/1] migration/dirtyrate: Remove an extra parameter Hyman Huang @ 2023-12-26 14:15 ` Stefan Hajnoczi 1 sibling, 0 replies; 3+ messages in thread From: Stefan Hajnoczi @ 2023-12-26 14:15 UTC (permalink / raw) To: Hyman Huang; +Cc: qemu-devel, yong.huang [-- Attachment #1: Type: text/plain, Size: 115 bytes --] Applied, thanks. Please update the changelog at https://wiki.qemu.org/ChangeLog/9.0 for any user-visible changes. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-12-26 17:02 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-25 10:29 [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch Hyman Huang 2023-12-25 10:29 ` [PULL 1/1] migration/dirtyrate: Remove an extra parameter Hyman Huang 2023-12-26 14:15 ` [PULL 0/1] Dirty page rate and dirty page limit 20231225 patch Stefan Hajnoczi
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.