From: "Yang, Sheng" <sheng.yang@intel.com>
To: Avi Kivity <avi@qumranet.com>
Cc: kvm-devel@lists.sourceforge.net
Subject: Re: [PATCH] KVM: Add reset support for in kernel PIT
Date: Sun, 16 Mar 2008 23:01:57 +0800 [thread overview]
Message-ID: <200803162301.57357.sheng.yang@intel.com> (raw)
In-Reply-To: <47DD3089.9010900@qumranet.com>
On Sunday 16 March 2008 22:36:57 Avi Kivity wrote:
> Yang, Sheng wrote:
> > From 2d08f4266a8f47d9c52db9d4f629ab5d2f8fd044 Mon Sep 17 00:00:00 2001
> > From: Sheng Yang <sheng.yang@intel.com>
> > Date: Thu, 13 Mar 2008 10:22:26 +0800
> > Subject: [PATCH] KVM: Add reset support for in kernel PIT
> >
> > Separate the reset part and prepare for reset support.
> >
> >
> >
> > diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c
> > index 7776f50..06a241a 100644
> > --- a/arch/x86/kvm/i8254.c
> > +++ b/arch/x86/kvm/i8254.c
> > @@ -476,12 +476,28 @@ static int speaker_in_range(struct kvm_io_device
> > *this, gpa_t addr)
> > return (addr == KVM_SPEAKER_BASE_ADDRESS);
> > }
> >
> > -struct kvm_pit *kvm_create_pit(struct kvm *kvm)
> > +void kvm_pit_reset(struct kvm_pit *pit)
> > {
> > int i;
> > + struct kvm_kpit_channel_state *c;
> > +
> > + mutex_lock(&pit->pit_state.lock);
> > + for (i = 0; i < 3; i++) {
> > + c = &pit->pit_state.channels[i];
> > + c->mode = 0xff;
> > + c->gate = (i != 2);
> > + pit_load_count(pit->kvm, i, 0);
> > + }
> > + mutex_unlock(&pit->pit_state.lock);
> > +
> > + atomic_set(&pit->pit_state.pit_timer.pending, 0);
> > + pit->pit_state.inject_pending = 1;
> > +}
>
> Don't you need an hrtimer_cancel() here, in case this is a true reset
> and not part of initialization?
This was done implicitly, when the function call pit_load_count() with
c->mode=0xff. But may be it's better to do it explicitly?
--
Thanks
Yang, Sheng
-------------------------------------------------------------------------
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-16 15:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-13 2:24 [PATCH] KVM: Add reset support for in kernel PIT Yang, Sheng
2008-03-16 14:36 ` Avi Kivity
2008-03-16 15:01 ` Yang, Sheng [this message]
2008-03-16 15:15 ` 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=200803162301.57357.sheng.yang@intel.com \
--to=sheng.yang@intel.com \
--cc=avi@qumranet.com \
--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 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.