projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a0c6a3
)
Give a error when running out of iomem areas.
author
Riku Voipio
<riku.voipio@nokia.com>
Thu, 3 Dec 2009 13:56:05 +0000
(15:56 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Fri, 18 Dec 2009 22:23:56 +0000
(23:23 +0100)
The limit of iomem areas is quite low. Without the
debug print, it is quite hard to figure out why more
devices are not getting registered.
Signed-off-by: Riku Voipio <riku.voipio@nokia.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
exec.c
patch
|
blob
|
history
diff --git
a/exec.c
b/exec.c
index 44c34e6422daf74e8ad9209c4cb346b49e486aab..21a02f6c456a6822310bba27aa1ec0b55552479a 100644
(file)
--- a/
exec.c
+++ b/
exec.c
@@
-2919,7
+2919,7
@@
static int get_free_io_mem_idx(void)
io_mem_used[i] = 1;
return i;
}
-
+ fprintf(stderr, "RAN out out io_mem_idx, max %d !\n", IO_MEM_NB_ENTRIES);
return -1;
}