From: Sheng Yang <sheng@linux.intel.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Avi Kivity <avi@redhat.com>, kvm@vger.kernel.org
Subject: Re: [PATCH 5/8] KVM: Using gsi_msg mapping for MSI device assignment
Date: Wed, 24 Dec 2008 10:41:05 +0800 [thread overview]
Message-ID: <200812241041.05458.sheng@linux.intel.com> (raw)
In-Reply-To: <20081223180515.GC5449@amt.cnet>
On Wednesday 24 December 2008 02:05:15 Marcelo Tosatti wrote:
> On Tue, Dec 23, 2008 at 04:00:28PM +0800, Sheng Yang wrote:
> > Convert MSI userspace interface to support gsi_msg mapping(and nobody
> > should be the user of the old interface...).
> >
> > Signed-off-by: Sheng Yang <sheng@linux.intel.com>
> > ---
> > include/linux/kvm_host.h | 1 -
> > virt/kvm/kvm_main.c | 33 ++++++++++++++++++++-------------
> > 2 files changed, 20 insertions(+), 14 deletions(-)
> >
> > diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
> > index db9de47..50b3ff6 100644
> > --- a/virt/kvm/kvm_main.c
> > +++ b/virt/kvm/kvm_main.c
> > @@ -92,20 +92,28 @@ static void assigned_device_msi_dispatch(struct
> > kvm_assigned_dev_kernel *dev) int vcpu_id;
> > struct kvm_vcpu *vcpu;
> > struct kvm_ioapic *ioapic = ioapic_irqchip(dev->kvm);
> > - int dest_id = (dev->guest_msi.address_lo & MSI_ADDR_DEST_ID_MASK)
> > - >> MSI_ADDR_DEST_ID_SHIFT;
> > - int vector = (dev->guest_msi.data & MSI_DATA_VECTOR_MASK)
> > - >> MSI_DATA_VECTOR_SHIFT;
> > - int dest_mode = test_bit(MSI_ADDR_DEST_MODE_SHIFT,
> > - (unsigned long *)&dev->guest_msi.address_lo);
> > - int trig_mode = test_bit(MSI_DATA_TRIGGER_SHIFT,
> > - (unsigned long *)&dev->guest_msi.data);
> > - int delivery_mode = test_bit(MSI_DATA_DELIVERY_MODE_SHIFT,
> > - (unsigned long *)&dev->guest_msi.data);
> > + struct kvm_gsi_msg *gsi_msg =
> > + kvm_find_gsi_msg(dev->kvm, dev->guest_irq);
>
> kvm_find_gsi_msg requires the gsi_msg mutex held?
Missed, thanks!
>
> > + delivery_mode = test_bit(MSI_DATA_DELIVERY_MODE_SHIFT,
> > + (unsigned long *)&gsi_msg->msg.data);
> > deliver_bitmask = kvm_ioapic_get_delivery_bitmask(ioapic,
> > dest_id, dest_mode);
> > /* IOAPIC delivery mode value is the same as MSI here */
>
> Please unify the IOAPIC specific code in assigned_device_msi_dispatch
> with ioapic_deliver.
I meant to do this, but seems it won't reduce the complexity much... We got a
large number of input(delivery mode), and two or three kind of output(for >
FIXED, LOWPRI, and NMI for IOAPIC). What I can think of is unify output to a
delivery_mask, and use something like:
>
> for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
> if (!(deliver_bitmask & (1 << vcpu_id)))
> continue;
> deliver_bitmask &= ~(1 << vcpu_id);
> vcpu = ioapic->kvm->vcpus[vcpu_id];
> if (vcpu) {
> r = xxx_inj_irq(ioapic, vcpu, vector,
> trig_mode, delivery_mode);
> }
> }
And xxx_inj_irq() need a judgment for the delivery mode NMI in ioapic...
Maybe we can reduce ~20 lines by refactoring this. I will give a try... (Um,
duplicate is always unbearable thing)
--
regards
Yang, Sheng
next prev parent reply other threads:[~2008-12-24 2:41 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-23 8:00 [PATCH 0/8] MSI enhancement Sheng Yang
2008-12-23 8:00 ` [PATCH 1/8] KVM: Add MSI_ACTION flag for assigned irq Sheng Yang
2008-12-23 17:32 ` Marcelo Tosatti
2008-12-24 2:24 ` Sheng Yang
2008-12-27 19:24 ` Marcelo Tosatti
2008-12-23 8:00 ` [PATCH 2/8] KVM: Use kvm_free_assigned_irq() for free irq Sheng Yang
2008-12-23 15:18 ` Marcelo Tosatti
2008-12-25 8:42 ` Sheng Yang
2008-12-23 8:00 ` [PATCH 3/8] KVM: Add support to disable MSI for assigned device Sheng Yang
2008-12-23 8:00 ` [PATCH 4/8] KVM: Add a route layer to convert MSI message to GSI Sheng Yang
2008-12-23 17:55 ` Marcelo Tosatti
2008-12-24 2:31 ` Sheng Yang
2008-12-25 1:59 ` Sheng Yang
2008-12-27 19:27 ` Marcelo Tosatti
2008-12-28 11:14 ` Sheng Yang
2008-12-23 8:00 ` [PATCH 5/8] KVM: Using gsi_msg mapping for MSI device assignment Sheng Yang
2008-12-23 18:05 ` Marcelo Tosatti
2008-12-24 2:41 ` Sheng Yang [this message]
2008-12-23 8:00 ` [PATCH 6/8] KVM: Improve MSI dispatch function Sheng Yang
2008-12-23 8:00 ` [PATCH 7/8] KVM: Using ioapic_irqchip() macro for kvm_set_irq Sheng Yang
2008-12-23 8:00 ` [PATCH 8/8] KVM: Merge MSI handling to kvm_set_irq Sheng Yang
2008-12-23 18:10 ` Marcelo Tosatti
2008-12-24 2:44 ` Sheng Yang
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=200812241041.05458.sheng@linux.intel.com \
--to=sheng@linux.intel.com \
--cc=avi@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.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