From: Don Slutz <dslutz@verizon.com>
To: Jan Beulich <JBeulich@suse.com>, Don Slutz <dslutz@verizon.com>
Cc: Keir Fraser <keir@xen.org>, xen-devel@lists.xen.org
Subject: Re: [PATCH v3 06/11] hvm/hpet: In hpet_save, call hpet_get_comparator.
Date: Fri, 25 Apr 2014 17:42:18 -0400 [thread overview]
Message-ID: <535AD6BA.40907@terremark.com> (raw)
In-Reply-To: <5357F6B0020000780000BA79@nat28.tlf.novell.com>
On 04/23/14 11:21, Jan Beulich wrote:
>>>> On 17.04.14 at 19:43, <dslutz@verizon.com> wrote:
>> --- a/xen/arch/x86/hvm/hpet.c
>> +++ b/xen/arch/x86/hvm/hpet.c
>> @@ -495,6 +495,7 @@ static int hpet_save(struct domain *d, hvm_domain_context_t *h)
>> {
>> HPETState *hp = domain_vhpet(d);
>> int rc;
>> + uint64_t guest_time;
>>
>> spin_lock(&hp->lock);
>>
>> @@ -524,6 +525,12 @@ static int hpet_save(struct domain *d, hvm_domain_context_t *h)
>> C(period[1]);
>> C(period[2]);
>> #undef C
>> + /* read the comparator to get it updated so hpet_save will
>> + * return the expected value. */
>> + guest_time = hp->hpet.mc64 - hp->mc_offset;
> Wouldn't you be better off loading guest_time via guest_time_hpet()
> right after taking the lock, using the variable also in the assignment
> to mc64? I'm particularly suspecting an inconsistency in the
> !hpet_enabled() case (i.e. when mc64 doesn't get updated
> anymore). Iirc a later patch (in the earlier version of the series)
> makes the adjustment in hpet_get_comparator() also conditional
> upon the HPET being enabled, in which case the end effect would
> be identical (due to hpet_get_comparator() then becoming a nop for
> that case).
You are right.
> In any event, no matter that the immediately following comment is
> malformed too, please fix your comment style (and feel free to
> adjust the one below at once).
Will do.
-Don Slutz
>> + hpet_get_comparator(hp, 0, guest_time);
>> + hpet_get_comparator(hp, 1, guest_time);
>> + hpet_get_comparator(hp, 2, guest_time);
>> /* save the 64 bit comparator in the 64 bit timer[n].cmp field
>> * regardless of whether or not the timer is in 32 bit mode. */
>> rec->timers[0].cmp = hp->hpet.comparator64[0];
> Jan
>
next prev parent reply other threads:[~2014-04-25 21:42 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-17 17:42 [PATCH v3 00/11] Prevent one cause of "MP-BIOS bug: 8254 timer"... message from linux Don Slutz
2014-04-17 17:42 ` [optional PATCH v3 01/11] hvm/hpet: Add manual unit test code Don Slutz
2014-04-23 14:41 ` Jan Beulich
2014-04-25 21:26 ` Don Slutz
2014-04-17 17:42 ` [PATCH v3 02/11] hvm/hpet: Only call guest_time_hpet(h) one time per action Don Slutz
2014-04-23 15:07 ` Jan Beulich
2014-04-23 15:42 ` Don Slutz
2014-04-23 15:54 ` Jan Beulich
2014-04-17 17:42 ` [PATCH v3 03/11] hvm/hpet: Only set comparator or period not both Don Slutz
2014-04-23 15:10 ` Jan Beulich
2014-04-17 17:42 ` [PATCH v3 04/11] hvm/hpet: Correctly limit period to a maximum Don Slutz
2014-04-23 15:11 ` Jan Beulich
2014-04-17 17:42 ` [PATCH v3 05/11] hvm/hpet: In hpet_save, correctly compute mc64 Don Slutz
2014-04-23 15:12 ` Jan Beulich
2014-04-17 17:43 ` [PATCH v3 06/11] hvm/hpet: In hpet_save, call hpet_get_comparator Don Slutz
2014-04-23 15:21 ` Jan Beulich
2014-04-25 21:42 ` Don Slutz [this message]
2014-04-17 17:43 ` [PATCH v3 07/11] hvm/hpet: Init comparator64 like comparator Don Slutz
2014-04-23 15:23 ` Jan Beulich
2014-04-25 22:00 ` Don Slutz
2014-04-17 17:43 ` [PATCH v3 08/11] hvm/hpet: Use signed divide in hpet_get_comparator Don Slutz
2014-04-23 15:45 ` Jan Beulich
2014-04-26 1:52 ` Slutz, Donald Christopher
2014-04-17 17:43 ` [PATCH v3 09/11] hvm/hpet: comparator can only change when master clock is enabled Don Slutz
2014-04-25 12:23 ` Jan Beulich
2014-04-17 17:43 ` [PATCH v3 10/11] hvm/hpet: Prevent master clock equal to comparator while enabled Don Slutz
2014-04-25 12:25 ` Jan Beulich
2014-04-26 1:50 ` Slutz, Donald Christopher
2014-04-17 17:43 ` [PATCH v3 11/11] hvm/hpet: handle 1st period special Don Slutz
2014-04-25 12:32 ` Jan Beulich
2014-04-26 14:10 ` Slutz, Donald Christopher
2014-05-01 10:31 ` Tim Deegan
2014-05-01 20:19 ` Don Slutz
2014-05-02 13:19 ` Tim Deegan
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=535AD6BA.40907@terremark.com \
--to=dslutz@verizon.com \
--cc=JBeulich@suse.com \
--cc=keir@xen.org \
--cc=xen-devel@lists.xen.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 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).