ASUS PCE-N53 Kernel Panic

Hello there.
I just bought a PCIe wireless network card for my x86_64 AMD Arch Linux box.
It uses Ralink drivers that are supplied from the CD that companied the card, but are also to be found on ASUS' website
According to the aforementioned webpage, the driver only support 2.6. That may very well be, because I tried to build it without too much of luck. That is, building it seems to go rather fine. The compilation succeeds and the network card works like a charm for a few minutes, I am able to connect to the Internet and all that before I get kernel panic with the error: Fatal exception in interrupt. Also, when I do a ifconfig, it says under ra0: "device interrupt 47". Not completely sure what this has to say about my problem, though.
I am willing to share any log, information, error and debug line that can help to find the root of this problem. I hope we will find a solution to this, because it is a neat and cheap card that has worked very well for me under Windows, at least compared to my D-Link USB adapter.
Thank you.

I tried building against a vanilla linux-3.8.3 and got the following errors;
make[1]: Entering directory `/var/git/linux'
  CC [M]  /var/git/RT5592STA/os/linux/../../common/rtmp_mcu.o
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c: In function 'RtmpAsicSendCommandToMcu':
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:558:4: warning: passing argument 3 of 'pci_read_config_word' from incompatible pointer type [enabled by default]
In file included from /var/git/RT5592STA/include/os/rt_linux.h:41:0,
                 from /var/git/RT5592STA/include/rtmp_os.h:44,
                 from /var/git/RT5592STA/include/rtmp_comm.h:69,
                 from /var/git/RT5592STA/include/rt_config.h:33,
                 from /var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:28:
include/linux/pci.h:794:90: note: expected 'u16 *' but argument is of type 'ULONG *'
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:564:4: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'ULONG' [-Wformat]
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:564:4: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'ULONG' [-Wformat]
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:578:4: warning: passing argument 3 of 'pci_read_config_word' from incompatible pointer type [enabled by default]
In file included from /var/git/RT5592STA/include/os/rt_linux.h:41:0,
                 from /var/git/RT5592STA/include/rtmp_os.h:44,
                 from /var/git/RT5592STA/include/rtmp_comm.h:69,
                 from /var/git/RT5592STA/include/rt_config.h:33,
                 from /var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:28:
include/linux/pci.h:794:90: note: expected 'u16 *' but argument is of type 'ULONG *'
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:587:4: warning: format '%x' expects argument of type 'unsigned int', but argument 2 has type 'ULONG' [-Wformat]
/var/git/RT5592STA/os/linux/../../common/rtmp_mcu.c:587:4: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'ULONG' [-Wformat]
  CC [M]  /var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.o
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:46:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'rt2860_remove_one'
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:47:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'rt2860_probe'
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:71:46: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__devinitdata'
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:97:15: error: 'rt2860_pci_tbl' undeclared here (not in a function)
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:98:12: error: 'rt2860_probe' undeclared here (not in a function)
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:101:5: error: implicit declaration of function '__devexit_p' [-Werror=implicit-function-declaration]
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:101:25: error: 'rt2860_remove_one' undeclared here (not in a function)
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:309:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'rt2860_probe'
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:483:23: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'rt2860_remove_one'
/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.c:83:35: error: '__mod_pci_device_table' aliased to undefined symbol 'rt2860_pci_tbl'
cc1: some warnings being treated as errors
make[2]: *** [/var/git/RT5592STA/os/linux/../../os/linux/pci_main_dev.o] Error 1
make[1]: *** [_module_/var/git/RT5592STA/os/linux] Error 2
make[1]: Leaving directory `/var/git/linux'
make: *** [LINUX] Error 2
looking at the line numbers in the error message, it appears that it has not detected the correct kernel version, as
pci_main_dev.c:46 is in some non 3.8.x code
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
static VOID rt2860_remove_one(struct pci_dev *pci_dev);
static INT rt2860_probe(struct pci_dev *pci_dev, const struct pci_device_id  *ent);
#else
static VOID _devexit rt2860_remove_one(struct pci_dev *pci_dev);
static INT __devinit rt2860_probe(struct pci_dev *pci_dev, const struct pci_device_id  *ent);
#endif

Similar Messages

  • ASUS P5W DH Deluxe kernel panic ACPI & IDE controller is

    I recently built a new system with the ASUS P5W DH Deluxe motherboard.  Using the newISOs (both the new kernel and old) available on the forums I tried to install Arch only to be met with an extremely nondescript kernel panic (just a bunch of numbers followed by kernel panic).  After a bit of fiddling with it I managed to get the system to boot to the installation shell by giving it the "acpi=off" boot parameter.
    After figuring this out I thought I was set, but I was so very wrong.  The IDE harddrive I was trying to install to was on the Jmicron JMB363 IDE controller that seems to have been hacked together and thrown in at the last second to allow 4 IDE devices in the system (something to do with the Intel specification for the 975X chipset I believe.)
    Anyway, the system mounts my primary SATA harddrive "sda" just fine.  It then proceeds to load my two PATA DVD+RW drives: "hda" and "hdb" from the intel IDE controller just fine.  Then while trying to load the my PATA harddrive "hde" from the Jmicron JMB363 IDE controller, the installation slows to a crawl requiring several minutes before the system boots and throwing errors along the way.  The harddrive is also unusable in the system.  If I try to do something like "cfdisk /dev/hde" the system will hard lock and require a reboot.
    Is there something I've configured incorrectly or is this perhaps a support issue with the Jmicron JMB363 controller.  Also, why do I need to turn ACPI off to avoid a kernel panic?  I should probably mention that there is a bios option that can be turned on or off to support ACPI 2.0 (disabled by default).
    Thanks for any input!

    I'm running archlinux on a P5W DH Deluxe.  Personally, I disabled JMicron in the BIOS as the drivers for it are pretty buggy from what I've read.  I'm just using the ICHR PATA/SATA Controller (I have an SATA disk and a PATA DVDRW).  I have it set to AHCI mode in the BIOS (this is the most compatible mode and faster for sata drives).  It might look like it's frozen during boot, but there is a device that causes problems and takes a minute or so for the kernel to give up on it and continue booting.
    If you want to use the JMicron controller, there is a flag you can pass to the kernel in your grub menu.conf (I think it's "ALL-GENERIC-IDE" (no quotes) and you might have to pass "irqpoll" as well.  I got it working once but haven't used it for a while, so this may have changed.  You might want to look into JMICRON_PATA.
    There are some issues with the linux kernel and the P5W.
    The bridge between the ICHR to the EZRaid controller isn't recognized by the kernel yet, so it will give some error messages and with a few 30 second pauses between them (which is a pain... I don't know of a way to disable the controller though).  I've heard that if you attach a SATA hard disks to BOTH the EZRaid controller and the ICHR it's supposed to avoid it, but I don't want to install an extra hard disk.
    The kernel seems to have have problems keeping time with the P5W.  I tried installing openntpd to help with it, but it only help a little... moving the clock by about 10 seconds every couple of minutes.  I found ntpd does a little better job (altering it by about 1 second every 5-10 minutes).  I think this is the cause of some glitches during video playback for me.
    I haven't had any luck getting any kind of suspend working with the P5W.  It can suspend, but it won't resume.  Resetting the computer after a suspend makes it freeze just before you can access the BIOS screen.  The only way to recover is to turn-off the power supply on the back for a minute or so and starting it up.  It will run for a few seconds and shutdown (some kind of weird hardware reset?).  After that it will boot normally.
    Let me know how your progress goes.  I'd like to know if you come across any fixes for the above.

  • "Kernel panic - not syncing: Attempted to kill init!" on shutdown

    For several years now, I've been happily using Arch. I'm quite a seasoned user. I've solved countless errors and problems with my systems on 3 different machines, but I don't know how to fix this one. I've searched the forum and asked google -- got no answer.
    Since systemd upgrade on my Asus laptop, shutdown and reboot broke down. The other machine with Arch works fine (systemd installed), but that's a stationary computer.
    I don't know what may be wrong... The system is upgraded to the full. The error displayed by kernel is as follows:
    Kernel panic - not syncing: Attempted to kill init!
    And photo of it happening: http://i.imgur.com/kewfbYv.jpg
    This happens every time I try to shut down or reboot the laptop. (I'm using the poweroff and reboot commands). I have to press the power button for a while to force poweroff. It's really annoying.
    Everything works just fine except this kernel panic. I'm using catalyst drivers. Other than that - nothing "unusual".
    Boot journal:
    -- Logs begin at Mon 2012-12-31 05:00:25 CET, end at Sat 2013-01-26 12:27:00 CET. --
    Jan 26 12:20:45 further systemd-journal[145]: Allowing runtime journal files to grow to 171.5M.
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys cpuset
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys cpu
    Jan 26 12:20:45 further kernel: Linux version 3.7.4-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Jan 21 23:05:29 CET 2013
    Jan 26 12:20:45 further kernel: Command line: root=/dev/sda6 ro nomodeset init=/sbin/init rootfstype=ext4
    Jan 26 12:20:45 further kernel: e820: BIOS-provided physical RAM map:
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008f6bffff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f6c0000-0x000000008f702fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f703000-0x000000008f711fff] ACPI data
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f712000-0x000000008f828fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f829000-0x000000008f838fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f839000-0x000000008f867fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f868000-0x000000008f868fff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f869000-0x000000008f871fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f872000-0x000000008f883fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f884000-0x000000008f891fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f892000-0x000000008f893fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f894000-0x000000008f89afff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f89b000-0x000000008f89dfff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f89e000-0x000000008f8a6fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f8a7000-0x000000008f8cdfff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008f8ce000-0x000000008fad0fff] ACPI NVS
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008fad1000-0x000000008fd45fff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008fd46000-0x000000008fef6fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x000000008fef7000-0x000000008fefffff] usable
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    Jan 26 12:20:45 further kernel: BIOS-e820: [mem 0x0000000100001000-0x000000014effffff] usable
    Jan 26 12:20:45 further kernel: NX (Execute Disable) protection: active
    Jan 26 12:20:45 further kernel: DMI 2.7 present.
    Jan 26 12:20:45 further kernel: DMI: ASUSTeK Computer Inc. K43TA/K43TA, BIOS 214 04/06/2012
    Jan 26 12:20:45 further kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Jan 26 12:20:45 further kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 26 12:20:45 further kernel: No AGP bridge found
    Jan 26 12:20:45 further kernel: e820: last_pfn = 0x14f000 max_arch_pfn = 0x400000000
    Jan 26 12:20:45 further kernel: MTRR default type: uncachable
    Jan 26 12:20:45 further kernel: MTRR fixed ranges enabled:
    Jan 26 12:20:45 further kernel: 00000-9FFFF write-back
    Jan 26 12:20:45 further kernel: A0000-BFFFF write-through
    Jan 26 12:20:45 further kernel: C0000-CEFFF write-protect
    Jan 26 12:20:45 further kernel: CF000-E7FFF uncachable
    Jan 26 12:20:45 further kernel: E8000-FFFFF write-protect
    Jan 26 12:20:45 further kernel: MTRR variable ranges enabled:
    Jan 26 12:20:45 further kernel: 0 base 0000000000 mask FF80000000 write-back
    Jan 26 12:20:45 further kernel: 1 base 0080000000 mask FFF0000000 write-back
    Jan 26 12:20:45 further kernel: 2 base 008FF00000 mask FFFFF00000 uncachable
    Jan 26 12:20:45 further kernel: 3 disabled
    Jan 26 12:20:45 further kernel: 4 disabled
    Jan 26 12:20:45 further kernel: 5 disabled
    Jan 26 12:20:45 further kernel: 6 disabled
    Jan 26 12:20:45 further kernel: 7 disabled
    Jan 26 12:20:45 further kernel: TOM2: 000000014f000000 aka 5360M
    Jan 26 12:20:45 further kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 26 12:20:45 further kernel: e820: update [mem 0x8ff00000-0xffffffff] usable ==> reserved
    Jan 26 12:20:45 further kernel: e820: last_pfn = 0x8ff00 max_arch_pfn = 0x400000000
    Jan 26 12:20:45 further kernel: found SMP MP-table at [mem 0x000fce90-0x000fce9f] mapped at [ffff8800000fce90]
    Jan 26 12:20:45 further kernel: initial memory mapped: [mem 0x00000000-0x1fffffff]
    Jan 26 12:20:45 further kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Jan 26 12:20:45 further kernel: Using GB pages for direct mapping
    Jan 26 12:20:45 further kernel: init_memory_mapping: [mem 0x00000000-0x8fefffff]
    Jan 26 12:20:45 further kernel: [mem 0x00000000-0x7fffffff] page 1G
    Jan 26 12:20:45 further kernel: [mem 0x80000000-0x8fdfffff] page 2M
    Jan 26 12:20:45 further kernel: [mem 0x8fe00000-0x8fefffff] page 4k
    Jan 26 12:20:45 further kernel: kernel direct mapping tables up to 0x8fefffff @ [mem 0x1fffd000-0x1fffffff]
    Jan 26 12:20:45 further kernel: init_memory_mapping: [mem 0x100001000-0x14effffff]
    Jan 26 12:20:45 further kernel: [mem 0x100001000-0x1001fffff] page 4k
    Jan 26 12:20:45 further kernel: [mem 0x100200000-0x14effffff] page 2M
    Jan 26 12:20:45 further kernel: kernel direct mapping tables up to 0x14effffff @ [mem 0x8fefc000-0x8fefffff]
    Jan 26 12:20:45 further kernel: RAMDISK: [mem 0x37d07000-0x37feffff]
    Jan 26 12:20:45 further kernel: ACPI: RSDP 00000000000f0450 00024 (v02 _ASUS_)
    Jan 26 12:20:45 further kernel: ACPI: XSDT 000000008f703068 00054 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    Jan 26 12:20:45 further kernel: ACPI: FACP 000000008f70f1a0 000F4 (v04 _ASUS_ Notebook 01072009 AMI 00010013)
    Jan 26 12:20:45 further kernel: ACPI BIOS Bug: Warning: Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20120913/tbfadt-598)
    Jan 26 12:20:45 further kernel: ACPI: DSDT 000000008f703150 0C050 (v02 _ASUS_ Notebook 00000000 INTL 20091112)
    Jan 26 12:20:45 further kernel: ACPI: FACS 000000008f89af80 00040
    Jan 26 12:20:45 further kernel: ACPI: APIC 000000008f70f298 00072 (v03 _ASUS_ Notebook 01072009 AMI 00010013)
    Jan 26 12:20:45 further kernel: ACPI: MCFG 000000008f70f310 0003C (v01 _ASUS_ GMCH945. 01072009 MSFT 00000097)
    Jan 26 12:20:45 further kernel: ACPI: HPET 000000008f70f350 00038 (v01 _ASUS_ Notebook 01072009 AMI 00000004)
    Jan 26 12:20:45 further kernel: ACPI: SSDT 000000008f70f388 00726 (v01 _ASUS_ POWERNOW 00000001 AMD 00000001)
    Jan 26 12:20:45 further kernel: ACPI: SSDT 000000008f70fab0 0190A (v02 _ASUS_ ALIB 00000001 MSFT 04000000)
    Jan 26 12:20:45 further kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 12:20:45 further kernel: No NUMA configuration found
    Jan 26 12:20:45 further kernel: Faking a node at [mem 0x0000000000000000-0x000000014effffff]
    Jan 26 12:20:45 further kernel: Initmem setup node 0 [mem 0x00000000-0x14effffff]
    Jan 26 12:20:45 further kernel: NODE_DATA [mem 0x14effc000-0x14effffff]
    Jan 26 12:20:45 further kernel: [ffffea0000000000-ffffea00053fffff] PMD -> [ffff88014ae00000-ffff88014e5fffff] on node 0
    Jan 26 12:20:45 further kernel: Zone ranges:
    Jan 26 12:20:45 further kernel: DMA [mem 0x00010000-0x00ffffff]
    Jan 26 12:20:45 further kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 26 12:20:45 further kernel: Normal [mem 0x100000000-0x14effffff]
    Jan 26 12:20:45 further kernel: Movable zone start for each node
    Jan 26 12:20:45 further kernel: Early memory node ranges
    Jan 26 12:20:45 further kernel: node 0: [mem 0x00010000-0x0009cfff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x00100000-0x8f6bffff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x8f868000-0x8f868fff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x8fad1000-0x8fd45fff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x8fef7000-0x8fefffff]
    Jan 26 12:20:45 further kernel: node 0: [mem 0x100001000-0x14effffff]
    Jan 26 12:20:45 further kernel: On node 0 totalpages: 911563
    Jan 26 12:20:45 further kernel: DMA zone: 64 pages used for memmap
    Jan 26 12:20:45 further kernel: DMA zone: 6 pages reserved
    Jan 26 12:20:45 further kernel: DMA zone: 3911 pages, LIFO batch:0
    Jan 26 12:20:45 further kernel: DMA32 zone: 16320 pages used for memmap
    Jan 26 12:20:45 further kernel: DMA32 zone: 567679 pages, LIFO batch:31
    Jan 26 12:20:45 further kernel: Normal zone: 5056 pages used for memmap
    Jan 26 12:20:45 further kernel: Normal zone: 318527 pages, LIFO batch:31
    Jan 26 12:20:45 further kernel: ACPI: PM-Timer IO Port: 0x808
    Jan 26 12:20:45 further kernel: ACPI: Local APIC address 0xfee00000
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
    Jan 26 12:20:45 further kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Jan 26 12:20:45 further kernel: ACPI: IOAPIC (id[0x03] address[0xfec00000] gsi_base[0])
    Jan 26 12:20:45 further kernel: IOAPIC[0]: apic_id 3, version 33, address 0xfec00000, GSI 0-23
    Jan 26 12:20:45 further kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 26 12:20:45 further kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Jan 26 12:20:45 further kernel: ACPI: IRQ0 used by override.
    Jan 26 12:20:45 further kernel: ACPI: IRQ2 used by override.
    Jan 26 12:20:45 further kernel: ACPI: IRQ9 used by override.
    Jan 26 12:20:45 further kernel: Using ACPI (MADT) for SMP configuration information
    Jan 26 12:20:45 further kernel: ACPI: HPET id: 0xffffffff base: 0xfed00000
    Jan 26 12:20:45 further kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
    Jan 26 12:20:45 further kernel: nr_irqs_gsi: 40
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f6c0000 - 000000008f703000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f703000 - 000000008f712000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f712000 - 000000008f829000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f829000 - 000000008f839000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f839000 - 000000008f868000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f869000 - 000000008f872000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f872000 - 000000008f884000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f884000 - 000000008f892000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f892000 - 000000008f894000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f894000 - 000000008f89b000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f89b000 - 000000008f89e000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f89e000 - 000000008f8a7000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f8a7000 - 000000008f8ce000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008f8ce000 - 000000008fad1000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008fd46000 - 000000008fef7000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 000000008ff00000 - 00000000e0000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000fed90000 - 00000000ff000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Jan 26 12:20:45 further kernel: PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    Jan 26 12:20:45 further kernel: e820: [mem 0x8ff00000-0xdfffffff] available for PCI devices
    Jan 26 12:20:45 further kernel: Booting paravirtualized kernel on bare hardware
    Jan 26 12:20:45 further kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    Jan 26 12:20:45 further kernel: PERCPU: Embedded 28 pages/cpu @ffff88014ec00000 s84544 r8192 d21952 u524288
    Jan 26 12:20:45 further kernel: pcpu-alloc: s84544 r8192 d21952 u524288 alloc=1*2097152
    Jan 26 12:20:45 further kernel: pcpu-alloc: [0] 0 1 2 3
    Jan 26 12:20:45 further kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 890117
    Jan 26 12:20:45 further kernel: Policy zone: Normal
    Jan 26 12:20:45 further kernel: Kernel command line: root=/dev/sda6 ro nomodeset init=/sbin/init rootfstype=ext4
    Jan 26 12:20:45 further kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 26 12:20:45 further kernel: __ex_table already sorted, skipping sort
    Jan 26 12:20:45 further kernel: Checking aperture...
    Jan 26 12:20:45 further kernel: No AGP bridge found
    Jan 26 12:20:45 further kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jan 26 12:20:45 further kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jan 26 12:20:45 further kernel: Memory: 3508092k/5488640k available (4832k kernel code, 1842388k absent, 138160k reserved, 4077k data, 808k init)
    Jan 26 12:20:45 further kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Jan 26 12:20:45 further kernel: Preemptible hierarchical RCU implementation.
    Jan 26 12:20:45 further kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 26 12:20:45 further kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 26 12:20:45 further kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    Jan 26 12:20:45 further kernel: NR_IRQS:4352 nr_irqs:712 16
    Jan 26 12:20:45 further kernel: Extended CMOS year: 2000
    Jan 26 12:20:45 further kernel: Console: colour VGA+ 80x25
    Jan 26 12:20:45 further kernel: console [tty0] enabled
    Jan 26 12:20:45 further kernel: allocated 14680064 bytes of page_cgroup
    Jan 26 12:20:45 further kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 26 12:20:45 further kernel: hpet clockevent registered
    Jan 26 12:20:45 further kernel: tsc: Fast TSC calibration using PIT
    Jan 26 12:20:45 further kernel: tsc: Detected 1896.600 MHz processor
    Jan 26 12:20:45 further kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3794.25 BogoMIPS (lpj=6322000)
    Jan 26 12:20:45 further kernel: pid_max: default: 32768 minimum: 301
    Jan 26 12:20:45 further kernel: Security Framework initialized
    Jan 26 12:20:45 further kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 26 12:20:45 further kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 26 12:20:45 further kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jan 26 12:20:45 further kernel: Mount-cache hash table entries: 256
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys cpuacct
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys memory
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys devices
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys freezer
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys net_cls
    Jan 26 12:20:45 further kernel: Initializing cgroup subsys blkio
    Jan 26 12:20:45 further kernel: tseg: 008ff00000
    Jan 26 12:20:45 further kernel: CPU: Physical Processor ID: 0
    Jan 26 12:20:45 further kernel: CPU: Processor Core ID: 0
    Jan 26 12:20:45 further kernel: mce: CPU supports 6 MCE banks
    Jan 26 12:20:45 further kernel: [120B blob data]
    Jan 26 12:20:45 further kernel: Freeing SMP alternatives: 16k freed
    Jan 26 12:20:45 further kernel: ACPI: Core revision 20120913
    Jan 26 12:20:45 further kernel: ftrace: allocating 18585 entries in 73 pages
    Jan 26 12:20:45 further kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 26 12:20:45 further kernel: smpboot: CPU0: AMD A4-3300M APU with Radeon(tm) HD Graphics (fam: 12, model: 01, stepping: 00)
    Jan 26 12:20:45 further kernel: Performance Events: AMD PMU driver.
    Jan 26 12:20:45 further kernel: ... version: 0
    Jan 26 12:20:45 further kernel: ... bit width: 48
    Jan 26 12:20:45 further kernel: ... generic registers: 4
    Jan 26 12:20:45 further kernel: ... value mask: 0000ffffffffffff
    Jan 26 12:20:45 further kernel: ... max period: 00007fffffffffff
    Jan 26 12:20:45 further kernel: ... fixed-purpose events: 0
    Jan 26 12:20:45 further kernel: ... event mask: 000000000000000f
    Jan 26 12:20:45 further kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 26 12:20:45 further kernel: smpboot: Booting Node 0, Processors #1
    Jan 26 12:20:45 further kernel: Brought up 2 CPUs
    Jan 26 12:20:45 further kernel: smpboot: Total of 2 processors activated (7589.50 BogoMIPS)
    Jan 26 12:20:45 further kernel: devtmpfs: initialized
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f6c0000-0x8f702fff] (274432 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f829000-0x8f838fff] (65536 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f869000-0x8f871fff] (36864 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f884000-0x8f891fff] (57344 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f894000-0x8f89afff] (28672 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f89e000-0x8f8a6fff] (36864 bytes)
    Jan 26 12:20:45 further kernel: PM: Registering ACPI NVS region [mem 0x8f8ce000-0x8fad0fff] (2109440 bytes)
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 16
    Jan 26 12:20:45 further kernel: ACPI: bus type pci registered
    Jan 26 12:20:45 further kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jan 26 12:20:45 further kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jan 26 12:20:45 further kernel: PCI: Using configuration type 1 for base access
    Jan 26 12:20:45 further kernel: bio: create slab <bio-0> at 0
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(Module Device)
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(Processor Device)
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 26 12:20:45 further kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 26 12:20:45 further kernel: ACPI: EC: Look up EC in DSDT
    Jan 26 12:20:45 further kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 26 12:20:45 further kernel: ACPI: Interpreter enabled
    Jan 26 12:20:45 further kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 26 12:20:45 further kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 26 12:20:45 further kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 12:20:45 further kernel: [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
    Jan 26 12:20:45 further kernel: ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    Jan 26 12:20:45 further kernel: ACPI: No dock devices found.
    Jan 26 12:20:45 further kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 26 12:20:45 further kernel: \_SB_.PCI0:_OSC request failed
    Jan 26 12:20:45 further kernel: _OSC request data:1 8 1f
    Jan 26 12:20:45 further kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 26 12:20:45 further kernel: PCI host bridge to bus 0000:00
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [io 0x1778-0xffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: root bus resource [mem 0xb0000000-0xffffffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:00.0: [1022:1705] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: [1002:9648] type 00 class 0x030000
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: reg 10: [mem 0xb0000000-0xbfffffff pref]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:01.1: [1002:1714] type 00 class 0x040300
    Jan 26 12:20:45 further kernel: pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    Jan 26 12:20:45 further kernel: pci 0000:00:01.1: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: [1022:1707] type 01 class 0x060400
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: [1022:1709] type 01 class 0x060400
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: [1022:170a] type 01 class 0x060400
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:10.0: [1022:7812] type 00 class 0x0c0330
    Jan 26 12:20:45 further kernel: pci 0000:00:10.0: reg 10: [mem 0xfeb48000-0xfeb49fff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: [1022:7801] type 00 class 0x010601
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    Jan 26 12:20:45 further kernel: pci 0000:00:11.0: reg 24: [mem 0xfeb4d000-0xfeb4d7ff]
    Jan 26 12:20:45 further kernel: pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
    Jan 26 12:20:45 further kernel: pci 0000:00:12.0: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: reg 10: [mem 0xfeb4b000-0xfeb4b0ff]
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Jan 26 12:20:45 further kernel: pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
    Jan 26 12:20:45 further kernel: pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
    Jan 26 12:20:45 further kernel: pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
    Jan 26 12:20:45 further kernel: pci 0000:00:14.7: [1022:7806] type 00 class 0x080501
    Jan 26 12:20:45 further kernel: pci 0000:00:14.7: reg 10: [mem 0xfeb4a000-0xfeb4a0ff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: [1002:6741] type 00 class 0x030000
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 18: [mem 0xfea20000-0xfea3ffff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 20: [io 0xe000-0xe0ff]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: reg 30: [mem 0xfea00000-0xfea1ffff pref]
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: reg 10: [io 0xd000-0xd0ff]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: supports D1 D2
    Jan 26 12:20:45 further kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: reg 10: [mem 0xfe900000-0xfe90ffff 64bit]
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: supports D1
    Jan 26 12:20:45 further kernel: pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: PCI bridge to [bus 03]
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [io 0x1778-0xffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: bridge window [mem 0xb0000000-0xffffffff] (subtractive decode)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR14._PRT]
    Jan 26 12:20:45 further kernel: \_SB_.PCI0:_OSC request failed
    Jan 26 12:20:45 further kernel: _OSC request data:1 1f 1f
    Jan 26 12:20:45 further kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 26 12:20:45 further kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN24] (IRQs *24)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN25] (IRQs *25)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN26] (IRQs *26)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN27] (IRQs *27)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN28] (IRQs *28)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN29] (IRQs *29)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN30] (IRQs *30)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN31] (IRQs *31)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN32] (IRQs *32)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN33] (IRQs *33)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN34] (IRQs *34)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN35] (IRQs *35)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN36] (IRQs *36)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN37] (IRQs *37)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN38] (IRQs *38)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN39] (IRQs *39)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN40] (IRQs *40)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN41] (IRQs *41)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN42] (IRQs *42)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN43] (IRQs *43)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN44] (IRQs *44)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN45] (IRQs *45)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN46] (IRQs *46)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN47] (IRQs *47)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN48] (IRQs *48)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN49] (IRQs *49)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN50] (IRQs *50)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN51] (IRQs *51)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN52] (IRQs *52)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN53] (IRQs *53)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN54] (IRQs *54)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LN55] (IRQs *55)
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    Jan 26 12:20:45 further kernel: vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 26 12:20:45 further kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Jan 26 12:20:45 further kernel: vgaarb: loaded
    Jan 26 12:20:45 further kernel: vgaarb: bridge control possible 0000:01:00.0
    Jan 26 12:20:45 further kernel: vgaarb: no bridge control possible 0000:00:01.0
    Jan 26 12:20:45 further kernel: PCI: Using ACPI for IRQ routing
    Jan 26 12:20:45 further kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8f6c0000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8f869000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8fd46000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x8ff00000-0x8fffffff]
    Jan 26 12:20:45 further kernel: e820: reserve RAM buffer [mem 0x14f000000-0x14fffffff]
    Jan 26 12:20:45 further kernel: NetLabel: Initializing
    Jan 26 12:20:45 further kernel: NetLabel: domain hash size = 128
    Jan 26 12:20:45 further kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 26 12:20:45 further kernel: NetLabel: unlabeled traffic allowed by default
    Jan 26 12:20:45 further kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Jan 26 12:20:45 further kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Jan 26 12:20:45 further kernel: Switching to clocksource hpet
    Jan 26 12:20:45 further kernel: pnp: PnP ACPI init
    Jan 26 12:20:45 further kernel: ACPI: bus type pnp registered
    Jan 26 12:20:45 further kernel: pnp 00:00: [bus 00-ff]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x0000-0x03af window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x03e0-0x0cf7 window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x03b0-0x03df window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [io 0x1778-0xffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0x000c0000-0x000dffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0xb0000000-0xffffffff window]
    Jan 26 12:20:45 further kernel: pnp 00:00: [mem 0x00000000 window]
    Jan 26 12:20:45 further kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    Jan 26 12:20:45 further kernel: pnp 00:01: [mem 0xe0000000-0xefffffff]
    Jan 26 12:20:45 further kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0010-0x001f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0022-0x003f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0063]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0065]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0067-0x006f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0072-0x007f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0080]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0084-0x0086]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0088]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x008c-0x008e]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0090-0x009f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x00a2-0x00bf]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x00b1]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x00e0-0x00ef]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x04d0-0x04d1]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x040b]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x04d6]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c00-0x0c01]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c14]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c50-0x0c51]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c52]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c6c]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0c6f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd0-0x0cd1]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd2-0x0cd3]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd4-0x0cd5]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd6-0x0cd7]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0cd8-0x0cdf]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0800-0x089f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0000-0x000f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0b20-0x0b3f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0900-0x090f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0910-0x091f]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0xfe00-0xfefe]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0060-0x005f disabled]
    Jan 26 12:20:45 further kernel: pnp 00:02: [io 0x0064-0x0063 disabled]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfec00000-0xfec00fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfee00000-0xfee00fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfed80000-0xfed8ffff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfed61000-0xfed70fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfec10000-0xfec10fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xfed00000-0xfed00fff]
    Jan 26 12:20:45 further kernel: pnp 00:02: [mem 0xff000000-0xffffffff]
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x04d0-0x04d1] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x040b] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x04d6] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c00-0x0c01] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c14] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c50-0x0c51] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c52] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c6c] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0c6f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0800-0x089f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0b20-0x0b3f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0900-0x090f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0x0910-0x091f] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [io 0xfe00-0xfefe] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: [mem 0xff000000-0xffffffff] has been reserved
    Jan 26 12:20:45 further kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:03: [dma 4]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0000-0x000f]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0081-0x0083]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0087]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x0089-0x008b]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x008f]
    Jan 26 12:20:45 further kernel: pnp 00:03: [io 0x00c0-0x00df]
    Jan 26 12:20:45 further kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 26 12:20:45 further kernel: pnp 00:04: [io 0x0070-0x0071]
    Jan 26 12:20:45 further kernel: pnp 00:04: [irq 8]
    Jan 26 12:20:45 further kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 26 12:20:45 further kernel: pnp 00:05: [io 0x0061]
    Jan 26 12:20:45 further kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0010-0x001f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0022-0x003f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0044-0x005f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0072-0x007f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0080]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0084-0x0086]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0088]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x008c-0x008e]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x0090-0x009f]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x00a2-0x00bf]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x00e0-0x00ef]
    Jan 26 12:20:45 further kernel: pnp 00:06: [io 0x04d0-0x04d1]
    Jan 26 12:20:45 further kernel: system 00:06: [io 0x04d0-0x04d1] has been reserved
    Jan 26 12:20:45 further kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:07: [io 0x00f0-0x00ff]
    Jan 26 12:20:45 further kernel: pnp 00:07: [irq 13]
    Jan 26 12:20:45 further kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 26 12:20:45 further kernel: pnp 00:08: [io 0x1770-0x1777]
    Jan 26 12:20:45 further kernel: system 00:08: [io 0x1770-0x1777] has been reserved
    Jan 26 12:20:45 further kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:09: [irq 12]
    Jan 26 12:20:45 further kernel: pnp 00:09: Plug and Play ACPI device, IDs ETD0102 PNP0f13 (active)
    Jan 26 12:20:45 further kernel: pnp 00:0a: [io 0x0060]
    Jan 26 12:20:45 further kernel: pnp 00:0a: [io 0x0064]
    Jan 26 12:20:45 further kernel: pnp 00:0a: [irq 1]
    Jan 26 12:20:45 further kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    Jan 26 12:20:45 further kernel: pnp 00:0b: [mem 0x00000000-0xffffffffffffffff disabled]
    Jan 26 12:20:45 further kernel: pnp 00:0b: [mem 0x00000000-0xffffffffffffffff disabled]
    Jan 26 12:20:45 further kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 26 12:20:45 further kernel: pnp 00:0c: [mem 0xfed00000-0xfed003ff]
    Jan 26 12:20:45 further kernel: pnp 00:0c: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 26 12:20:45 further kernel: pnp: PnP ACPI: found 13 devices
    Jan 26 12:20:45 further kernel: ACPI: ACPI bus type pnp unregistered
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Jan 26 12:20:45 further kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: PCI bridge to [bus 03]
    Jan 26 12:20:45 further kernel: pci 0000:00:05.0: bridge window [mem 0xfe900000-0xfe9fffff]
    Jan 26 12:20:45 further kernel: pci 0000:00:14.4: PCI bridge to [bus 04]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 7 [io 0x1778-0xffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:00: resource 10 [mem 0xb0000000-0xffffffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    Jan 26 12:20:45 further kernel: pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x03af]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 5 [io 0x03e0-0x0cf7]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 6 [io 0x03b0-0x03df]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 7 [io 0x1778-0xffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 8 [mem 0x000a0000-0x000bffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 9 [mem 0x000c0000-0x000dffff]
    Jan 26 12:20:45 further kernel: pci_bus 0000:04: resource 10 [mem 0xb0000000-0xffffffff]
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 2
    Jan 26 12:20:45 further kernel: TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Jan 26 12:20:45 further kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 26 12:20:45 further kernel: TCP: Hash tables configured (established 524288 bind 65536)
    Jan 26 12:20:45 further kernel: TCP: reno registered
    Jan 26 12:20:45 further kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 26 12:20:45 further kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 1
    Jan 26 12:20:45 further kernel: pci 0000:00:01.0: Boot video device
    Jan 26 12:20:45 further kernel: PCI: CLS 64 bytes, default 64
    Jan 26 12:20:45 further kernel: Unpacking initramfs...
    Jan 26 12:20:45 further kernel: Freeing initrd memory: 2980k freed
    Jan 26 12:20:45 further kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jan 26 12:20:45 further kernel: software IO TLB [mem 0x8b6c0000-0x8f6bffff] (64MB) mapped at [ffff88008b6c0000-ffff88008f6bffff]
    Jan 26 12:20:45 further kernel: LVT offset 0 assigned for vector 0x400
    Jan 26 12:20:45 further kernel: perf: AMD IBS detected (0x000000ff)
    Jan 26 12:20:45 further kernel: audit: initializing netlink socket (disabled)
    Jan 26 12:20:45 further kernel: type=2000 audit(1359202838.726:1): initialized
    Jan 26 12:20:45 further kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 26 12:20:45 further kernel: VFS: Disk quotas dquot_6.5.2
    Jan 26 12:20:45 further kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 26 12:20:45 further kernel: msgmni has been set to 6857
    Jan 26 12:20:45 further kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 26 12:20:45 further kernel: io scheduler noop registered
    Jan 26 12:20:45 further kernel: io scheduler deadline registered
    Jan 26 12:20:45 further kernel: io scheduler cfq registered (default)
    Jan 26 12:20:45 further kernel: GHES: HEST is not enabled!
    Jan 26 12:20:45 further kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 26 12:20:45 further kernel: Linux agpgart interface v0.103
    Jan 26 12:20:45 further kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 26 12:20:45 further kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 26 12:20:45 further kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 26 12:20:45 further kernel: mousedev: PS/2 mouse device common for all mice
    Jan 26 12:20:45 further kernel: rtc_cmos 00:04: RTC can wake from S4
    Jan 26 12:20:45 further kernel: rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    Jan 26 12:20:45 further kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Jan 26 12:20:45 further kernel: cpuidle: using governor ladder
    Jan 26 12:20:45 further kernel: cpuidle: using governor menu
    Jan 26 12:20:45 further kernel: drop_monitor: Initializing network drop monitor service
    Jan 26 12:20:45 further kernel: TCP: cubic registered
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 10
    Jan 26 12:20:45 further kernel: NET: Registered protocol family 17
    Jan 26 12:20:45 further kernel: Key type dns_resolver registered
    Jan 26 12:20:45 further kernel: PM: Hibernation image not present or could not be loaded.
    Jan 26 12:20:45 further kernel: registered taskstats version 1
    Jan 26 12:20:45 further kernel: rtc_cmos 00:04: setting system clock to 2013-01-26 12:20:39 UTC (1359202839)
    Jan 26 12:20:45 further kernel: Freeing unused kernel memory: 808k freed
    Jan 26 12:20:45 further kernel: Write protecting the kernel read-only data: 8192k
    Jan 26 12:20:45 further kernel: Freeing unused kernel memory: 1300k freed
    Jan 26 12:20:45 further kernel: Freeing unused kernel memory: 492k freed
    Jan 26 12:20:45 further kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 26 12:20:45 further systemd-udevd[46]: starting version 197
    Jan 26 12:20:45 further kernel: ACPI: bus type usb registered
    Jan 26 12:20:45 further kernel: usbcore: registered new interface driver usbfs
    Jan 26 12:20:45 further kernel: usbcore: registered new interface driver hub
    Jan 26 12:20:45 further kernel: SCSI subsystem initialized
    Jan 26 12:20:45 further kernel: usbcore: registered new device driver usb
    Jan 26 12:20:45 further kernel: sdhci: Secure Digital Host Controller Interface driver
    Jan 26 12:20:45 further kernel: sdhci: Copyright(c) Pierre Ossman
    Jan 26 12:20:45 further kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: EHCI Host Controller
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    Jan 26 12:20:45 further kernel: QUIRK: Enable AMD PLL fix
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: debug port 1
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: irq 17, io mem 0xfeb4b000
    Jan 26 12:20:45 further kernel: ACPI: bus type scsi registered
    Jan 26 12:20:45 further kernel: libata version 3.00 loaded.
    Jan 26 12:20:45 further kernel: ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Jan 26 12:20:45 further kernel: hub 1-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 1-0:1.0: 5 ports detected
    Jan 26 12:20:45 further kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jan 26 12:20:45 further kernel: ohci_hcd 0000:00:12.0: OHCI Host Controller
    Jan 26 12:20:45 further kernel: ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 2
    Jan 26 12:20:45 further kernel: ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb4c000
    Jan 26 12:20:45 further kernel: hub 2-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 2-0:1.0: 5 ports detected
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: xHCI Host Controller
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 3
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 18, io mem 0xfeb48000
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 40 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 41 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: irq 42 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: xHCI xhci_add_endpoint called for root hub
    Jan 26 12:20:45 further kernel: xHCI xhci_check_bandwidth called for root hub
    Jan 26 12:20:45 further kernel: hub 3-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 3-0:1.0: 2 ports detected
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: xHCI Host Controller
    Jan 26 12:20:45 further kernel: xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 4
    Jan 26 12:20:45 further kernel: xHCI xhci_add_endpoint called for root hub
    Jan 26 12:20:45 further kernel: xHCI xhci_check_bandwidth called for root hub
    Jan 26 12:20:45 further kernel: hub 4-0:1.0: USB hub found
    Jan 26 12:20:45 further kernel: hub 4-0:1.0: 2 ports detected
    Jan 26 12:20:45 further kernel: sdhci-pci 0000:00:14.7: SDHCI controller found [1022:7806] (rev 0)
    Jan 26 12:20:45 further kernel: Registered led device: mmc0::
    Jan 26 12:20:45 further kernel: mmc0: SDHCI controller on PCI [0000:00:14.7] using ADMA
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: version 3.0
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: irq 43 for MSI/MSI-X
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: AHCI 0001.0300 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
    Jan 26 12:20:45 further kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    Jan 26 12:20:45 further kernel: scsi0 : ahci
    Jan 26 12:20:45 further kernel: scsi1 : ahci
    Jan 26 12:20:45 further kernel: scsi2 : ahci
    Jan 26 12:20:45 further kernel: ata1: SATA max UDMA/133 abar m2048@0xfeb4d000 port 0xfeb4d100 irq 43
    Jan 26 12:20:45 further kernel: ata2: SATA max UDMA/133 abar m2048@0xfeb4d000 port 0xfeb4d180 irq 43
    Jan 26 12:20:45 further kernel: ata3: SATA max UDMA/133 abar m2048@0xfeb4d000 port 0xfeb4d200 irq 43
    Jan 26 12:20:45 further kernel: usb 1-3: new high-speed USB device number 2 using ehci_hcd
    Jan 26 12:20:45 further kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Jan 26 12:20:45 further kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 26 12:20:45 further kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 26 12:20:45 further kernel: ata2.00: ATAPI: MATSHITADVD-RAM UJ8B0, 1.00, max UDMA/100
    Jan 26 12:20:45 further kernel: ata1.00: ATA-8: WDC WD5000BPVT-80HXZT3, 01.01A01, max UDMA/133
    Jan 26 12:20:45 further kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Jan 26 12:20:45 further kernel: ata1.00: failed to get Identify Device Data, Emask 0x1
    Jan 26 12:20:45 further kernel: ata2.00: configured for UDMA/100
    Jan 26 12:20:45 further kernel: ata1.00: failed to get Identify Device Data, Emask 0x1
    Jan 26 12:20:45 further kernel: ata1.00: configured for UDMA/133
    Jan 26 12:20:45 further kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD5000BPVT-8 01.0 PQ: 0 ANSI: 5
    Jan 26 12:20:45 further kernel: scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8B0 1.00 PQ: 0 ANSI: 5
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 26 12:20:45 further kernel: sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 >
    Jan 26 12:20:45 further kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 26 12:20:45 further kernel: sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Jan 26 12:20:45 further kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 26 12:20:45 further kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 26 12:20:45 further kernel: usb 1-5: new high-speed USB device number 4 using ehci_hcd
    Jan 26 12:20:45 further kernel: tsc: Refined TSC clocksource calibration: 1896.550 MHz
    Jan 26 12:20:45 further kernel: Switching to clocksource tsc
    Jan 26 12:20:45 further kernel: Initializing USB Mass Storage driver...
    Jan 26 12:20:45 further kernel: usbcore: registered new interface driver usb-storage
    Jan 26 12:20:45 further kernel: USB Mass Storage support registered.
    Jan 26 12:20:45 further kernel: usb 2-4: new full-speed USB device number 2 using ohci_hcd
    Jan 26 12:20:45 further kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    Jan 26 12:20:45 further systemd[1]: RTC configured in localtime, applying delta of 60 minutes to system time.
    Jan 26 12:20:45 further systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jan 26 12:20:45 further systemd[1]: Set hostname to <further>.
    Jan 26 12:20:45 further systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    Jan 26 12:20:45 further systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Starting Remote File Systems.
    Jan 26 12:20:45 further systemd[1]: Reached target Remote File Systems.
    Jan 26 12:20:45 further systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 26 12:20:45 further systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 26 12:20:45 further systemd[1]: Starting Delayed Shutdown Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 26 12:20:45 further systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Jan 26 12:20:45 further systemd[1]: Starting udev Kernel Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on udev Kernel Socket.
    Jan 26 12:20:45 further systemd[1]: Starting udev Control Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on udev Control Socket.
    Jan 26 12:20:45 further systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 26 12:20:45 further systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 26 12:20:45 further systemd[1]: Starting Encrypted Volumes.
    Jan 26 12:20:45 further systemd[1]: Reached target Encrypted Volumes.
    Jan 26 12:20:45 further systemd[1]: Expecting device dev-disk-by\x2duuid-f71c0eee\x2da4ec\x2d43a0\x2d89c7\x2d51f13a79169a.device...
    Jan 26 12:20:45 further systemd[1]: Expecting device dev-disk-by\x2duuid-26f87130\x2d99b7\x2d4a00\x2d997c\x2de177c335f448.device...
    Jan 26 12:20:45 further systemd[1]: Expecting device dev-disk-by\x2duuid-6c6af8e9\x2dbd25\x2d463b\x2dae87\x2dc894d7b092b5.device...
    Jan 26 12:20:45 further systemd[1]: Starting Journal Socket.
    Jan 26 12:20:45 further systemd[1]: Listening on Journal Socket.
    Jan 26 12:20:45 further systemd[1]: Started File System Check on Root Device.
    Jan 26 12:20:45 further systemd[1]: Starting Remount Root and Kernel File Systems...
    Jan 26 12:20:45 further systemd[1]: Starting Load Kernel Modules...
    Jan 26 12:20:45 further systemd[1]: Mounting Huge Pages File System...
    Jan 26 12:20:45 further systemd[1]: Starting udev Coldplug all Devices...
    Jan 26 12:20:45 further systemd[1]: Started Set Up Additional Binary Formats.
    Jan 26 12:20:45 further systemd[1]: Starting Setup Virtual Console...
    Jan 26 12:20:45 further systemd[1]: Mounting POSIX Message Queue File System...
    Jan 26 12:20:45 further systemd[1]: Starting udev Kernel Device Manager...
    Jan 26 12:20:45 further systemd[1]: Starting Apply Kernel Variables...
    Jan 26 12:20:45 further systemd[1]: Mounting Debug File System...
    Jan 26 12:20:45 further systemd[1]: Starting Journal Service...
    Jan 26 12:20:45 further systemd[1]: Started Journal Service.
    Jan 26 12:20:45 further systemd-udevd[142]: starting version 197
    Jan 26 12:20:45 further systemd-journal[145]: Journal started
    Jan 26 12:20:45 further systemd[1]: Started Apply Kernel Variables.
    Jan 26 12:20:45 further systemd[1]: Mounted Debug File System.
    Jan 26 12:20:45 further systemd[1]: Mounted Huge Pages File System.
    Jan 26 12:20:45 further systemd[1]: Started udev Coldplug all Devices.
    Jan 26 12:20:45 further systemd[1]: Mounted POSIX Message Queue File System.
    Jan 26 12:20:45 further systemd[1]: Started udev Kernel Device Manager.
    Jan 26 12:20:45 further kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    Jan 26 12:20:45 further kernel: ACPI: Power Button [PWRB]
    Jan 26 12:20:45 further kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
    Jan 26 12:20:45 further kernel: ACPI: Sleep Button [SLPB]
    Jan 26 12:20:45 further kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    Jan 26 12:20:45 further kernel: ACPI: Lid Switch [LID]
    Jan 26 12:20:45 further kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jan 26 12:20:45 further kernel: ACPI: Power Button [PWRF]
    Jan 26 12:20:45 further kernel: AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
    Jan 26 12:20:45 further kernel: AMD IOMMUv2 functionality not available on this system
    Jan 26 12:20:45 further kernel: EXT4-fs (sda6): re-mounted. Opts: barrier=0
    Jan 26 12:20:45 further systemd[1]: Started Remount Root and Kernel File Systems.
    Jan 26 12:20:45 further systemd[1]: Starting Local File Systems (Pre).
    Jan 26 12:20:45 further systemd[1]: Reached target Local File Systems (Pre).
    Jan 26 12:20:45 further systemd[1]: Mounting /tmp...
    Jan 26 12:20:45 further systemd[1]: Starting Load Random Seed...
    Jan 26 12:20:45 further systemd[1]: Mounted /tmp.
    Jan 26 12:20:45 further kernel: fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    Jan 26 12:20:45 further kernel: Disabling lock debugging due to kernel taint
    Jan 26 12:20:45 further systemd-modules-load[136]: Inserted module 'fglrx'
    Jan 26 12:20:45 further kernel: <6>[fglrx] Maximum main memory to use for locked dma buffers: 3278 MBytes.
    Jan 26 12:20:45 further kernel: <6>[fglrx] vendor: 1002 device: 9648 count: 1
    Jan 26 12:20:45 further kernel: <6>[fglrx] vendor: 1002 device: 6741 count: 2
    Jan 26 12:20:45 further kernel: <6>[fglrx] ioport: bar 1, base 0xf000, size: 0x100
    Jan 26 12:20:45 further kernel: <6>[fglrx] ioport: bar 4, base 0xe000, size: 0x100
    Jan 26 12:20:45 further kernel: pci 0000:01:00.0: enabling device (0000 -> 0003)
    Jan 26 12:20:45 further kernel: <6>[fglrx] Kernel PAT support is enabled
    Jan 26 12:20:45 further kernel: <6>[fglrx] module loaded - fglrx 9.1.11 [Dec 19 2012] with 2 minors
    Jan 26 12:20:45 further systemd[1]: Started Load Kernel Modules.
    Jan 26 12:20:45 further systemd[1]: Mounted FUSE Control File System.
    Jan 26 12:20:45 further systemd[1]: Mounted Configuration File System.
    Jan 26 12:20:45 further systemd[1]: Started Load Random Seed.
    Jan 26 12:20:45 further

    During boot there is a problem with your fglrx driver. It tries to use MSI interrupts instead of old pin-based method, but it is allready enabled and it warns you http://lxr.linux.no/linux+v3.7.4/drivers/pci/msi.c#L811 in line 828
    And during shutdown there is a problem with pci_msi_shutdown. Maybe this problems related with each other?
    try to disable globaly msi by adding nomsi to kernel options. If this help try to disable msi just for catalyst after boot by echo 0 in /sys/bus/pci/devices/[faulty device]/msi_bus
    try to raise debug level to see message dev_dbg(dev, "shutdown\n"); here http://lxr.linux.no/linux+v3.7.4/drivers/base/core.c#L , open an entry in bugzilla
    try do upgrade or downgrade catalyst if possible
    switch to open source driver

  • Kernel Panic - not syncing: Attempted to kill init!

    OK, a new issue that I can't resolve...
    Having made my new kernel without any hiccups, I then installed it by using pacman -A kernel2.6.12.pkg.tar.gz. However, on boot-up it only gets so far, then gives me an error:
    <0>Kernel Panic - not syncing: Attempted to kill init!
    I've looked around on the 'net, and it seems this usually occurs when there's some problem with the hardware. However, I've used the config file from the 2.6.10 kernel I'm currently in as I type, so there shouldn't be any problems support-wise :?
    What could be wrong?
    My fstab and config for the 2.6.12 kernel are below (I've included the fstab so you can see I've got support for my filesystems compiled into the kernel):
    FSTAB:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    tmpfs /tmp tmpfs defaults 0 0
    usbfs /proc/bus/usb usbfs defaults 0 0
    /dev/cdroms/cdrom0 /mnt/cd iso9660 ro,user,noauto,unhide 0 0
    /dev/cdroms/cdrom0 /mnt/dvd udf ro,user,noauto,unhide 0 0
    /dev/floppy/0 /mnt/fl vfat user,noauto 0 0
    /dev/discs/disc0/part2 swap swap defaults 0 0
    /dev/discs/disc0/part3 / reiserfs defaults 0 0
    /dev/discs/disc0/part1 /boot reiserfs defaults 0 0
    /dev/discs/disc0/part4 /home reiserfs defaults 0 0
    /dev/sda3 /mnt/warehouse vfat defaults 0 0
    CONFIG:
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.10
    # Sun Sep 4 11:39:06 2005
    CONFIG_X86=y
    CONFIG_MMU=y
    CONFIG_UID16=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_IOMAP=y
    # Code maturity level options
    CONFIG_EXPERIMENTAL=y
    CONFIG_CLEAN_COMPILE=y
    CONFIG_BROKEN_ON_SMP=y
    CONFIG_LOCK_KERNEL=y
    # General setup
    CONFIG_LOCALVERSION="-ARCH"
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_POSIX_MQUEUE=y
    # CONFIG_BSD_PROCESS_ACCT is not set
    CONFIG_SYSCTL=y
    # CONFIG_AUDIT is not set
    CONFIG_LOG_BUF_SHIFT=14
    CONFIG_HOTPLUG=y
    CONFIG_KOBJECT_UEVENT=y
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    # CONFIG_EMBEDDED is not set
    CONFIG_KALLSYMS=y
    # CONFIG_KALLSYMS_EXTRA_PASS is not set
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
    CONFIG_SHMEM=y
    CONFIG_CC_ALIGN_FUNCTIONS=0
    CONFIG_CC_ALIGN_LABELS=0
    CONFIG_CC_ALIGN_LOOPS=0
    CONFIG_CC_ALIGN_JUMPS=0
    # CONFIG_TINY_SHMEM is not set
    # Loadable module support
    CONFIG_MODULES=y
    CONFIG_MODULE_UNLOAD=y
    # CONFIG_MODULE_FORCE_UNLOAD is not set
    CONFIG_OBSOLETE_MODPARM=y
    # CONFIG_MODVERSIONS is not set
    # CONFIG_MODULE_SRCVERSION_ALL is not set
    CONFIG_KMOD=y
    # Processor type and features
    CONFIG_X86_PC=y
    # CONFIG_X86_ELAN is not set
    # CONFIG_X86_VOYAGER is not set
    # CONFIG_X86_NUMAQ is not set
    # CONFIG_X86_SUMMIT is not set
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_VISWS is not set
    # CONFIG_X86_GENERICARCH is not set
    # CONFIG_X86_ES7000 is not set
    # CONFIG_M386 is not set
    # CONFIG_M486 is not set
    # CONFIG_M586 is not set
    # CONFIG_M586TSC is not set
    # CONFIG_M586MMX is not set
    # CONFIG_M686 is not set
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUMM is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    CONFIG_MK7=y
    # CONFIG_MK8 is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MEFFICEON is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP2 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    # CONFIG_X86_GENERIC is not set
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_XADD=y
    CONFIG_X86_L1_CACHE_SHIFT=6
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_GOOD_APIC=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_USE_3DNOW=y
    CONFIG_HPET_TIMER=y
    # CONFIG_SMP is not set
    CONFIG_PREEMPT=y
    # CONFIG_X86_UP_APIC is not set
    CONFIG_X86_TSC=y
    CONFIG_X86_MCE=y
    # CONFIG_X86_MCE_NONFATAL is not set
    # CONFIG_TOSHIBA is not set
    # CONFIG_I8K is not set
    # CONFIG_MICROCODE is not set
    # CONFIG_X86_MSR is not set
    # CONFIG_X86_CPUID is not set
    # Firmware Drivers
    # CONFIG_EDD is not set
    # CONFIG_NOHIGHMEM is not set
    CONFIG_HIGHMEM4G=y
    # CONFIG_HIGHMEM64G is not set
    CONFIG_HIGHMEM=y
    # CONFIG_HIGHPTE is not set
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    # CONFIG_EFI is not set
    CONFIG_HAVE_DEC_LOCK=y
    # CONFIG_REGPARM is not set
    # Power management options (ACPI, APM)
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    # CONFIG_SOFTWARE_SUSPEND is not set
    # ACPI (Advanced Configuration and Power Interface) Support
    CONFIG_ACPI=y
    CONFIG_ACPI_BOOT=y
    CONFIG_ACPI_INTERPRETER=y
    # CONFIG_ACPI_SLEEP is not set
    # CONFIG_ACPI_AC is not set
    # CONFIG_ACPI_BATTERY is not set
    CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=y
    CONFIG_ACPI_FAN=y
    CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_THERMAL=y
    # CONFIG_ACPI_ASUS is not set
    # CONFIG_ACPI_IBM is not set
    # CONFIG_ACPI_TOSHIBA is not set
    CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set
    CONFIG_ACPI_BUS=y
    CONFIG_ACPI_EC=y
    CONFIG_ACPI_POWER=y
    CONFIG_ACPI_PCI=y
    CONFIG_ACPI_SYSTEM=y
    # CONFIG_X86_PM_TIMER is not set
    # APM (Advanced Power Management) BIOS Support
    # CONFIG_APM is not set
    # CPU Frequency scaling
    # CONFIG_CPU_FREQ is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    # Bus options (PCI, PCMCIA, EISA, MCA, ISA)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GOMMCONFIG is not set
    # CONFIG_PCI_GODIRECT is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    CONFIG_PCI_MMCONFIG=y
    # CONFIG_PCI_LEGACY_PROC is not set
    CONFIG_PCI_NAMES=y
    # CONFIG_ISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    # PCCARD (PCMCIA/CardBus) support
    # CONFIG_PCCARD is not set
    # PC-card bridges
    # PCI Hotplug Support
    # CONFIG_HOTPLUG_PCI is not set
    # Executable file formats
    CONFIG_BINFMT_ELF=y
    CONFIG_BINFMT_AOUT=y
    CONFIG_BINFMT_MISC=y
    # Device Drivers
    # Generic Driver Options
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    CONFIG_FW_LOADER=y
    # Memory Technology Devices (MTD)
    # CONFIG_MTD is not set
    # Parallel port support
    # CONFIG_PARPORT is not set
    # Plug and Play support
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG is not set
    # Protocols
    CONFIG_PNPACPI=y
    # Block devices
    CONFIG_BLK_DEV_FD=y
    # CONFIG_BLK_CPQ_DA is not set
    # CONFIG_BLK_CPQ_CISS_DA is not set
    # CONFIG_BLK_DEV_DAC960 is not set
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_LOOP is not set
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_SX8 is not set
    # CONFIG_BLK_DEV_UB is not set
    # CONFIG_BLK_DEV_RAM is not set
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_INITRAMFS_SOURCE=""
    # CONFIG_LBD is not set
    # CONFIG_CDROM_PKTCDVD is not set
    # IO Schedulers
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_AS=y
    # CONFIG_IOSCHED_DEADLINE is not set
    # CONFIG_IOSCHED_CFQ is not set
    # ATA/ATAPI/MFM/RLL support
    CONFIG_IDE=y
    CONFIG_BLK_DEV_IDE=y
    # Please see Documentation/ide.txt for help/info on IDE drives
    # CONFIG_BLK_DEV_IDE_SATA is not set
    # CONFIG_BLK_DEV_HD_IDE is not set
    CONFIG_BLK_DEV_IDEDISK=y
    CONFIG_IDEDISK_MULTI_MODE=y
    CONFIG_BLK_DEV_IDECD=y
    # CONFIG_BLK_DEV_IDETAPE is not set
    CONFIG_BLK_DEV_IDEFLOPPY=y
    # CONFIG_BLK_DEV_IDESCSI is not set
    # CONFIG_IDE_TASK_IOCTL is not set
    # IDE chipset support/bugfixes
    CONFIG_IDE_GENERIC=y
    # CONFIG_BLK_DEV_CMD640 is not set
    # CONFIG_BLK_DEV_IDEPNP is not set
    CONFIG_BLK_DEV_IDEPCI=y
    CONFIG_IDEPCI_SHARE_IRQ=y
    # CONFIG_BLK_DEV_OFFBOARD is not set
    CONFIG_BLK_DEV_GENERIC=y
    # CONFIG_BLK_DEV_OPTI621 is not set
    # CONFIG_BLK_DEV_RZ1000 is not set
    CONFIG_BLK_DEV_IDEDMA_PCI=y
    # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
    CONFIG_IDEDMA_PCI_AUTO=y
    # CONFIG_IDEDMA_ONLYDISK is not set
    # CONFIG_BLK_DEV_AEC62XX is not set
    # CONFIG_BLK_DEV_ALI15X3 is not set
    CONFIG_BLK_DEV_AMD74XX=y
    # CONFIG_BLK_DEV_ATIIXP is not set
    # CONFIG_BLK_DEV_CMD64X is not set
    # CONFIG_BLK_DEV_TRIFLEX is not set
    # CONFIG_BLK_DEV_CY82C693 is not set
    # CONFIG_BLK_DEV_CS5520 is not set
    # CONFIG_BLK_DEV_CS5530 is not set
    # CONFIG_BLK_DEV_HPT34X is not set
    # CONFIG_BLK_DEV_HPT366 is not set
    # CONFIG_BLK_DEV_SC1200 is not set
    # CONFIG_BLK_DEV_PIIX is not set
    # CONFIG_BLK_DEV_NS87415 is not set
    # CONFIG_BLK_DEV_PDC202XX_OLD is not set
    # CONFIG_BLK_DEV_PDC202XX_NEW is not set
    # CONFIG_BLK_DEV_SVWKS is not set
    # CONFIG_BLK_DEV_SIIMAGE is not set
    # CONFIG_BLK_DEV_SIS5513 is not set
    # CONFIG_BLK_DEV_SLC90E66 is not set
    # CONFIG_BLK_DEV_TRM290 is not set
    # CONFIG_BLK_DEV_VIA82CXXX is not set
    # CONFIG_IDE_ARM is not set
    CONFIG_BLK_DEV_IDEDMA=y
    # CONFIG_IDEDMA_IVB is not set
    CONFIG_IDEDMA_AUTO=y
    # CONFIG_BLK_DEV_HD is not set
    # SCSI device support
    CONFIG_SCSI=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    # CONFIG_BLK_DEV_SR is not set
    # CONFIG_CHR_DEV_SG is not set
    # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
    # CONFIG_SCSI_MULTI_LUN is not set
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # SCSI Transport Attributes
    # CONFIG_SCSI_SPI_ATTRS is not set
    # CONFIG_SCSI_FC_ATTRS is not set
    # SCSI low-level drivers
    # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
    # CONFIG_SCSI_3W_9XXX is not set
    # CONFIG_SCSI_ACARD is not set
    # CONFIG_SCSI_AACRAID is not set
    # CONFIG_SCSI_AIC7XXX is not set
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    # CONFIG_SCSI_AIC79XX is not set
    # CONFIG_SCSI_DPT_I2O is not set
    # CONFIG_MEGARAID_NEWGEN is not set
    # CONFIG_MEGARAID_LEGACY is not set
    CONFIG_SCSI_SATA=y
    # CONFIG_SCSI_SATA_AHCI is not set
    # CONFIG_SCSI_SATA_SVW is not set
    # CONFIG_SCSI_ATA_PIIX is not set
    CONFIG_SCSI_SATA_NV=y
    # CONFIG_SCSI_SATA_PROMISE is not set
    # CONFIG_SCSI_SATA_SX4 is not set
    CONFIG_SCSI_SATA_SIL=y
    # CONFIG_SCSI_SATA_SIS is not set
    # CONFIG_SCSI_SATA_ULI is not set
    # CONFIG_SCSI_SATA_VIA is not set
    # CONFIG_SCSI_SATA_VITESSE is not set
    # CONFIG_SCSI_BUSLOGIC is not set
    # CONFIG_SCSI_DMX3191D is not set
    # CONFIG_SCSI_EATA is not set
    # CONFIG_SCSI_EATA_PIO is not set
    # CONFIG_SCSI_FUTURE_DOMAIN is not set
    # CONFIG_SCSI_GDTH is not set
    # CONFIG_SCSI_IPS is not set
    # CONFIG_SCSI_INITIO is not set
    # CONFIG_SCSI_INIA100 is not set
    # CONFIG_SCSI_SYM53C8XX_2 is not set
    # CONFIG_SCSI_IPR is not set
    # CONFIG_SCSI_QLOGIC_ISP is not set
    # CONFIG_SCSI_QLOGIC_FC is not set
    # CONFIG_SCSI_QLOGIC_1280 is not set
    CONFIG_SCSI_QLA2XXX=y
    # CONFIG_SCSI_QLA21XX is not set
    # CONFIG_SCSI_QLA22XX is not set
    # CONFIG_SCSI_QLA2300 is not set
    # CONFIG_SCSI_QLA2322 is not set
    # CONFIG_SCSI_QLA6312 is not set
    # CONFIG_SCSI_QLA6322 is not set
    # CONFIG_SCSI_DC395x is not set
    # CONFIG_SCSI_DC390T is not set
    # CONFIG_SCSI_NSP32 is not set
    # CONFIG_SCSI_DEBUG is not set
    # Multi-device support (RAID and LVM)
    # CONFIG_MD is not set
    # Fusion MPT device support
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support
    # CONFIG_IEEE1394 is not set
    # I2O device support
    # CONFIG_I2O is not set
    # Networking support
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_PACKET_MMAP=y
    # CONFIG_NETLINK_DEV is not set
    CONFIG_UNIX=y
    # CONFIG_NET_KEY is not set
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    # CONFIG_IP_ADVANCED_ROUTER is not set
    # CONFIG_IP_PNP is not set
    # CONFIG_NET_IPIP is not set
    # CONFIG_NET_IPGRE is not set
    # CONFIG_IP_MROUTE is not set
    # CONFIG_ARPD is not set
    CONFIG_SYN_COOKIES=y
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # CONFIG_INET_TUNNEL is not set
    CONFIG_IP_TCPDIAG=y
    # CONFIG_IP_TCPDIAG_IPV6 is not set
    # IP: Virtual Server Configuration
    CONFIG_IP_VS=m
    # CONFIG_IP_VS_DEBUG is not set
    CONFIG_IP_VS_TAB_BITS=12
    # IPVS transport protocol load balancing support
    CONFIG_IP_VS_PROTO_TCP=y
    CONFIG_IP_VS_PROTO_UDP=y
    CONFIG_IP_VS_PROTO_ESP=y
    CONFIG_IP_VS_PROTO_AH=y
    # IPVS scheduler
    CONFIG_IP_VS_RR=m
    CONFIG_IP_VS_WRR=m
    CONFIG_IP_VS_LC=m
    CONFIG_IP_VS_WLC=m
    CONFIG_IP_VS_LBLC=m
    CONFIG_IP_VS_LBLCR=m
    CONFIG_IP_VS_DH=m
    CONFIG_IP_VS_SH=m
    CONFIG_IP_VS_SED=m
    CONFIG_IP_VS_NQ=m
    # IPVS application helper
    CONFIG_IP_VS_FTP=m
    # CONFIG_IPV6 is not set
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    # IP: Netfilter Configuration
    CONFIG_IP_NF_CONNTRACK=m
    # CONFIG_IP_NF_CT_ACCT is not set
    # CONFIG_IP_NF_CONNTRACK_MARK is not set
    # CONFIG_IP_NF_CT_PROTO_SCTP is not set
    CONFIG_IP_NF_FTP=m
    CONFIG_IP_NF_IRC=m
    CONFIG_IP_NF_TFTP=m
    CONFIG_IP_NF_AMANDA=m
    CONFIG_IP_NF_QUEUE=m
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_LIMIT=m
    CONFIG_IP_NF_MATCH_IPRANGE=m
    CONFIG_IP_NF_MATCH_MAC=m
    CONFIG_IP_NF_MATCH_PKTTYPE=m
    CONFIG_IP_NF_MATCH_MARK=m
    CONFIG_IP_NF_MATCH_MULTIPORT=m
    CONFIG_IP_NF_MATCH_TOS=m
    CONFIG_IP_NF_MATCH_RECENT=m
    CONFIG_IP_NF_MATCH_ECN=m
    CONFIG_IP_NF_MATCH_DSCP=m
    CONFIG_IP_NF_MATCH_AH_ESP=m
    CONFIG_IP_NF_MATCH_LENGTH=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_MATCH_TCPMSS=m
    CONFIG_IP_NF_MATCH_HELPER=m
    CONFIG_IP_NF_MATCH_STATE=m
    CONFIG_IP_NF_MATCH_CONNTRACK=m
    CONFIG_IP_NF_MATCH_OWNER=m
    CONFIG_IP_NF_MATCH_ADDRTYPE=m
    CONFIG_IP_NF_MATCH_REALM=m
    CONFIG_IP_NF_MATCH_SCTP=m
    CONFIG_IP_NF_MATCH_COMMENT=m
    # CONFIG_IP_NF_MATCH_HASHLIMIT is not set
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=m
    CONFIG_IP_NF_TARGET_LOG=m
    CONFIG_IP_NF_TARGET_ULOG=m
    CONFIG_IP_NF_TARGET_TCPMSS=m
    CONFIG_IP_NF_NAT=m
    CONFIG_IP_NF_NAT_NEEDED=y
    CONFIG_IP_NF_TARGET_MASQUERADE=m
    CONFIG_IP_NF_TARGET_REDIRECT=m
    CONFIG_IP_NF_TARGET_NETMAP=m
    CONFIG_IP_NF_TARGET_SAME=m
    CONFIG_IP_NF_NAT_LOCAL=y
    CONFIG_IP_NF_NAT_SNMP_BASIC=m
    CONFIG_IP_NF_NAT_IRC=m
    CONFIG_IP_NF_NAT_FTP=m
    CONFIG_IP_NF_NAT_TFTP=m
    CONFIG_IP_NF_NAT_AMANDA=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_TOS=m
    CONFIG_IP_NF_TARGET_ECN=m
    CONFIG_IP_NF_TARGET_DSCP=m
    CONFIG_IP_NF_TARGET_MARK=m
    CONFIG_IP_NF_TARGET_CLASSIFY=m
    CONFIG_IP_NF_RAW=m
    CONFIG_IP_NF_TARGET_NOTRACK=m
    CONFIG_IP_NF_ARPTABLES=m
    CONFIG_IP_NF_ARPFILTER=m
    CONFIG_IP_NF_ARP_MANGLE=m
    # CONFIG_IP_NF_COMPAT_IPCHAINS is not set
    # CONFIG_IP_NF_COMPAT_IPFWADM is not set
    # SCTP Configuration (EXPERIMENTAL)
    CONFIG_IP_SCTP=m
    # CONFIG_SCTP_DBG_MSG is not set
    # CONFIG_SCTP_DBG_OBJCNT is not set
    # CONFIG_SCTP_HMAC_NONE is not set
    CONFIG_SCTP_HMAC_SHA1=y
    # CONFIG_SCTP_HMAC_MD5 is not set
    # CONFIG_ATM is not set
    # CONFIG_BRIDGE is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    # CONFIG_LLC2 is not set
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_NET_DIVERT is not set
    # CONFIG_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # QoS and/or fair queueing
    # CONFIG_NET_SCHED is not set
    # CONFIG_NET_SCH_CLK_JIFFIES is not set
    # CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set
    # CONFIG_NET_SCH_CLK_CPU is not set
    CONFIG_NET_CLS_ROUTE=y
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    # CONFIG_NETPOLL is not set
    # CONFIG_NET_POLL_CONTROLLER is not set
    # CONFIG_HAMRADIO is not set
    # CONFIG_IRDA is not set
    # CONFIG_BT is not set
    CONFIG_NETDEVICES=y
    # CONFIG_DUMMY is not set
    # CONFIG_BONDING is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_NET_SB1000 is not set
    # ARCnet devices
    # CONFIG_ARCNET is not set
    # Ethernet (10 or 100Mbit)
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=m
    # CONFIG_HAPPYMEAL is not set
    # CONFIG_SUNGEM is not set
    CONFIG_NET_VENDOR_3COM=y
    CONFIG_VORTEX=y
    # CONFIG_TYPHOON is not set
    # Tulip family network device support
    # CONFIG_NET_TULIP is not set
    # CONFIG_HP100 is not set
    # CONFIG_NET_PCI is not set
    # Ethernet (1000 Mbit)
    # CONFIG_ACENIC is not set
    # CONFIG_DL2K is not set
    # CONFIG_E1000 is not set
    # CONFIG_NS83820 is not set
    # CONFIG_HAMACHI is not set
    # CONFIG_YELLOWFIN is not set
    # CONFIG_R8169 is not set
    # CONFIG_SK98LIN is not set
    # CONFIG_TIGON3 is not set
    # Ethernet (10000 Mbit)
    # CONFIG_IXGB is not set
    # CONFIG_S2IO is not set
    # Token Ring devices
    # CONFIG_TR is not set
    # Wireless LAN (non-hamradio)
    # CONFIG_NET_RADIO is not set
    # Wan interfaces
    # CONFIG_WAN is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    # CONFIG_PPP is not set
    # CONFIG_SLIP is not set
    # CONFIG_NET_FC is not set
    # CONFIG_SHAPER is not set
    # CONFIG_NETCONSOLE is not set
    # ISDN subsystem
    # CONFIG_ISDN is not set
    # Telephony Support
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    CONFIG_INPUT_MOUSEDEV_PSAUX=y
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
    # CONFIG_INPUT_JOYDEV is not set
    # CONFIG_INPUT_TSDEV is not set
    # CONFIG_INPUT_EVDEV is not set
    # CONFIG_INPUT_EVBUG is not set
    # Input I/O drivers
    # CONFIG_GAMEPORT is not set
    CONFIG_SOUND_GAMEPORT=y
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    # CONFIG_SERIO_SERPORT is not set
    # CONFIG_SERIO_CT82C710 is not set
    # CONFIG_SERIO_PCIPS2 is not set
    # CONFIG_SERIO_RAW is not set
    # Input Device Drivers
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_LKKBD is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    CONFIG_INPUT_MOUSE=y
    CONFIG_MOUSE_PS2=y
    # CONFIG_MOUSE_SERIAL is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    # CONFIG_INPUT_MISC is not set
    # Character devices
    CONFIG_VT=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    # CONFIG_SERIAL_NONSTANDARD is not set
    # Serial drivers
    CONFIG_SERIAL_8250=y
    # CONFIG_SERIAL_8250_CONSOLE is not set
    # CONFIG_SERIAL_8250_ACPI is not set
    CONFIG_SERIAL_8250_NR_UARTS=4
    # CONFIG_SERIAL_8250_EXTENDED is not set
    # Non-8250 serial port support
    CONFIG_SERIAL_CORE=y
    CONFIG_UNIX98_PTYS=y
    # CONFIG_LEGACY_PTYS is not set
    # IPMI
    # CONFIG_IPMI_HANDLER is not set
    # Watchdog Cards
    # CONFIG_WATCHDOG is not set
    # CONFIG_HW_RANDOM is not set
    # CONFIG_NVRAM is not set
    # CONFIG_RTC is not set
    # CONFIG_GEN_RTC is not set
    # CONFIG_DTLK is not set
    # CONFIG_R3964 is not set
    # CONFIG_APPLICOM is not set
    # CONFIG_SONYPI is not set
    # Ftape, the floppy tape device driver
    # CONFIG_FTAPE is not set
    CONFIG_AGP=y
    # CONFIG_AGP_ALI is not set
    # CONFIG_AGP_ATI is not set
    # CONFIG_AGP_AMD is not set
    # CONFIG_AGP_AMD64 is not set
    # CONFIG_AGP_INTEL is not set
    # CONFIG_AGP_INTEL_MCH is not set
    CONFIG_AGP_NVIDIA=y
    # CONFIG_AGP_SIS is not set
    # CONFIG_AGP_SWORKS is not set
    # CONFIG_AGP_VIA is not set
    # CONFIG_AGP_EFFICEON is not set
    CONFIG_DRM=y
    # CONFIG_DRM_TDFX is not set
    # CONFIG_DRM_R128 is not set
    CONFIG_DRM_RADEON=y
    # CONFIG_DRM_I830 is not set
    # CONFIG_DRM_I915 is not set
    # CONFIG_DRM_MGA is not set
    # CONFIG_DRM_SIS is not set
    # CONFIG_MWAVE is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HPET is not set
    # CONFIG_HANGCHECK_TIMER is not set
    # I2C support
    CONFIG_I2C=y
    # CONFIG_I2C_CHARDEV is not set
    # I2C Algorithms
    CONFIG_I2C_ALGOBIT=y
    # CONFIG_I2C_ALGOPCF is not set
    # CONFIG_I2C_ALGOPCA is not set
    # I2C Hardware Bus support
    # CONFIG_I2C_ALI1535 is not set
    # CONFIG_I2C_ALI1563 is not set
    # CONFIG_I2C_ALI15X3 is not set
    # CONFIG_I2C_AMD756 is not set
    # CONFIG_I2C_AMD8111 is not set
    # CONFIG_I2C_I801 is not set
    # CONFIG_I2C_I810 is not set
    CONFIG_I2C_ISA=y
    CONFIG_I2C_NFORCE2=y
    # CONFIG_I2C_PARPORT_LIGHT is not set
    # CONFIG_I2C_PIIX4 is not set
    # CONFIG_I2C_PROSAVAGE is not set
    # CONFIG_I2C_SAVAGE4 is not set
    # CONFIG_SCx200_ACB is not set
    # CONFIG_I2C_SIS5595 is not set
    # CONFIG_I2C_SIS630 is not set
    # CONFIG_I2C_SIS96X is not set
    # CONFIG_I2C_STUB is not set
    # CONFIG_I2C_VIA is not set
    # CONFIG_I2C_VIAPRO is not set
    # CONFIG_I2C_VOODOO3 is not set
    # CONFIG_I2C_PCA_ISA is not set
    # Hardware Sensors Chip support
    # CONFIG_I2C_SENSOR is not set
    # CONFIG_SENSORS_ADM1021 is not set
    # CONFIG_SENSORS_ADM1025 is not set
    # CONFIG_SENSORS_ADM1026 is not set
    # CONFIG_SENSORS_ADM1031 is not set
    # CONFIG_SENSORS_ASB100 is not set
    # CONFIG_SENSORS_DS1621 is not set
    # CONFIG_SENSORS_FSCHER is not set
    # CONFIG_SENSORS_GL518SM is not set
    # CONFIG_SENSORS_IT87 is not set
    # CONFIG_SENSORS_LM63 is not set
    # CONFIG_SENSORS_LM75 is not set
    # CONFIG_SENSORS_LM77 is not set
    # CONFIG_SENSORS_LM78 is not set
    # CONFIG_SENSORS_LM80 is not set
    # CONFIG_SENSORS_LM83 is not set
    # CONFIG_SENSORS_LM85 is not set
    # CONFIG_SENSORS_LM87 is not set
    # CONFIG_SENSORS_LM90 is not set
    # CONFIG_SENSORS_MAX1619 is not set
    # CONFIG_SENSORS_PC87360 is not set
    # CONFIG_SENSORS_SMSC47M1 is not set
    # CONFIG_SENSORS_VIA686A is not set
    # CONFIG_SENSORS_W83781D is not set
    # CONFIG_SENSORS_W83L785TS is not set
    # CONFIG_SENSORS_W83627HF is not set
    # Other I2C Chip support
    # CONFIG_SENSORS_EEPROM is not set
    # CONFIG_SENSORS_PCF8574 is not set
    # CONFIG_SENSORS_PCF8591 is not set
    # CONFIG_SENSORS_RTC8564 is not set
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # CONFIG_I2C_DEBUG_CHIP is not set
    # Dallas's 1-wire bus
    # CONFIG_W1 is not set
    # Misc devices
    # CONFIG_IBM_ASM is not set
    # Multimedia devices
    CONFIG_VIDEO_DEV=m
    # Video For Linux
    # Video Adapters
    # CONFIG_VIDEO_BT848 is not set
    # CONFIG_VIDEO_CPIA is not set
    # CONFIG_VIDEO_SAA5246A is not set
    # CONFIG_VIDEO_SAA5249 is not set
    # CONFIG_TUNER_3036 is not set
    # CONFIG_VIDEO_STRADIS is not set
    # CONFIG_VIDEO_ZORAN is not set
    # CONFIG_VIDEO_SAA7134 is not set
    # CONFIG_VIDEO_MXB is not set
    # CONFIG_VIDEO_DPC is not set
    # CONFIG_VIDEO_HEXIUM_ORION is not set
    # CONFIG_VIDEO_HEXIUM_GEMINI is not set
    # CONFIG_VIDEO_CX88 is not set
    # CONFIG_VIDEO_OVCAMCHIP is not set
    # Radio Adapters
    # CONFIG_RADIO_GEMTEK_PCI is not set
    # CONFIG_RADIO_MAXIRADIO is not set
    # CONFIG_RADIO_MAESTRO is not set
    # Digital Video Broadcasting Devices
    # CONFIG_DVB is not set
    # Graphics support
    # CONFIG_FB is not set
    # CONFIG_VIDEO_SELECT is not set
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    CONFIG_DUMMY_CONSOLE=y
    # Sound
    CONFIG_SOUND=y
    # Advanced Linux Sound Architecture
    CONFIG_SND=y
    CONFIG_SND_TIMER=y
    CONFIG_SND_PCM=y
    CONFIG_SND_HWDEP=y
    CONFIG_SND_RAWMIDI=y
    CONFIG_SND_SEQUENCER=y
    # CONFIG_SND_SEQ_DUMMY is not set
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=y
    CONFIG_SND_PCM_OSS=y
    CONFIG_SND_SEQUENCER_OSS=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    # Generic devices
    # CONFIG_SND_DUMMY is not set
    # CONFIG_SND_VIRMIDI is not set
    # CONFIG_SND_MTPAV is not set
    # CONFIG_SND_SERIAL_U16550 is not set
    # CONFIG_SND_MPU401 is not set
    # PCI devices
    CONFIG_SND_AC97_CODEC=y
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_ATIIXP is not set
    # CONFIG_SND_ATIIXP_MODEM is not set
    # CONFIG_SND_AU8810 is not set
    # CONFIG_SND_AU8820 is not set
    # CONFIG_SND_AU8830 is not set
    # CONFIG_SND_AZT3328 is not set
    # CONFIG_SND_BT87X is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS4281 is not set
    CONFIG_SND_EMU10K1=y
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_MIXART is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_FM801 is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    CONFIG_SND_INTEL8X0=y
    # CONFIG_SND_INTEL8X0M is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VX222 is not set
    # USB devices
    # CONFIG_SND_USB_AUDIO is not set
    # CONFIG_SND_USB_USX2Y is not set
    # Open Sound System
    # CONFIG_SOUND_PRIME is not set
    # USB support
    CONFIG_USB=y
    # CONFIG_USB_DEBUG is not set
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    # CONFIG_USB_BANDWIDTH is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    # CONFIG_USB_SUSPEND is not set
    # CONFIG_USB_OTG is not set
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    # USB Host Controller Drivers
    CONFIG_USB_EHCI_HCD=y
    # CONFIG_USB_EHCI_SPLIT_ISO is not set
    # CONFIG_USB_EHCI_ROOT_HUB_TT is not set
    CONFIG_USB_OHCI_HCD=y
    # CONFIG_USB_UHCI_HCD is not set
    # CONFIG_USB_SL811_HCD is not set
    # USB Device Class drivers
    # CONFIG_USB_AUDIO is not set
    # CONFIG_USB_BLUETOOTH_TTY is not set
    # CONFIG_USB_MIDI is not set
    # CONFIG_USB_ACM is not set
    CONFIG_USB_PRINTER=y
    # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
    CONFIG_USB_STORAGE=y
    # CONFIG_USB_STORAGE_DEBUG is not set
    CONFIG_USB_STORAGE_RW_DETECT=y
    # CONFIG_USB_STORAGE_DATAFAB is not set
    # CONFIG_USB_STORAGE_FREECOM is not set
    # CONFIG_USB_STORAGE_ISD200 is not set
    # CONFIG_USB_STORAGE_DPCM is not set
    # CONFIG_USB_STORAGE_HP8200e is not set
    # CONFIG_USB_STORAGE_SDDR09 is not set
    # CONFIG_USB_STORAGE_SDDR55 is not set
    # CONFIG_USB_STORAGE_JUMPSHOT is not set
    # USB Input Devices
    CONFIG_USB_HID=y
    CONFIG_USB_HIDINPUT=y
    # CONFIG_HID_FF is not set
    CONFIG_USB_HIDDEV=y
    # CONFIG_USB_AIPTEK is not set
    # CONFIG_USB_WACOM is not set
    # CONFIG_USB_KBTAB is not set
    # CONFIG_USB_POWERMATE is not set
    # CONFIG_USB_MTOUCH is not set
    # CONFIG_USB_EGALAX is not set
    # CONFIG_USB_XPAD is not set
    # CONFIG_USB_ATI_REMOTE is not set
    # USB Imaging devices
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_MICROTEK is not set
    # CONFIG_USB_HPUSBSCSI is not set
    # USB Multimedia devices
    # CONFIG_USB_DABUSB is not set
    # CONFIG_USB_VICAM is not set
    # CONFIG_USB_DSBR is not set
    # CONFIG_USB_IBMCAM is not set
    # CONFIG_USB_KONICAWC is not set
    # CONFIG_USB_OV511 is not set
    # CONFIG_USB_SE401 is not set
    # CONFIG_USB_SN9C102 is not set
    # CONFIG_USB_STV680 is not set
    # USB Network Adapters
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 is not set
    # CONFIG_USB_USBNET is not set
    # USB port drivers
    # USB Serial Converter support
    # CONFIG_USB_SERIAL is not set
    # USB Miscellaneous drivers
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_TIGL is not set
    # CONFIG_USB_AUERSWALD is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_LED is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_PHIDGETKIT is not set
    # CONFIG_USB_PHIDGETSERVO is not set
    # CONFIG_USB_TEST is not set
    # USB ATM/DSL drivers
    # USB Gadget Support
    # CONFIG_USB_GADGET is not set
    # CONFIG_USB_GADGET_NET2280 is not set
    # CONFIG_USB_GADGET_PXA2XX is not set
    # CONFIG_USB_GADGET_GOKU is not set
    # CONFIG_USB_GADGET_SA1100 is not set
    # CONFIG_USB_GADGET_LH7A40X is not set
    # CONFIG_USB_GADGET_DUMMY_HCD is not set
    # CONFIG_USB_GADGET_OMAP is not set
    # CONFIG_USB_ZERO is not set
    # CONFIG_USB_ETH is not set
    # CONFIG_USB_GADGETFS is not set
    # CONFIG_USB_FILE_STORAGE is not set
    # CONFIG_USB_G_SERIAL is not set
    # MMC/SD Card support
    # CONFIG_MMC is not set
    # File systems
    CONFIG_EXT2_FS=y
    # CONFIG_EXT2_FS_XATTR is not set
    CONFIG_EXT3_FS=y
    CONFIG_EXT3_FS_XATTR=y
    # CONFIG_EXT3_FS_POSIX_ACL is not set
    # CONFIG_EXT3_FS_SECURITY is not set
    CONFIG_JBD=y
    # CONFIG_JBD_DEBUG is not set
    CONFIG_FS_MBCACHE=y
    CONFIG_REISERFS_FS=y
    # CONFIG_REISERFS_CHECK is not set
    # CONFIG_REISERFS_PROC_INFO is not set
    # CONFIG_REISERFS_FS_XATTR is not set
    # CONFIG_JFS_FS is not set
    # CONFIG_XFS_FS is not set
    # CONFIG_MINIX_FS is not set
    # CONFIG_ROMFS_FS is not set
    # CONFIG_QUOTA is not set
    CONFIG_DNOTIFY=y
    # CONFIG_AUTOFS_FS is not set
    CONFIG_AUTOFS4_FS=y
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=y
    CONFIG_JOLIET=y
    # CONFIG_ZISOFS is not set
    CONFIG_UDF_FS=y
    CONFIG_UDF_NLS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=y
    CONFIG_MSDOS_FS=y
    CONFIG_VFAT_FS=y
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    CONFIG_NTFS_FS=y
    # CONFIG_NTFS_DEBUG is not set
    # CONFIG_NTFS_RW is not set
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_SYSFS=y
    CONFIG_DEVFS_FS=y
    CONFIG_DEVFS_MOUNT=y
    # CONFIG_DEVFS_DEBUG is not set
    # CONFIG_DEVPTS_FS_XATTR is not set
    CONFIG_TMPFS=y
    # CONFIG_TMPFS_XATTR is not set
    # CONFIG_HUGETLBFS is not set
    # CONFIG_HUGETLB_PAGE is not set
    CONFIG_RAMFS=y
    # Miscellaneous filesystems
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    CONFIG_HFS_FS=y
    CONFIG_HFSPLUS_FS=y
    # CONFIG_BEFS_FS is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    # CONFIG_CRAMFS is not set
    # CONFIG_VXFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_SYSV_FS is not set
    # CONFIG_UFS_FS is not set
    # Network File Systems
    # CONFIG_NFS_FS is not set
    # CONFIG_NFSD is not set
    # CONFIG_EXPORTFS is not set
    CONFIG_SMB_FS=y
    # CONFIG_SMB_NLS_DEFAULT is not set
    # CONFIG_CIFS is not set
    # CONFIG_NCP_FS is not set
    # CONFIG_CODA_FS is not set
    # CONFIG_AFS_FS is not set
    # Partition Types
    # CONFIG_PARTITION_ADVANCED is not set
    CONFIG_MSDOS_PARTITION=y
    # Native Language Support
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=y
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    # CONFIG_NLS_CODEPAGE_850 is not set
    # CONFIG_NLS_CODEPAGE_852 is not set
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    # CONFIG_NLS_ASCII is not set
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    # CONFIG_NLS_ISO8859_15 is not set
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    # CONFIG_NLS_UTF8 is not set
    # Profiling support
    # CONFIG_PROFILING is not set
    # Kernel hacking
    # CONFIG_DEBUG_KERNEL is not set
    # CONFIG_FRAME_POINTER is not set
    CONFIG_EARLY_PRINTK=y
    CONFIG_4KSTACKS=y
    # Security options
    # CONFIG_KEYS is not set
    # CONFIG_SECURITY is not set
    # Cryptographic options
    CONFIG_CRYPTO=y
    CONFIG_CRYPTO_HMAC=y
    # CONFIG_CRYPTO_NULL is not set
    # CONFIG_CRYPTO_MD4 is not set
    # CONFIG_CRYPTO_MD5 is not set
    CONFIG_CRYPTO_SHA1=y
    # CONFIG_CRYPTO_SHA256 is not set
    # CONFIG_CRYPTO_SHA512 is not set
    # CONFIG_CRYPTO_WP512 is not set
    # CONFIG_CRYPTO_DES is not set
    # CONFIG_CRYPTO_BLOWFISH is not set
    # CONFIG_CRYPTO_TWOFISH is not set
    # CONFIG_CRYPTO_SERPENT is not set
    # CONFIG_CRYPTO_AES_586 is not set
    # CONFIG_CRYPTO_CAST5 is not set
    # CONFIG_CRYPTO_CAST6 is not set
    # CONFIG_CRYPTO_TEA is not set
    # CONFIG_CRYPTO_ARC4 is not set
    # CONFIG_CRYPTO_KHAZAD is not set
    # CONFIG_CRYPTO_ANUBIS is not set
    # CONFIG_CRYPTO_DEFLATE is not set
    # CONFIG_CRYPTO_MICHAEL_MIC is not set
    # CONFIG_CRYPTO_CRC32C is not set
    # CONFIG_CRYPTO_TEST is not set
    # Library routines
    CONFIG_CRC_CCITT=m
    CONFIG_CRC32=y
    CONFIG_LIBCRC32C=m
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_X86_BIOS_REBOOT=y
    CONFIG_PC=y
    Arch is running on an Athlon-XP 3000+, with an Audigy 2 Value sound card, ASUS NF7 mobo (nforce2), 2 IDE hdds, 1 SATA hdd, a floppy drive, 3com Boomerang ethernet PCI card, and an ATI Radeon 9800SE.
    I thought that I might have enabled both APM and APCI in the kernel by accident, but that's not the case :cry:
    I know, as I've mentioned earlier in the thread, that there's an issue with the emu10k1 drivers used by my audigy in this kernel, but I've compiled that as a module under ALSA, and I assume it wouldn't have an extreme effect like this even if it were statically compiled.
    Any ideas???

    Problem was resolved by self; I recompiled the kernel, again using ABS... I think I may have not incorporated an I/O Scheduler into the kernel, lol. Cheers anyway.

  • Kernel panic (solved) -- VIA chip M/Board

    I am using a custom kernel but once in awhile I tried getting the official kernel (2.6.18.x) to work with mkinitcpio but no success. I tried all hints posted in forum related to "kernel panic". The error was always same:
    EIP:[<c024b42d>] acpi_hw_level_read +0x7/0Na SS:ESP 0068:c14a1f58
    <0> Kernel panic - not syncing : Attempted to kill init!
    When having the same error with Kubuntu's live CD (2.6.17-10) I concluded the problem is in M/Board. Earlier in the forum (read below) was mentioned Linux doesn't support properly VIA based chipset. I changed to Intel 815E. Now the booting works fine with deafult mkinitcpio setting. Also sound is working, which didn't do with VIA chipset in Arch (but in Kubuntu).
    iphitus wrote:
    You made the terrible mistake of getting a Via based chipset. When buying my computer, Con Kolivas advised that I stay away from them like the plague as under linux, and in general, you get a lot of unusual problems like what you have mentioned.
    Ended up with an intel chipset which runs perrrrfectly.

    let's see :
    Via KT266A on Asus mobo with athlon XP 1800 approx a year
    VIA KT444 (i think) on AOpen Mobo with athlon xp 2600 - 5 months
    VIA KT800 on Asus S939 Mobo with Athlon 64 - 3 months
    All 3 systems are running archlinux (lastest version) without any problems
    Note : all 3 systems use the via82cxxx module

  • Asus PCE-68 Wireless-AC Extremely Slow

    Hi,
    I'm attempting to get my Asus PCE-AC68 PCI-E wireless card going under Arch. Currently running kernel 3.14.2 with the broadcom-wl-dkms package installed from AUR. The card uses the Broadcom BCM4360 chipset, which I understand is only supported by the wl driver. The card is detected, and I'm able to connect to my router, but the link speed stays around 27Mbps according to the network manager applet. Additionally, I'm seeing:
    ERROR @wl_inform_single_bss : cfg80211_inform_bss_frame error
    from dmesg. I saw another thread that had the same error, but with no resolution. I'm happy to post any additional information to troubleshoot the issue. The card works at full speed under Windows 8.1.
    EDIT: I suppose I should add that I have another wireless card in there as well. This is a 2009 8-core Mac Pro with the Apple Airport card that came with the computer, it's a BCM4321 card. Removing it seems to have no effect.
    Last edited by asutton (2014-05-08 05:00:37)

    Looks like I answered my own question.
    I came across this thread here for a macbook air (which has the same BCM4360 wireless chipset) which puts the issue to rest. The current broadcom driver isn't capable of full AC speeds, and is in fact limited to G only. So the maximum speed is 54Mbps. Very disappointed by this, but at least we now know why it's so slow.

  • Kernel panic after install Yosemite on iMac (mid 2010 27')

    Hi All,
    there is a kernel panic after new install Yosemite on iMac (mid 2010 27'). it happen many time per day.
    I try to upgrade from 10.9 also same issue. But 10.9 is totally no problem.
    I don't know what happen, Any idea of this?
    3.2 GHz Intel Core i3
    12 GB 1333 MHz DDR3
    ATI Radeon HD 5670 512 MB
    OSX 10.10.2
    ================================================================================ ==
    Anonymous UUID:       36EA8676-239A-25B3-27B5-0DD718082E30
    Mon Mar 23 02:08:14 2015
    *** Panic Report ***
    panic(cpu 3 caller 0xffffff800094887b): "thread_invoke: preemption_level 1, possible cause: blocking while holding a spinlock, or within interrupt context"@/SourceCache/xnu/xnu-2782.10.73/osfmk/kern/sched_prim.c:2213
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8011bc3530 : 0xffffff800092fe41
    0xffffff8011bc35b0 : 0xffffff800094887b
    0xffffff8011bc3640 : 0xffffff800094612f
    0xffffff8011bc3680 : 0xffffff8000a127e0
    0xffffff8011bc36f0 : 0xffffff8000ea8c4c
    0xffffff8011bc3720 : 0xffffff8000ea8caf
    0xffffff8011bc3740 : 0xffffff8000eae4e0
    0xffffff8011bc3760 : 0xffffff8000eae51d
    0xffffff8011bc3770 : 0xffffff7f8147fa75
    0xffffff8011bc37b0 : 0xffffff7f8152a3d0
    0xffffff8011bc37d0 : 0xffffff7f81578314
    0xffffff8011bc3820 : 0xffffff7f81501c70
    0xffffff8011bc3830 : 0xffffff7f814b524b
    0xffffff8011bc3b00 : 0xffffff7f814b51c7
    0xffffff8011bc3b30 : 0xffffff7f81559b72
    0xffffff8011bc3b60 : 0xffffff7f81559d51
    0xffffff8011bc3bd0 : 0xffffff7f81559901
    0xffffff8011bc3c10 : 0xffffff7f814d1309
    0xffffff8011bc3c60 : 0xffffff7f8140860d
    0xffffff8011bc3d40 : 0xffffff7f81be0830
    0xffffff8011bc3e00 : 0xffffff7f81be246b
    0xffffff8011bc3ea0 : 0xffffff7f81be24a8
    0xffffff8011bc3ec0 : 0xffffff7f81bdb779
    0xffffff8011bc3ef0 : 0xffffff8000ed563d
    0xffffff8011bc3f40 : 0xffffff8000ed34ad
    0xffffff8011bc3f80 : 0xffffff8000ed35a6
    0xffffff8011bc3fb0 : 0xffffff8000a14dd7
          Kernel Extensions in backtrace:
             com.apple.iokit.IOUSBFamily(710.4.14)[4030C18E-76A0-37E6-9612-2C901F789E41]@0xf fffff7f81405000->0xffffff7f81469fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f81124000
             com.apple.driver.AppleUSBEHCI(705.4.14)[B343ACE6-4ED9-365F-8F8D-9E2863B80C26]@0 xffffff7f81bd8000->0xffffff7f81bf0fff
                dependency: com.apple.iokit.IOUSBFamily(710.4.14)[4030C18E-76A0-37E6-9612-2C901F789E41]@0xf fffff7f81405000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f81124000
             com.realtek.driver.RtWlanU(1827.4)[24DDFA6C-C845-390E-870F-92330196C84E]@0xffff ff7f81476000->0xffffff7f81741fff
                dependency: com.apple.iokit.IONetworkingFamily(3.2)[247581D8-DFC5-3AAE-B079-3D13F5514C2B]@0 xffffff7f813d2000
                dependency: com.apple.iokit.IOUSBFamily(710.4.14)[4030C18E-76A0-37E6-9612-2C901F789E41]@0xf fffff7f81405000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    14C1514
    Kernel version:
    Darwin Kernel Version 14.1.0: Thu Feb 26 19:26:47 PST 2015; root:xnu-2782.10.73~1/RELEASE_X86_64
    Kernel UUID: 270413F7-3B44-3602-894F-AC0D392FCF8E
    Kernel slide:     0x0000000000600000
    Kernel text base: 0xffffff8000800000
    __HIB  text base: 0xffffff8000700000
    System model name: iMac11,3 (Mac-F2238BAE)
    System uptime in nanoseconds: 11924710499153
    last loaded kext at 5487071494168: com.apple.macos.driver.AppleUSBEthernetHost 7.0 (addr 0xffffff7f835d3000, size 28672)
    last unloaded kext at 7861940126415: com.apple.filesystems.exfat 1.4 (addr 0xffffff7f835e3000, size 57344)
    loaded kexts:
    com.realtek.driver.RtWlanU 1827.4
    com.apple.driver.MaxTranserSizeOverrideDriver 3.5.1
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AGPM 100.15.5
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 269.25
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.kext.AMDFramebuffer 1.3.0
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleLPC 1.7.3
    com.apple.AMDRadeonX3000 1.3.0
    com.apple.kext.AMD5000Controller 1.3.0
    com.apple.driver.AppleBacklight 170.5.0
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleUSBCardReader 3.5.1
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard 176.2
    com.apple.driver.IOBluetoothHIDDriver 4.3.2f6
    com.apple.driver.AppleHIDKeyboard 176.2
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOSurface 97.0.1
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOAcceleratorFamily2 156.6.1
    com.apple.kext.AMDSupport 1.3.0
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.3
    com.apple.iokit.IOUSBMassStorageClass 3.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1

    Hi Linc,
    thanks for helping.
    I guess this USB wireless adapter - ASUS AC56.
    beside this one , do you think have other problem?
    802.11n NIC:
      Product identification code : 0x17d2
      Vendor identification code : 0x0b05 (ASUSTek Computer Inc.)
      Version: 0.00
      Serial number : 123456
      Speed ​​: Up to 480 Mb per second
      Manufacturers : Realtek
      Location identification code : 0xfa140000 / 5
      Available current (mA): 500
      Required current (mA): 500
      BSD Name : en2
    802.11n NIC

  • KERNEL PANICS GALORE-MAC PRO EARLY 08

    I bought my Mac Pro 6 weeks ago. For five of those weeks my machine has suffered from multiple kernel panics a day. The first week I had the machine I was not connected to the internet, and did not upgrade leopard or any of the applications installed. And there were no kernel panics. I purchased an ASUS USB wireless adaptor and with a ralink driver I was finally online. I did all of the necessary upgrades to 10.5.2, FCP (5.1.4) and all CS3 updates. It was on this day that my life has been somewhat of a living ****. It's even hard for me to write this without turning it into a novelette.
    After numerous calls to Apple, a visit to an authorized service provider I have no answers, only choices, or rather poisons. I ran the Apple Hardware test where nothing turned up. I have completed 2 clean installs of Leopard. I have removed the ASUS USB wireless adaptor and ralink driver. The problem persists. If its not the USBWA, then Bridge crashes, or is the cause of a kernel panic.
    I have to say that since my last clean install, I haven't upgraded anything but FCP. I'm running 10.5.1 and CS3 as is. I am beyond myself with this issue. It is slowly destroying my professional reputation.
    Can anybody attest to these experiences or have any possible solutions.
    Thank you kindly.

    Have you swapped out Apple RAM for something else? that would be my first 'medicine' in your case.
    Second would be that you are on a dedicated circuit and behind a 1500VA UPS just to keep gremlins at bay. Or cosmic rays.
    2GB is barely enough for anything, let alone the type of work you do. 4-8GB (if you get it stable).
    Personally, I wish there was an option and not forced into Leopard until I want to, and it has had more than 6 months even.
    Trade it back for a refurbished Mac Pro, they do have 2008 models and I actually trust those more than new.
    Guess you only got to the forums when you could get online, but there have been lots of problem threads in the last two months. This is the 'weakest' Mac tower in 20 yrs. I would almost have expected this 2 yrs ago, but the initial Mac Pro was as error and problem free as you could ask for.

  • Mid 2010 Macbook Pro Keeps Restarting due to Kernel Panic. Ideas for how to fix?

    So my Mid 2010 Macbook Pro keeps randomly restarting, and giving me a screen that says something like "your computer restarted due to a problem."
    Looks like it as a kernel panic, but I have no idea what this is.  Seems to be no pattern for when it crashes.  Used to do it maybe once a month and now this is the 5th time in two days.
    Any idea what might be going on? Looked at past threads but nothing seemed to apply. 
    Here's the issue report:
    Interval Since Last Panic Report:  3966250 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    7A9C4557-3A15-F201-C5F0-248B698BCE76
    Sun Mar  3 14:26:35 2013
    panic(cpu 3 caller 0xffffff7f85c9bb25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811930d000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80edd0b260 : 0xffffff800541d626
    0xffffff80edd0b2d0 : 0xffffff7f85c9bb25
    0xffffff80edd0b360 : 0xffffff7f85d954b3
    0xffffff80edd0b3c0 : 0xffffff7f85d95527
    0xffffff80edd0b430 : 0xffffff7f860aa853
    0xffffff80edd0b570 : 0xffffff7f85dbb659
    0xffffff80edd0b5a0 : 0xffffff7f85ca58da
    0xffffff80edd0b650 : 0xffffff7f85ca0fac
    0xffffff80edd0b840 : 0xffffff7f85ca2ade
    0xffffff80edd0b920 : 0xffffff7f86dccad5
    0xffffff80edd0b960 : 0xffffff7f86de2507
    0xffffff80edd0b980 : 0xffffff7f86e01353
    0xffffff80edd0b9c0 : 0xffffff7f86e013b1
    0xffffff80edd0ba00 : 0xffffff7f86de7c43
    0xffffff80edd0ba50 : 0xffffff7f86da20fc
    0xffffff80edd0bae0 : 0xffffff7f86d9defa
    0xffffff80edd0bb10 : 0xffffff7f86d9baab
    0xffffff80edd0bb40 : 0xffffff80058650c3
    0xffffff80edd0bbc0 : 0xffffff8005867153
    0xffffff80edd0bc20 : 0xffffff8005864b8f
    0xffffff80edd0bd70 : 0xffffff80054981e1
    0xffffff80edd0be80 : 0xffffff8005420aed
    0xffffff80edd0beb0 : 0xffffff8005410448
    0xffffff80edd0bf00 : 0xffffff800541961b
    0xffffff80edd0bf70 : 0xffffff80054a5b16
    0xffffff80edd0bfb0 : 0xffffff80054ced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c34 000->0xffffff7f85f36fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5f44000->0xffffff7f86266fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86d83000 ->0xffffff7f86e45fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 13893412243014
    last loaded kext at 739492449806: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8793f000, size 229376)
    last unloaded kext at 341224120991: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f86496000, size 65536)
    loaded kexts:
    com.silex.driver.sxuptp          1.5.1
    com.jft.driver.PdaNetDrv          1.0.64
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x8634, 0x535550455254414C454E5430310000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet Adaptor (en2), Ethernet, en2
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    So my Mid 2010 Macbook Pro keeps randomly restarting, and giving me a screen that says something like "your computer restarted due to a problem."
    Looks like it as a kernel panic, but I have no idea what this is.  Seems to be no pattern for when it crashes.  Used to do it maybe once a month and now this is the 5th time in two days.
    Any idea what might be going on? Looked at past threads but nothing seemed to apply. 
    Here's the issue report:
    Interval Since Last Panic Report:  3966250 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    7A9C4557-3A15-F201-C5F0-248B698BCE76
    Sun Mar  3 14:26:35 2013
    panic(cpu 3 caller 0xffffff7f85c9bb25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff811930d000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80edd0b260 : 0xffffff800541d626
    0xffffff80edd0b2d0 : 0xffffff7f85c9bb25
    0xffffff80edd0b360 : 0xffffff7f85d954b3
    0xffffff80edd0b3c0 : 0xffffff7f85d95527
    0xffffff80edd0b430 : 0xffffff7f860aa853
    0xffffff80edd0b570 : 0xffffff7f85dbb659
    0xffffff80edd0b5a0 : 0xffffff7f85ca58da
    0xffffff80edd0b650 : 0xffffff7f85ca0fac
    0xffffff80edd0b840 : 0xffffff7f85ca2ade
    0xffffff80edd0b920 : 0xffffff7f86dccad5
    0xffffff80edd0b960 : 0xffffff7f86de2507
    0xffffff80edd0b980 : 0xffffff7f86e01353
    0xffffff80edd0b9c0 : 0xffffff7f86e013b1
    0xffffff80edd0ba00 : 0xffffff7f86de7c43
    0xffffff80edd0ba50 : 0xffffff7f86da20fc
    0xffffff80edd0bae0 : 0xffffff7f86d9defa
    0xffffff80edd0bb10 : 0xffffff7f86d9baab
    0xffffff80edd0bb40 : 0xffffff80058650c3
    0xffffff80edd0bbc0 : 0xffffff8005867153
    0xffffff80edd0bc20 : 0xffffff8005864b8f
    0xffffff80edd0bd70 : 0xffffff80054981e1
    0xffffff80edd0be80 : 0xffffff8005420aed
    0xffffff80edd0beb0 : 0xffffff8005410448
    0xffffff80edd0bf00 : 0xffffff800541961b
    0xffffff80edd0bf70 : 0xffffff80054a5b16
    0xffffff80edd0bfb0 : 0xffffff80054ced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c34 000->0xffffff7f85f36fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f8 5f44000->0xffffff7f86266fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f86d83000 ->0xffffff7f86e45fff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f85c 34000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f85c20000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f859bf000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f85bdd000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000005200000
    Kernel text base: 0xffffff8005400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 13893412243014
    last loaded kext at 739492449806: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8793f000, size 229376)
    last unloaded kext at 341224120991: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f86496000, size 65536)
    loaded kexts:
    com.silex.driver.sxuptp          1.5.1
    com.jft.driver.PdaNetDrv          1.0.64
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x8634, 0x535550455254414C454E5430310000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet Adaptor (en2), Ethernet, en2
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • Frequent Kernel Panics

    I have a 2010 macbook pro currently running 10.6.8 that has served me very well over the last 4 years, except in recent months it has been getting frequent kernel panics. Started every few weeks, now happens multiple times a day. It seems to happen more frequently when I'm doing something like playing a game which makes me think it might be related to the GPU or the computer overheating, but I can't find any specifics on how I'd go about troubleshooting from here. A typical report after a kernel panic is below:
    [quote]
    Interval Since Last Panic Report:  216257 sec
    Panics Since Last Report:          13
    Anonymous UUID:                    CBBFBBBF-9207-44AB-9451-D58D02A13673
    Sat Apr  5 13:34:55 2014
    panic(cpu 1 caller 0x9d4c9b): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xc0000000 0x8210e000 0x0a5480a2, D0, P0/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c812f88 : 0x21b837 (0x5dd7fc 0x5c812fbc 0x223ce1 0x0)
    0x5c812fd8 : 0x9d4c9b (0xbea28c 0xc5a800 0xbf8e60 0x0)
    0x5c813078 : 0xaef608 (0x9771004 0xa191004 0x100 0x227339)
    0x5c8130c8 : 0xae6601 (0xa191004 0x100 0x5c8130f8 0x9c4778)
    0x5c8130f8 : 0x174042b (0xa191004 0x100 0x438004ee 0x227606)
    0x5c8131c8 : 0x176c1b6 (0xa191004 0x91cf004 0x40002 0x0)
    0x5c813208 : 0xb5e641 (0xa191004 0x973b404 0x1c00 0xa32c004)
    0x5c813228 : 0x16448df (0xa191004 0x973b404 0x0 0x0)
    0x5c813298 : 0x163c8a8 (0xa191004 0xa334004 0x0 0x0)
    0x5c8132c8 : 0x163ccac (0xa191004 0xa334004 0x1 0xa334130)
    0x5c813308 : 0x16454a2 (0xa191004 0xa334004 0xa334104 0xa334130)
    0x5c813368 : 0x9ef86d (0xa191004 0xa334004 0xa334104 0xa334130)
    0x5c8133c8 : 0xb391a0 (0xa191004 0xa334004 0x1 0x0)
    0x5c8134a8 : 0xb3a292 (0x466c2004 0xb832 0x7b 0x8)
    0x5c813598 : 0xb3a5ee (0xa191004 0x466c2004 0x0 0x0)
    0x5c8135d8 : 0xb43a00 (0xa191004 0x466c2004 0x0 0x0)
    0x5c813618 : 0xb3ab1a (0xa191004 0x466c2004 0x0 0x0)
    0x5c813648 : 0x9c75b8 (0x5c813750 0xc39ce0 0x5c813664 0xa191004)
    0x5c813678 : 0xae3314 (0x5c813750 0xc39ce0 0x5c8136a8 0x99735c4)
    0x5c813698 : 0x9c6ed7 (0x5c813750 0x1008000 0x5c813764 0x5c8136bc)
    0x5c8136c8 : 0x9c710e (0x5c813750 0x1 0x5c8136e8 0x2)
    0x5c813718 : 0x9c74d0 (0x4 0x5c81377c 0x0 0x0)
    0x5c813798 : 0x9b3040 (0x5c813ae8 0x0 0x4 0x0)
    0x5c813838 : 0x9da749 (0x5c813a18 0x9 0x0 0x0)
    0x5c8139e8 : 0x9dc42a (0x0 0x600d600d 0x702a 0x5c813a18)
    0x5c813ab8 : 0xbdd4a6 (0xc1d00021 0x1008000 0x20802010 0x5c813ae8)
    0x5c813af8 : 0xbdd531 (0x466f0000 0x0 0x0 0x0)
    0x5c813b18 : 0xbdd9c8 (0x466f0000 0x5c813da0 0x5c813b78 0xbdd36c)
    0x5c813b98 : 0xbd1e53 (0x466f0000 0x5c813da0 0x0 0x235975)
    0x5c813cb8 : 0x971ae6 (0x466f0000 0x1 0x5c813d4a 0x84)
    0x5c813d18 : 0x9647c3 (0x9861800 0x1 0x5c813d4a 0x84)
    0x5c813d88 : 0x964873 (0x9861800 0x19 0x5c813da0 0x144)
    0x5c813db8 : 0x965ab7 (0x9861800 0x552f7000 0x5c813e18 0x11f2893)
    0x5c813e28 : 0x94c33c (0x9861800 0x20646773 0x3 0x226e2f)
    0x5c813e68 : 0x94c3f4 (0x9861800 0x45 0x5c813e98 0x950b2b)
    0x5c813e98 : 0x9561e2 (0x8971d00 0x45 0x2780bc0 0x5c813ed0)
    0x5c813ed8 : 0x553ec7 (0x9a72e00 0x97cd2c0 0x2 0x9d8a7a8)
    0x5c813f28 : 0x552ea6 (0x97cd2c0 0x831128 0x5c813f78 0x47a697)
    0x5c813f88 : 0x552eea (0x9a72e00 0x8a8f9c0 0x0 0xffffffff)
    0x5c813fc8 : 0x2a179c (0x9a72e00 0x0 0x10 0xa8bd204)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.4.0)@0x1609000->0x1a1dfff
                dependency: com.apple.NVDAResman(6.4.0)@0x96e000
             com.apple.NVDAResman(6.4.0)@0x96e000->0xc5bfff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x961000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x93f000
             com.apple.iokit.IONDRVSupport(2.2.1)@0x961000->0x96dfff
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x93f000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x928000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 456042943907
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI          4.2.0 (addr 0x142c000, size 0x65536) - last unloaded 189230304873
    loaded kexts:
    com.cisco.nke.ipsec          2.0.1
    com.quark.driver.TetherBerry          1.0.0d6
    com.parallels.kext.prl_vnic          7.0 14922.693916
    com.parallels.kext.prl_netbridge          7.0 14922.693916
    com.parallels.kext.prl_hypervisor          7.0 14922.693916
    com.parallels.kext.prl_hid_hook          7.0 14922.693916
    com.parallels.kext.prl_usb_connect          7.0 14922.693916
    com.apple.driver.AppleHWSensor          1.9.3d0 - last loaded 32952577712
    com.apple.driver.AGPM          100.12.31
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.filesystems.ntfs          3.4
    com.apple.driver.AppleMikeyDriver          2.0.5f14
    com.apple.driver.AppleIntelHDGraphics          6.4.0
    com.apple.driver.AppleIntelHDGraphicsFB          6.4.0
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.iokit.CHUDUtils          364
    com.apple.iokit.CHUDProf          366
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleLPC          1.5.1
    com.apple.kext.AppleSMCLMU          1.5.2d10
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.filesystems.autofs          2.1.0
    com.apple.GeForce          6.4.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleUSBTCButtons          201.6
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.driver.AppleUSBTCKeyboard          201.6
    com.apple.driver.AppleIRController          303.8
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.iokit.AppleBCM5701Ethernet          3.0.5b8
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleSmartBatteryManager          160.0.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41.4
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.4.0
    com.apple.NVDAResman          6.4.0
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMultitouch          207.7
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.driver.DiskImages          289.1
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Fitbit Base Station, 0x2687, 0xfb01, 0xfa140000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 9
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 3[/quote]

    Usually these are caused by a defective GPU which was common on your model. You may be able to use gfxCardStatus 2.3 to switch to using the other GPU instead which should stop the frequent panics until you get the motherboard replaced or buy a new computer.
    Of course don't dismiss the possibility that the software you have installed has installed extensions that are not compatible:
    com.cisco.nke.ipsec          2.0.1
    com.quark.driver.TetherBerry          1.0.0d6
    com.parallels.kext.prl_vnic          7.0 14922.693916
    com.parallels.kext.prl_netbridge          7.0 14922.693916
    com.parallels.kext.prl_hypervisor          7.0 14922.693916
    com.parallels.kext.prl_hid_hook          7.0 14922.693916
    com.parallels.kext.prl_usb_connect          7.0 14922.693916
    Try running in Safe Mode to see if the panics stop. If they do, then you need to completely uninstall the software responsible for the above extensions: Cisco, Quark, and Parallels.

  • MacPro Kernel Panic Frequently

    We have a Mac Pro at work that is used for professional video editing and this one workstation ahs been crashing quote often in recent weeks. The context behind this panic was that he was rendering a video in Final Cut Pro 7 and using safari.
    Here is the log for the kernel panic:
    Mon Jan 28 10:05:02 2013
    panic(cpu 12 caller 0xffffff80002d1208): Kernel trap at 0xffffff8000428a26, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff8014749000, CR3: 0x0000000152775000, CR4: 0x0000000000000660
    RAX: 0x000000000000f1ff, RBX: 0x0000000000000007, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff80b19f37c0, RBP: 0xffffff80b19f37d0, RSI: 0x00000000000000c3, RDI: 0xffffff8014749000
    R8:  0x0000000000000004, R9:  0x0000000000000000, R10: 0xffffff80005e7fc0, R11: 0x0000000000000000
    R12: 0xffffff809379a001, R13: 0xffffff8014748808, R14: 0xffffff80b19f39a8, R15: 0xffffff80008470e0
    RFL: 0x0000000000010213, RIP: 0xffffff8000428a26, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 12), Frame : Return Address
    0xffffff80b19f3460 : 0xffffff8000204d15
    0xffffff80b19f3560 : 0xffffff80002d1208
    0xffffff80b19f36b0 : 0xffffff80002e3f4a
    0xffffff80b19f36c0 : 0xffffff8000428a26
    0xffffff80b19f37d0 : 0xffffff7f80dfaa3f
    0xffffff80b19f3820 : 0xffffff7f80dfc0db
    0xffffff80b19f38f0 : 0xffffff7f80e0136b
    0xffffff80b19f3a50 : 0xffffff800023f136
    0xffffff80b19f3ab0 : 0xffffff8000238860
    0xffffff80b19f3b30 : 0xffffff8000239a3e
    0xffffff80b19f3ba0 : 0xffffff8000305a64
    0xffffff80b19f3c70 : 0xffffff8000305ed3
    0xffffff80b19f3f40 : 0xffffff80004e8168
    0xffffff80b19f3fa0 : 0xffffff80002e4874
          Kernel Extensions in backtrace (with dependencies):
             com.apple.filesystems.afpfs(9.7.1)@0xffffff7f80ddc000->0xffffff7f80e2cfff
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; rootnu-1504.15.3~1/RELEASE_X86_64
    System model name: MacPro5,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 169490171358052
    unloaded kexts:
    com.apple.driver.AppleIntel8254XEthernet        2.1.3b1 (addr 0xffffff7f811fd000, size 0x118784) - last unloaded 80012627722
    loaded kexts:
    com.sony.scsi.PDW-U1        2.32.0d008
    com.apple.filesystems.afpfs        9.7.1 - last loaded 983753780290
    com.apple.nke.asp_tcp        5.0
    com.apple.filesystems.autofs        2.1.0
    com.apple.driver.AppleTyMCEDriver        1.0.2d2
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.AppleHWSensor        1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver        1.2.0
    com.apple.driver.AppleUpstreamUserClient        3.5.7
    com.apple.driver.AppleMCCSControl        1.0.20
    com.apple.driver.AppleHDA        2.0.5f14
    com.apple.kext.ATIFramebuffer        6.3.6
    com.apple.driver.AppleMikeyDriver        2.0.5f14
    com.apple.driver.AudioAUUC        1.57
    com.apple.ATIRadeonX3000        6.3.6
    com.apple.Dont_Steal_Mac_OS_X        7.0.0
    com.apple.driver.AudioIPCDriver        1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin        4.7.0a1
    com.apple.driver.AppleLPC        1.5.1
    com.apple.iokit.SCSITaskUserClient        2.6.8
    com.apple.BootCache        31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib        1.0.0d1
    com.apple.driver.AppleLSIFusionMPT        2.5.0
    com.apple.driver.AppleFWOHCI        4.7.3
    com.apple.iokit.IOAHCIBlockStorage        1.6.4
    com.apple.driver.AirPortBrcm43224        428.42.4
    com.apple.driver.AppleUSBHub        4.2.4
    com.apple.driver.Intel82574L        2.1.8b1
    com.apple.driver.AppleAHCIPort        2.1.7
    com.apple.driver.AppleUSBEHCI        4.2.4
    com.apple.driver.AppleEFINVRAM        1.4.0
    com.apple.driver.AppleUSBUHCI        4.2.0
    com.apple.driver.AppleRTC        1.3.1
    com.apple.driver.AppleHPET        1.5
    com.apple.driver.AppleACPIButtons        1.3.6
    com.apple.driver.AppleSMBIOS        1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC        1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient        142.6.0
    com.apple.security.sandbox        1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall        2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.filesystems.acfsctl        412.6
    com.apple.filesystems.acfs        412.6
    com.apple.driver.AppleProfileReadCounterAction        17
    com.apple.driver.DspFuncLib        2.0.5f14
    com.apple.driver.AppleProfileTimestampAction        10
    com.apple.driver.AppleProfileThreadInfoAction        14
    com.apple.driver.AppleProfileRegisterStateAction        10
    com.apple.driver.AppleProfileKEventAction        10
    com.apple.driver.AppleProfileCallstackAction        20
    com.apple.iokit.IONDRVSupport        2.2.1
    com.apple.driver.AppleSMBusController        1.0.10d0
    com.apple.kext.ATI5000Controller        6.3.6
    com.apple.kext.ATISupport        6.3.6
    com.apple.iokit.IOFireWireIP        2.0.3
    com.apple.iokit.IOSurface        74.2
    com.apple.iokit.IOBluetoothSerialManager        2.4.5f3
    com.apple.iokit.IOSerialFamily        10.0.3
    com.apple.iokit.IOAudioFamily        1.8.3fc2
    com.apple.kext.OSvKernDSPLib        1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOGraphicsFamily        2.2.1
    com.apple.iokit.IOHDAFamily        2.0.5f14
    com.apple.iokit.AppleProfileFamily        41
    com.apple.driver.AppleSMC        3.1.0d5
    com.apple.driver.IOPlatformPluginFamily        4.7.0a1
    com.apple.driver.AppleSMBusPCI        1.0.10d0
    com.apple.iokit.IOUSBHIDDriver        4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController        2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController        2.4.5f3
    com.apple.iokit.IOBluetoothFamily        2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass        2.6.7
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily        1.6
    com.apple.iokit.IODVDStorageFamily        1.6
    com.apple.iokit.IOCDStorageFamily        1.6.1
    com.apple.driver.XsanFilter        402.1
    com.apple.iokit.IOSCSIParallelFamily        2.1.1
    com.apple.iokit.IOFireWireFamily        4.2.6
    com.apple.iokit.IOAHCISerialATAPI        1.2.6
    com.apple.iokit.IO80211Family        320.1
    com.apple.iokit.IONetworkingFamily        1.10
    com.apple.iokit.IOUSBUserClient        4.2.4
    com.apple.iokit.IOAHCIFamily        2.0.6
    com.apple.iokit.IOUSBFamily        4.2.4
    com.apple.driver.AppleEFIRuntime        1.4.0
    com.apple.iokit.IOHIDFamily        1.6.6
    com.apple.iokit.IOSMBusFamily        1.1
    com.apple.kext.AppleMatch        1.0.0d1
    com.apple.security.TMSafetyNet        6
    com.apple.iokit.IOSCSIBlockCommandsDevice        2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily        2.6.8
    com.apple.driver.DiskImages        289
    com.apple.iokit.IOStorageFamily        1.6.3
    com.apple.driver.AppleACPIPlatform        1.3.6
    com.apple.iokit.IOPCIFamily        2.6.5
    com.apple.iokit.IOACPIFamily        1.3.0
    This other message was a crash that the console reported for Safari. I don't know if it is relevant.
    Process:         Console [928]
    Path:            /Applications/Utilities/Console.app/Contents/MacOS/Console
    Identifier:      com.apple.Console
    Version:         10.6.3 (224)
    Build Info:      ConsoleX-2240000~9
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [850]
    Date/Time:       2013-01-26 09:04:20.418 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000013
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: outlineView:objectValueForTableColumn:byItem:
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                       0x00007fff82c7df0c objc_msgSend + 40
    1   com.apple.AppKit                      0x00007fff87278a7c -[NSTableView preparedCellAtColumn:row:] + 323
    2   com.apple.AppKit                      0x00007fff87291963 -[NSTableView _drawContentsAtRow:column:withCellFrame:] + 47
    3   com.apple.AppKit                      0x00007fff872918d9 -[NSOutlineView _drawContentsAtRow:column:withCellFrame:] + 95
    4   com.apple.AppKit                      0x00007fff872909fc -[NSTableView drawRow:clipRect:] + 1242
    5   com.apple.AppKit                      0x00007fff872902ef -[NSTableView drawRowIndexes:clipRect:] + 369
    6   com.apple.AppKit                      0x00007fff87290170 -[NSOutlineView drawRowIndexes:clipRect:] + 131
    7   com.apple.AppKit                      0x00007fff8728ec9c -[NSTableView drawRect:] + 1302
    8   com.apple.AppKit                      0x00007fff87284d75 -[NSView _drawRect:clip:] + 3566
    9   com.apple.AppKit                      0x00007fff8728254b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2112
    10  com.apple.AppKit                      0x00007fff87282ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    11  com.apple.AppKit                      0x00007fff87282ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    12  com.apple.AppKit                      0x00007fff87282ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    13  com.apple.AppKit                      0x00007fff87282ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    14  com.apple.AppKit                      0x00007fff87282ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    15  com.apple.AppKit                      0x00007fff87281b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    16  com.apple.AppKit                      0x00007fff8727e3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    17  com.apple.AppKit                      0x00007fff871f7c0e -[NSView displayIfNeeded] + 969
    18  com.apple.Foundation                  0x00007fff80ce6351 __NSFirePerformWithOrder + 384
    19  com.apple.CoreFoundation              0x00007fff887d8b07 __CFRunLoopDoObservers + 519
    20  com.apple.CoreFoundation              0x00007fff887b4434 __CFRunLoopRun + 468
    21  com.apple.CoreFoundation              0x00007fff887b3d8f CFRunLoopRunSpecific + 575
    22  com.apple.HIToolbox                   0x00007fff883d97ee RunCurrentEventLoopInMode + 333
    23  com.apple.HIToolbox                   0x00007fff883d9551 ReceiveNextEventCommon + 148
    24  com.apple.HIToolbox                   0x00007fff883d94ac BlockUntilNextEventMatchingListInMode + 59
    25  com.apple.AppKit                      0x00007fff871c7eb2 _DPSNextEvent + 708
    26  com.apple.AppKit                      0x00007fff871c7801 -[NSApplication nextEventMatchingMask:untilDate:inModeequeue:] + 155
    27  com.apple.AppKit                      0x00007fff8718d68f -[NSApplication run] + 395
    28  com.apple.AppKit                      0x00007fff871863b0 NSApplicationMain + 364
    29  com.apple.Console                     0x00000001000017a0 0x100000000 + 6048
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                     0x00007fff81d03c0a kevent + 10
    1   libSystem.B.dylib                     0x00007fff81d05add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                     0x00007fff81d057b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                     0x00007fff81d052de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                     0x00007fff81d04c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                     0x00007fff81d04aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                     0x00007fff81d04a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                     0x00007fff81d04e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                     0x00007fff81d04aa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000114507640  rbx: 0x0000000114314d50  rcx: 0x0000000114315ac0  rdx: 0x0000000114314d50
      rdi: 0x000000011451b090  rsi: 0x00007fff878dc528  rbp: 0x00007fff5fbfc140  rsp: 0x00007fff5fbfc0e8
       r8: 0x0000000114507640   r9: 0x0000000000000002  r10: 0x00007fff80cb0d62  r11: 0x0000000000000003
      r12: 0x0000000114314d50  r13: 0x0000000000000009  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff82c7df0c  rfl: 0x0000000000010206  cr2: 0x0000000000000013
    Binary Images:
           0x100000000 -        0x100028ff7  com.apple.Console 10.6.3 (224) <177CB315-6C11-99F9-7B34-9DF8C892C818> /Applications/Utilities/Console.app/Contents/MacOS/Console
           0x1003b3000 -        0x1003d9fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x116ea5000 -        0x117038fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x117069000 -        0x11745bfff  com.apple.ATIRadeonX3000GLDriver 1.6.36 (6.3.6) <282E53E2-ABB3-B97D-F298-6A8FE21F3A5A> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff80006000 -     0x7fff8000cff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff80a9e000 -     0x7fff80bdcfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff80caa000 -     0x7fff80f2cfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff80f2d000 -     0x7fff80facfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80fad000 -     0x7fff80fb1ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8114f000 -     0x7fff811affe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff811b2000 -     0x7fff811b8ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff811c5000 -     0x7fff811c8ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff811c9000 -     0x7fff814fdfef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff814fe000 -     0x7fff8157bfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff81918000 -     0x7fff8191dfff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8191e000 -     0x7fff8193efff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff81ab1000 -     0x7fff81ad2fe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff81ad3000 -     0x7fff81ae5fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff81ae6000 -     0x7fff81c00fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff81c01000 -     0x7fff81c63fe7  com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff81c64000 -     0x7fff81ce9ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff81cea000 -     0x7fff81eabfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff81eac000 -     0x7fff81f5cfff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff81f5d000 -     0x7fff81fc7fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff81fce000 -     0x7fff81fddfff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81fde000 -     0x7fff81fe2ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8221e000 -     0x7fff822d7fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff82448000 -     0x7fff824e8fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8280d000 -     0x7fff82a96ff7  com.apple.security 6.1.2 (55002) <772E1B13-8271-02F8-B1FE-023592A7AED7> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82b19000 -     0x7fff82b24fff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff82b25000 -     0x7fff82b6cff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82b6d000 -     0x7fff82bb0ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff82c79000 -     0x7fff82d2fff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff82d40000 -     0x7fff82d61fff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff82d62000 -     0x7fff82daaff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff82e05000 -     0x7fff82e30ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff82e31000 -     0x7fff82feffff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0B4ABA92-C1F0-4548-A157-0CFD65561DA5> /usr/lib/libicucore.A.dylib
        0x7fff82ff0000 -     0x7fff830c4fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff830c5000 -     0x7fff83103fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff834c6000 -     0x7fff834c6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff834c7000 -     0x7fff835a4fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff835a5000 -     0x7fff835f4ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff83d69000 -     0x7fff83d8eff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83d8f000 -     0x7fff83de4ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff83ec0000 -     0x7fff84307fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84308000 -     0x7fff8430eff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff84516000 -     0x7fff84551fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff845ae000 -     0x7fff845aeff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff845af000 -     0x7fff845f0fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff845f1000 -     0x7fff84607fef  libbsm.0.dylib ??

    The Sony software may be contributing to your problem. I suggest you back up all data, then uninstall it according to the developer's instructions. Reboot and see whether there's any improvement.
    Back up all data before making any changes.

  • Get kernel panic when I burn DVDs

    when I burn several DVDs using the internal DVD burner on my 1.25 Ghz G4 running OS X 10.4.11, I am getting a kernel panic that tells me to reboot my computer. I'm using Toast Titanium 8 to burn with. Any ideas how to prevent this?
    Here's the details:
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x000000002A2AD680 PC=0x0000000000847964
    Latest crash info for cpu 1:
    Exception state (sv=0x33164500)
    PC=0x00847964; MSR=0x00009030; DAR=0x2A2AD680; DSISR=0x40000000; LR=0x0083294C; R1=0x1CA33B00; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00072C8C 0x0083294C 0x002E9A80 0x002EB94C 0x0008C248 0x00029234
    0x000233F8 0x000ABEAC 0x341B47F8
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.ATIRadeon8500(4.1.8)@0x82b000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x491000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.2)@0x7f1000
    dependency: com.apple.iokit.IONDRVSupport(1.4.2)@0x815000
    Proceeding back via exception chain:
    Exception state (sv=0x33164500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x33335780)
    PC=0x9000B348; MSR=0x0200F030; DAR=0xE045C000; DSISR=0x42000000; LR=0x9000B29C; R1=0xF0343A60; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPC
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x000954F8 0x00095A10 0x00026898 0x000A8204 0x000ABB80
    Proceeding back via exception chain:
    Exception state (sv=0x33164500)
    PC=0x00847964; MSR=0x00009030; DAR=0x2A2AD680; DSISR=0x40000000; LR=0x0083294C; R1=0x1CA33B00; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00072C8C 0x0083294C 0x002E9A80 0x002EB94C 0x0008C248 0x00029234
    0x000233F8 0x000ABEAC 0x341B47F8
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.ATIRadeon8500(4.1.8)@0x82b000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x491000
    dependency: com.apple.iokit.IOGraphicsFamily(1.4.2)@0x7f1000
    dependency: com.apple.iokit.IONDRVSupport(1.4.2)@0x815000
    Exception state (sv=0x33335780)
    PC=0x9000B348; MSR=0x0200F030; DAR=0xE045C000; DSISR=0x42000000; LR=0x9000B29C; R1=0xF0343A60; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.11.0: Wed Oct 10 18:26:00 PDT 2007; root:xnu-792.24.17~1/RELEASE_PPCModel: PowerMac3,6, BootROM 4.5.7f1, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1.25 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 256 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2700U-25330
    Memory Module: DIMM2/J23, 512 MB, DDR SDRAM, PC2700U-30330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Internal Modem, PPP (PPPSerial), modem
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: pci9004,7850, sppciscsibus, SLOT-3
    Parallel ATA Device: ST3300831A, 279.46 GB
    Parallel ATA Device: WDC WD1600JB-00GVA0, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-111D
    Parallel ATA Device: ST3400632A, 372.61 GB
    Parallel ATA Device: ST3250823A, 232.89 GB
    SCSI Device: EPSON SCANNER GT-9500
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: ImageMate 14 in 1 Reader/Writer, SanDisk, Up to 12 Mb/sec, 500 mA
    USB Device: HP Color LaserJet 2600n, Hewlett-Packard, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: > LaCie d2 DVD-RW Firewire, LaCie Group SA, Up to 400 Mb/sec

    I would unplug the carload of stuff jacked into the Mac (other than keyboard and mouse) and see if that continues. You have so much stuff jacked in something's got to give.

  • Kernel Panic with 10.4.3, 10.4.4

    I have a Quicksilver dual 1GHz G4 with 1.25GB of ram. It was ridiculously stable until the 10.4.3 update. With the 10.4.4 update, things got even worse. I now have so many kernel panics as to make the machine unusable.
    I've run through the "Resolving Kernel Panics" page step-by-step... run DiskWarrior, run the machine with "plugs-out" (NO FireWire or USB devices plugged in), archive & installed, ran with each stick of ram individually, repaired permissions, zapped the PRAM, run "reset-nvram" and "reset-all" in Open Firmware.... nothing fixes it, nothing seems to be the culprit.
    Crash log below. Can anyone help PLEASE?
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000007C0805C0 PC=0x00000000000A4638
    Latest crash info for cpu 0:
    Exception state (sv=0x41C1BA00)
    PC=0x000A4638; MSR=0x00001030; DAR=0x7C0805C0; DSISR=0x40000000; LR=0x000A4584; R1=0x1CAD3D20; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x000AB754 0x0001AC98 0x000226C4 0x000227B8 0x000A9894
    Proceeding back via exception chain:
    Exception state (sv=0x41C1BA00)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x4183EA00)
    PC=0x9000B208; MSR=0x0000F030; DAR=0xA0001BF0; DSISR=0x0A000000; LR=0x9000B15C; R1=0xF0203760; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x41C1BA00)
    PC=0x000A4638; MSR=0x00001030; DAR=0x7C0805C0; DSISR=0x40000000; LR=0x000A4584; R1=0x1CAD3D20; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x000AB754 0x0001AC98 0x000226C4 0x000227B8 0x000A9894
    Exception state (sv=0x4183EA00)
    PC=0x9000B208; MSR=0x0000F030; DAR=0xA0001BF0; DSISR=0x0A000000; LR=0x9000B15C; R1=0xF0203760; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Model: PowerMac3,5, BootROM 4.3.3f2, 2 processors, PowerPC G4 (2.1), 1 GHz, 1.25 GB
    Graphics: NVIDIA GeForce4 MX, GeForce4 MX, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J22, 512 MB, SDRAM, PC133-333
    Memory Module: DIMM2/J23, 256 MB, SDRAM, PC133-333
    Modem: Spring, UCJ, V.90, 7.0F, APPLE VERSION 0007, 7/31/2000
    Network Service: Internal Modem, PPP (PPPSerial), modem
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: ST380021A, 74.53 GB
    Parallel ATA Device: WDC WD1600JB-00EVA0, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-104, 2.64 GB
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: hp LaserJet 1012, Hewlett-Packard, Up to 12 Mb/sec, 500 mA
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Communication, , Up to 12 Mb/sec, 500 mA
    USB Device: 2 Port USB KVM B V1.30, ATEN, Up to 12 Mb/sec, 500 mA
    FireWire Device: LaCie Hard Drive FireWire+, LaCie Group SA, Up to 400 Mb/sec
    FireWire Device: LaCie 1394 DVD-R/RW+CD drive LUN 0, LaCie Group SA, Up to 400 Mb/sec
    Quicksilver G4   Mac OS X (10.4.4)  

    Sorry, forgot to include that info. I ran the Apple Hardware Test and the TechTool Pro suite of hardware tests.... all passed. (And yes, I had pulled everything FireWire and USB except the Apple keyboard and mouse, which were plugged directly into the Mac.) In addition to the Open Firmware "reset-nvram" and "reset-all", I also hit the CUDA switch on the motherboard. The machine is still giving me kernel panics. The only thing I haven't done yet is pull the hard drives and clean-install onto a new drive. (I hope to do that tonight.)
    What's interesting is that the dim-out "You have to restart your computer" screen is gone, and has been replaced by white-on-black text generator text overwriting the GUI display, and after restart there's no "report to Apple" dialog, nor is there any log entry. Having Console and Activity Monitor show nothing out of the ordinary.
    For what it's worth, I'm "forcing" the KP by running iTunes with the visualizer running, figuring that's the closest thing to me sitting at it doing stuff and waiting for it to crash out. When it panics, the music goes into a loop of the last 1/2-second of music (i.e. "dit-dit-dit-dit-dit-dit...")
    Another item of note is that 10.4.0 (after clean install) and 10.4.2 do not have this problem. The panics only occur under 10.4.3 and 10.4.4.
    The text of the white-on-black text is retyped as follows. Notice that the DAR record is the only thing different between the two:
    ========
    System Failure: cpu0; code=0000000A (Lock timeout)
    Latest crash info for cpu0:
    Exception state (sv=0x00000000)
    PC=0x000AA000; MSR=0x00003030; DAR=0x260753Dc; DSISR=0x42000000; LR=0x00003020; R1=0xFC14F427; XCP=0x00000098 (System Failure)
    Backtrace:
    backtrace terminated - unaligned frame address: 0xFC14F427
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Memory address exception (1,0,0)
    ethernet MAC address: 00:03:93:90:90:c4
    ip address: 192.168.0.1
    Waiting for remote debugger connection.
    ========
    System Failure: cpu0; code=0000000A (Lock timeout)
    Latest crash info for cpu0:
    Exception state (sv=0x00000000)
    PC=0x000AA000; MSR=0x00003030; DAR=0x074BC000; DSISR=0x42000000; LR=0x00003020; R1=0xFC14F427; XCP=0x00000098 (System Failure)
    Backtrace:
    backtrace terminated - unaligned frame address: 0xFC14F427
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Memory address exception (1,0,0)
    ethernet MAC address: 00:03:93:90:90:c4
    ip address: 192.168.0.1
    Waiting for remote debugger connection.

  • Mac pro kernel panic

    Hi all -
    So my Mac Pro 1,1 has been having kernel panics intermittently and I don't think they are tied to any specific OS upgrade.  I used to get a couple a year until a few months ago and now I am getting them more frequently and I can't repro them.
    I've Googled incessantly the past several days looking for possible solutions and cannot come up with anything.  Does the kernel crash log mean anything to anybody?
    Interval Since Last Panic Report:  63015 sec
    Panics Since Last Report:          -3
    Anonymous UUID:                    D3A4BE11-45C4-402C-AC80-83DB68BA2C1A
    Fri Jan  4 14:34:12 2013
    panic(cpu 2 caller 0x244b0b): "zalloc: \"kalloc.8192\" (312 elements) retry fail 3, kfree_nop_count: 0"@/SourceCache/xnu/xnu-1699.32.7/osfmk/kern/zalloc.c:1766
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x8214bdc8 : 0x2203de (0x6b08cc 0x8214bde8 0x229fb0 0x0)
    0x8214bdf8 : 0x244b0b (0x6b2fd0 0x6b157a 0x138 0x3)
    0x8214be78 : 0x22629a (0xc1fa1fc 0x1 0x3da9ec 0x3f010001)
    0x8214bea8 : 0x2263e9 (0x1698 0x1 0x8214bed8 0x2115e7)
    0x8214beb8 : 0x2115e7 (0x1698 0x3 0x8214bf28 0x213758)
    0x8214bed8 : 0x222d01 (0x10f8 0x8214bf14 0x8214bf0c 0x2c3f24)
    0x8214bf08 : 0x214063 (0x1d8f4a00 0xe022c70 0x11f73770 0x1d8f4a00)
    0x8214bf48 : 0x21b25b (0x1d8f4a00 0x0 0x0 0x0)
    0x8214bf98 : 0x2b7bb7 (0xd63e914 0x7fff 0xd63e944 0x8)
    0x8214bfc8 : 0x2e60c7 (0xd63e910 0x1 0x10 0xe6b3c50)
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:26:45 PDT 2012; root:xnu-1699.32.7~1/RELEASE_I386
    Kernel UUID: 859B45FB-14BB-35ED-B823-08393C63E13B
    System model name: MacPro1,1 (Mac-F4208DC8)
    System uptime in nanoseconds: 29752157585519
    vm objects:17402024
    vm object hash entri:2035920
    VM map entries:1671992
    pv_list:7113120
    kalloc.32:128552960
    kalloc.64:250712064
    kalloc.128:976031744
    kalloc.256:2674688
    kalloc.512:1949696
    kalloc.1024:1802240
    kalloc.4096:3493888
    kalloc.8192:2555904
    vm pages:91064248
    ipc ports:1508304
    vnodes:19552280
    namecache:6748320
    HFS node:29531712
    HFS fork:11450096
    cluster_write:7126600
    decmpfs_cnode:1648320
    buf.4096:14426112
    buf.8192:105340928
    ubc_info zone:4063680
    vnode pager structur:2035920
    Kernel Stacks:2277376
    PageTables:36696064
    Kalloc.Large:11530026
    Backtrace suspected of leaking: (outstanding bytes: 111616)
    0x22629a
    0x2263e9
    0x60cc7d
    0x60d07e
    0x6712f2
    0x672ba9
    0x672c96
    0xc8579f
    0xc88b1d
    0xc46c21
    0xc4d20d
    0xc1f585
    0x23e4ae
          Kernel Extensions in backtrace:
             com.apple.iokit.IOSCSIArchitectureModelFamily(3.2.1)[A0624866-087A-4EED-8EC3-50 0E0C092AC3]@0xc16000->0xc41fff
             com.apple.iokit.IOSCSIBlockCommandsDevice(3.2.1)[760103C9-2F07-4F6B-8C2D-301539 A5140A]@0xc42000->0xc60fff
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.2.1)[A0624866-087A-4EED-8EC3-50 0E0C092AC3]@0xc16000
                dependency: com.apple.iokit.IOStorageFamily(1.7.2)[9164AEE7-BA92-45A2-BA9C-638B980193F1]@0x b4a000
             com.seagate.driver.PowSecDriverCore(5.1.1)[F9A6D78D-5242-4902-91E9-47343AEA5786 ]@0xc83000->0xcb5fff
                dependency: com.apple.iokit.IOFireWireFamily(4.4.8)[C9293DCE-B3DF-44ED-82AA-8E2A17F088D0]@0 xba9000
                dependency: com.apple.iokit.IOUSBFamily(5.1.0)[ACF52DAA-24ED-4520-A3A1-4B4C3C53C8A5]@0xa450 00
                dependency: com.apple.iokit.IOSCSIBlockCommandsDevice(3.2.1)[760103C9-2F07-4F6B-8C2D-301539 A5140A]@0xc42000
                dependency: com.apple.iokit.IOFireWireSerialBusProtocolTransport(2.1.0)[37AD690F-2426-493D- 99B6-DD7D41DF9097]@0xc7c000
                dependency: com.apple.iokit.IOFireWireSBP2(4.2.0)[9A363B1F-EB7E-479F-B1F5-48ABEA6CD7AC]@0xc 61000
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.2.1)[A0624866-087A-4EED-8EC3-50 0E0C092AC3]@0xc16000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8087C029-833E-4B62-A8C3-2B074B4C55F7]@0xa28000
                dependency: com.apple.iokit.IOStorageFamily(1.7.2)[9164AEE7-BA92-45A2-BA9C-638B980193F1]@0x b4a000
    last loaded kext at 26188535870: com.viscosityvpn.Viscosity.tun          1.0 (addr 0xa5334000, size 32768)
    last unloaded kext at 83049767625: com.apple.driver.AppleFileSystemDriver          13 (addr 0x1fee000, size 16384)
    loaded kexts:
    com.viscosityvpn.Viscosity.tun          1.0
    com.viscosityvpn.Viscosity.tap          1.0
    com.microsoft.driver.MicrosoftMouseUSB          7.1
    com.microsoft.driver.MicrosoftMouse          7.1
    com.makemkv.kext.daspi          1
    com.seagate.driver.PowSecLeafDriver_10_5          5.1.1
    com.microsoft.driver.MicrosoftKeyboardUSB          7.1
    com.microsoft.driver.MicrosoftKeyboard          7.1
    com.Logitech.Unifying.HID Driver          1.2.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecDriverCore          5.1.1
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleBluetoothMultitouch          70.12
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.kext.ATIFramebuffer          7.3.2
    com.apple.driver.AudioAUUC          1.59
    com.apple.ATIRadeonX3000          7.3.2
    com.apple.driver.AppleUSBDisplays          323.3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.AppleMCEDriver          1.1.9
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleLPC          1.6.0
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.AppleRAID          4.0.6
    com.apple.driver.XsanFilter          404
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleIntel8254XEthernet          2.1.3b1
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleUSBUHCI          5.1.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleMultitouchDriver          231.4
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.kext.ATI5000Controller          7.3.2
    com.apple.kext.ATISupport          7.3.2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleUSBAudio          2.9.0f5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.iokit.IOUSBMassStorageClass          3.0.3
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.1
    com.apple.iokit.IOATAPIProtocolTransport          3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.8
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 8 GB, SMC 1.7f10
    Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
    Memory Module: DIMM Riser A/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser A/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser A/DIMM 3, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser A/DIMM 4, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser B/DIMM 3, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Memory Module: DIMM Riser B/DIMM 4, 1 GB, DDR2 FB-DIMM, 667 MHz, 0x0194, 0x534735534338324E32473142444E44484348
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
    PCI Card: ATI Radeon HD 5770, ATY,HoolockParent, Slot-1
    Serial ATA Device: WDC WD1001FALS-00J7B1, 1 TB
    Serial ATA Device: WDC WD1001FALS-00J7B0, 1 TB
    Serial ATA Device: ST3500641AS  P, 500.11 GB
    Serial ATA Device: SanDisk SDSSDX120GG25, 120.03 GB
    Parallel ATA Device: HL-DT-STDVD-RAM GH22LP20
    USB Device: hub_device, apple_vendor_id, 0x9131, 0xfd400000 / 3
    USB Device: Microsoft® 2.4GHz Transceiver v7.0, 0x045e  (Microsoft Corporation), 0x0745, 0xfd430000 / 10
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0xfd410000 / 9
    USB Device: Apple Cinema HD Display, apple_vendor_id, 0x9223, 0xfd420000 / 8
    USB Device: hub_device, 0x0409  (NEC Corporation), 0x005a, 0xfd300000 / 2
    USB Device: hub_device, 0x0409  (NEC Corporation), 0x005a, 0xfd340000 / 7
    USB Device: FA GoFlex Desk, 0x0bc2  (Seagate LLC), 0x5071, 0xfd342000 / 13
    USB Device: FreeAgentDesktop, 0x0bc2  (Seagate LLC), 0x3000, 0xfd343000 / 12
    USB Device: Logitech Camera, 0x046d  (Logitech Inc.), 0x0990, 0xfd344000 / 11
    USB Device: Bluetooth USB Host Controller, 0x07d1  (D-Link System), 0xfc01, 0xfd320000 / 6
    USB Device: HP Scanjet scanner, 0x03f0  (Hewlett Packard), 0x4605, 0xfd330000 / 5
    USB Device: USB VoIP Device, 0x05e1  (Syntek Design Technology Inc.), 0x2010, 0xfd310000 / 4
    USB Device: Microsoft 3-Button Mouse with IntelliEye(TM), 0x045e  (Microsoft Corporation), 0x0040, 0x1d200000 / 3
    USB Device: Hub in Apple Extended USB Keyboard, apple_vendor_id, 0x1003, 0x1d100000 / 2
    USB Device: Apple Extended USB Keyboard, apple_vendor_id, 0x020b, 0x1d130000 / 4
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: unknown_device, unknown_speed

    The kernel panic log complains that there are likely to be memory leaks. That means you are running stuff that behaves badly, dynamically allocating memory to do its work and losing track of it and never returning it to the memory pool.
    Mac OS X kernel generally does not do this. But you are not running Mac OS X kernel, you have made a large number of modifications to it:
    com.viscosityvpn.Viscosity.tun          1.0
    com.viscosityvpn.Viscosity.tap          1.0
    com.microsoft.driver.MicrosoftMouseUSB          7.1
    com.microsoft.driver.MicrosoftMouse          7.1
    com.makemkv.kext.daspi          1
    com.seagate.driver.PowSecLeafDriver_10_5          5.1.1
    com.microsoft.driver.MicrosoftKeyboardUSB          7.1
    com.microsoft.driver.MicrosoftKeyboard          7.1
    com.Logitech.Unifying.HID Driver          1.2.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecDriverCore          5.1.1
    The backtrace points to Disk I/O routines as the place where the problem was detected. I would be very suspicious of your third-party drives that require non-standard drivers. I have external drives, but none requires a Driver, and I certainly do not see your crashes.
    If you want Apple to take your problem seriously, you will need to duplicate the failure with no non-Apple kernel extensions present.

  • DVD drive broken, Mac G5 having kernel panics at startup

    After nearly 5 years of steady, trouble free use, my G5 iMac started acting up a few days ago. I get what I think are kernel panics at startup. I am usually able to get it running after a few restarts but I am worried. My DVD drive became unreliable a month after my 1 year warranty expired. For some reason it won't start up with the install disks that came with the cpu but will bootup from my DiskWarrior DVD. I tried rebuilding the directory with DiskWarrior but I got the blue screen when it was almost finished. I've decided to do and Archive and install because I'm sure my problem stems from programs I installed recently. Is it possible to do the Archive and Install from my Intell Powerbook which is running the same version software. I've tried it several times, inserting the iMac install disk on my PB with my iMac connected in Target Disk mode, but I keep getting the message that the software can't be installed on this computer (the PB). Is there another way I can perform an A&I, I don't have enough space on my iDisk to use SuperDuper to create a disk image. I'm almost at the panic stage here since I use my computer for work and I'm afraid it won't start up at all at some point.
    I've performed all the usual steps, repair permissions and used Disk Utility on my Firewire connect PB to repair the disk. One odd thing is FontExplorerX all of a sudden quit on me two days ago (which has never happened in the 4 years I've used it) and told me to download it again, which I did.
    Message was edited by: e. jones

    Hi e. jones, and a warm welcome to the forums!
    Other way around, with the iMac's Install Disc in the PB, boot the PB into T mode, boot the iMac with the Option key held down, wait for the Install Disk in the PB to show up as a boot option on the iMac.
    But I think you have more serious problems. And, first you need to move some things off the iMac to make room for an A&I, you really need an external FW Drive right away.

Maybe you are looking for