aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/rangeset.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-12-31 13:11:47 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-12-31 13:11:47 +0100
commita8f5fb85087a4ebb9319fe6687eb60f29acbdb35 (patch)
tree7823df9508607e7cf26d4d1cb10ddbde7cfb7b07 /xen/common/rangeset.c
parent9be588cacbb822263f3327d00e667e241fae36ad (diff)
downloadxen-a8f5fb85087a4ebb9319fe6687eb60f29acbdb35.tar.gz
xen-a8f5fb85087a4ebb9319fe6687eb60f29acbdb35.tar.bz2
xen-a8f5fb85087a4ebb9319fe6687eb60f29acbdb35.zip
Store admin-specified ioport capabilities in a rangeset
rather than a bitmap. arch_do_createdomain() can now fail and the caller will clean up. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common/rangeset.c')
-rw-r--r--xen/common/rangeset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/rangeset.c b/xen/common/rangeset.c
index 228986c33a..a1680a29f2 100644
--- a/xen/common/rangeset.c
+++ b/xen/common/rangeset.c
@@ -350,7 +350,7 @@ void rangeset_printk(
spin_lock(&r->lock);
- printk("%10s {", r->name);
+ printk("%-10s {", r->name);
for ( x = first_range(r); x != NULL; x = next_range(r, x) )
{