[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [Xen-ia64-devel] Xen-3.2-unstable crash on NEC box



Thank you for this. I also favor backporting the Linux upstream patch. For now, 
I have disabled irqbalance and the Dom0 is stable.

---Kayvan

-----Original Message-----
From: Akio Takebe [mailto:takebe_akio@xxxxxxxxxxxxxx] 
Sent: Tuesday, December 04, 2007 6:07 PM
To: Alex Williamson; Kayvan Sylvan
Cc: Xen-ia64-devel; Kei Tokunaga
Subject: RE: [Xen-ia64-devel] Xen-3.2-unstable crash on NEC box

Hi, Alex and all

RHEL5.1 has the following patch.
(the patch name is linux-2.6-cpei-prevent-relocating-hotplug-irqs.patch
from Kei Tokunaga.)
So this issue seems not to happen.

diff -puN kernel/irq/proc.c~bz218520-suppress_CPEI_warning kernel/irq/proc.c
--- linux-2.6.18-1.2878.el5/kernel/irq/proc.c~bz218520-suppress_CPEI_warning    
2006-12-15 09:40:43.000000000 -0500
+++ linux-2.6.18-1.2878.el5-kei/kernel/irq/proc.c       2006-12-15 09:40:43.
000000000 -0500
@@ -54,7 +54,8 @@ static int irq_affinity_write_proc(struc
        unsigned int irq = (int)(long)data, full_count = count, err;
        cpumask_t new_value, tmp;

-       if (!irq_desc[irq].chip->set_affinity || no_irq_affinity)
+       if (!irq_desc[irq].chip->set_affinity || no_irq_affinity ||
+                               CHECK_IRQ_PER_CPU(irq_desc[irq].status))
                return -EIO;
 
        err = cpumask_parse(buffer, count, new_value);

And upstream of linux has the different way.

 267 static inline int irq_balancing_disabled(unsigned int irq)
 268 {
 269         return irq_desc[irq].status & IRQ_NO_BALANCING_MASK;
 270 }
 
 
  42 int no_irq_affinity;
  43 static int irq_affinity_write_proc(struct file *file, const char __user *
buffer,
  44                                    unsigned long count, void *data)
  45 {
  46         unsigned int irq = (int)(long)data, full_count = count, err;
  47         cpumask_t new_value, tmp;
  48 
  49         if (!irq_desc[irq].chip->set_affinity || no_irq_affinity ||
  50             irq_balancing_disabled(irq))
  51                 return -EIO;
  52 
  53         err = cpumask_parse_user(buffer, count, new_value);
  54         if (err)
  55                 return err;
[snip...]

We can choice the 3 way.
1. apply the RHEL5.1 patch
2. backport the patch of linux upstream.
3. only disable irqbalance.

I think 2 is better than others.

Best Regards,

Akio Takebe

>
>   I believe this particular BUG is due to irqbalanced running on an
>upstream kernel.  The easy solution is to chkconfig irqbalanced off, but
>we probably need to figure out if this should work on a stock upstream
>2.6.18 kernel or what we're missing (that must be in RHEL5) to make this
>work.  Thanks,
>
>       Alex
>
>
>On Tue, 2007-12-04 at 07:47 -0800, Kayvan Sylvan wrote:
>> Hi. Thanks for your response.
>> 
>> 1) The following packages are installed:
>>    a) iproute-2.6.18-4.el5
>>    b) bridge-utils-1.1-2
>>    c) udev-095-14.9.el5 (I don't know if hotplug is needed on RH5.1)
>> 
>> 2) xvc0 is configured in securetty, but since I only have a serial console
>> , I use xencons=ttyS0 console=ttyS0 and direct all output to the serial 
>> console.
>> 
>> 3) I generated the initrd like this:
>> 
>> DEST=/boot/efi/efi/redhat
>> rm -f $DEST/initrd-2.6.18.8.img
>> depmod 2.6.18.8-xen
>> mkinitrd --builtin=ata_piix --builtin=mptbase --builtin=mptspi \
>>     --builtin=ehci-hcd --builtin=ohci-hcd --builtin=uhci-hcd \
>>     --builtin=qla2xxx \
>>     $DEST/initrd-2.6.18.8.img 2.6.18.8-xen
>> 
>> 
>> 4) I added the dom0_mem and dom0_max_vcpus to the elilo entry (like this):
>> 
>> append="com1=115200,8n1 dom0_mem=1024M dom0_max_vcpus=2 -- nomca xencons=
>> ttyS0 console=ttyS0"
>> 
>> The crash still happens and the message looks the same:
>> 
>> Call Trace:
>>  [<a00000010001dac0>] show_stack+0x40/0xa0
>>                                 sp=e000000009b3f9f0 bsp=e000000009b391c8
>>  [<a00000010001db50>] dump_stack+0x30/0x60
>>                                 sp=e000000009b3fbc0 bsp=e000000009b391b0
>>  [<a0000001000e7e90>] move_native_irq+0xd0/0x360
>>                                 sp=e000000009b3fbc0 bsp=e000000009b39178
>>  [<a0000001006b3060>] ack_dynirq+0x40/0x100
>>                                 sp=e000000009b3fbc0 bsp=e000000009b39158
>>  [<a0000001000e2da0>] __do_IRQ+0x100/0x420
>>                                 sp=e000000009b3fbc0 bsp=e000000009b39110
>>  [<a0000001006b3660>] evtchn_do_upcall+0x1c0/0x320
>>                                 sp=e000000009b3fbc0 bsp=e000000009b39078
>>  [<a00000010006cde0>] xen_event_callback+0x380/0x3c0
>>                                 sp=e000000009b3fbc0 bsp=e000000009b39078
>> BUG: warning at /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/
>> migration.c:27/move_native_irq()
>> 
>> Best regards,
>> 
>> ---Kayvan
>> 
>> 
>> -----Original Message-----
>> From: Mu, Qin [mailto:qin.mu@xxxxxxxxx] 
>> Sent: Monday, December 03, 2007 6:12 PM
>> To: Kayvan Sylvan
>> Cc: You, Yongkang
>> Subject: RE: [Xen-ia64-devel] Xen-3.2-unstable crash on NEC box
>> 
>> Hi, Kayvan
>> 
>> Let's try the following ways to remove the crash.
>> 
>> 1. Firstly, please check if the following tools have installed prior to 
>> running Xen:
>>      a. Iproute2 package
>>      b. Linux Bridge-utils (http://bridge.sourceforge.net)
>>      c. Linux hotplug system (http://linux-hotplug.sourceforge.net)
>> 
>> 2. Please check if xvc0 is configured in both /etc/securetty and /etc/
>> inittab to get dom0 login terminal.
>>      a)      Add the following line in /etc/inittab file.
>>      <ID>:2345:respawn:/sbin/mingetty xvc0, where the <ID> should be replaced
 
>> by a unique number in your script.
>>      b)      Append “xvc0” at the end of /etc/securetty file.
>> 
>> 3. If crash still occurs, would you tell how you got the initrd-2.6.18.8.
>> img? The Xen kernel specific initrd.img is expected to be configured in 
>> elilo.conf file.
>>  
>> 4. Another tip here, please try the following append line in elilo.conf 
>> file:
>>      append="dom0_mem=1024M dom0_max_vcpus=2 -- nomca console=tty"
>>  
>> 
>> Best Regards,
>> Amy, Mu
>> 
>> 
>> 
>> 
>> 
>> -----Original Message-----
>> From: xen-ia64-devel-bounces@xxxxxxxxxxxxxxxxxxx [mailto:xen-ia64-devel-
>> bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of Kayvan Sylvan
>> Sent: 2007年12月4日 8:33
>> To: Xen-ia64-devel
>> Subject: [Xen-ia64-devel] Xen-3.2-unstable crash on NEC box
>> 
>> Hi everyone.
>> 
>> I'm trying to bring up the xen-ia64 unstable on a new machine.
>> 
>> I'm running Redhat 5.1 and I grabbed and compiled the latest sources
>> from the following:
>> 
>> http://xenbits.xensource.com/ext/ia64/xen-unstable.hg
>> http://xenbits.xensource.com/ext/ia64/linux-2.6.18-xen.hg
>> 
>> After installing the various bits in the right places, my elilo.conf
>> entry looks like this:
>> 
>> image=vmlinuz-2.6.18.8-xen
>>         vmm=xen-3.2-unstable.gz
>>         label=xen32
>>         initrd=initrd-2.6.18.8.img
>>         read-only
>>         root=/dev/VolGroup00/LogVol00
>>         append="com1=115200,8n1 -- nomca xencons=ttyS0 console=ttyS0
>> rhgb quiet"
>> 
>> Bringing up the machine looks okay --- there are iptables errors, etc.
>> --- but I figure I want to get the machine up first in some way and fix
>> each problem afterwards. It looks fine all the way till about a fraction
>> of a second after the login: prompt appears.
>> 
>> If anyone has any ideas of what I should try, please let me know!
>> 
>> Thanks!
>> 
>> Best regards,
>> 
>> ---Kayvan Sylvan, Platform Solutions Inc.
>> 
>> (the boot log follows)
>> 
>> ------------------------------------------------------------------------
>> -----------------------------
>> 
>> Uncompressing Linux... done
>> Loading file initrd-2.6.18.8.img...done
>> Loading file vmlinuz-2.6.18.8-xen...done
>> Uncompressing... done
>>  __  __            _____  ____                     _        _     _
>>  \ \/ /___ _ __   |___ / |___ \    _   _ _ __  ___| |_ __ _| |__ | | ___
>>   \  // _ \ '_ \    |_ \   __) |__| | | | '_ \/ __| __/ _` | '_ \| |/ _
>> \
>>   /  \  __/ | | |  ___) | / __/|__| |_| | | | \__ \ || (_| | |_) | |
>> __/
>>  /_/\_\___|_| |_| |____(_)_____|   \__,_|_|
>> |_|___/\__\__,_|_.__/|_|\___|
>> 
>> (XEN) Xen version 3.2-unstable (root@) (gcc version 4.1.2 20070626 (Red
>> Hat 4.1.2-14)) Mon Dec  3 14:18:52 PST 2007
>> (XEN) Latest ChangeSet: Fri Nov 30 08:54:33 2007 -0700
>> 16501:32ec5dbe2978
>> (XEN) Xen command line: BOOT_IMAGE=scsi0:EFI\redhat\xen-3.2-unstable.gz
>> com1=115200,8n1
>> (XEN) xen image pstart: 0x4000000, xenheap pend: 0x8000000
>> (XEN) Xen patching physical address access by offset: 0xfc00000000000000
>> (XEN) find_memory: efi_memmap_walk returns max_page=90000
>> (XEN) Before xen_heap_start: f0000000041e0a20
>> (XEN) After xen_heap_start: f0000000041f8000
>> (XEN) Init boot pages: 0x10000d8 -> 0x4000000.
>> (XEN) Init boot pages: 0x8000000 -> 0x3c000000.
>> (XEN) Init boot pages: 0x40000000 -> 0x7ba36000.
>> (XEN) Init boot pages: 0x7ca2e8d8 -> 0x7d08a010.
>> (XEN) Init boot pages: 0x7d08a070 -> 0x7d08df7e.
>> (XEN) Init boot pages: 0x7d08dfc0 -> 0x7d090000.
>> (XEN) Init boot pages: 0x7d4cf170 -> 0x7d4d6010.
>> (XEN) Init boot pages: 0x7d4d6a60 -> 0x7df38000.
>> (XEN) Init boot pages: 0x7f300000 -> 0x7f9ec000.
>> (XEN) Init boot pages: 0x7fa58000 -> 0x7fb84000.
>> (XEN) Init boot pages: 0x7fc00000 -> 0x7fcf8000.
>> (XEN) Init boot pages: 0x7fd88000 -> 0x7fd8c000.
>> (XEN) Init boot pages: 0x80000000 -> 0xc0000000.
>> (XEN) Init boot pages: 0x100000000 -> 0x240000000.
>> (XEN) System RAM: 8088MB (8282416kB)
>> (XEN) size of virtual frame_table: 20288kB
>> (XEN) virtual machine to physical table: f6ffffffffb80000 size: 4096kB
>> (XEN) max_page: 0x90000
>> (XEN) allocating frame table/mpt table at mfn 0.
>> (XEN) Xen heap: 62MB (63520kB)
>> (XEN) Reserving non-aligned node boundary @ mfn 65536
>> (XEN) Reserving non-aligned node boundary @ mfn 262144
>> (XEN) Domain heap initialised: DMA width 32 bits
>> (XEN) avail:0x3170074000000000,
>> status:0x74000000000,control:0x3170000000000000, vm?0x10000000000
>> (XEN) WARNING: no opcode provided from hardware(0)!!!
>> (XEN) vm buffer size: 1048576, order: 6
>> (XEN) vm_buffer: 0xf400000007e00000
>> (XEN) register_intr: changing vector 41 from IO-SAPIC-edge to
>> IO-SAPIC-level
>> (XEN) register_intr: changing vector 39 from IO-SAPIC-edge to
>> IO-SAPIC-level
>> (XEN) register_intr: changing vector 38 from IO-SAPIC-edge to
>> IO-SAPIC-level
>> (XEN) register_intr: changing vector 35 from IO-SAPIC-edge to
>> IO-SAPIC-level
>> (XEN) Using scheduler: SMP Credit Scheduler (credit)
>> (XEN) Time Zone is not specified on EFIRTC
>> (XEN) Time init:
>> (XEN) .... System Time: 467496ns
>> (XEN) .... scale:              27FEDFAC5
>> (XEN) num_online_cpus=1, max_cpus=64
>> (XEN) Fixed BSP b0 value from CPU 1
>> (XEN) Brought up 8 CPUs
>> (XEN) the number of physical stacked general
>> registers(RSE.N_STACKED_PHYS) = 96
>> (XEN) xenoprof: using perfmon.
>> (XEN) perfmon: version 2.0 IRQ 238
>> (XEN) perfmon: Montecito PMU detected, 27 PMCs, 35 PMDs, 12 counters (47
>> bits)
>> (XEN) Maximum number of domains: 63; 18 RID bits per domain
>> (XEN) *** LOADING DOMAIN 0 ***
>> (XEN) Maximum permitted dom0 size: 7973MB
>> (XEN)  Dom0 kernel: 64-bit, lsb, paddr 0x4000000 -> 0x5423970
>> (XEN) METAPHYSICAL MEMORY ARRANGEMENT:
>> (XEN)  Kernel image:  4000000->5423970
>> (XEN)  Entry address: 400ff20
>> (XEN)  Init. ramdisk: 5428000 len 43f170
>> (XEN)  Start info.:   5424000->5428000
>> (XEN) Dom0 max_vcpus=4
>> (XEN) Dom0: 0xf000000007c74080
>> (XEN) enable lsapic entry: 0xf00000007df3c484
>> (XEN) enable lsapic entry: 0xf00000007df3c490
>> (XEN) enable lsapic entry: 0xf00000007df3c49c
>> (XEN) enable lsapic entry: 0xf00000007df3c4a8
>> (XEN) DISABLE lsapic entry: 0xf00000007df3c4b4
>> (XEN) DISABLE lsapic entry: 0xf00000007df3c4c0
>> (XEN) DISABLE lsapic entry: 0xf00000007df3c4cc
>> (XEN) DISABLE lsapic entry: 0xf00000007df3c4d8
>> (XEN) ACPI_INTERRUPT_CPEI disabled for Domain0
>> (XEN) Success Disabling SRAT
>> (XEN) Success Disabling SLIT
>> (XEN) Domain0 EFI passthrough: MPS=0x7ef28580 ACPI 2.0=0x7df3c140
>> ACPI=0x7df83988 SMBIOS=0xf4f10
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff0806e1
>> (XEN)   mpaddr 0x00000000ff080000 physaddr 0x00000000ff080000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff2806e1
>> (XEN)   mpaddr 0x00000000ff280000 physaddr 0x00000000ff280000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff4006e1
>> (XEN)   mpaddr 0x00000000ff400000 physaddr 0x00000000ff400000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff4406e1
>> (XEN)   mpaddr 0x00000000ff440000 physaddr 0x00000000ff440000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff58c6e1
>> (XEN)   mpaddr 0x00000000ff58c000 physaddr 0x00000000ff58c000 flags 0x2
>> (XEN) Scrubbing Free RAM: .......................................done.
>> (XEN) Xen trace 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 128kB init memory.
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff0806e1
>> (XEN)   mpaddr 0x00000000ff080000 physaddr 0x00000000ff080000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff2806e1
>> (XEN)   mpaddr 0x00000000ff280000 physaddr 0x00000000ff280000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff4006e1
>> (XEN)   mpaddr 0x00000000ff400000 physaddr 0x00000000ff400000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff4406e1
>> (XEN)   mpaddr 0x00000000ff440000 physaddr 0x00000000ff440000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff58c6e1
>> (XEN)   mpaddr 0x00000000ff58c000 physaddr 0x00000000ff58c000 flags 0x2
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x081000023cf146e1
>> (XEN)   mpaddr 0x0000200000000000 physaddr 0x0000200000000000 flags 0x2
>> (XEN) vcpu_set_itc: Setting ar.itc is currently disabled (this message
>> is only displayed once)
>> iosapic_register_platform_intr: invalid int type 0xff
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7df3c140
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfcaeb8
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfcc000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd0000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd4000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd8000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfdc000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfe0000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfe4000
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfe8000
>> (XEN) printk: 27 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7df3c140
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfcaeb8
>> (XEN) printk: 62 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfdc5ab
>> (XEN) printk: 47 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd585f
>> (XEN) printk: 32 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfdf58a
>> (XEN) printk: 96 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfea950
>> ACPI: Invalid PBLK length [0]
>> ACPI: Invalid PBLK length [0]
>> ACPI: Invalid PBLK length [0]
>> ACPI: Invalid PBLK length [0]
>> ACPI: Getting cpuindex for acpiid 0x8
>> ACPI: Getting cpuindex for acpiid 0xa
>> ACPI: Getting cpuindex for acpiid 0xc
>> ACPI: Getting cpuindex for acpiid 0xe
>> (XEN) __assign_domain_page:956 WARNING can't assign page domain
>> 0xf000000007c74080 id 0
>> (XEN)   already assigned pte_val 0x00100000ff0806e1
>> (XEN)   mpaddr 0x00000000ff080000 physaddr 0x00000000ff080000 flags 0x2
>> (XEN) printk: 24 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfee590
>> qla2xxx 0000:09:02.0: Firmware image unavailable.
>> qla2xxx 0000:09:02.0: Firmware images can be retrieved from:
>> ftp://ftp.qlogic.com/outgoing/linux/firmware/.
>> qla2xxx 0000:09:02.0: Attempting to load (potentially outdated) firmware
>> from flash.
>> (XEN) printk: 6 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfeeb7b
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd33f7
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd7b7e
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfc85fe
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7df9b1e9
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7df97710
>> qla2xxx 0000:09:02.1: Firmware image unavailable.
>> qla2xxx 0000:09:02.1: Firmware images can be retrieved from:
>> ftp://ftp.qlogic.com/outgoing/linux/firmware/.
>> qla2xxx 0000:09:02.1: Attempting to load (potentially outdated) firmware
>> from flash.
>> (XEN) printk: 1 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfeb192
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd33f7
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfd7b7e
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfc85fe
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7df9b1e9
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7df97710
>> (XEN) printk: 1 messages suppressed.
>> (XEN) mm.c:575:d0 Warning: UC to WB for mpaddr=7dfeb77d
>> no UART detected at 0x1
>> specify port
>> Red Hat nash version 5.1.19.6 starting
>>   Reading all physical volumes.  This may take a while...
>>   Found volume group "VolGroup00" using metadata type lvm2
>>   2 logical volume(s) in volume group "VolGroup00" now active
>>                 Welcome to Red Hat Enterprise Linux Server
>>                 Press 'I' to enter interactive startup.
>> Setting clock  (utc): Mon Dec  3 16:09:41 PST 2007 [  OK  ]
>> Starting udev: [  OK  ]
>> Setting hostname nec1p6:  [  OK  ]
>> raidautorun: failed to open /dev/md0: No such device or address
>> Setting up Logical Volume Management:   2 logical volume(s) in volume
>> group "VolGroup00" now active
>> [  OK  ]
>> Checking filesystems
>> Checking all file systems.
>> [/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/VolGroup00/LogVol00
>> /dev/VolGroup00/LogVol00: clean, 229160/70909952 files, 4597732/70909952
>> blocks
>> [  OK  ]
>> Remounting root filesystem in read-write mode:  [  OK  ]
>> Mounting local filesystems:  [  OK  ]
>> Enabling local filesystem quotas:  [  OK  ]
>> rm: cannot remove `/var/run/xend/boot': Is a directory
>> Enabling /etc/fstab swaps:  [  OK  ]
>> INIT: Entering runlevel: 3
>> Entering non-interactive startup
>> Starting monitoring for VG VolGroup00:   /dev/hda: open failed:
>> Read-only file system
>>   2 logical volume(s) in volume group "VolGroup00" monitored
>> [  OK  ]
>> Starting background readahead: [  OK  ]
>> Checking for hardware changes [  OK  ]
>> Applying ip6tables firewall rules: modprobe: FATAL: Module ip6_tables
>> not found.
>> 
>> ip6tables-restore v1.3.5: ip6tables-restore: unable to initializetable
>> 'filter'
>> 
>> Error occurred at line: 3
>> Try `ip6tables-restore -h' or 'ip6tables-restore --help' for more
>> information.
>> [FAILED]
>> Applying iptables firewall rules: modprobe: FATAL: Module ip_tables not
>> found.
>> 
>> iptables-restore v1.3.5: iptables-restore: unable to initializetable
>> 'filter'
>> 
>> Error occurred at line: 3
>> Try `iptables-restore -h' or 'iptables-restore --help' for more
>> information.
>> [FAILED]
>> Bringing up loopback interface:  [  OK  ]
>> Bringing up interface eth0:  [  OK  ]
>> Starting auditd: [FAILED]
>> Starting system logger: [  OK  ]
>> Starting kernel logger: [  OK  ]
>> Starting irqbalance: [  OK  ]
>> Starting portmap: [  OK  ]
>> Starting NFS statd: [  OK  ]
>> Starting RPC idmapd: FATAL: Module sunrpc not found.
>> FATAL: Error running install command for sunrpc
>> Error: RPC MTAB does not exist.
>> Starting system message bus: [  OK  ]
>> Can't open RFCOMM control socket: Address family not supported by
>> protocol
>> 
>> Mounting other filesystems:  [  OK  ]
>> Starting PC/SC smart card daemon (pcscd): [  OK  ]
>> Starting hidd: Can't open HIDP control socket: Address family not
>> supported by protocol
>> [FAILED]
>> Starting autofs:  Starting automount: automount: kernel protocol version
>> 5.00 or above required.
>> [FAILED]
>> [FAILED]
>> Starting acpi daemon: [  OK  ]
>> Starting hpiod: [  OK  ]
>> Starting hpssd: [  OK  ]
>> Starting sshd: [  OK  ]
>> Starting cups: [  OK  ]
>> Starting sendmail: [  OK  ]
>> Starting sm-client: [  OK  ]
>> Starting console mouse services: [  OK  ]
>> Starting crond: [  OK  ]
>> Starting xfs: [  OK  ]
>> Starting anacron: [  OK  ]
>> Starting atd: [  OK  ]
>> Starting salinfo_decode_all: [  OK  ]
>> Starting Red Hat Network Daemon: [  OK  ]
>> Starting yum-updatesd: [  OK  ]
>> Starting Avahi daemon... [  OK  ]
>> Starting HAL daemon: [  OK  ]
>> Starting smartd: [  OK  ]
>> 
>> Red Hat Enterprise Linux Server release 5.1 (Tikanga)
>> Kernel 2.6.18.8-xen on an ia64
>> 
>> nec1p6 login: BUG: warning at
>> /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/migration.c:27/move
>> _native_irq()
>> 
>> Call Trace:
>>  [<a00000010001dac0>] show_stack+0x40/0xa0
>>                                 sp=a000000100d739e0 bsp=a000000100d6d1f0
>>  [<a00000010001db50>] dump_stack+0x30/0x60
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d1d8
>>  [<a0000001000e7e90>] move_native_irq+0xd0/0x360
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d1a0
>>  [<a0000001006b3060>] ack_dynirq+0x40/0x100
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d180
>>  [<a0000001000e2da0>] __do_IRQ+0x100/0x420
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d138
>>  [<a0000001006b3660>] evtchn_do_upcall+0x1c0/0x320
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d0a0
>>  [<a00000010006cde0>] xen_event_callback+0x380/0x3c0
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d0a0
>> BUG: warning at
>> /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/migration.c:27/move
>> _native_irq()
>> 
>> Call Trace:
>>  [<a00000010001dac0>] show_stack+0x40/0xa0
>>                                 sp=e0000001449179f0 bsp=e0000001449111c8
>>  [<a00000010001db50>] dump_stack+0x30/0x60
>>                                 sp=e000000144917bc0 bsp=e0000001449111b0
>>  [<a0000001000e7e90>] move_native_irq+0xd0/0x360
>>                                 sp=e000000144917bc0 bsp=e000000144911178
>>  [<a0000001006b3060>] ack_dynirq+0x40/0x100
>>                                 sp=e000000144917bc0 bsp=e000000144911158
>>  [<a0000001000e2da0>] __do_IRQ+0x100/0x420
>>                                 sp=e000000144917bc0 bsp=e000000144911110
>>  [<a0000001006b3660>] evtchn_do_upcall+0x1c0/0x320
>>                                 sp=e000000144917bc0 bsp=e000000144911078
>>  [<a00000010006cde0>] xen_event_callback+0x380/0x3c0
>>                                 sp=e000000144917bc0 bsp=e000000144911078
>> BUG: warning at
>> /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/migration.c:27/move
>> _native_irq()
>> 
>> Call Trace:
>>  [<a00000010001dac0>] show_stack+0x40/0xa0
>>                                 sp=a000000100d739e0 bsp=a000000100d6d1f0
>>  [<a00000010001db50>] dump_stack+0x30/0x60
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d1d8
>>  [<a0000001000e7e90>] move_native_irq+0xd0/0x360
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d1a0
>>  [<a0000001006b3060>] ack_dynirq+0x40/0x100
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d180
>>  [<a0000001000e2da0>] __do_IRQ+0x100/0x420
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d138
>>  [<a0000001006b3660>] evtchn_do_upcall+0x1c0/0x320
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d0a0
>>  [<a00000010006cde0>] xen_event_callback+0x380/0x3c0
>>                                 sp=a000000100d73bb0 bsp=a000000100d6d0a0
>> BUG: warning at
>> /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/migration.c:27/move
>> _native_irq()
>> 
>> Call Trace:
>>  [<a00000010001dac0>] show_stack+0x40/0xa0
>>                                 sp=e0000001449179f0 bsp=e0000001449111c8
>>  [<a00000010001db50>] dump_stack+0x30/0x60
>>                                 sp=e000000144917bc0 bsp=e0000001449111b0
>>  [<a0000001000e7e90>] move_native_irq+0xd0/0x360
>>                                 sp=e000000144917bc0 bsp=e000000144911178
>>  [<a0000001006b3060>] ack_dynirq+0x40/0x100
>>                                 sp=e000000144917bc0 bsp=e000000144911158
>>  [<a0000001000e2da0>] __do_IRQ+0x100/0x420
>>                                 sp=e000000144917bc0 bsp=e000000144911110
>>  [<a0000001006b3660>] evtchn_do_upcall+0x1c0/0x320
>>                                 sp=e000000144917bc0 bsp=e000000144911078
>>  [<a00000010006cde0>] xen_event_callback+0x380/0x3c0
>>                                 sp=e000000144917bc0 bsp=e000000144911078
>> BUG: warning at
>> /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/migration.c:27/move
>> _native_irq()
>> 
>> Call Trace:
>>  [<a00000010001dac0>] show_stack+0x40/0xa0
>>                                 sp=e0000001448b79f0 bsp=e0000001448b11c8
>>  [<a00000010001db50>] dump_stack+0x30/0x60
>>                                 sp=e0000001448b7bc0 bsp=e0000001448b11b0
>>  [<a0000001000e7e90>] move_native_irq+0xd0/0x360
>>                                 sp=e0000001448b7bc0 bsp=e0000001448b1178
>>  [<a0000001006b3060>] ack_dynirq+0x40/0x100
>>                                 sp=e0000001448b7bc0 bsp=e0000001448b1158
>>  [<a0000001000e2da0>] __do_IRQ+0x100/0x420
>>                                 sp=e0000001448b7bc0 bsp=e0000001448b1110
>>  [<a0000001006b3660>] evtchn_do_upcall+0x1c0/0x320
>>                                 sp=e0000001448b7bc0 bsp=e0000001448b1078
>>  [<a00000010006cde0>] xen_event_callback+0x380/0x3c0
>>                                 sp=e0000001448b7bc0 bsp=e0000001448b1078
>> BUG: warning at
>> /root/xen-unstable.hg/linux-2.6.18-xen.hg/kernel/irq/migration.c:27/move
>> _native_irq()
>> 
>> _______________________________________________
>> Xen-ia64-devel mailing list
>> Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
>> http://lists.xensource.com/xen-ia64-devel
>> 
>> _______________________________________________
>> Xen-ia64-devel mailing list
>> Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
>> http://lists.xensource.com/xen-ia64-devel
>> 
>-- 
>Alex Williamson                             HP Open Source & Linux Org.
>
>
>_______________________________________________
>Xen-ia64-devel mailing list
>Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
>http://lists.xensource.com/xen-ia64-devel


_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.