Pull request
v2: * Dropped Fam's git-publish series because there is still ongoing discussion -----BEGIN PGP SIGNATURE----- iQEcBAABAgAGBQJahVXrAAoJEJykq7OBq3PIETIH/RHKTpeKO8B49ilUXqBIcdsL ZkGrvnARGH97uzlI8wqJ9RkNHxkn7IaIcML9AWV5DCf0nFNxmz9KxNwc0I6Bk0Qh wAB5hG9R+CWBbPl4mlutZNEobklosIdI/+E2Lq1BWJQjVYGv2c2KBC1PHab5D4sZ agnqkSTfs0Uqi4AJ98xDAiLX1x6kw//+kVVhNw8C+CQUYWsggpNL/WzKyu7lqJML 8cxaQ6G7ofrWGtmhYn+iFLH3TsBYrjc5O/e8N448/xJx/yjiytuLuiKprEzNG6/0 Qq8BWSvcvZAADk61+O0m/6WAFx0v7DWLrsYhsSPA1WmAsXCkmDZrHKOm8girhrA= =ERzQ -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging Pull request v2: * Dropped Fam's git-publish series because there is still ongoing discussion # gpg: Signature made Thu 15 Feb 2018 09:42:03 GMT # gpg: using RSA key 9CA4ABB381AB73C8 # gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>" # gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>" # Primary key fingerprint: 8695 A8BF D3F9 7CDA AC35 775A 9CA4 ABB3 81AB 73C8 * remotes/stefanha/tags/block-pull-request: misc: fix spelling ratelimit: don't align wait time with slices vl: pause vcpus before stopping iothreads Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
f003d07337
@ -36,7 +36,7 @@ typedef struct {
|
|||||||
static inline int64_t ratelimit_calculate_delay(RateLimit *limit, uint64_t n)
|
static inline int64_t ratelimit_calculate_delay(RateLimit *limit, uint64_t n)
|
||||||
{
|
{
|
||||||
int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
|
int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
|
||||||
uint64_t delay_slices;
|
double delay_slices;
|
||||||
|
|
||||||
assert(limit->slice_quota && limit->slice_ns);
|
assert(limit->slice_quota && limit->slice_ns);
|
||||||
|
|
||||||
@ -55,12 +55,11 @@ static inline int64_t ratelimit_calculate_delay(RateLimit *limit, uint64_t n)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Quota exceeded. Calculate the next time slice we may start
|
/* Quota exceeded. Wait based on the excess amount and then start a new
|
||||||
* sending data again. */
|
* slice. */
|
||||||
delay_slices = (limit->dispatched + limit->slice_quota - 1) /
|
delay_slices = (double)limit->dispatched / limit->slice_quota;
|
||||||
limit->slice_quota;
|
|
||||||
limit->slice_end_time = limit->slice_start_time +
|
limit->slice_end_time = limit->slice_start_time +
|
||||||
delay_slices * limit->slice_ns;
|
(uint64_t)(delay_slices * limit->slice_ns);
|
||||||
return limit->slice_end_time - now;
|
return limit->slice_end_time - now;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ void qemu_co_queue_run_restart(Coroutine *co)
|
|||||||
* invalid memory. Therefore, use a temporary queue and do not touch
|
* invalid memory. Therefore, use a temporary queue and do not touch
|
||||||
* the "co" coroutine as soon as you enter another one.
|
* the "co" coroutine as soon as you enter another one.
|
||||||
*
|
*
|
||||||
* In its turn resumed "co" can pupulate "co_queue_wakeup" queue with
|
* In its turn resumed "co" can populate "co_queue_wakeup" queue with
|
||||||
* new coroutines to be woken up. The caller, who has resumed "co",
|
* new coroutines to be woken up. The caller, who has resumed "co",
|
||||||
* will be responsible for traversing the same queue, which may cause
|
* will be responsible for traversing the same queue, which may cause
|
||||||
* a different wakeup order but not any missing wakeups.
|
* a different wakeup order but not any missing wakeups.
|
||||||
|
10
vl.c
10
vl.c
@ -4767,10 +4767,18 @@ int main(int argc, char **argv, char **envp)
|
|||||||
|
|
||||||
main_loop();
|
main_loop();
|
||||||
replay_disable_events();
|
replay_disable_events();
|
||||||
iothread_stop_all();
|
|
||||||
|
|
||||||
|
/* The ordering of the following is delicate. Stop vcpus to prevent new
|
||||||
|
* I/O requests being queued by the guest. Then stop IOThreads (this
|
||||||
|
* includes a drain operation and completes all request processing). At
|
||||||
|
* this point emulated devices are still associated with their IOThreads
|
||||||
|
* (if any) but no longer have any work to do. Only then can we close
|
||||||
|
* block devices safely because we know there is no more I/O coming.
|
||||||
|
*/
|
||||||
pause_all_vcpus();
|
pause_all_vcpus();
|
||||||
|
iothread_stop_all();
|
||||||
bdrv_close_all();
|
bdrv_close_all();
|
||||||
|
|
||||||
res_free();
|
res_free();
|
||||||
|
|
||||||
/* vhost-user must be cleaned up before chardevs. */
|
/* vhost-user must be cleaned up before chardevs. */
|
||||||
|
Loading…
Reference in New Issue
Block a user