qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Xiao Guangrong <guangrong.xiao@gmail.com>
To: Paolo Bonzini <pbonzini@redhat.com>, mst@redhat.com, mtosatti@redhat.com
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org,
	yunfangtai@tencent.com,
	Xiao Guangrong <xiaoguangrong@tencent.com>
Subject: Re: [Qemu-devel] [PATCH v2 2/5] mc146818rtc: precisely count the clock for periodic timer
Date: Fri, 5 May 2017 14:29:53 +0800	[thread overview]
Message-ID: <519c43f6-d9fd-cafc-4569-a1020ff08e3a@gmail.com> (raw)
In-Reply-To: <1bdc4c8a-b07a-dd3a-af9a-1718623fcc2e@redhat.com>



On 05/04/2017 08:31 PM, Paolo Bonzini wrote:
> 
> 
> On 04/05/2017 13:59, guangrong.xiao@gmail.com wrote:
>> From: Tai Yunfang <yunfangtai@tencent.com>
>>
>> There are two issues in current code:
>> 1) If the period is changed by re-configuring RegA, the coalesced
>>     irq will be scaled to reflect the new period, however, it
>>     calculates the new interrupt number like this:
>>      s->irq_coalesced = (s->irq_coalesced * s->period) / period;
>>
>>     There are some clocks will be lost if they are not enough to
>>     be squeezed to a single new period that will cause the VM clock
>>     slower
>>
>>     In order to fix the issue, we calculate the interrupt window
>>     based on the precise clock rather than period, then the clocks
>>     lost during period is scaled can be compensated properly
>>
>> 2) If periodic_timer_update() is called due to RegA reconfiguration,
>>     i.e, the period is updated, current time is not the start point
>>     for the next periodic timer, instead, which should start from the
>>     last interrupt, otherwise, the clock in VM will become slow
>>
>>     This patch takes the clocks from last interrupt to current clock
>>     into account and compensates the clocks for the next interrupt,
>>     especially,if a complete interrupt was lost in this window, the
>>     time can be caught up by LOST_TICK_POLICY_SLEW
>>
>> [ Xiao: redesign the algorithm based on Yunfang's original work. ]
>>
>> Signed-off-by: Xiao Guangrong <xiaoguangrong@tencent.com>
>> Signed-off-by: Tai Yunfang <yunfangtai@tencent.com>
>> ---
>>   hw/timer/mc146818rtc.c | 116 ++++++++++++++++++++++++++++++++++++++++---------
>>   1 file changed, 96 insertions(+), 20 deletions(-)
>>
>> diff --git a/hw/timer/mc146818rtc.c b/hw/timer/mc146818rtc.c
>> index 5cccb2a..14bde1a 100644
>> --- a/hw/timer/mc146818rtc.c
>> +++ b/hw/timer/mc146818rtc.c
>> @@ -146,31 +146,104 @@ static void rtc_coalesced_timer(void *opaque)
>>   }
>>   #endif
>>   
>> -/* handle periodic timer */
>> -static void periodic_timer_update(RTCState *s, int64_t current_time)
>> +static int period_code_to_clock(int period_code)
>> +{
>> +    /* periodic timer is disabled. */
>> +    if (!period_code) {
>> +        return 0;
>> +    }
>> +
>> +    if (period_code <= 2) {
>> +        period_code += 7;
>> +    }
>> +
>> +    /* period in 32 Khz cycles */
>> +    return 1 << (period_code - 1);
>> +}
>> +
>> +/*
>> + * handle periodic timer. @old_period indicates the periodic timer update
>> + * is just due to period adjustment.
>> + */
>> +static void
>> +periodic_timer_update(RTCState *s, int64_t current_time, int old_period)
> 
> We need old_period to distinguish reconfiguration from interrupts ("if
> (old_period)" below), but it can be a bool.  Instead of passing the old
> period value, we can use s->period which is
> period_code_to_clock(old_period).
> 
> That is, just do
> 
>      old_period = s->period;
>      s->period = rtc_periodic_clock_ticks(s);
> 
>      /*
>       * if the periodic timer's update is due to period re-configuration,
>       * the clock should count since last interrupt.
>       */
>      if (s->period != 0) {
>          ...
>          if (!from_interrupt) {
>          }
>          ...
>      }
> 
> where rtc_periodic_clock_ticks takes into account both regA and regB,
> returning the result in 32 kHZ ticks.
> 
>>   {
>>       int period_code, period;
>> -    int64_t cur_clock, next_irq_clock;
>> +    int64_t cur_clock, next_irq_clock, lost_clock = 0;
>>   
>>       period_code = s->cmos_data[RTC_REG_A] & 0x0f;
>>       if (period_code != 0
>>           && (s->cmos_data[RTC_REG_B] & REG_B_PIE)) {
>> -        if (period_code <= 2)
>> -            period_code += 7;
>> -        /* period in 32 Khz cycles */
>> -        period = 1 << (period_code - 1);
>> -#ifdef TARGET_I386
>> -        if (period != s->period) {
>> -            s->irq_coalesced = (s->irq_coalesced * s->period) / period;
>> -            DPRINTF_C("cmos: coalesced irqs scaled to %d\n", s->irq_coalesced);
>> -        }
>> -        s->period = period;
>> -#endif
>> +        period = period_code_to_clock(period_code);
> 
> 
> Since we have old_period, we can assign s->period here.
> 
>>           /* compute 32 khz clock */
>>           cur_clock =
>>               muldiv64(current_time, RTC_CLOCK_RATE, NANOSECONDS_PER_SECOND);
>>   
>> -        next_irq_clock = (cur_clock & ~(period - 1)) + period;
>> +        /*
>> +        * if the periodic timer's update is due to period re-configuration,
>> +        * we should count the clock since last interrupt.
>> +        */
>> +        if (old_period) {
>> +            int64_t last_periodic_clock;
>> +
>> +            last_periodic_clock = muldiv64(s->next_periodic_time,
>> +                                    RTC_CLOCK_RATE, NANOSECONDS_PER_SECOND);
>> +            /*
>> +             * if the next interrupt has not happened yet, we recall the last
>> +             * interrupt based on the original period.
>> +             */
>> +            if (last_periodic_clock > cur_clock) {
>> +                last_periodic_clock -= period_code_to_clock(old_period);
> 
> This becomes "last_periodic_clock -= old_period".
> 
> But, I'm not sure how it can happen that last_periodic_clock <=
> cur_clock.  More precisely, if it happened, you have lost a tick and you
> should add it to s->irq_coalesced it below.  The simplest way to do it,
> is to *always* do the subtraction.
> 

Yes, i agree with you.

> 
>> +
>> +                /* the last interrupt must have happened. */
>> +                assert(cur_clock >= last_periodic_clock);
>> +            }
>> +
>> +            /* calculate the clock since last interrupt. */
>> +            lost_clock = cur_clock - last_periodic_clock;
>> +        }
> 
> I think the "assert(lost_clock >= 0)" should be here.  Then you can also
> remove the "the last interrupt must have happened" assertion, since the
> two test exactly the same formula:
> 
> 	lost_clock >= 0
> 	cur_clock - last_periodic_clock >= 0
> 	cur_clock >= last_periodic_clock.
> 
> Putting everything together, this becomes:
> 
> 	if (!from_interrupt) {

the lost-clock needs to be adjusted only for the enable-to-enable case,
i.e, if the periodic_timer is changed from disabled to enabled, nothing
need to be compensated.

So i am going to change this if statement to:
	if (reconfig && old_period) {
		......
         }

>              int64_t next_periodic_clock, last_periodic_clock;
> 
>              next_periodic_clock = muldiv64(s->next_periodic_time,
>                                      RTC_CLOCK_RATE,
> 				    NANOSECONDS_PER_SECOND);
> 	    last_periodic_clock = next_periodic_clock - old_period;
> 	    lost_clock = cur_clock - last_periodic_clock;
> 	    assert(lost_clock >= 0);
> 	}
> 
> 	if (s->lost_tick_policy == LOST_TICK_POLICY_SLEW) {
> 	    ...
> 	} else {
> 	    lost_clock = MIN(lost_clock, s->period);
> 	}
> 	assert(lost_clock >= 0 && lost_clock < s->period);

All of you suggestions look nice to me and very elaborate, however,
there is a issue that you use s->period on all platforms, in the
current code, only x86 is using it. So that will break live migration
between two !x86 VMs if one applied this pathset, another one does not.

If do not object, i will keep the old_period part in this patchset
and apply all you other suggestions. :)

Thanks!

  reply	other threads:[~2017-05-05  6:29 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-04 11:59 [Qemu-devel] [PATCH v2 0/5] mc146818rtc: fix Windows VM clock faster guangrong.xiao
2017-05-04 11:59 ` [Qemu-devel] [PATCH v2 1/5] mc146818rtc: update periodic timer only if it is needed guangrong.xiao
2017-05-04 11:59 ` [Qemu-devel] [PATCH v2 2/5] mc146818rtc: precisely count the clock for periodic timer guangrong.xiao
2017-05-04 12:31   ` Paolo Bonzini
2017-05-05  6:29     ` Xiao Guangrong [this message]
2017-05-04 11:59 ` [Qemu-devel] [PATCH v2 3/5] mc146818rtc: ensure LOST_TICK_POLICY_SLEW is only enabled on TARGET_I386 guangrong.xiao
2017-05-04 11:59 ` [Qemu-devel] [PATCH v2 4/5] mc146818rtc: drop unnecessary '#ifdef TARGET_I386' guangrong.xiao
2017-05-04 11:59 ` [Qemu-devel] [PATCH v2 5/5] mc146818rtc: embrace all x86 specific code guangrong.xiao
2017-05-04 14:00 ` [Qemu-devel] [PATCH v2 0/5] mc146818rtc: fix Windows VM clock faster no-reply

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=519c43f6-d9fd-cafc-4569-a1020ff08e3a@gmail.com \
    --to=guangrong.xiao@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=mtosatti@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=xiaoguangrong@tencent.com \
    --cc=yunfangtai@tencent.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).