Displaying 15 results from an estimated 15 matches for "old_irq".
2008 Dec 09
4
[VT-D]iommu.c:775: iommu_page_fault: iommu->reg = ffff828bfff57000
...rors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to
Xen)
(XEN) Freed 112kB init memory.
(XEN) ioapic_guest_write: apic=0, pin=17, old_irq=-1, new_irq=-1
(XEN) ioapic_guest_write: old_entry=00010299, new_entry=0001a9c0
(XEN) ioapic_guest_write: Special delivery mode 2 with non-zero vector 99
(XEN) ioapic_guest_write: apic=0, pin=21, old_irq=-1, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000102d9, new_entry=0001a9d0
(XEN) ioapic_gu...
2009 Jul 27
0
Problems with power management xen 3.4
...rors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch
input to Xen)
(XEN) Freed 132kB init memory.
(XEN) ioapic_guest_write: apic=0, pin=2, old_irq=0, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000000f0, new_entry=00010000
(XEN) ioapic_guest_write: Attempt to remove IO-APIC pin of in-use IRQ!
(XEN) ioapic_guest_write: apic=0, pin=0, old_irq=-1, new_irq=0
(XEN) ioapic_guest_write: old_entry=00010000, new_entry=000000f0
(XEN) ioapic_guest_wr...
2010 Mar 24
0
Error booting git xen/stable-2.6.31.12
....6.31.6-pvops-dom0-xen-master-x86_64
"
XenSerialConsole mensage when system hangs and attached console error.
(XEN) Freed 136kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
(XEN) io_apic.c:2126:
(XEN) ioapic_guest_write: apic=0, pin=2, old_irq=0, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000000f0, new_entry=00010000
(XEN) ioapic_guest_write: Attempt to remove IO-APIC pin of in-use IRQ!
(XEN) io_apic.c:2126:
(XEN) ioapic_guest_write: apic=0, pin=4, old_irq=4, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000000f1, new_entry=00010000...
2009 May 30
1
Problems with power management
I do not seem to be able to get any where with the power management
functions. I have had a look at the xenpm Wiki page, but it hasn''t
helped. Its probably something completely obvious, but I can''t see it.
I running Xen 3.4.0 on Centos 5.3 x86_64 using the gitco RPMs on an
Intel S5000PSL motherboard with 2 x Xeon 5410s. Dom0 is running the
latest Centos 5.3 kernel.
My xm
2008 Nov 29
24
pv_ops dom0 testing
I am trying to get a pv_ops dom0 working for testing,
but I am running into an elf_init error:
(XEN) *** LOADING DOMAIN 0 ***
(XEN) elf_init: not an ELF binary
Full output attached.
>From what I have read on the mailing lists, it seems
that it is usually a problem with either grub or a
corrupt dom0 kernel.
Attached is my kernel config (2.6.28-rc6-tip).
I followed the instructions on:
2012 Jan 23
0
Re: Grant-table error messages in a crash log
...and how I can resolve it, if it is an issue.
(XEN) *** Serial input -> Xen (type ''CTRL-a'' three times to switch input to DOM0)
(XEN) Freed 128kB init memory.
(XEN) __csched_vcpu_acct_start: setting dom 0 as the privileged domain
(XEN) ioapic_guest_write: apic=0, pin=19, old_irq=-1, new_irq=-1
(XEN) ioapic_guest_write: old_entry=00010a44, new_entry=0001a031
(XEN) ioapic_guest_write: Special delivery mode 2 with non-zero vector 44
(XEN) ''h'' pressed -> showing installed handlers
(XEN) key ''%'' (ascii ''25'') =>...
2009 Aug 28
64
[PATCH 2/2] graphics passthrough with VT-d
This patch supports basic gfx passthrough on QEMU:
- disable emulated VGA adpater if there is passthroughed gfx
- register/unregister legacy VGA I/O ports and MMIOs for passthroughed gfx
Signed-off-by: Ben Lin <ben.y.lin@intel.com>
Signed-off-by: Weidong Han <weidong.han@intel.com>
_______________________________________________
Xen-devel mailing list
2008 May 28
0
xen-unstable hvm problem
...buffers: disabled
(XEN) Std. Loglevel: Errors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch input to Xen)
(XEN) Freed 100kB init memory.
(XEN) ioapic_guest_write: apic=0, pin=4, old_irq=4, new_irq=4
(XEN) ioapic_guest_write: old_entry=000009f1, new_entry=000109f1
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...*/
+char *SerialHead = serial_buf; /* Head of serial port rx buffer */
+char *SerialTail = serial_buf; /* Tail of serial port rx buffer */
static unsigned char IRQMask[2]; /* PIC IRQ mask status */
@@ -39,11 +39,11 @@ void sirq_cleanup(void);
static void irq_common(unsigned short old_irq)
{
- unsigned char *dst;
+ char *dst;
irqhandler_t next;
char val;
- dst = (unsigned char *)SerialHead;
+ dst = SerialHead;
next = (irqhandler_t)oldirq[old_irq];
/* LSR */
@@ -57,7 +57,7 @@ static void irq_common(unsigned short old_irq)
val = inb(SerialPort + 5);
if ((val & F...
2009 Mar 04
1
pv_ops kernel 2.6.29-rc6 boot failure
...VGA console.
(XEN) *** Serial input -> DOM0 (type ''CTRL-a'' three times to switch
input to Xen)
(XEN) Freed 132kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
(XEN) io_apic.c:2147:
(XEN) ioapic_guest_write: apic=0, pin=2, old_irq=0, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000009f0, new_entry=00010900
(XEN) ioapic_guest_write: Attempt to remove IO-APIC pin of in-use IRQ!
(XEN) io_apic.c:2147:
(XEN) ioapic_guest_write: apic=0, pin=4, old_irq=4, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000009f1, new_entry=00010900...
2008 Aug 31
0
crash at shutdown
...I Interrupt Link [LNKF] (IRQs 3 4 *5 6 7 10 11 14 15)
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled.
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
(XEN) ioapic_guest_write: apic=0, pin=4, old_irq=4, new_irq=4
(XEN) ioapic_guest_write: old_entry=000009f1, new_entry=000109f1
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
pnp: PnP ACPI: found 14 devices
xen_mem: Initialising balloon driver.
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Us...
2009 Jan 31
14
[PATCH 2/3] xen: make direct versions of irq_enable/disable/save/restore to common code
Now that x86-64 has directly accessible percpu variables, it can also
implement the direct versions of these operations, which operate on a
vcpu_info structure directly embedded in the percpu area.
In fact, the 64-bit versions are more or less identical, and so can be
shared. The only two differences are:
1. xen_restore_fl_direct takes its argument in eax on 32-bit, and rdi on 64-bit.
2009 Jan 10
51
Xen with dom0 pvops on ultra-recent "git tip" kernel on x86_64
...obal_irq 5 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Using ACPI (MADT) for SMP configuration information
(XEN) ioapic_guest_write: apic=0, pin=0, old_irq=0, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000009f0, new_entry=00010900
(XEN) ioapic_guest_write: Attempt to remove IO-APIC pin of in-use IRQ!
(XEN) ioapic_guest_write: apic=0, pin=4, old_irq=4, new_irq=-1
(XEN) ioapic_guest_write: old_entry=000009f1, new_entry=00010900
(XEN) ioapic_guest_wr...
2007 Sep 28
18
[makedumpfile] extract vmcoreinfo from /proc/vmcore for Xen
Hi,
--- background ----------------------------------------------------
* what the makedumpfile is:
To shorten the size of the dumpfile and the time of creating the
dumpfile, makedumpfile copies only the necessary pages for analysis
to the dumpfile from /proc/vmcore. You can specify the kind of
unnecessary pages with dump_level. If you want to shorten the size
further, enable the
2009 Jul 22
109
Unable to Configure Xen Dom 0 in Jeremy''s PVOPS Kernel
Hi All,
I followed the instructions here at
http://bderzhavets.wordpress.com/2009/06/10/setup-fedora-11-pv-domu-at-xen-3-4-1-dom0-kernel-2-6-30-rc6-tip-on-top-of-fedora-11/
However, when I do a "make menuconfig", I cannot see any XEN related
configuration options. What am I missing?
Thank you.
Mr. Teo En Ming Dip(Mechatronics Engineering) BEng(Hons)(Mechanical
Engineering)