|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH 1 of 1] stubdom hanging at creation
Isn't that just an unintended whitespace change ?
It is re-indentation actually, sorry about that. Here is the refreshed
patch without it.
diff --git a/vl.c b/vl.c
index 404d67a..0d9a3b4 100644
--- a/vl.c
+++ b/vl.c
@@ -5967,16 +5967,16 @@ int main(int argc, char **argv, char **envp)
/* just use the first displaystate for the moment */
ds = display_state;
/* terminal init */
-#ifdef CONFIG_STUBDOM
- if (xenfb_pv_display_init(ds) == 0) {
- } else
-#endif
if (nographic) {
if (curses) {
fprintf(stderr, "fatal: -nographic can't be used with -curses\n");
exit(1);
}
} else {
+#if defined(CONFIG_STUBDOM)
+ if (xenfb_pv_display_init(ds) == 0) {
+ } else
+#endif
#if defined(CONFIG_CURSES)
if (curses) {
/* At the moment curses cannot be used with other displays */
--
Eric Chanudet
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|