aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/event.h
diff options
context:
space:
mode:
authorcl349@freefall.cl.cam.ac.uk <cl349@freefall.cl.cam.ac.uk>2004-11-10 14:32:43 +0000
committercl349@freefall.cl.cam.ac.uk <cl349@freefall.cl.cam.ac.uk>2004-11-10 14:32:43 +0000
commit7a5e8495786e141f9426932f0fec28a754b1ce35 (patch)
tree00063753f0502098238ddb505219c0ff521bfc96 /xen/include/xen/event.h
parent225da2d6cf45863d8c51aa59c1fa8134166f0563 (diff)
downloadxen-7a5e8495786e141f9426932f0fec28a754b1ce35.tar.gz
xen-7a5e8495786e141f9426932f0fec28a754b1ce35.tar.bz2
xen-7a5e8495786e141f9426932f0fec28a754b1ce35.zip
bitkeeper revision 1.1159.1.400 (4192268botrLPEWBvExDtqcSivVN3g)
Move virq to evtchn mapping to exec_domain.
Diffstat (limited to 'xen/include/xen/event.h')
-rw-r--r--xen/include/xen/event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/xen/event.h b/xen/include/xen/event.h
index c59439608f..7410c0aa8c 100644
--- a/xen/include/xen/event.h
+++ b/xen/include/xen/event.h
@@ -57,7 +57,7 @@ static inline void evtchn_set_pending(struct exec_domain *ed, int port)
*/
static inline void send_guest_virq(struct exec_domain *ed, int virq)
{
- evtchn_set_pending(ed, ed->domain->virq_to_evtchn[virq]);
+ evtchn_set_pending(ed, ed->virq_to_evtchn[virq]);
}
/*