aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/hypervisor.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2007-03-19 09:34:42 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2007-03-19 09:34:42 +0000
commitf55d16fa21b0e87079c4075597c355251131ad16 (patch)
treeccc6f55cff57702d75775855378046eab6a815d1 /extras/mini-os/hypervisor.c
parent569b0bb3b92ca539da34d41d092deb8edb7a81ce (diff)
downloadxen-f55d16fa21b0e87079c4075597c355251131ad16.tar.gz
xen-f55d16fa21b0e87079c4075597c355251131ad16.tar.bz2
xen-f55d16fa21b0e87079c4075597c355251131ad16.zip
minios: Various small fixes.
- Fixed type of variables in hypervisor.c. - Fixed not removing a waiter from watch_queue. - Make wait_for_watch() global accessible. Signed-off-by: Dietmar Hahn <dietmar.hahn@fujitsu-siemens.com>
Diffstat (limited to 'extras/mini-os/hypervisor.c')
-rw-r--r--extras/mini-os/hypervisor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/mini-os/hypervisor.c b/extras/mini-os/hypervisor.c
index 2c2efa7e46..ed87845195 100644
--- a/extras/mini-os/hypervisor.c
+++ b/extras/mini-os/hypervisor.c
@@ -35,8 +35,8 @@
void do_hypervisor_callback(struct pt_regs *regs)
{
- u32 l1, l2;
- unsigned int l1i, l2i, port;
+ unsigned long l1, l2, l1i, l2i;
+ unsigned int port;
int cpu = 0;
shared_info_t *s = HYPERVISOR_shared_info;
vcpu_info_t *vcpu_info = &s->vcpu_info[cpu];