Displaying 1 result from an estimated 1 matches for "d30cb2c".
Did you mean:
  250cb2c
  
2012 Mar 16
2
[PATCH v3] use INT64_MAX as max expiration
...000 > 0 ? 1 : 0)), so i also removed the comments" To avoid problems with overflow limit this to 2^32."
Signed-off-by: Yang Zhang <yang.z.zhang@Intel.com>
---
 vl.c |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/vl.c b/vl.c
index be8587a..d30cb2c 100644
--- a/vl.c
+++ b/vl.c
@@ -1410,8 +1410,7 @@ static int64_t qemu_next_deadline(void)
         delta = active_timers[QEMU_TIMER_VIRTUAL]->expire_time -
                      qemu_get_clock(vm_clock);
     } else {
-        /* To avoid problems with overflow limit this to 2^32.  */
-...