From: Gerd Hoffmann <kraxel@suse.de>
To: Chris Wright <chrisw@sous-sol.org>
Cc: Virtualization Mailing List <virtualization@lists.osdl.org>
Subject: Re: Oops
Date: Thu, 11 Jan 2007 16:45:00 +0100 [thread overview]
Message-ID: <45A65B7C.6050503@suse.de> (raw)
In-Reply-To: <20070110235232.GE19575@sequoia.sous-sol.org>
[-- Attachment #1: Type: text/plain, Size: 1132 bytes --]
Chris Wright wrote:
>
> This should not be needed, the console should be xcv0, completely decoupled
> from serial.
You've made the whole thing even more complicated with the last commit.
Enabling VT is possible now. Good. No way around that. The kernel
hangs now though. Fix is attached: better don't try to setup the vga
console for xen guests which don't have the hardware.
Next problem: The default for xencons (tty) conflicts with the virtual
consoles. I'm tempted to drop the complete xencons=foobar stuff into
the waste basket and leave in xencons=xvc only. And maybe xencons=off.
xencons=tty conflicts with the VT subsystem. xencons=ttyS conflicts
with the serial driver. Disabling the offending drivers is completely
out of question for a kernel which is supposed to work both native and
paravirtualized.
One more issue: What should be the default console? Right now it is
the vt console (using the dummy device). Not very good. vgacon doesn't
work. fbcon doesn't work either (yet). So you'll end up with a
non-functional console by default. Bummer.
cheers,
Gerd
--
Gerd Hoffmann <kraxel@suse.de>
[-- Attachment #2: vga --]
[-- Type: text/plain, Size: 1009 bytes --]
Index: paravirt-2.6.20-rc4-hg699/arch/i386/kernel/setup.c
===================================================================
--- paravirt-2.6.20-rc4-hg699.orig/arch/i386/kernel/setup.c
+++ paravirt-2.6.20-rc4-hg699/arch/i386/kernel/setup.c
@@ -61,6 +61,7 @@
#include <asm/ist.h>
#include <asm/io.h>
#include <asm/vmi.h>
+#include <asm/hypervisor.h>
#include <setup_arch.h>
#include <bios_ebda.h>
@@ -651,12 +652,17 @@ void __init setup_arch(char **cmdline_p)
e820_register_memory();
#ifdef CONFIG_VT
-#if defined(CONFIG_VGA_CONSOLE)
- if (!efi_enabled || (efi_mem_type(0xa0000) != EFI_CONVENTIONAL_MEMORY))
- conswitchp = &vga_con;
-#elif defined(CONFIG_DUMMY_CONSOLE)
+#if defined(CONFIG_DUMMY_CONSOLE)
conswitchp = &dummy_con;
#endif
+#if defined(CONFIG_VGA_CONSOLE)
+ if (efi_enabled && (efi_mem_type(0xa0000) == EFI_CONVENTIONAL_MEMORY))
+ goto novga;
+ if (is_running_on_xen() && !is_initial_xendomain())
+ goto novga;
+ conswitchp = &vga_con;
+novga:
+#endif
#endif
tsc_init();
}
[-- Attachment #3: Type: text/plain, Size: 165 bytes --]
_______________________________________________
Virtualization mailing list
Virtualization@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/virtualization
next prev parent reply other threads:[~2007-01-11 15:45 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-09 13:34 Oops Gerd Hoffmann
2007-01-09 22:46 ` Oops Jeremy Fitzhardinge
2007-01-10 8:16 ` Oops Gerd Hoffmann
2007-01-10 10:29 ` Oops Gerd Hoffmann
2007-01-10 13:05 ` Oops Gerd Hoffmann
2007-01-10 20:07 ` Oops Jeremy Fitzhardinge
2007-01-10 23:52 ` Oops Chris Wright
2007-01-10 23:53 ` Oops Jeremy Fitzhardinge
2007-01-11 8:13 ` Oops Gerd Hoffmann
2007-01-11 8:11 ` Oops Gerd Hoffmann
2007-01-11 15:45 ` Gerd Hoffmann [this message]
2007-01-11 17:41 ` Oops Chris Wright
2007-01-12 8:24 ` Oops Gerd Hoffmann
2007-01-12 2:53 ` Oops Rusty Russell
2007-01-12 4:23 ` Oops Chris Wright
2007-01-12 8:31 ` Oops Gerd Hoffmann
2007-01-10 20:06 ` Oops Jeremy Fitzhardinge
2007-01-10 21:44 ` Oops Jeremy Fitzhardinge
2007-01-11 14:12 ` Oops Gerd Hoffmann
2007-01-11 19:56 ` Oops Jeremy Fitzhardinge
2007-01-10 19:38 ` Oops Jeremy Fitzhardinge
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=45A65B7C.6050503@suse.de \
--to=kraxel@suse.de \
--cc=chrisw@sous-sol.org \
--cc=virtualization@lists.osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).