search for: xc_mode

Displaying 6 results from an estimated 6 matches for "xc_mode".

2006 Sep 02
6
[PATCH] Paravirt framebuffer use xvc as console [4/5]
This is the patch from Amos Waterland for the xenconsole to use /dev/xvc0 instead of taking over ttys. I''ve fixed a few places which needed to check for XVC mode in addition to serial mode. Also, until LANANA responds with an official minor, I''ve adjusted it to use char 250/187 (in the experimental range) as opposed to 204/187. (Should be identical to this patch from last
2004 Nov 30
0
Re: Xen debug help
...Nov 30 23:25:07 2004 +++ b/linux-2.6.9-xen-sparse/drivers/xen/console/console.c Tue Nov 30 23:25:07 2004 @@ -174,7 +174,7 @@ void xen_console_init(void) #endif { - if ( xen_start_info.flags & SIF_INITDOMAIN ) + if ( 1 || xen_start_info.flags & SIF_INITDOMAIN ) { if ( xc_mode == XC_DEFAULT ) xc_mode = XC_SERIAL; diff -Nru a/xen/Rules.mk b/xen/Rules.mk --- a/xen/Rules.mk Tue Nov 30 23:25:07 2004 +++ b/xen/Rules.mk Tue Nov 30 23:25:07 2004 @@ -1,6 +1,6 @@ -verbose ?= n -debug ?= n +verbose ?= y +debug ?= y debugger ?= n perfc...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...*data) >-{ >- unsigned long flags; >- spin_lock_irqsave(&xencons_lock, flags); >- __xencons_tx_flush(); >- spin_unlock_irqrestore(&xencons_lock, flags); > } > > /* Privileged receive callback and transmit kicker. */ >@@ -726,6 +675,8 @@ > if ( xc_mode == XC_OFF ) > return 0; > >+ xencons_ring_init(); >+ > #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) > xencons_driver = alloc_tty_driver((xc_mode == XC_SERIAL) ? > 1 : MAX_NR_CONSOLES); >@@ -802,7 +753,8 @@ >...
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
43
[RFC PATCH 00/35] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2007 Apr 18
33
[RFC PATCH 00/33] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths