qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 21/26] stream: fix ratelimiting corner case


From: Paolo Bonzini
Subject: [Qemu-devel] [PATCH 21/26] stream: fix ratelimiting corner case
Date: Thu, 12 Apr 2012 14:01:11 +0200

This fixes inability to make progress in streaming if the quota
is set to less than the amount of data that an I/O operation has
to write.

In this case, limit->dispatched + n will always be above the
quota and, due to the "goto retry" to recheck cancellation and
allocation, streaming will livelock.

Signed-off-by: Paolo Bonzini <address@hidden>
---
 block/stream.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/block/stream.c b/block/stream.c
index 2b492d5..b76104c 100644
--- a/block/stream.c
+++ b/block/stream.c
@@ -33,19 +33,19 @@ typedef struct {
 
 static int64_t ratelimit_calculate_delay(RateLimit *limit, uint64_t n)
 {
-    int64_t delay_ns = 0;
     int64_t now = qemu_get_clock_ns(rt_clock);
 
     if (limit->next_slice_time < now) {
         limit->next_slice_time = now + SLICE_TIME;
         limit->dispatched = 0;
     }
-    if (limit->dispatched + n > limit->slice_quota) {
-        delay_ns = limit->next_slice_time - now;
-    } else {
+    if (limit->dispatched == 0 || limit->dispatched + n <= limit->slice_quota) 
{
         limit->dispatched += n;
+        return 0;
+    } else {
+        limit->dispatched = n;
+        return limit->next_slice_time - now;
     }
-    return delay_ns;
 }
 
 static void ratelimit_set_speed(RateLimit *limit, uint64_t speed)
-- 
1.7.9.3





reply via email to

[Prev in Thread] Current Thread [Next in Thread]