[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Xen-devel] Re: [patch 13/26] Xen-paravirt_ops: Consistently wrap paravirt ops callsites to make them patchable
- To: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
- From: Zachary Amsden <zach@xxxxxxxxxx>
- Date: Tue, 20 Mar 2007 19:43:59 -0800
- Cc: Jeremy Fitzhardinge <jeremy@xxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxx, akpm@xxxxxxxxxxxxxxxxxxxx, virtualization@xxxxxxxxxxxxxx, netdev@xxxxxxxxxxxxxxx, Rusty Russell <rusty@xxxxxxxxxxxxxxx>, linux-kernel@xxxxxxxxxxxxxxx, chrisw@xxxxxxxxxxxx, Andi Kleen <ak@xxxxxx>, "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx>, anthony@xxxxxxxxxxxxx, mingo@xxxxxxx, David Miller <davem@xxxxxxxxxxxxx>
- Delivery-date: Tue, 20 Mar 2007 19:42:36 -0700
- List-id: Xen developer discussion <xen-devel.lists.xensource.com>
Linus Torvalds wrote:
On Tue, 20 Mar 2007, Zachary Amsden wrote:
Actually, I was thinking the irq handlers would just not mess around with
eflags on the stack, just call the chip to ack the interrupt and re-enable
hardware interrupts when they left, since that is free anyway with the iret.
No can do. Think level-triggered. You *need* to disable the interrupt, and
disabling it at the CPU is the easiest approach. Even so, you need to
worry about SMP and screaming interrupts at all CPU's, but if you don't
ack it to the IO-APIC until later, that should be ok (alternatively, you
need to just mask-and-ack the irq controller).
Well, you can keep it masked, but a more important point is that I've
entirely neglected local interrupts. This might work for IRQs, but for
local timer or thermal or IPIs, using the tasklet based replay simply
will not work.
One of the advantages of doing that is that you only ever have a queue of
one single entry, which then makes it easier to do the replay.
Yes. Unfortunately now both do_IRQ and all the smp_foo interrupt
handlers need to detect and queue for replay, but fortunately they all
have the interrupt number conveniently on the stack.
Zach
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|