From: Anthony Liguori <anthony@codemonkey.ws>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Ulrich Obergfell <uobergfe@redhat.com>,
Glauber Costa <glommer@redhat.com>, Avi Kivity <avi@redhat.com>,
kvm <kvm@vger.kernel.org>, qemu-devel <qemu-devel@nongnu.org>,
Michael D Roth <mdroth@us.ibm.com>
Subject: Re: [Qemu-devel] Re: [RFC: 0/2] patch for QEMU HPET periodic timer emulation to alleviate time drift
Date: Mon, 07 Feb 2011 07:24:52 -0600 [thread overview]
Message-ID: <4D4FF2A4.8020104@codemonkey.ws> (raw)
In-Reply-To: <4D4B0B07.2040904@codemonkey.ws>
Hi Ulrich,
Mike Roth just posted a mechanism to implement per-device unit tests. I
think this is a great example to use for what type of testing we should
be doing in QEMU.
Please take a look at Mike's series and see if you can do something
similar for HPET as he's doing for the RTC.
Regards,
Anthony Liguori
On 02/03/2011 02:07 PM, Anthony Liguori wrote:
> On 02/03/2011 09:28 AM, Jan Kiszka wrote:
>> On 2011-02-03 14:43, Ulrich Obergfell wrote:
>>> Hi,
>>>
>>> I am observing severe backward time drift in a MS Windows Vista(tm)
>>> guest running on a Fedora 14 KVM host. I can reproduce the problem
>>> with the following steps:
>>>
>>> 1. Use 'vncviewer' to connect to the guest's desktop.
>>> 2. Click on the menu title bar of a window on the guest's desktop.
>>> 3. Move that window around on the guest's desktop.
>>>
>>> While I keep on moving the window around for one minute, the guest
>>> time falls up to 15 seconds behind host time.
>>>
>>> The problem is caused by delayed callbacks of hpet_timer(). A timer
>>> interrupt is injected into the guest during each callback. However,
>>> interrupts are lost if delays are greater than a comparator period.
>>>
>> Yes, that's a well known limitation of qemu, in fact. We are lacking a
>> generic irq coalescing infrastructure. That, once designed and
>> available, would also allow to fix the HPET.
>
> I don't think it requires anything that sophisticated.
>
> It's just the period calculation of the HPET that's wrong and doesn't
> account for loss.
>
>>> This is an RFC through which I would like to get feedback on how the
>>> idea of a patch to compensate those lost interrupts would be received:
>>>
>>> The patch determines the number of lost timer interrupts based on the
>>> number of elapsed comparator periods. Lost interrupts are compensated
>> That neglects coalescing of the HPET IRQs: If the timer is run regularly
>> but the guest is not able to retrieve the injected IRQs, you should
>> still see drifts with your patches.
>
> FWIW, this isn't the most common failure scenario. This is only
> really prominent when you have rapid reinject like we do with the
> in-kernel PIT. This generally shouldn't be an issue with gradual
> reinjection.
>
>>> by gradually injecting additional interrupts during the subsequent
>>> timer intervals, starting at a rate of one additional interrupt per
>>> interval. If further interrupts are lost while compensation is still
>>> in progress, the rate is increased. The algorithm imposes a limit on
>>> the rate and on the 'backlog' of lost interrupts to be injected. The
>>> patch can be enabled via a qemu command line option.
>>>
>>> -hpet [device=none|present][,driftfix=none|slew]
>>>
>>> The 'device=none' option is equivalent to the '-no-hpet' option, and
>>> the 'driftfix=slew' option enables the patch (similar to RTC).
>>>
>>>
>>> The second and third part of this series of email contain the patch:
>>>
>>> - Code part 1 introduces the qemu command line option.
>>> - Code part 2 implements compensation of lost interrupts.
>>>
>>> Please review and please comment.
>>>
>> Generally, this issue needs to be attacked at qemu level (added to CC),
>> not qemu-kvm.
>>
>> We had a lengthy discussion on the list last year. We (including qemu
>> people) basically agreed that we needs a generic feedback infrastructure
>> to track coalesced IRQs for periodic, clock providing devices to allow
>> reinjection (which would include reinjection of completely missed timer
>> events like in your series).
>
> This really isn't the main problem.
>
> Regards,
>
> Anthony Liguori
>
>> However, there was one unsolved design issue remain IIRC:
>>
>> http://thread.gmane.org/gmane.comp.emulators.qemu/73181
>>
>> Once we have a proper answer for this, we can resume creating the
>> de-coalescing framework.
>>
>> Jan
>>
>
WARNING: multiple messages have this Message-ID (diff)
From: Anthony Liguori <anthony@codemonkey.ws>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: kvm <kvm@vger.kernel.org>, Glauber Costa <glommer@redhat.com>,
qemu-devel <qemu-devel@nongnu.org>,
Ulrich Obergfell <uobergfe@redhat.com>,
Avi Kivity <avi@redhat.com>, Michael D Roth <mdroth@us.ibm.com>
Subject: Re: [Qemu-devel] Re: [RFC: 0/2] patch for QEMU HPET periodic timer emulation to alleviate time drift
Date: Mon, 07 Feb 2011 07:24:52 -0600 [thread overview]
Message-ID: <4D4FF2A4.8020104@codemonkey.ws> (raw)
In-Reply-To: <4D4B0B07.2040904@codemonkey.ws>
Hi Ulrich,
Mike Roth just posted a mechanism to implement per-device unit tests. I
think this is a great example to use for what type of testing we should
be doing in QEMU.
Please take a look at Mike's series and see if you can do something
similar for HPET as he's doing for the RTC.
Regards,
Anthony Liguori
On 02/03/2011 02:07 PM, Anthony Liguori wrote:
> On 02/03/2011 09:28 AM, Jan Kiszka wrote:
>> On 2011-02-03 14:43, Ulrich Obergfell wrote:
>>> Hi,
>>>
>>> I am observing severe backward time drift in a MS Windows Vista(tm)
>>> guest running on a Fedora 14 KVM host. I can reproduce the problem
>>> with the following steps:
>>>
>>> 1. Use 'vncviewer' to connect to the guest's desktop.
>>> 2. Click on the menu title bar of a window on the guest's desktop.
>>> 3. Move that window around on the guest's desktop.
>>>
>>> While I keep on moving the window around for one minute, the guest
>>> time falls up to 15 seconds behind host time.
>>>
>>> The problem is caused by delayed callbacks of hpet_timer(). A timer
>>> interrupt is injected into the guest during each callback. However,
>>> interrupts are lost if delays are greater than a comparator period.
>>>
>> Yes, that's a well known limitation of qemu, in fact. We are lacking a
>> generic irq coalescing infrastructure. That, once designed and
>> available, would also allow to fix the HPET.
>
> I don't think it requires anything that sophisticated.
>
> It's just the period calculation of the HPET that's wrong and doesn't
> account for loss.
>
>>> This is an RFC through which I would like to get feedback on how the
>>> idea of a patch to compensate those lost interrupts would be received:
>>>
>>> The patch determines the number of lost timer interrupts based on the
>>> number of elapsed comparator periods. Lost interrupts are compensated
>> That neglects coalescing of the HPET IRQs: If the timer is run regularly
>> but the guest is not able to retrieve the injected IRQs, you should
>> still see drifts with your patches.
>
> FWIW, this isn't the most common failure scenario. This is only
> really prominent when you have rapid reinject like we do with the
> in-kernel PIT. This generally shouldn't be an issue with gradual
> reinjection.
>
>>> by gradually injecting additional interrupts during the subsequent
>>> timer intervals, starting at a rate of one additional interrupt per
>>> interval. If further interrupts are lost while compensation is still
>>> in progress, the rate is increased. The algorithm imposes a limit on
>>> the rate and on the 'backlog' of lost interrupts to be injected. The
>>> patch can be enabled via a qemu command line option.
>>>
>>> -hpet [device=none|present][,driftfix=none|slew]
>>>
>>> The 'device=none' option is equivalent to the '-no-hpet' option, and
>>> the 'driftfix=slew' option enables the patch (similar to RTC).
>>>
>>>
>>> The second and third part of this series of email contain the patch:
>>>
>>> - Code part 1 introduces the qemu command line option.
>>> - Code part 2 implements compensation of lost interrupts.
>>>
>>> Please review and please comment.
>>>
>> Generally, this issue needs to be attacked at qemu level (added to CC),
>> not qemu-kvm.
>>
>> We had a lengthy discussion on the list last year. We (including qemu
>> people) basically agreed that we needs a generic feedback infrastructure
>> to track coalesced IRQs for periodic, clock providing devices to allow
>> reinjection (which would include reinjection of completely missed timer
>> events like in your series).
>
> This really isn't the main problem.
>
> Regards,
>
> Anthony Liguori
>
>> However, there was one unsolved design issue remain IIRC:
>>
>> http://thread.gmane.org/gmane.comp.emulators.qemu/73181
>>
>> Once we have a proper answer for this, we can resume creating the
>> de-coalescing framework.
>>
>> Jan
>>
>
next prev parent reply other threads:[~2011-02-07 13:24 UTC|newest]
Thread overview: 80+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <480481933.225059.1296734409954.JavaMail.root@zmail07.collab.prod.int.phx2.redhat.com>
2011-02-03 13:43 ` [RFC: 0/2] patch for QEMU HPET periodic timer emulation to alleviate time drift Ulrich Obergfell
2011-02-03 15:28 ` Jan Kiszka
2011-02-03 15:28 ` [Qemu-devel] " Jan Kiszka
2011-02-03 20:07 ` Anthony Liguori
2011-02-03 20:07 ` Anthony Liguori
2011-02-03 21:24 ` Jan Kiszka
2011-02-03 21:24 ` Jan Kiszka
2011-02-04 2:06 ` Anthony Liguori
2011-02-04 2:06 ` Anthony Liguori
2011-02-04 8:56 ` Jan Kiszka
2011-02-04 8:56 ` Jan Kiszka
2011-02-07 12:34 ` Avi Kivity
2011-02-07 12:34 ` Avi Kivity
2011-02-07 13:11 ` Anthony Liguori
2011-02-07 13:11 ` Anthony Liguori
2011-02-07 13:14 ` Avi Kivity
2011-02-07 13:14 ` Avi Kivity
2011-02-07 13:23 ` Anthony Liguori
2011-02-07 13:23 ` Anthony Liguori
2011-02-07 13:34 ` Avi Kivity
2011-02-07 13:34 ` Avi Kivity
2011-02-07 13:41 ` Gleb Natapov
2011-02-07 13:41 ` Gleb Natapov
2011-02-07 13:46 ` Avi Kivity
2011-02-07 13:46 ` Avi Kivity
2011-02-07 13:48 ` Gleb Natapov
2011-02-07 13:48 ` Gleb Natapov
2011-02-07 13:51 ` Avi Kivity
2011-02-07 13:51 ` Avi Kivity
2011-02-07 13:54 ` Gleb Natapov
2011-02-07 13:54 ` Gleb Natapov
2011-02-07 14:10 ` Jan Kiszka
2011-02-07 14:10 ` Jan Kiszka
2011-02-07 14:28 ` Anthony Liguori
2011-02-07 14:28 ` Anthony Liguori
2011-02-07 14:43 ` Jan Kiszka
2011-02-07 14:43 ` Jan Kiszka
2011-02-07 14:54 ` Anthony Liguori
2011-02-07 14:54 ` Anthony Liguori
2011-02-07 14:57 ` Jan Kiszka
2011-02-07 14:57 ` Jan Kiszka
2011-02-07 15:01 ` Anthony Liguori
2011-02-07 15:01 ` Anthony Liguori
2011-02-07 15:08 ` Jan Kiszka
2011-02-07 15:08 ` Jan Kiszka
2011-02-07 15:13 ` Avi Kivity
2011-02-07 15:13 ` Avi Kivity
2011-02-07 15:17 ` Jan Kiszka
2011-02-07 15:17 ` Jan Kiszka
2011-02-07 15:29 ` Avi Kivity
2011-02-07 15:29 ` Avi Kivity
2011-02-07 19:30 ` Anthony Liguori
2011-02-07 19:30 ` Anthony Liguori
2011-02-08 9:11 ` Avi Kivity
2011-02-08 9:11 ` Avi Kivity
2011-02-07 15:20 ` Jan Kiszka
2011-02-07 15:20 ` Jan Kiszka
2011-02-07 15:30 ` Avi Kivity
2011-02-07 15:30 ` Avi Kivity
2011-02-07 19:28 ` Anthony Liguori
2011-02-07 19:28 ` Anthony Liguori
2011-02-07 14:58 ` Avi Kivity
2011-02-07 14:58 ` Avi Kivity
2011-02-07 15:01 ` Jan Kiszka
2011-02-07 15:01 ` Jan Kiszka
2011-02-07 15:08 ` Avi Kivity
2011-02-07 15:08 ` Avi Kivity
2011-02-07 15:14 ` Jan Kiszka
2011-02-07 15:14 ` Jan Kiszka
2011-02-07 15:16 ` Avi Kivity
2011-02-07 15:16 ` Avi Kivity
2011-02-07 15:22 ` Anthony Liguori
2011-02-07 15:22 ` Anthony Liguori
2011-02-07 15:18 ` Anthony Liguori
2011-02-04 9:52 ` Ulrich Obergfell
2011-02-04 9:52 ` Ulrich Obergfell
2011-02-07 10:44 ` Ulrich Obergfell
2011-02-07 10:44 ` Ulrich Obergfell
2011-02-07 13:24 ` Anthony Liguori [this message]
2011-02-07 13:24 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D4FF2A4.8020104@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=avi@redhat.com \
--cc=glommer@redhat.com \
--cc=jan.kiszka@siemens.com \
--cc=kvm@vger.kernel.org \
--cc=mdroth@us.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=uobergfe@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.