aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/schedule.c
diff options
context:
space:
mode:
authorDavid Vrabel <david.vrabel@citrix.com>2013-10-14 10:18:24 +0200
committerJan Beulich <jbeulich@suse.com>2013-10-14 10:18:24 +0200
commit48974e6ce52ee21e08d0e621611371dc05624bbc (patch)
tree16e17bfaab58a77a9b6fa55c7312c41fda977d5d /xen/common/schedule.c
parent611d0ecc81bf948f6f9c592afdd6c2aebcfaaadb (diff)
downloadxen-48974e6ce52ee21e08d0e621611371dc05624bbc.tar.gz
xen-48974e6ce52ee21e08d0e621611371dc05624bbc.tar.bz2
xen-48974e6ce52ee21e08d0e621611371dc05624bbc.zip
evtchn: use a per-domain variable for the max number of event channels
Instead of the MAX_EVTCHNS(d) macro, use d->max_evtchns instead. This avoids having to repeatedly check the ABI type. Signed-off-by: David Vrabel <david.vrabel@citrix.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/common/schedule.c')
-rw-r--r--xen/common/schedule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/schedule.c b/xen/common/schedule.c
index b8e4cb4417..bfa6bee283 100644
--- a/xen/common/schedule.c
+++ b/xen/common/schedule.c
@@ -756,7 +756,7 @@ static long do_poll(struct sched_poll *sched_poll)
goto out;
rc = -EINVAL;
- if ( port >= MAX_EVTCHNS(d) )
+ if ( port >= d->max_evtchns )
goto out;
rc = 0;