summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xen/evt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/evt.c b/xen/evt.c
index 6346baa0..c62e1d59 100644
--- a/xen/evt.c
+++ b/xen/evt.c
@@ -62,12 +62,12 @@ void hyp_c_callback(void *ret_addr, void *regs)
if (ivect[n]) {
spl_t spl = splx(intpri[n]);
- asm ("lock; andl %1,%0":"=m"(hyp_shared_info.evtchn_pending[i]):"r"(~(1<<j)));
+ asm ("lock; and %1,%0":"=m"(hyp_shared_info.evtchn_pending[i]):"r"(~(1UL<<j)));
ivect[n](iunit[n], spl, ret_addr, regs);
splx_cli(spl);
} else {
printf("warning: lost unbound event %d\n", n);
- asm ("lock; andl %1,%0":"=m"(hyp_shared_info.evtchn_pending[i]):"r"(~(1<<j)));
+ asm ("lock; and %1,%0":"=m"(hyp_shared_info.evtchn_pending[i]):"r"(~(1UL<<j)));
}
}
}