WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] Re: FW: about VIRQ & PIRQ

To: xen-devel@xxxxxxxxxxxxxxxxxxx, Mats Petersson <Mats.Petersson@xxxxxxx>, "pradeep singh rautela\"" <rautelap@xxxxxxxxx>, Mark Williamson <mark.williamson@xxxxxxxxxxxx>
Subject: [Xen-devel] Re: FW: about VIRQ & PIRQ
From: Koripella Srinivas <talkwithsrinivas@xxxxxxxxxxx>
Date: Thu, 7 Jun 2007 08:16:27 +0530 (IST)
Delivery-date: Wed, 06 Jun 2007 19:44:48 -0700
Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.co.in; h=Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=lxf5mQBxb9MORy9lYOx06z9aNi54MUS6u+FX0SD7cFm3P52uHxs0x/HfqrmvFPb89Qb4wivHErE3lAt7PdUanMEs+U/O7+Vch1Jjq4uyr5yceS6Og/x175NvT5nwdROZ9eI7uCSCiTDSXmtigwZwUbeGDsqMGjqbX8vMayOiPeI=;
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hi,
>To understand better, have a look at .../xen/arch/x86/irq.c, and in
>particular the function __do_IRQ_guest().

But do hvm guests use event channels as used in /xen/arch/x86/irq.c. My thinking was they use emulated pic/apic.



----- Original Message ----
From: "xen-devel-request@xxxxxxxxxxxxxxxxxxx" <xen-devel-request@xxxxxxxxxxxxxxxxxxx>
To: xen-devel@xxxxxxxxxxxxxxxxxxx
Sent: Wednesday, 6 June, 2007 8:37:57 PM
Subject: Xen-devel Digest, Vol 28, Issue 52

Send Xen-devel mailing list submissions to
    xen-devel@xxxxxxxxxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
    http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel
or, via email, send a message with subject or body 'help' to
    xen-devel-request@xxxxxxxxxxxxxxxxxxx

You can reach the person managing the list at
    xen-devel-owner@xxxxxxxxxxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Xen-devel digest..."


Today's Topics:

   1. RE: FW: about VIRQ & PIRQ (Petersson, Mats)
   2. Re: FW: about VIRQ & PIRQ (pradeep singh rautela)
   3. Re: [patch 14/33] xen: xen time implementation
      (Jeremy Fitzhardinge)
   4. Re: troubles using network boot with HVM guest (Guillaume Rousse)
   5. Re: troubles using network boot with HVM guest (Tim Deegan)


----------------------------------------------------------------------

Message: 1
Date: Wed, 6 Jun 2007 16:09:06 +0200
From: "Petersson, Mats" <Mats.Petersson@xxxxxxx>
Subject: RE: [Xen-devel] FW: about VIRQ & PIRQ
To: "pradeep singh rautela" <rautelap@xxxxxxxxx>,    "Mark Williamson"
    <mark.williamson@xxxxxxxxxxxx>
Cc: "Gautham Kampalapur Shankar, TLS, Chennai" <gauthamk@xxxxxx>,
    xen-devel@xxxxxxxxxxxxxxxxxxx
Message-ID:
    <907625E08839C4409CE5768403633E0B02561DD1@xxxxxxxxxxxxxxxxx>
Content-Type: text/plain; charset=us-ascii



> -----Original Message-----
> From: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
> [mailto:xen-devel-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of
> pradeep singh rautela
> Sent: 06 June 2007 09:19
> To: Mark Williamson
> Cc: Gautham Kampalapur Shankar, TLS, Chennai;
> xen-devel@xxxxxxxxxxxxxxxxxxx
> Subject: Re: [Xen-devel] FW: about VIRQ & PIRQ
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
>
> Hi Mark,
> [snip]
> >
> > If I recall correctly, PIRQs are mapped one-to-one onto the
> lower numbered
> > event channels (I'm not sure if this is specific to
> XenLinux or part of the
> > Xen API).
> >
> > A VIRQ is a interrupt-like event that originates from Xen
> itself.  An example
> > would be notifications from the Xen virtual timer device.  
> Again, the guest
> > sees it as an event channel notification but this time we
> call it a VIRQ to
> > show that it comes from an entirely *virtual* source.
> Does this means if hypervisor recieves an interrupt from an external
> card on the behalf of a domU, it actually buffers it like a an APIC
> before eventually generating a VIRQ to the respective domU?


Yes, essentially so. There is a bitmap for each guest of "pending
interrupts", which is read based on an event to the guest.

>
> The above question is more obvious when we have an external hardware
> device which generates interrupts are a very high rate e.g a busy
> network card.
>
> So, does Xen buffers the recieved IRQs if it is unable to send the IRQ
> to the correct domU?

It is "never unable" to send the IRQ to the guest. The guest may be
unable to TAKE the interrupt at this point, but it's never unable for
the hypervisor to "send" the IRQ to the guest.

To understand better, have a look at .../xen/arch/x86/irq.c, and in
particular the function __do_IRQ_guest().

>
> I hope same holds true while handling interrupts on the
> behalf of dom0.
> Or is it that, Xen just forwards the interrupt to dom0 which then
> handles the actual creation of a VIRQ using event channels to notify a
> domU?

I think I've told you before, Dom0 is no different from any other domain
when it comes to how it interacts with the hypervisor, aside from having
a bit set that says "You're allowed to do things like
creating/destroying other guests". Interrupt handling in Dom0 is exactly
identical to any other guest - there is nothing in the above irq.c file
that says "if (domain is dom0) ..." (in fact, the only domain_id usage
is for a printk in the "dump_irqs" function, which is for dumping the
current IRQ state on the console when in Xen console-mode.

--
Mats
>
> Thank you
> - --psr
>
> >
> > There are actually more variations to event channels:
> events might also come
> > from another domain we are communicating with, or (I think)
> from another VCPU
> > in the same domain.
> >
> > Hope this helps,
> > Cheers,
> > Mark
> >
> > --
> > Dave: Just a question. What use is a unicyle with no seat?  
> And no pedals!
> > Mark: To answer a question with a question: What use is a
> skateboard?
> > Dave: Skateboards have wheels.
> > Mark: My wheel has a wheel!
> >
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@xxxxxxxxxxxxxxxxxxx
> > http://lists.xensource.com/xen-devel
> >
>
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.6 (GNU/Linux)
> Comment: http://firegpg.tuxfamily.org
>
> iD8DBQFGZm36ky6Gd9lpXlERApaLAJ9PHCvWMG8a16m3gNhb2P/dlJMi2QCfbFkN
> b7sUQ0B9sswcA2gxxsQTdBo=
> =YlzF
> -----END PGP SIGNATURE-----
> --
> ---
> pradeep singh rautela
>
> "Genius is 1% inspiration, and 99% perspiration" - not me :)
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@xxxxxxxxxxxxxxxxxxx
> http://lists.xensource.com/xen-devel
>
>
>





------------------------------

Message: 2
Date: Wed, 6 Jun 2007 19:44:08 +0530
From: "pradeep singh rautela" <rautelap@xxxxxxxxx>
Subject: Re: [Xen-devel] FW: about VIRQ & PIRQ
To: "Petersson, Mats" <Mats.Petersson@xxxxxxx>
Cc: "Gautham Kampalapur Shankar, TLS, Chennai" <gauthamk@xxxxxx>,
    xen-devel@xxxxxxxxxxxxxxxxxxx,    Mark Williamson
    <mark.williamson@xxxxxxxxxxxx>
Message-ID:
    <6bc632150706060714l5ba382a2ra5cbd92d9b7f0494@xxxxxxxxxxxxxx>
Content-Type: text/plain; charset=UTF-8; format=flowed

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 6/6/07, Petersson, Mats  wrote:
[snip]
> > Does this means if hypervisor recieves an interrupt from an external
> > card on the behalf of a domU, it actually buffers it like a an APIC
> > before eventually generating a VIRQ to the respective domU?
>
>
> Yes, essentially so. There is a bitmap for each guest of "pending
> interrupts", which is read based on an event to the guest.
>
> >
> > The above question is more obvious when we have an external hardware
> > device which generates interrupts are a very high rate e.g a busy
> > network card.
> >
> > So, does Xen buffers the recieved IRQs if it is unable to send the IRQ
> > to the correct domU?
>
> It is "never unable" to send the IRQ to the guest. The guest may be
> unable to TAKE the interrupt at this point, but it's never unable for
> the hypervisor to "send" the IRQ to the guest.

Yes, messed that up here.
>
> To understand better, have a look at .../xen/arch/x86/irq.c, and in
> particular the function __do_IRQ_guest().
>
> >
> > I hope same holds true while handling interrupts on the
> > behalf of dom0.
> > Or is it that, Xen just forwards the interrupt to dom0 which then
> > handles the actual creation of a VIRQ using event channels to notify a
> > domU?
>
> I think I've told you before, Dom0 is no different from any other domain
> when it comes to how it interacts with the hypervisor, aside from having
> a bit set that says "You're allowed to do things like
> creating/destroying other guests". Interrupt handling in Dom0 is exactly
> identical to any other guest - there is nothing in the above irq.c file
> that says "if (domain is dom0) ..." (in fact, the only domain_id usage
> is for a printk in the "dump_irqs" function, which is for dumping the
> current IRQ state on the console when in Xen console-mode.

Thank you Mats.

Regards
- --psr
>
> --
> Mats
> >
> > Thank you
> > - --psr
> >
> > >
> > > There are actually more variations to event channels:
> > events might also come
> > > from another domain we are communicating with, or (I think)
> > from another VCPU
> > > in the same domain.
> > >
> > > Hope this helps,
> > > Cheers,
> > > Mark
> > >
> > > --
> > > Dave: Just a question. What use is a unicyle with no seat?
> > And no pedals!
> > > Mark: To answer a question with a question: What use is a
> > skateboard?
> > > Dave: Skateboards have wheels.
> > > Mark: My wheel has a wheel!
> > >
> > > _______________________________________________
> > > Xen-devel mailing list
> > > Xen-devel@xxxxxxxxxxxxxxxxxxx
> > > http://lists.xensource.com/xen-devel
> > >
> >
> >
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.6 (GNU/Linux)
> > Comment: http://firegpg.tuxfamily.org
> >
> > iD8DBQFGZm36ky6Gd9lpXlERApaLAJ9PHCvWMG8a16m3gNhb2P/dlJMi2QCfbFkN
> > b7sUQ0B9sswcA2gxxsQTdBo=
> > =YlzF
> > -----END PGP SIGNATURE-----
> > --
> > ---
> > pradeep singh rautela
> >
> > "Genius is 1% inspiration, and 99% perspiration" - not me :)
> >
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@xxxxxxxxxxxxxxxxxxx
> > http://lists.xensource.com/xen-devel
> >
> >
> >
>
>
>


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: http://firegpg.tuxfamily.org

iD8DBQFGZsEZky6Gd9lpXlERAhXHAJ98OdKCPTGoi3DeKQgTzgkzK8yH7ACdEaJC
6vBKuDO2Ro5+s/o1jQk7AN4=
=jN20
-----END PGP SIGNATURE-----
--
---
pradeep singh rautela

"Genius is 1% inspiration, and 99% perspiration" - not me :)



------------------------------





Did you know? You can CHAT without downloading messenger. Know how!
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>