From: Glauber Costa <gcosta@redhat.com>
To: Avi Kivity <avi@qumranet.com>
Cc: kvm-devel@lists.sourceforge.net, chrisw@sous-sol.org
Subject: Re: [PATCH 3/4] [PATCH] kvmclock: allow it to be turned off
Date: Thu, 06 Mar 2008 09:01:51 -0300 [thread overview]
Message-ID: <47CFDD2F.8010609@redhat.com> (raw)
In-Reply-To: <47CF9393.6090407@qumranet.com>
Avi Kivity wrote:
> Glauber Costa wrote:
>> Use the lower 3 lower bits of the system time msr to turn off the clock.
>> This means that all clock registration has to be aligned in a 4-byte
>> boundary
>>
>>
>
> 3 bits -> 8 bytes.
dohh!! true
/me ashamed.
> How about just using just bit 0 as an enable bit (not a disable bit).
> That means the default value of zero means the clock is disabled, and
> that we have a couple of more bits to enable future features.
Apart from the fact that it will break every single guest out there,
that's ok. As I said: these things are so early, that maybe we can pay
this price. Your call.
>> Signed-off-by: Glauber Costa <gcosta@redhat.com>
>> ---
>> arch/x86/kvm/x86.c | 5 +++++
>> 1 files changed, 5 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
>> index 6abd784..7ce14ce 100644
>> --- a/arch/x86/kvm/x86.c
>> +++ b/arch/x86/kvm/x86.c
>> @@ -591,6 +591,11 @@ int kvm_set_msr_common(struct kvm_vcpu *
>> if (vcpu->arch.time_page)
>> kvm_release_page_dirty(vcpu->arch.time_page);
>>
>> + /* 4-byte unaligned accesses are invalid */
>> + if (data & 0x7) {
>> + vcpu->arch.time_page = NULL;
>> + break;
>> + }
>> vcpu->arch.time = data & PAGE_MASK;
>> vcpu->arch.time_offset = data & ~PAGE_MASK;
>>
>>
>
>
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
next prev parent reply other threads:[~2008-03-06 12:01 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-05 18:41 [PATCH 0/4] kvmclock fixes Glauber Costa
2008-03-05 18:41 ` [PATCH 1/4] [PATCH] kvmclock: release time_page if msr is rewritten Glauber Costa
2008-03-05 18:41 ` [PATCH 2/4] [PATCH] cacheline-align kvmclock structures Glauber Costa
2008-03-05 18:41 ` [PATCH 3/4] [PATCH] kvmclock: allow it to be turned off Glauber Costa
2008-03-05 18:41 ` [PATCH 4/4] [PATCH] cleanup leftovers Glauber Costa
2008-03-06 6:49 ` Avi Kivity
2008-03-06 6:47 ` [PATCH 3/4] [PATCH] kvmclock: allow it to be turned off Avi Kivity
2008-03-06 12:01 ` Glauber Costa [this message]
2008-03-06 12:11 ` Avi Kivity
2008-03-06 12:15 ` Glauber Costa
2008-03-06 6:45 ` [PATCH 2/4] [PATCH] cacheline-align kvmclock structures Avi Kivity
2008-03-06 6:42 ` [PATCH 1/4] [PATCH] kvmclock: release time_page if msr is rewritten Avi Kivity
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=47CFDD2F.8010609@redhat.com \
--to=gcosta@redhat.com \
--cc=avi@qumranet.com \
--cc=chrisw@sous-sol.org \
--cc=kvm-devel@lists.sourceforge.net \
/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