All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>
To: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, mst@redhat.com
Subject: Re: [PATCH] hw/i8254: fix vmstate load
Date: Tue, 16 Mar 2021 07:15:07 +0300	[thread overview]
Message-ID: <ecfc942c-09c5-37b8-56f5-b38069b96664@ispras.ru> (raw)
In-Reply-To: <YE+//ZRlFBwNjb0b@work-vm>

On 15.03.2021 23:13, Dr. David Alan Gilbert wrote:
> * Pavel Dovgalyuk (pavel.dovgalyuk@ispras.ru) wrote:
>> QEMU timer of channel 0 in i8254 is used to raise irq
>> at the specified moment of time. This irq can be disabled
>> with irq_disabled flag. But when vmstate of the pit is
>> loaded, timer may be rearmed despite the disabled interrupts.
>> This patch adds irq_disabled flag check to fix that.
>>
>> Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
> 
> Hi Pavel,
>    I'm curious, did you see this cause a problem on a particular guest
> OS?

That was Windows 7 on i386.
I found this when tested reverse debugging.

> 
> Dave
> 
>> ---
>>   hw/timer/i8254.c |    2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/hw/timer/i8254.c b/hw/timer/i8254.c
>> index c01ee2c72a..c8388ea432 100644
>> --- a/hw/timer/i8254.c
>> +++ b/hw/timer/i8254.c
>> @@ -324,7 +324,7 @@ static void pit_post_load(PITCommonState *s)
>>   {
>>       PITChannelState *sc = &s->channels[0];
>>   
>> -    if (sc->next_transition_time != -1) {
>> +    if (sc->next_transition_time != -1 && !sc->irq_disabled) {
>>           timer_mod(sc->irq_timer, sc->next_transition_time);
>>       } else {
>>           timer_del(sc->irq_timer);
>>
>>



  reply	other threads:[~2021-03-16  4:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-10 10:21 [PATCH] hw/i8254: fix vmstate load Pavel Dovgalyuk
2021-03-10 10:27 ` Paolo Bonzini
2021-03-15 20:13 ` Dr. David Alan Gilbert
2021-03-16  4:15   ` Pavel Dovgalyuk [this message]
2021-03-16  9:11     ` Dr. David Alan Gilbert

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=ecfc942c-09c5-37b8-56f5-b38069b96664@ispras.ru \
    --to=pavel.dovgalyuk@ispras.ru \
    --cc=dgilbert@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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.