* [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
@ 2008-05-18 12:57 Tobias Diedrich
2008-05-18 13:00 ` [PATCH 1/4] Restore multicast settings on resume Tobias Diedrich
` (6 more replies)
0 siblings, 7 replies; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-18 12:57 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
The following patch series fixes hibernate/wake-on-lan for my
System (Asus M2N-SLI Deluxe, Dual MCP55 Gigabit Ethernet).
See also http://bugzilla.kernel.org/show_bug.cgi?id=8381
"(net forcedeth) doesn't wol on suspend".
Note that so far this is only tested on my system with hibernate
using the 'shutdown' method.
The local setup combines the two onboard nforce gigabit interfaces
eth0 and eth1 into a bridge br0, so it doesn't matter which port I
plug the cable into. The bridging means eth0 and eth1 normally
operate in promiscous mode.
The initial situation (unpatched driver) was as follows:
After a normal boot, turning on wol and sending the system into
hibernate, waking it up with etherwake works as expected.
However, after waking up (be it via wol or via manual poweron)
from hibernate network connectivity is down.
This is because 1) the mac address is now swapped and 2) promiscous
mode is not restored.
The first patch addresses 2)
After this patch wake-on-lan stops working, since in 'shutdown' mode
the suspend callback of the device does not get called again before
poweroff and promiscous mode is apparently incompatible with wol.
So the second patch introduces a shutdown handler, which prepares
the device for wake-on-lan before the system is powered off.
Now waking the system up works again, but the 'swapped mac' problem
is still there.
The reason for this is that in my case the MCP55 is not flagged as
'DEV_HAS_CORRECT_MACADDR' and 'NVREG_TRANSMITPOLL_MAC_ADDR_REV' is
not set by the bios, so in nv_probe during the initial loading of
the driver the MAC address is read in reversed order and
NVREG_TRANSMITPOLL_MAC_ADDR_REV is set.
However during hibernate the device configuration space is lost
(reset do BIOS defaults) and so we get the reversed MAC again, but
resume unconditionally sets NVREG_TRANSMITPOLL_MAC_ADDR_REV, which
means we now have effectively swapped the MAC.
The third patch fixes this by saving and restoring the
configuration space between suspend and resume.
The fourth (optional) patch reorders the code in suspend/resume to
match the order in e100/e1000e more closely, since I think the
latter order is more correct.
For example the configuration space should be saved on suspend even
for devices that are not up.
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 1/4] Restore multicast settings on resume
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
@ 2008-05-18 13:00 ` Tobias Diedrich
2008-05-22 10:21 ` Jeff Garzik
2008-05-18 13:02 ` [PATCH 2/4] setup wake-on-lan before shutting down Tobias Diedrich
` (5 subsequent siblings)
6 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-18 13:00 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
nv_open() resets multicast settings, call nv_set_multicast(dev) to restore them.
(Maybe this should rather be moved into nv_open())
Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Index: linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c
===================================================================
--- linux-2.6.26-rc2.forcedwol.orig/drivers/net/forcedeth.c 2008-05-18 13:52:59.000000000 +0200
+++ linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c 2008-05-18 13:53:02.000000000 +0200
@@ -5823,6 +5823,7 @@
writel(txreg, base + NvRegTransmitPoll);
rc = nv_open(dev);
+ nv_set_multicast(dev);
out:
return rc;
}
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 2/4] setup wake-on-lan before shutting down
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
2008-05-18 13:00 ` [PATCH 1/4] Restore multicast settings on resume Tobias Diedrich
@ 2008-05-18 13:02 ` Tobias Diedrich
2008-05-31 2:20 ` Jeff Garzik
2008-05-18 13:03 ` [PATCH 3/4] save/restore device configuration space Tobias Diedrich
` (4 subsequent siblings)
6 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-18 13:02 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
When hibernating in 'shutdown' mode, after saving the image the suspend hook
is not called again.
However, if the device is in promiscous mode, wake-on-lan will not work.
This adds a shutdown hook to setup wake-on-lan before the final shutdown.
Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Index: linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c
===================================================================
--- linux-2.6.26-rc2.forcedwol.orig/drivers/net/forcedeth.c 2008-05-18 13:53:02.000000000 +0200
+++ linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c 2008-05-18 13:53:06.000000000 +0200
@@ -5827,8 +5827,23 @@
out:
return rc;
}
+
+static void nv_shutdown(struct pci_dev *pdev)
+{
+ struct net_device *dev = pci_get_drvdata(pdev);
+ struct fe_priv *np = netdev_priv(dev);
+
+ if (netif_running(dev))
+ nv_close(dev);
+
+ pci_enable_wake(pdev, PCI_D3hot, np->wolenabled);
+ pci_enable_wake(pdev, PCI_D3cold, np->wolenabled);
+ pci_disable_device(pdev);
+ pci_set_power_state(pdev, PCI_D3hot);
+}
#else
#define nv_suspend NULL
+#define nv_shutdown NULL
#define nv_resume NULL
#endif /* CONFIG_PM */
@@ -5999,6 +6014,7 @@
.remove = __devexit_p(nv_remove),
.suspend = nv_suspend,
.resume = nv_resume,
+ .shutdown = nv_shutdown,
};
static int __init init_nic(void)
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 3/4] save/restore device configuration space
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
2008-05-18 13:00 ` [PATCH 1/4] Restore multicast settings on resume Tobias Diedrich
2008-05-18 13:02 ` [PATCH 2/4] setup wake-on-lan before shutting down Tobias Diedrich
@ 2008-05-18 13:03 ` Tobias Diedrich
2008-05-18 13:04 ` [PATCH 4/4] reorder suspend/resume code Tobias Diedrich
` (3 subsequent siblings)
6 siblings, 0 replies; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-18 13:03 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
The memory mapped device configuration space is lost during hibernate.
Save and restore it (fixes 'swapped mac' problem).
Signed-off-by: TTobias Diedrich <ranma+kernel@tdiedrich.de>
Index: linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c
===================================================================
--- linux-2.6.26-rc2.forcedwol.orig/drivers/net/forcedeth.c 2008-05-18 13:53:06.000000000 +0200
+++ linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c 2008-05-18 13:53:10.000000000 +0200
@@ -426,6 +426,7 @@
#define NV_PCI_REGSZ_VER1 0x270
#define NV_PCI_REGSZ_VER2 0x2d4
#define NV_PCI_REGSZ_VER3 0x604
+#define NV_PCI_REGSZ_MAX 0x604
/* various timeout delays: all in usec */
#define NV_TXRX_RESET_DELAY 4
@@ -784,6 +785,9 @@
/* flow control */
u32 pause_flags;
+
+ /* power saved state */
+ u32 saved_config_space[NV_PCI_REGSZ_MAX/4];
};
/*
@@ -5785,6 +5789,8 @@
{
struct net_device *dev = pci_get_drvdata(pdev);
struct fe_priv *np = netdev_priv(dev);
+ u8 __iomem *base = get_hwbase(dev);
+ int i;
if (!netif_running(dev))
goto out;
@@ -5794,6 +5800,10 @@
// Gross.
nv_close(dev);
+ /* save non-pci configuration space */
+ for (i = 0;i <= np->register_size/sizeof(u32); i++)
+ np->saved_config_space[i] = readl(base + i*sizeof(u32));
+
pci_save_state(pdev);
pci_enable_wake(pdev, pci_choose_state(pdev, state), np->wolenabled);
pci_set_power_state(pdev, pci_choose_state(pdev, state));
@@ -5804,9 +5814,9 @@
static int nv_resume(struct pci_dev *pdev)
{
struct net_device *dev = pci_get_drvdata(pdev);
+ struct fe_priv *np = netdev_priv(dev);
u8 __iomem *base = get_hwbase(dev);
- int rc = 0;
- u32 txreg;
+ int i, rc = 0;
if (!netif_running(dev))
goto out;
@@ -5817,10 +5827,9 @@
pci_restore_state(pdev);
pci_enable_wake(pdev, PCI_D0, 0);
- /* restore mac address reverse flag */
- txreg = readl(base + NvRegTransmitPoll);
- txreg |= NVREG_TRANSMITPOLL_MAC_ADDR_REV;
- writel(txreg, base + NvRegTransmitPoll);
+ /* restore non-pci configuration space */
+ for (i = 0;i <= np->register_size/sizeof(u32); i++)
+ writel(np->saved_config_space[i], base+i*sizeof(u32));
rc = nv_open(dev);
nv_set_multicast(dev);
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 4/4] reorder suspend/resume code
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
` (2 preceding siblings ...)
2008-05-18 13:03 ` [PATCH 3/4] save/restore device configuration space Tobias Diedrich
@ 2008-05-18 13:04 ` Tobias Diedrich
2008-05-18 15:09 ` [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
` (2 subsequent siblings)
6 siblings, 0 replies; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-18 13:04 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Match the suspend/resume code ordering in e100/e1000e more closely.
For example the configuration space should be saved on suspend even for
devices that are not up.
Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Index: linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c
===================================================================
--- linux-2.6.26-rc2.forcedwol.orig/drivers/net/forcedeth.c 2008-05-18 13:53:10.000000000 +0200
+++ linux-2.6.26-rc2.forcedwol/drivers/net/forcedeth.c 2008-05-18 13:54:04.000000000 +0200
@@ -5792,22 +5792,20 @@
u8 __iomem *base = get_hwbase(dev);
int i;
- if (!netif_running(dev))
- goto out;
-
+ if (netif_running(dev)) {
+ // Gross.
+ nv_close(dev);
+ }
netif_device_detach(dev);
- // Gross.
- nv_close(dev);
-
/* save non-pci configuration space */
for (i = 0;i <= np->register_size/sizeof(u32); i++)
np->saved_config_space[i] = readl(base + i*sizeof(u32));
pci_save_state(pdev);
pci_enable_wake(pdev, pci_choose_state(pdev, state), np->wolenabled);
+ pci_disable_device(pdev);
pci_set_power_state(pdev, pci_choose_state(pdev, state));
-out:
return 0;
}
@@ -5818,22 +5816,20 @@
u8 __iomem *base = get_hwbase(dev);
int i, rc = 0;
- if (!netif_running(dev))
- goto out;
-
- netif_device_attach(dev);
-
pci_set_power_state(pdev, PCI_D0);
pci_restore_state(pdev);
+ /* ack any pending wake events, disable PME */
pci_enable_wake(pdev, PCI_D0, 0);
/* restore non-pci configuration space */
for (i = 0;i <= np->register_size/sizeof(u32); i++)
writel(np->saved_config_space[i], base+i*sizeof(u32));
- rc = nv_open(dev);
- nv_set_multicast(dev);
-out:
+ netif_device_attach(dev);
+ if (netif_running(dev)) {
+ rc = nv_open(dev);
+ nv_set_multicast(dev);
+ }
return rc;
}
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
` (3 preceding siblings ...)
2008-05-18 13:04 ` [PATCH 4/4] reorder suspend/resume code Tobias Diedrich
@ 2008-05-18 15:09 ` Tobias Diedrich
2008-05-20 22:39 ` Rafael J. Wysocki
2008-05-25 15:04 ` Tobias Diedrich
2008-05-31 22:54 ` [PATCH 5/4] " Tobias Diedrich
2008-05-31 23:20 ` [PATCH 6/4] " Tobias Diedrich
6 siblings, 2 replies; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-18 15:09 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
Tobias Diedrich wrote:
> Note that so far this is only tested on my system with hibernate
> using the 'shutdown' method.
Ok, I've run tests now:
First Windoze:
Windoze, Standby (equiv. to Linux 'mem' state): WOL borked, resumes fine
Windoze, Hibernate: WOL borked, resumes fine
Linux, unpatched:
Hibernate, shutdown method: Works with known caveats
Hibernate, platform method: WOL borked, resumes fine
Linux, patched:
Hibernate, shutdown method: Works
Hibernate, platform method: WOL borked, resumes fine
Suspend ('standby' state):
WOL borked, USB borked after resume, kernel freeze
Suspend ('mem' state, text console):
WOL borked, VGA stays dark, otherwise working
Suspend ('mem' state, radeonfb):
WOL borked, VGA stays dark, userspace dead after resume (but pingable)
Summary: I suspect my BIOS sucks
Version: ASUS M2N-SLI DELUXE ACPI BIOS Revision 0903
Release Date: 02/13/2007
1 point for Linux, 0 points for Windows, Linux wins ;)
Serial Console Log (of some of the tries, I should've written down what
I tried in which order...):
[ 0.000000] Linux version 2.6.26-rc2 (ranma@melchior) (gcc version 4.2.3 (Debian 4.2.3-5)) #6 PREEMPT Sun May 18 11:35:22 CEST 2008
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.097 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ a89c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316531] Calibrating delay using timer specific routine.. 4827.22 BogoMIPS (lpj=8041962)
[14315324.323021] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339620] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396296] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438522] ACPI: Interpreter enabled
[14315324.442555] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447312] ACPI: Using IOAPIC for interrupt routing
[14315324.464178] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469985] PCI: Transparent bridge - 0000:00:06.0
[14315324.538642] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559229] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585900] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605897] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612556] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.629975] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.635896] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.642554] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.649973] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.655893] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.662567] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.666639] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.672252] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.678915] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.684588] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.691665] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.698740] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.705579] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.711252] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.718327] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.725311] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.732159] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.738822] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.746573] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.753230] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.758824] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.763301] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.769899] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.776573] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.782148] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.786634] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.789968] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.793301] pnp: PnP ACPI init
[14315324.796634] ACPI: bus type pnp registered
[14315324.807299] pnp: PnP ACPI: found 13 devices
[14315324.811851] ACPI: ACPI bus type pnp unregistered
[14315324.816634] SCSI subsystem initialized
[14315324.819968] usbcore: registered new interface driver usbfs
[14315324.823301] usbcore: registered new interface driver hub
[14315324.826634] usbcore: registered new device driver usb
[14315324.829968] PCI: Using ACPI for IRQ routing
[14315324.833301] testing the IO APIC.......................
[14315324.836634]
[14315324.838690] .................................... done.
[14315324.853820] Bluetooth: Core ver 2.11
[14315324.857835] NET: Registered protocol family 31
[14315324.862643] Bluetooth: HCI device and connection manager initialized
[14315324.866634] Bluetooth: HCI socket layer initialized
[14315324.869968] DMAR:parse DMAR table failure.
[14315324.881201] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.888087] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.894973] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.901861] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.908748] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.915634] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.922528] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.929244] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.935960] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.942683] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.950612] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.957582] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.966528] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.973935] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.981341] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.989265] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315324.996721] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.004645] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.011620] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.019585] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.027351] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.035275] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.043227] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.051152] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.059105] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.067386] PCI: Bridge: 0000:00:06.0
[14315325.071420] IO window: 9000-9fff
[14315325.075191] MEM window: 0xfde00000-0xfdefffff
[14315325.080088] PREFETCH window: disabled.
[14315325.084381] PCI: Bridge: 0000:00:0a.0
[14315325.088412] IO window: 8000-8fff
[14315325.093066] MEM window: 0xfdd00000-0xfddfffff
[14315325.096844] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.103559] PCI: Bridge: 0000:00:0b.0
[14315325.107590] IO window: disabled.
[14315325.111362] MEM window: disabled.
[14315325.116291] PREFETCH window: disabled.
[14315325.120158] PCI: Bridge: 0000:00:0c.0
[14315325.124188] IO window: disabled.
[14315325.127953] MEM window: disabled.
[14315325.131813] PREFETCH window: disabled.
[14315325.136130] PCI: Bridge: 0000:00:0d.0
[14315325.140160] IO window: disabled.
[14315325.143926] MEM window: disabled.
[14315325.147785] PREFETCH window: disabled.
[14315325.152077] PCI: Bridge: 0000:00:0e.0
[14315325.156401] IO window: 6000-7fff
[14315325.160173] MEM window: 0xfdc00000-0xfdcfffff
[14315325.164217] PREFETCH window: disabled.
[14315325.169123] PCI: Bridge: 0000:00:0f.0
[14315325.173153] IO window: disabled.
[14315325.176925] MEM window: disabled.
[14315325.180784] PREFETCH window: disabled.
[14315325.185149] NET: Registered protocol family 2
[14315325.222333] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.230464] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.240004] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.253249] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.260225] TCP reno registered
[14315325.272072] NET: Registered protocol family 1
[14315325.277689] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.284628] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.291051] fuse init (API version 7.9)
[14315325.295893] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.303556] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.310875] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.319525] io scheduler noop registered
[14315325.323814] io scheduler anticipatory registered
[14315325.328797] io scheduler deadline registered
[14315325.333428] io scheduler cfq registered (default)
[14315325.350469] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.355893] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.361007] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.366441] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.371878] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.377304] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.382744] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.388178] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.393602] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.399045] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.404469] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.409914] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.415447] assign_interrupt_mode Found MSI capability
[14315325.420841] assign_interrupt_mode Found MSI capability
[14315325.426463] assign_interrupt_mode Found MSI capability
[14315325.432042] assign_interrupt_mode Found MSI capability
[14315325.437606] assign_interrupt_mode Found MSI capability
[14315325.443198] assign_interrupt_mode Found MSI capability
[14315325.448973] input: Power Button (FF) as /class/input/input0
[14315325.454909] ACPI: Power Button (FF) [PWRF]
[14315325.459439] input: Power Button (CM) as /class/input/input1
[14315325.465375] ACPI: Power Button (CM) [PWRB]
[14315325.469941] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.476048] ACPI: Fan [FAN] (on)
[14315325.479757] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.486750] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.493016] ACPI: Thermal Zone [THRM] (40 C)
[14315325.518404] Real Time Clock Driver v1.12ac
[14315325.522873] Linux agpgart interface v0.103
[14315325.525740] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
nÓªªrªªÂ¢êserial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.542515] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.549033] loop: module loaded
[14315325.552546] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.557528] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.564026] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.570477] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.576375] tun: Universal TUN/TAP device driver, 1.6
[14315325.582561] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.589189] Driver 'sd' needs updating - please use bus_type methods
[14315325.595927] Driver 'sr' needs updating - please use bus_type methods
[14315325.603157] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.609275] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.620343] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.628871] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.636649] scsi0 : ahci
[14315326.639647] scsi1 : ahci
[14315326.642643] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.652272] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.978247] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.301939] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.307153] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.313263] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.323287] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.328619] scsi2 : sata_nv
[14315327.331840] scsi3 : sata_nv
[14315327.335189] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.342592] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.820935] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.853335] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.856670] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.873116] ata3.00: configured for UDMA/133
[14315328.194648] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.222773] isa bounce pool size: 16 pages
[14315328.226733] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.234602] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.243110] sd 2:0:0:0: [sda] Write Protect is off
[14315328.247479] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.257002] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.264583] sd 2:0:0:0: [sda] Write Protect is off
[14315328.269792] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.279278] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.347106] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.364416] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.371483] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.377609] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.386830] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.392796] scsi4 : sata_nv
[14315328.396027] scsi5 : sata_nv
[14315328.399378] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.406784] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.732195] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.065570] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.093136] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.096678] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.107410] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.112738] scsi6 : sata_nv
[14315329.115965] scsi7 : sata_nv
[14315329.119315] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.126887] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.452312] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.938650] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.953311] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.972917] ata8.00: configured for UDMA/100
[14315329.989446] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315330.000002] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315330.007923] Uniform CD-ROM driver Revision: 3.20
[14315330.013067] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315330.019665] block2mtd: version $Revision: 1.30 $
[14315330.025917] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.032035] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.040156] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.045820] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.053686] ehci_hcd 0000:00:02.1: debug port 1
[14315330.059946] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.075046] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.089034] usb usb1: configuration #1 chosen from 1 choice
[14315330.093921] hub 1-0:1.0: USB hub found
[14315330.099960] hub 1-0:1.0: 10 ports detected
[14315330.205561] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.210004] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.220849] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.226500] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.234346] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.293335] usb usb2: configuration #1 chosen from 1 choice
[14315330.299300] hub 2-0:1.0: USB hub found
[14315330.303417] hub 2-0:1.0: 10 ports detected
[14315330.383215] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.413224] USB Universal Host Controller Interface driver v3.0
[14315330.559481] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.736213] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.740043] usbcore: registered new interface driver usblp
[14315330.746524] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.753060] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.763239] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.769119] mice: PS/2 mouse device common for all mice
[14315330.797922] i2c /dev entries driver
[14315330.801894] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.808149] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.813652] it87: Found IT8716F chip at 0x290, revision 0
[14315330.819856] it87: in3 is VCC (+5V)
[14315330.823621] it87: in7 is VCCH (+5V Stand-By)
[14315330.840001] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.872509] md: raid1 personality registered for level 1
[14315330.876736] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.885966] Bluetooth: HCI USB driver ver 2.9
[14315330.979513] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.126668] usb 2-1: configuration #1 chosen from 1 choice
[14315331.385512] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.543334] usb 2-3: configuration #1 chosen from 1 choice
[14315331.811891] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.943338] usb 2-4: device descriptor read/64, error -62
[14315332.176671] usb 2-4: device descriptor read/64, error -62
[14315332.405479] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.536671] usb 2-4: device descriptor read/64, error -62
[14315332.770004] usb 2-4: device descriptor read/64, error -62
[14315332.998827] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.410717] usb 2-4: device not accepting address 6, error -62
[14315333.536027] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.947967] usb 2-4: device not accepting address 7, error -62
[14315333.953337] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.959834] usbcore: registered new interface driver hci_usb
[14315333.966006] Bluetooth: HCI UART driver ver 2.2
[14315333.972080] Bluetooth: HCI H4 protocol initialized
[14315333.976897] Bluetooth: HCI BCSP protocol initialized
[14315333.982223] cpuidle: using governor ladder
[14315333.986685] cpuidle: using governor menu
[14315333.996667] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315334.027950] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.049254] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.079854] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.101369] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.134705] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.144902] usbcore: registered new interface driver usbhid
[14315334.150217] usbhid: v2.6:USB HID core driver
[14315334.156227] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.163095] ALSA device list:
[14315334.166432] No soundcards found.
[14315334.168258] GACT probability on
[14315334.171768] Mirror/redirect action on
[14315334.175978] u32 classifier
[14315334.179130] Performance counters on
[14315334.183331] input device check on
[14315334.189926] Actions configured
[14315334.194085] IPv4 over IPv4 tunneling driver
[14315334.198143] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.203840] TCP bic registered
[14315334.207260] TCP cubic registered
[14315334.210850] TCP westwood registered
[14315334.214700] TCP htcp registered
[14315334.218205] TCP vegas registered
[14315334.223102] TCP yeah registered
[14315334.226606] Initializing XFRM netlink socket
[14315334.230243] NET: Registered protocol family 10
[14315334.236668] IPv6 over IPv4 tunneling driver
[14315334.241014] NET: Registered protocol family 17
[14315334.245820] NET: Registered protocol family 15
[14315334.250671] Bridge firewalling registered
[14315334.255849] Bluetooth: L2CAP ver 2.9
[14315334.259792] Bluetooth: L2CAP socket layer initialized
[14315334.264219] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.269633] Bluetooth: SCO socket layer initialized
[14315334.274548] Bluetooth: RFCOMM socket layer initialized
[14315334.280056] Bluetooth: RFCOMM TTY layer initialized
[14315334.285296] Bluetooth: RFCOMM ver 1.8
[14315334.289319] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.294986] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.300350] RPC: Registered udp transport module.
[14315334.306544] RPC: Registered tcp transport module.
[14315334.311719] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.318859] All bugs added by David S. Miller <davem@redhat.com>
[14315334.325227] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.335608] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.341625] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.346742] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.352687] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.358624] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.366238] md: Autodetecting RAID arrays.
[14315334.373335] md: Scanned 0 and added 0 devices.
[14315334.374821] md: autorun ...
[14315334.378154] md: ... autorun DONE.
[14315334.395291] kjournald starting. Commit interval 5 seconds
[14315334.401138] EXT3-fs: mounted filesystem with ordered data mode.
[14315334.407419] VFS: Mounted root (ext3 filesystem) readonly.
[14315334.413188] Freeing unused kernel memory: 256k freed
[14315335.297045] Marking TSC unstable due to cpufreq changes
[14315335.730022] Clocksource tsc unstable (delta = -255125899 ns)
[14315336.612986] scsi8 : pata_amd
[14315336.621383] scsi9 : pata_amd
[14315336.625451] ata9: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.633239] ata10: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.820471] ata9.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.837064] ata9.01: configured for UDMA/66
[14315336.856047] scsi 8:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.866671] sr1: scsi3-mmc drive: 15x/40x cd/rw xa/form2 cdda tray
[14315336.872500] sr 8:0:1:0: Attached scsi generic sg2 type 5
[14315336.890009] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315336.898221] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
[14315336.904345] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 22
[14315337.430837] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.439773] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.464710] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1202kHz
[14315337.473390] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315337.482895] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315337.490942] ALSA sound/pci/emu10k1/emu10k1_main.c:1748: ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 21
[14315337.502374] ACPI: PCI Interrupt 0000:00:09.0[A] -> vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315337.516495] Link [AMC1] -> GSI 21 (level, low) -> IRQ 21
[14315337.520493] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: Sound card name=SB Live 5.1
[14315338.034296] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315338.043434] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315339.351194] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315339.517709] EXT3 FS on sda5, internal journal
[14315344.154685] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315387.143660] PM: Syncing filesystems ... done.
[14315387.153399] PM: Preparing system for standby sleep
[14315387.163835] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315387.172575] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315387.180551] PM: Entering standby sleep
[14315387.184081] Suspending console(s)
[14315387.676699] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[14315387.676896] sd 2:0:0:0: [sda] Stopping disk
[14315388.096641] ACPI handle has no context!
[14315388.096641] serial 00:08: disabled
[14315388.123388] ACPI: PCI interrupt for device 0000:06:00.0 disabled
[14315388.143701] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315388.143712] ACPI handle has no context!
[14315388.157025] ACPI: PCI interrupt for device 0000:00:09.0 disabled
[14315388.170300] ACPI: PCI interrupt for device 0000:00:08.0 disabled
[14315388.183374] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315388.196698] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315388.210032] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315388.236683] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315388.250018] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315388.263477] ACPI: Preparing to enter system sleep state S1
[14315388.370835] Extended CMOS year: 2000
[14315388.373901] Back to C!
[14315388.373901] svm_cpu_init: svm_data is NULL on 0
[14315388.373901] Extended CMOS year: 2000
[14315388.382428] ACPI: Unable to turn cooling device [ffff81007f842890] 'off'
[14315388.393342] ohci_hcd 0000:00:02.0: enabling device (0000 -> 0002)
[14315388.393346] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315388.393350] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315388.393354] PM: Writing back config space on device 0000:00:02.0 at offset f (was 1030100, writing 1030105)
[14315388.393360] PM: Writing back config space on device 0000:00:02.0 at offset 4 (was 0, writing fe02f000)
[14315388.393363] PM: Writing back config space on device 0000:00:02.0 at offset 1 (was b00006, writing b00007)
[14315388.433830] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315388.445221] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315388.488792] PM: Writing back config space on device 0000:00:04.0 at offset 8 (was 1, writing f001)
[14315388.496105] PM: Writing back config space on device 0000:00:04.0 at offset 1 (was b00000, writing b00005)
[14315388.508738] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315389.072605] PM: Writing back config space on device 0000:00:05.0 at offset f (was 1030100, writing 103010a)
[14315389.169283] PM: Writing back config space on device 0000:00:05.0 at offset 9 (was 0, writing fe02d000)
[14315389.229073] PM: Writing back config space on device 0000:00:05.0 at offset 8 (was 1, writing dc01)
[14315389.272562] PM: Writing back config space on device 0000:00:05.0 at offset 7 (was 1, writing b71)
[14315389.332482] PM: Writing back config space on device 0000:00:05.0 at offset 6 (was 1, writing 971)
[14315389.415869] PM: Writing back config space on device 0000:00:05.0 at offset 5 (was 1, writing bf1)
[14315389.458915] PM: Writing back config space on device 0000:00:05.0 at offset 4 (was 1, writing 9f1)
[14315389.542350] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00000, writing b00007)
[14315389.731960] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315389.825907] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315389.993101] PM: Writing back config space on device 0000:00:05.1 at offset f (was 1030200, writing 103020b)
[14315389.994983] PM: Writing back config space on device 0000:00:05.1 at offset 9 (was 0, writing fe02c000)
[14315389.995687] PM: Writing back config space on device 0000:00:05.1 at offset 8 (was 1, writing c801)
[14315389.996391] PM: Writing back config space on device 0000:00:05.1 at offset 7 (was 1, writing b61)
[14315389.996861] PM: Writing back config space on device 0000:00:05.1 at offset 6 (was 1, writing 961)
[14315390.015438] PM: Writing back config space on device 0000:00:05.1 at offset 5 (was 1, writing be1)
[14315390.016143] PM: Writing back config space on device 0000:00:05.1 at offset 4 (was 1, writing 9e1)
[14315390.016849] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00000, writing b00007)
[14315390.033312] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315390.065531] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315390.123213] PM: Writing back config space on device 0000:00:05.2 at offset f (was 1030300, writing 1030305)
[14315390.125094] PM: Writing back config space on device 0000:00:05.2 at offset 9 (was 0, writing fe02b000)
[14315390.125799] PM: Writing back config space on device 0000:00:05.2 at offset 8 (was 1, writing b401)
[14315390.126270] PM: Writing back config space on device 0000:00:05.2 at offset 7 (was 1, writing b801)
[14315390.126975] PM: Writing back config space on device 0000:00:05.2 at offset 6 (was 1, writing bc01)
[14315390.128857] PM: Writing back config space on device 0000:00:05.2 at offset 5 (was 1, writing c001)
[14315390.129328] PM: Writing back config space on device 0000:00:05.2 at offset 4 (was 1, writing c401)
[14315390.130267] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00000, writing b00007)
[14315390.132891] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315390.168889] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315390.179007] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315390.230502] PM: Writing back config space on device 0000:00:08.0 at offset f (was 14010100, writing 1401010a)
[14315390.232619] PM: Writing back config space on device 0000:00:08.0 at offset 7 (was 0, writing fe028000)
[14315390.233323] PM: Writing back config space on device 0000:00:08.0 at offset 6 (was 0, writing fe029000)
[14315390.233794] PM: Writing back config space on device 0000:00:08.0 at offset 5 (was 1, writing b001)
[14315390.235675] PM: Writing back config space on device 0000:00:08.0 at offset 4 (was 0, writing fe02a000)
[14315390.236380] PM: Writing back config space on device 0000:00:08.0 at offset 1 (was b00000, writing b00007)
[14315390.486627] ata10: port disabled. ignoring.
[14315390.620919] eth0: no link during initialization.
[14315390.760598] PM: Writing back config space on device 0000:00:09.0 at offset f (was 14010100, writing 1401010a)
[14315390.762481] PM: Writing back config space on device 0000:00:09.0 at offset 7 (was 0, writing fe025000)
[14315390.763186] PM: Writing back config space on device 0000:00:09.0 at offset 6 (was 0, writing fe026000)
[14315390.763890] PM: Writing back config space on device 0000:00:09.0 at offset 5 (was 1, writing ac01)
[14315390.764171] PM: Writing back config space on device 0000:00:09.0 at offset 4 (was 0, writing fe027000)
[14315390.768644] PM: Writing back config space on device 0000:00:09.0 at offset 1 (was b00000, writing b00007)
[14315390.816382] ata6: SATA link down (SStatus 0 SControl 300)
[14315391.312966] ata5: SATA link down (SStatus 0 SControl 300)
[14315391.553089] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315391.557323] ata7: SATA link down (SStatus 0 SControl 300)
[14315391.796714] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315391.810176] ata4: SATA link down (SStatus 0 SControl 300)
[14315392.073450] ata8.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315392.076983] ata3.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315392.078628] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315392.185913] ata3.00: configured for UDMA/133
[14315392.197463] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315392.203347] sd 2:0:0:0: [sda] Write Protect is off
[14315392.203816] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315392.210176] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315392.229761] ata8.00: configured for UDMA/100
[14315392.243198] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315392.253082] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[14315392.262254] PCI: Setting latency timer of device 0000:00:0c.0 to 64
[14315392.270015] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[14315392.278720] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315392.286777] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[14315394.402441] ata9.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315394.402912] ata9.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315394.409031] ata9: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315394.477307] ata9.01: configured for UDMA/66
[14315394.482485] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315396.513830] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 100003, writing 100007)
[14315396.520186] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315396.522775] PCI: Setting latency timer of device 0000:06:00.0 to 64
[14315397.861763] ata1: SATA link down (SStatus 0 SControl 300)
[14315397.882239] ata2: SATA link down (SStatus 0 SControl 300)
[14315398.642217] serial 00:08: activated
[14315398.662762] sd 2:0:0:0: [sda] Starting disk
[14315412.889342] PM: Finishing wakeup.
[14315412.949676] Restarting tasks ... <6>usb 2-4: new full speed USB device using ohci_hcd and address 8
[14315415.262472] done.
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.097 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ a89c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316530] Calibrating delay using timer specific routine.. 4827.22 BogoMIPS (lpj=8041952)
[14315324.323020] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339623] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396296] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438523] ACPI: Interpreter enabled
[14315324.442551] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447301] ACPI: Using IOAPIC for interrupt routing
[14315324.464039] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469925] PCI: Transparent bridge - 0000:00:06.0
[14315324.538605] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559236] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585890] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605881] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612557] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.629975] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.635895] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.642561] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.649973] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.655893] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.662560] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.666639] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.672243] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.678907] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.683304] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.688906] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.695570] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.702246] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.707916] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.714994] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.721977] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.728824] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.735482] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.743240] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.749904] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.755483] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.759968] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.766573] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.773239] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.778814] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.783301] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.786634] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.789968] pnp: PnP ACPI init
[14315324.793301] ACPI: bus type pnp registered
[14315324.803955] pnp: PnP ACPI: found 13 devices
[14315324.808500] ACPI: ACPI bus type pnp unregistered
[14315324.813301] SCSI subsystem initialized
[14315324.816635] usbcore: registered new interface driver usbfs
[14315324.819968] usbcore: registered new interface driver hub
[14315324.823301] usbcore: registered new device driver usb
[14315324.826635] PCI: Using ACPI for IRQ routing
[14315324.829968] testing the IO APIC.......................
[14315324.833301]
[14315324.835357] .................................... done.
[14315324.850590] Bluetooth: Core ver 2.11
[14315324.854615] NET: Registered protocol family 31
[14315324.859421] Bluetooth: HCI device and connection manager initialized
[14315324.863301] Bluetooth: HCI socket layer initialized
[14315324.866634] DMAR:parse DMAR table failure.
[14315324.877859] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.884742] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.891630] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.898517] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.905405] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.912292] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.919184] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.925894] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.932608] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.939330] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.947260] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.954229] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.963183] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.970591] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.977998] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.985923] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315324.993380] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.001308] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.008281] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.016242] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.024006] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.031931] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.039884] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.047809] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.055762] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.064042] PCI: Bridge: 0000:00:06.0
[14315325.068076] IO window: 9000-9fff
[14315325.071847] MEM window: 0xfde00000-0xfdefffff
[14315325.076744] PREFETCH window: disabled.
[14315325.081037] PCI: Bridge: 0000:00:0a.0
[14315325.085067] IO window: 8000-8fff
[14315325.089722] MEM window: 0xfdd00000-0xfddfffff
[14315325.093501] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.100216] PCI: Bridge: 0000:00:0b.0
[14315325.104246] IO window: disabled.
[14315325.108011] MEM window: disabled.
[14315325.112940] PREFETCH window: disabled.
[14315325.116806] PCI: Bridge: 0000:00:0c.0
[14315325.120836] IO window: disabled.
[14315325.124601] MEM window: disabled.
[14315325.128461] PREFETCH window: disabled.
[14315325.132779] PCI: Bridge: 0000:00:0d.0
[14315325.136809] IO window: disabled.
[14315325.140575] MEM window: disabled.
[14315325.144434] PREFETCH window: disabled.
[14315325.148726] PCI: Bridge: 0000:00:0e.0
[14315325.153050] IO window: 6000-7fff
[14315325.156822] MEM window: 0xfdc00000-0xfdcfffff
[14315325.160867] PREFETCH window: disabled.
[14315325.165772] PCI: Bridge: 0000:00:0f.0
[14315325.169805] IO window: disabled.
[14315325.173577] MEM window: disabled.
[14315325.177436] PREFETCH window: disabled.
[14315325.181801] NET: Registered protocol family 2
[14315325.219002] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.227132] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.236670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.249901] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.256879] TCP reno registered
[14315325.268720] NET: Registered protocol family 1
[14315325.274357] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.281294] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.287716] fuse init (API version 7.9)
[14315325.292566] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.300232] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.307551] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.316199] io scheduler noop registered
[14315325.320488] io scheduler anticipatory registered
[14315325.325471] io scheduler deadline registered
[14315325.330102] io scheduler cfq registered (default)
[14315325.347149] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.352574] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.357691] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.363123] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.368561] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.373986] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.379427] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.384861] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.390287] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.395729] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.401153] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.406597] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.412131] assign_interrupt_mode Found MSI capability
[14315325.417523] assign_interrupt_mode Found MSI capability
[14315325.423144] assign_interrupt_mode Found MSI capability
[14315325.428724] assign_interrupt_mode Found MSI capability
[14315325.434286] assign_interrupt_mode Found MSI capability
[14315325.439871] assign_interrupt_mode Found MSI capability
[14315325.445649] input: Power Button (FF) as /class/input/input0
[14315325.451583] ACPI: Power Button (FF) [PWRF]
[14315325.456113] input: Power Button (CM) as /class/input/input1
[14315325.462050] ACPI: Power Button (CM) [PWRB]
[14315325.466617] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.472729] ACPI: Fan [FAN] (on)
[14315325.476438] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.483431] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.489698] ACPI: Thermal Zone [THRM] (40 C)
[14315325.518384] Real Time Clock Driver v1.12ac
[14315325.522856] Linux agpgart interface v0.103
[14315325.525742] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.535844] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.542516] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.549032] loop: module loaded
[14315325.552547] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.557531] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.564028] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.570480] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.576376] tun: Universal TUN/TAP device driver, 1.6
[14315325.582553] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.589180] Driver 'sd' needs updating - please use bus_type methods
[14315325.595917] Driver 'sr' needs updating - please use bus_type methods
[14315325.603139] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.609256] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.620342] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.628874] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.636652] scsi0 : ahci
[14315326.639650] scsi1 : ahci
[14315326.642644] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.652273] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.978245] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.301941] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.307154] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.313264] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.323282] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.328612] scsi2 : sata_nv
[14315327.331834] scsi3 : sata_nv
[14315327.335183] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.342586] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.820930] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.853335] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.856670] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.873107] ata3.00: configured for UDMA/133
[14315328.194656] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.222777] isa bounce pool size: 16 pages
[14315328.226733] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.234602] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.243112] sd 2:0:0:0: [sda] Write Protect is off
[14315328.247482] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.257006] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.264587] sd 2:0:0:0: [sda] Write Protect is off
[14315328.269795] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.279273] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.314287] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.319333] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.326400] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.332524] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.342822] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.347699] scsi4 : sata_nv
[14315328.350929] scsi5 : sata_nv
[14315328.354278] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.362588] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.688522] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.035554] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.063136] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.066678] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.077416] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.082744] scsi6 : sata_nv
[14315329.085972] scsi7 : sata_nv
[14315329.089322] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.096894] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.422318] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.908652] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.923311] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.942912] ata8.00: configured for UDMA/100
[14315329.959304] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315329.970002] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315329.977924] Uniform CD-ROM driver Revision: 3.20
[14315329.983069] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315329.989543] block2mtd: version $Revision: 1.30 $
[14315329.995793] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.001911] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.010032] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.015697] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.023565] ehci_hcd 0000:00:02.1: debug port 1
[14315330.029826] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.045049] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.059027] usb usb1: configuration #1 chosen from 1 choice
[14315330.063911] hub 1-0:1.0: USB hub found
[14315330.069949] hub 1-0:1.0: 10 ports detected
[14315330.175550] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.180004] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.190855] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.196498] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.204344] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.263335] usb usb2: configuration #1 chosen from 1 choice
[14315330.269298] hub 2-0:1.0: USB hub found
[14315330.273415] hub 2-0:1.0: 10 ports detected
[14315330.353213] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.383222] USB Universal Host Controller Interface driver v3.0
[14315330.529487] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.706234] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.710043] usbcore: registered new interface driver usblp
[14315330.716531] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.723065] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.733249] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.739127] mice: PS/2 mouse device common for all mice
[14315330.767924] i2c /dev entries driver
[14315330.771901] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.778150] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.783652] it87: Found IT8716F chip at 0x290, revision 0
[14315330.789856] it87: in3 is VCC (+5V)
[14315330.793621] it87: in7 is VCCH (+5V Stand-By)
[14315330.810001] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.842092] md: raid1 personality registered for level 1
[14315330.846736] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.855965] Bluetooth: HCI USB driver ver 2.9
[14315330.949512] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.096668] usb 2-1: configuration #1 chosen from 1 choice
[14315331.355512] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.513334] usb 2-3: configuration #1 chosen from 1 choice
[14315331.781896] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.913338] usb 2-4: device descriptor read/64, error -62
[14315332.146671] usb 2-4: device descriptor read/64, error -62
[14315332.375534] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.506671] usb 2-4: device descriptor read/64, error -62
[14315332.740004] usb 2-4: device descriptor read/64, error -62
[14315332.968873] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.380723] usb 2-4: device not accepting address 6, error -62
[14315333.506026] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.917967] usb 2-4: device not accepting address 7, error -62
[14315333.923337] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.929832] usbcore: registered new interface driver hci_usb
[14315333.936004] Bluetooth: HCI UART driver ver 2.2
[14315333.942070] Bluetooth: HCI H4 protocol initialized
[14315333.946888] Bluetooth: HCI BCSP protocol initialized
[14315333.952219] cpuidle: using governor ladder
[14315333.956681] cpuidle: using governor menu
[14315333.966667] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315333.997948] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.019251] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.049853] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.071366] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.104703] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.114898] usbcore: registered new interface driver usbhid
[14315334.120214] usbhid: v2.6:USB HID core driver
[14315334.126225] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.133091] ALSA device list:
[14315334.136421] No soundcards found.
[14315334.138247] GACT probability on
[14315334.141757] Mirror/redirect action on
[14315334.145967] u32 classifier
[14315334.149119] Performance counters on
[14315334.153321] input device check on
[14315334.159916] Actions configured
[14315334.164074] IPv4 over IPv4 tunneling driver
[14315334.168134] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.173831] TCP bic registered
[14315334.177249] TCP cubic registered
[14315334.180839] TCP westwood registered
[14315334.184689] TCP htcp registered
[14315334.188194] TCP vegas registered
[14315334.193092] TCP yeah registered
[14315334.196595] Initializing XFRM netlink socket
[14315334.200233] NET: Registered protocol family 10
[14315334.206667] IPv6 over IPv4 tunneling driver
[14315334.211011] NET: Registered protocol family 17
[14315334.215820] NET: Registered protocol family 15
[14315334.220672] Bridge firewalling registered
[14315334.225831] Bluetooth: L2CAP ver 2.9
[14315334.229773] Bluetooth: L2CAP socket layer initialized
[14315334.234210] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.239623] Bluetooth: SCO socket layer initialized
[14315334.244544] Bluetooth: RFCOMM socket layer initialized
[14315334.250051] Bluetooth: RFCOMM TTY layer initialized
[14315334.255294] Bluetooth: RFCOMM ver 1.8
[14315334.259317] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.264984] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.270349] RPC: Registered udp transport module.
[14315334.276543] RPC: Registered tcp transport module.
[14315334.281716] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.288855] All bugs added by David S. Miller <davem@redhat.com>
[14315334.295221] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.305605] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.311620] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.316740] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.322685] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.328622] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.336246] md: Autodetecting RAID arrays.
[14315334.343335] md: Scanned 0 and added 0 devices.
[14315334.344817] md: autorun ...
[14315334.348151] md: ... autorun DONE.
[14315334.361059] EXT3-fs: INFO: recovery required on readonly filesystem.
[14315334.367772] EXT3-fs: write access will be enabled during recovery.
[14315334.390121] kjournald starting. Commit interval 5 seconds
[14315334.397608] EXT3-fs: recovery complete.
[14315334.402032] EXT3-fs: mounted filesystem with ordered data mode.
[14315334.408489] VFS: Mounted root (ext3 filesystem) readonly.
[14315334.414999] Freeing unused kernel memory: 256k freed
[14315335.296887] Marking TSC unstable due to cpufreq changes
[14315335.730020] Clocksource tsc unstable (delta = -255346287 ns)
[14315336.661510] scsi8 : pata_amd
[14315336.668506] scsi9 : pata_amd
[14315336.672504] ata9: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.679925] ata10: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.876026] ata9.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.898328] ata9.01: configured for UDMA/66
[14315336.921223] scsi 8:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.933337] sr1: scsi3-mmc drive: 15x/40x cd/rw xa/form2 cdda tray
[14315336.941180] sr 8:0:1:0: Attached scsi generic sg2 type 5
[14315336.950008] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315336.958236] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
[14315336.964350] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 22
[14315337.490995] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.499807] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.526670] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1200kHz
[14315337.533882] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315337.540240] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315337.549970] ALSA sound/pci/emu10k1/emu10k1_main.c:1748: ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 21
[14315337.560230] ACPI: PCI Interrupt 0000:00:09.0[A] -> vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315337.572822] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: Link [AMC1] -> GSI 21 (level, low) -> IRQ 21
[14315337.583298] Sound card name=SB Live 5.1
[14315338.097625] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315338.106769] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315338.675219] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315338.841782] EXT3 FS on sda5, internal journal
[14315343.994089] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315397.707169] PM: Syncing filesystems ... done.
[14315397.717263] PM: Preparing system for mem sleep
[14315397.728472] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315397.736666] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315397.745029] PM: Entering mem sleep
[14315397.747942] Suspending console(s)
[14315398.240223] sd 2:0:0:0: [sda] Stopping disk
[14315398.659996] ACPI handle has no context!
[14315398.659996] serial 00:08: disabled
[14315398.686720] ACPI: PCI interrupt for device 0000:06:00.0 disabled
[14315398.707319] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315398.707330] ACPI handle has no context!
[14315398.720356] ACPI: PCI interrupt for device 0000:00:09.0 disabled
[14315398.733637] ACPI: PCI interrupt for device 0000:00:08.0 disabled
[14315398.746706] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315398.760029] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315398.773363] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315398.800015] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315398.813351] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315398.826809] ACPI: Preparing to enter system sleep state S3
[14315398.934192] Extended CMOS year: 2000
[14315398.934192] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315398.934490] Back to C!
[14315398.934504] svm_cpu_init: svm_data is NULL on 0
[14315398.934720] Extended CMOS year: 2000
[14315398.938908] ACPI: Unable to turn cooling device [ffff81007f842890] 'off'
[14315398.938926] PM: Writing back config space on device 0000:00:00.0 at offset f (was 0, writing ff)
[14315398.951199] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315398.951204] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315398.987802] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315398.987806] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315399.001124] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315399.001699] ata10: port disabled. ignoring.
[14315399.014434] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00000, writing b00007)
[14315399.014443] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315399.014446] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315399.027745] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00000, writing b00007)
[14315399.027753] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315399.027757] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315399.041057] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00000, writing b00007)
[14315399.041065] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315399.041068] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315399.041322] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315399.054366] PM: Writing back config space on device 0000:00:08.0 at offset f (was 14010100, writing 1401010a)
[14315399.054371] PM: Writing back config space on device 0000:00:08.0 at offset 7 (was 0, writing fe028000)
[14315399.054374] PM: Writing back config space on device 0000:00:08.0 at offset 6 (was 0, writing fe029000)
[14315399.054377] PM: Writing back config space on device 0000:00:08.0 at offset 5 (was 1, writing b001)
[14315399.054380] PM: Writing back config space on device 0000:00:08.0 at offset 4 (was 0, writing fe02a000)
[14315399.054383] PM: Writing back config space on device 0000:00:08.0 at offset 1 (was b00000, writing b00007)
[14315399.054963] eth0: no link during initialization.
[14315399.067678] PM: Writing back config space on device 0000:00:09.0 at offset f (was 14010100, writing 1401010a)
[14315399.067683] PM: Writing back config space on device 0000:00:09.0 at offset 7 (was 0, writing fe025000)
[14315399.067686] PM: Writing back config space on device 0000:00:09.0 at offset 6 (was 0, writing fe026000)
[14315399.067689] PM: Writing back config space on device 0000:00:09.0 at offset 5 (was 1, writing ac01)
[14315399.067692] PM: Writing back config space on device 0000:00:09.0 at offset 4 (was 0, writing fe027000)
[14315399.067695] PM: Writing back config space on device 0000:00:09.0 at offset 1 (was b00000, writing b00007)
[14315399.068585] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315399.068597] PM: Writing back config space on device 0000:00:0b.0 at offset 1 (was 100000, writing 100004)
[14315399.068603] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[14315399.068613] PM: Writing back config space on device 0000:00:0c.0 at offset 1 (was 100000, writing 100004)
[14315399.068619] PCI: Setting latency timer of device 0000:00:0c.0 to 64
[14315399.068630] PM: Writing back config space on device 0000:00:0d.0 at offset 1 (was 100000, writing 100004)
[14315399.068636] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[14315399.068650] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315399.068661] PM: Writing back config space on device 0000:00:0f.0 at offset 1 (was 100000, writing 100004)
[14315399.068667] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[14315399.080996] PM: Writing back config space on device 0000:01:08.0 at offset 1 (was 2900005, writing 2900001)
[14315399.081006] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315399.088903] PM: Writing back config space on device 0000:01:08.1 at offset 4 (was 1, writing 9801)
[14315399.088907] PM: Writing back config space on device 0000:01:08.1 at offset 3 (was 800000, writing 802000)
[14315399.088911] PM: Writing back config space on device 0000:01:08.1 at offset 1 (was 2900000, writing 2900005)
[14315399.088944] PM: Writing back config space on device 0000:02:00.0 at offset f (was 1ff, writing 10b)
[14315399.088948] PM: Writing back config space on device 0000:02:00.0 at offset c (was 0, writing fddc0000)
[14315399.088955] PM: Writing back config space on device 0000:02:00.0 at offset 6 (was 0, writing fddf0000)
[14315399.088958] PM: Writing back config space on device 0000:02:00.0 at offset 5 (was 1, writing 8c01)
[14315399.088962] PM: Writing back config space on device 0000:02:00.0 at offset 4 (was 8, writing e8000008)
[14315399.088965] PM: Writing back config space on device 0000:02:00.0 at offset 3 (was 800000, writing 800008)
[14315399.088970] PM: Writing back config space on device 0000:02:00.0 at offset 1 (was 100000, writing 100007)
[14315399.088991] PM: Writing back config space on device 0000:02:00.1 at offset 4 (was 0, writing fdde0000)
[14315399.088994] PM: Writing back config space on device 0000:02:00.1 at offset 3 (was 0, writing 8)
[14315399.100964] PM: Writing back config space on device 0000:06:00.0 at offset f (was 100, writing 10b)
[14315399.100971] PM: Writing back config space on device 0000:06:00.0 at offset c (was 0, writing fdce0000)
[14315399.100977] PM: Writing back config space on device 0000:06:00.0 at offset 9 (was 0, writing fdcfe000)
[14315399.100987] PM: Writing back config space on device 0000:06:00.0 at offset 3 (was 800000, writing 800008)
[14315399.100992] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 100000, writing 100007)
[14315399.101009] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315399.101014] PCI: Setting latency timer of device 0000:06:00.0 to 64
[14315399.171859] ata9.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315399.171861] ata9.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315399.171882] ata9: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315399.185109] ata9.01: configured for UDMA/66
[14315399.334690] ata4: SATA link down (SStatus 0 SControl 300)
[14315399.339188] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315399.362345] ata5: SATA link down (SStatus 0 SControl 300)
[14315399.366829] ata7: SATA link down (SStatus 0 SControl 300)
[14315399.371315] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315399.371352] ata6: SATA link down (SStatus 0 SControl 300)
[14315399.405514] ata8.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315399.435465] ata8.00: configured for UDMA/100
[14315400.103387] PM: Writing back config space on device 0000:06:00.1 at offset 8 (was 1, writing 6c01)
[14315400.103391] PM: Writing back config space on device 0000:06:00.1 at offset 7 (was 1, writing 7001)
[14315400.103394] PM: Writing back config space on device 0000:06:00.1 at offset 6 (was 1, writing 7401)
[14315400.103397] PM: Writing back config space on device 0000:06:00.1 at offset 5 (was 1, writing 7801)
[14315400.103401] PM: Writing back config space on device 0000:06:00.1 at offset 4 (was 1, writing 7c41)
[14315400.104354] serial 00:08: activated
[14315400.104389] sd 2:0:0:0: [sda] Starting disk
[14315400.423345] ata1: SATA link down (SStatus 0 SControl 300)
[14315400.423359] ata2: SATA link down (SStatus 0 SControl 300)
[14315406.543348] ata3.00: NODEV after polling detection
[14315406.543350] ata3.00: revalidation failed (errno=-2)
[14315406.543352] ata3: failed to recover some devices, retrying in 5 secs
[14315411.866672] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315411.890053] ata3.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315411.890055] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315411.896763] ata3.00: configured for UDMA/133
[14315411.896822] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315411.896836] sd 2:0:0:0: [sda] Write Protect is off
[14315411.896838] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315411.896859] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315413.007807] PM: Finishing wakeup.
[14315413.011872] Restarting tasks ... done.
[14315413.260004] usb 2-4: device descriptor read/64, error -62
[14315413.493337] usb 2-4: device descriptor read/64, error -62
[14315413.846670] usb 2-4: device descriptor read/64, error -62
[14315414.080004] usb 2-4: device descriptor read/64, error -62
[14315414.713340] usb 2-4: device not accepting address 10, error -62
[14315415.246670] usb 2-4: device not accepting address 11, error -62
[14315415.253522] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315612.296667] Restarting system.
[ 0.000000] Linux version 2.6.26-rc2 (ranma@melchior) (gcc version 4.2.3 (Debian 4.2.3-5)) #6 PREEMPT Sun May 18 11:35:22 CEST 2008
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.120 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ a89c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316531] Calibrating delay using timer specific routine.. 4827.21 BogoMIPS (lpj=8041950)
[14315324.323020] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339621] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396295] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438522] ACPI: Interpreter enabled
[14315324.442554] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447312] ACPI: Using IOAPIC for interrupt routing
[14315324.464177] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469985] PCI: Transparent bridge - 0000:00:06.0
[14315324.538599] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559235] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585898] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605872] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612555] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.629975] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.635896] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.642552] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.649973] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.655875] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.662558] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.666639] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.672244] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.678909] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.683304] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.688915] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.695579] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.702248] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.707916] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.714994] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.721976] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.728799] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.735483] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.743231] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.749880] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.755472] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.762132] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.769881] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.776562] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.782148] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.788805] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.793301] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.796634] pnp: PnP ACPI init
[14315324.799968] ACPI: bus type pnp registered
[14315324.810354] pnp: PnP ACPI: found 13 devices
[14315324.814902] ACPI: ACPI bus type pnp unregistered
[14315324.819992] SCSI subsystem initialized
[14315324.824206] usbcore: registered new interface driver usbfs
[14315324.829968] usbcore: registered new interface driver hub
[14315324.833301] usbcore: registered new device driver usb
[14315324.836635] PCI: Using ACPI for IRQ routing
[14315324.839968] testing the IO APIC.......................
[14315324.843301]
[14315324.845349] .................................... done.
[14315324.860815] Bluetooth: Core ver 2.11
[14315324.864839] NET: Registered protocol family 31
[14315324.869646] Bluetooth: HCI device and connection manager initialized
[14315324.873301] Bluetooth: HCI socket layer initialized
[14315324.876634] DMAR:parse DMAR table failure.
[14315324.887862] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.894747] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.901634] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.908520] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.915410] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.922294] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.929188] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.935897] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.942611] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.949335] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.957263] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.964233] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.973183] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.980589] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.987997] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.995923] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315325.003378] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.011302] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.018278] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.026241] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.034006] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.041932] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.049882] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.057807] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.065760] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.074037] PCI: Bridge: 0000:00:06.0
[14315325.078065] IO window: 9000-9fff
[14315325.081837] MEM window: 0xfde00000-0xfdefffff
[14315325.086733] PREFETCH window: disabled.
[14315325.091028] PCI: Bridge: 0000:00:0a.0
[14315325.095058] IO window: 8000-8fff
[14315325.099712] MEM window: 0xfdd00000-0xfddfffff
[14315325.103489] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.110202] PCI: Bridge: 0000:00:0b.0
[14315325.114224] IO window: disabled.
[14315325.117990] MEM window: disabled.
[14315325.122921] PREFETCH window: disabled.
[14315325.126787] PCI: Bridge: 0000:00:0c.0
[14315325.130818] IO window: disabled.
[14315325.134590] MEM window: disabled.
[14315325.138441] PREFETCH window: disabled.
[14315325.142758] PCI: Bridge: 0000:00:0d.0
[14315325.146790] IO window: disabled.
[14315325.150554] MEM window: disabled.
[14315325.154413] PREFETCH window: disabled.
[14315325.158706] PCI: Bridge: 0000:00:0e.0
[14315325.163030] IO window: 6000-7fff
[14315325.166794] MEM window: 0xfdc00000-0xfdcfffff
[14315325.170837] PREFETCH window: disabled.
[14315325.175744] PCI: Bridge: 0000:00:0f.0
[14315325.179776] IO window: disabled.
[14315325.183548] MEM window: disabled.
[14315325.187399] PREFETCH window: disabled.
[14315325.191763] NET: Registered protocol family 2
[14315325.229003] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.237129] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.246670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.259888] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.266865] TCP reno registered
[14315325.278698] NET: Registered protocol family 1
[14315325.284352] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.291285] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.297708] fuse init (API version 7.9)
[14315325.302554] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.310218] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.317536] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.326186] io scheduler noop registered
[14315325.330474] io scheduler anticipatory registered
[14315325.335459] io scheduler deadline registered
[14315325.340091] io scheduler cfq registered (default)
[14315325.357115] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.362537] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.367651] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.373084] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.378521] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.383948] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.389388] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.394822] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.400246] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.405689] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.411113] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.416557] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.422091] assign_interrupt_mode Found MSI capability
[14315325.427484] assign_interrupt_mode Found MSI capability
[14315325.433105] assign_interrupt_mode Found MSI capability
[14315325.438686] assign_interrupt_mode Found MSI capability
[14315325.444250] assign_interrupt_mode Found MSI capability
[14315325.449841] assign_interrupt_mode Found MSI capability
[14315325.455617] input: Power Button (FF) as /class/input/input0
[14315325.461553] ACPI: Power Button (FF) [PWRF]
[14315325.466082] input: Power Button (CM) as /class/input/input1
[14315325.472021] ACPI: Power Button (CM) [PWRB]
[14315325.476585] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.482691] ACPI: Fan [FAN] (on)
[14315325.486398] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.493392] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.499659] ACPI: Thermal Zone [THRM] (40 C)
[14315325.525106] Real Time Clock Driver v1.12ac
[14315325.529568] Linux agpgart interface v0.103
[14315325.532399] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.542501] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.549175] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.555688] loop: module loaded
[14315325.559203] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.564187] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.570682] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.577137] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.583032] tun: Universal TUN/TAP device driver, 1.6
[14315325.589210] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.595839] Driver 'sd' needs updating - please use bus_type methods
[14315325.602576] Driver 'sr' needs updating - please use bus_type methods
[14315325.609805] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.615923] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.627019] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.635549] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.643329] scsi0 : ahci
[14315326.646322] scsi1 : ahci
[14315326.649308] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.658929] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.984914] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.308606] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.313816] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.319931] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.329949] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.335279] scsi2 : sata_nv
[14315327.338502] scsi3 : sata_nv
[14315327.341852] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.349253] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.827599] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.843335] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.846670] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.863118] ata3.00: configured for UDMA/133
[14315328.184653] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.212768] isa bounce pool size: 16 pages
[14315328.216734] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.224604] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.233113] sd 2:0:0:0: [sda] Write Protect is off
[14315328.237481] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.247004] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.254585] sd 2:0:0:0: [sda] Write Protect is off
[14315328.259796] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.269280] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.313519] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.329875] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.336942] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.343065] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.353047] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.359946] scsi4 : sata_nv
[14315328.360002] scsi5 : sata_nv
[14315328.363351] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.373142] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.698536] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.045554] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.073141] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.076678] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.087412] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.092739] scsi6 : sata_nv
[14315329.095966] scsi7 : sata_nv
[14315329.099316] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.106890] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.432325] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.918655] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.933316] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.952913] ata8.00: configured for UDMA/100
[14315329.969254] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315329.980029] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315329.987953] Uniform CD-ROM driver Revision: 3.20
[14315329.993096] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315329.999493] block2mtd: version $Revision: 1.30 $
[14315330.005699] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.011822] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.021056] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.026715] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.034576] ehci_hcd 0000:00:02.1: debug port 1
[14315330.039724] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.055048] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.069012] usb usb1: configuration #1 chosen from 1 choice
[14315330.073896] hub 1-0:1.0: USB hub found
[14315330.079936] hub 1-0:1.0: 10 ports detected
[14315330.185539] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.190004] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.200849] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.206492] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.214339] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.273335] usb usb2: configuration #1 chosen from 1 choice
[14315330.279299] hub 2-0:1.0: USB hub found
[14315330.283419] hub 2-0:1.0: 10 ports detected
[14315330.363216] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.393223] USB Universal Host Controller Interface driver v3.0
[14315330.539480] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.716234] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.720044] usbcore: registered new interface driver usblp
[14315330.726530] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.733065] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.743243] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.749124] mice: PS/2 mouse device common for all mice
[14315330.777923] i2c /dev entries driver
[14315330.781899] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.788147] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.793649] it87: Found IT8716F chip at 0x290, revision 0
[14315330.799853] it87: in3 is VCC (+5V)
[14315330.803618] it87: in7 is VCCH (+5V Stand-By)
[14315330.820001] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.852149] md: raid1 personality registered for level 1
[14315330.856737] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.865968] Bluetooth: HCI USB driver ver 2.9
[14315330.959508] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.106668] usb 2-1: configuration #1 chosen from 1 choice
[14315331.365522] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.523334] usb 2-3: configuration #1 chosen from 1 choice
[14315331.791882] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.923338] usb 2-4: device descriptor read/64, error -62
[14315332.156671] usb 2-4: device descriptor read/64, error -62
[14315332.385512] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.516671] usb 2-4: device descriptor read/64, error -62
[14315332.750004] usb 2-4: device descriptor read/64, error -62
[14315332.978854] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.390748] usb 2-4: device not accepting address 6, error -62
[14315333.516035] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.928002] usb 2-4: device not accepting address 7, error -62
[14315333.933337] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.939833] usbcore: registered new interface driver hci_usb
[14315333.946005] Bluetooth: HCI UART driver ver 2.2
[14315333.952074] Bluetooth: HCI H4 protocol initialized
[14315333.956891] Bluetooth: HCI BCSP protocol initialized
[14315333.962216] cpuidle: using governor ladder
[14315333.966677] cpuidle: using governor menu
[14315333.976667] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315334.007962] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.029231] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.059819] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.080001] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.114671] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.124868] usbcore: registered new interface driver usbhid
[14315334.130216] usbhid: v2.6:USB HID core driver
[14315334.136227] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.143100] ALSA device list:
[14315334.146439] No soundcards found.
[14315334.148263] GACT probability on
[14315334.151775] Mirror/redirect action on
[14315334.155986] u32 classifier
[14315334.159139] Performance counters on
[14315334.163338] input device check on
[14315334.169933] Actions configured
[14315334.174093] IPv4 over IPv4 tunneling driver
[14315334.178153] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.183852] TCP bic registered
[14315334.187272] TCP cubic registered
[14315334.190861] TCP westwood registered
[14315334.194711] TCP htcp registered
[14315334.198216] TCP vegas registered
[14315334.203110] TCP yeah registered
[14315334.206615] Initializing XFRM netlink socket
[14315334.210252] NET: Registered protocol family 10
[14315334.216668] IPv6 over IPv4 tunneling driver
[14315334.221013] NET: Registered protocol family 17
[14315334.225821] NET: Registered protocol family 15
[14315334.230672] Bridge firewalling registered
[14315334.235850] Bluetooth: L2CAP ver 2.9
[14315334.239790] Bluetooth: L2CAP socket layer initialized
[14315334.244216] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.249632] Bluetooth: SCO socket layer initialized
[14315334.254546] Bluetooth: RFCOMM socket layer initialized
[14315334.260053] Bluetooth: RFCOMM TTY layer initialized
[14315334.265294] Bluetooth: RFCOMM ver 1.8
[14315334.269316] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.274983] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.280349] RPC: Registered udp transport module.
[14315334.286542] RPC: Registered tcp transport module.
[14315334.291717] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.298856] All bugs added by David S. Miller <davem@redhat.com>
[14315334.305222] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.315605] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.321621] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.326741] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.332684] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.338630] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.346244] md: Autodetecting RAID arrays.
[14315334.353335] md: Scanned 0 and added 0 devices.
[14315334.354818] md: autorun ...
[14315334.358151] md: ... autorun DONE.
[14315334.378465] kjournald starting. Commit interval 5 seconds
[14315334.383342] EXT3-fs: mounted filesystem with ordered data mode.
[14315334.389624] VFS: Mounted root (ext3 filesystem) readonly.
[14315334.395651] Freeing unused kernel memory: 256k freed
[14315335.296988] Marking TSC unstable due to cpufreq changes
[14315335.730021] Clocksource tsc unstable (delta = -255207325 ns)
[14315336.584945] scsi8 : pata_amd
[14315336.589421] scsi9 : pata_amd
[14315336.596373] ata9: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.601147] ata10: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.790573] ata9.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.812378] ata9.01: configured for UDMA/66
[14315336.827906] scsi 8:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.840004] sr1: scsi3-mmc drive: 15x/40x cd/rw xa/form2 cdda tray
[14315336.846642] sr 8:0:1:0: Attached scsi generic sg2 type 5
[14315336.860007] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315336.867120] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
[14315336.873231] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 22
[14315337.397509] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.406414] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.432801] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1200kHz
[14315337.439479] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315337.445834] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315337.456517] ALSA sound/pci/emu10k1/emu10k1_main.c:1748: vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315337.468844] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 21
[14315337.480007] ACPI: PCI Interrupt 0000:00:09.0[A] -> Link [AMC1] -> GSI 21 (level, low) -> IRQ 21
[14315337.489810] Sound card name=SB Live 5.1
[14315338.004296] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315338.013438] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315338.345625] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315338.512227] EXT3 FS on sda5, internal journal
[14315343.026843] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315551.930261] PM: Syncing filesystems ... done.
[14315551.946724] PM: Preparing system for mem sleep
[14315551.960679] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315551.969984] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315551.978208] PM: Entering mem sleep
[14315551.981210] Suspending console(s)
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.108 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ a89c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316531] Calibrating delay using timer specific routine.. 4827.21 BogoMIPS (lpj=8041950)
[14315324.323020] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339619] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396295] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438519] ACPI: Interpreter enabled
[14315324.442555] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447312] ACPI: Using IOAPIC for interrupt routing
[14315324.464178] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469985] PCI: Transparent bridge - 0000:00:06.0
[14315324.538630] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559229] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585889] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605890] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612563] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.629975] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.635888] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.642536] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.649973] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.655892] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.662558] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.666639] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.672252] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.678915] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.683304] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.688913] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.695579] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.702246] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.707918] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.714996] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.721986] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.728817] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.735489] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.743242] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.749905] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.755473] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.759968] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.766572] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.773230] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.778806] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.783301] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.786634] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.789968] pnp: PnP ACPI init
[14315324.793301] ACPI: bus type pnp registered
[14315324.803953] pnp: PnP ACPI: found 13 devices
[14315324.808500] ACPI: ACPI bus type pnp unregistered
[14315324.813301] SCSI subsystem initialized
[14315324.816635] usbcore: registered new interface driver usbfs
[14315324.819968] usbcore: registered new interface driver hub
[14315324.823301] usbcore: registered new device driver usb
[14315324.826635] PCI: Using ACPI for IRQ routing
[14315324.829968] testing the IO APIC.......................
[14315324.833301]
[14315324.835357] .................................... done.
[14315324.850590] Bluetooth: Core ver 2.11
[14315324.854607] NET: Registered protocol family 31
[14315324.859414] Bluetooth: HCI device and connection manager initialized
[14315324.863301] Bluetooth: HCI socket layer initialized
[14315324.866634] DMAR:parse DMAR table failure.
[14315324.877859] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.884744] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.891632] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.898518] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.905407] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.912293] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.919186] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.925902] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.932618] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.939340] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.947269] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.954239] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.963192] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.970599] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.978004] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.985931] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315324.993388] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.001315] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.008289] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.016251] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.024016] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.031942] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.039894] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.047820] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.055771] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.064052] PCI: Bridge: 0000:00:06.0
[14315325.068086] IO window: 9000-9fff
[14315325.071858] MEM window: 0xfde00000-0xfdefffff
[14315325.076753] PREFETCH window: disabled.
[14315325.081045] PCI: Bridge: 0000:00:0a.0
[14315325.085078] IO window: 8000-8fff
[14315325.089731] MEM window: 0xfdd00000-0xfddfffff
[14315325.093510] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.100223] PCI: Bridge: 0000:00:0b.0
[14315325.104256] IO window: disabled.
[14315325.108028] MEM window: disabled.
[14315325.112956] PREFETCH window: disabled.
[14315325.116823] PCI: Bridge: 0000:00:0c.0
[14315325.120854] IO window: disabled.
[14315325.124627] MEM window: disabled.
[14315325.128486] PREFETCH window: disabled.
[14315325.132804] PCI: Bridge: 0000:00:0d.0
[14315325.136833] IO window: disabled.
[14315325.140598] MEM window: disabled.
[14315325.144457] PREFETCH window: disabled.
[14315325.148749] PCI: Bridge: 0000:00:0e.0
[14315325.153075] IO window: 6000-7fff
[14315325.156848] MEM window: 0xfdc00000-0xfdcfffff
[14315325.160891] PREFETCH window: disabled.
[14315325.165799] PCI: Bridge: 0000:00:0f.0
[14315325.169829] IO window: disabled.
[14315325.173594] MEM window: disabled.
[14315325.177452] PREFETCH window: disabled.
[14315325.181817] NET: Registered protocol family 2
[14315325.219002] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.227130] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.236670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.249900] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.256879] TCP reno registered
[14315325.268719] NET: Registered protocol family 1
[14315325.274357] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.281295] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.287717] fuse init (API version 7.9)
[14315325.292566] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.300231] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.307546] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.316197] io scheduler noop registered
[14315325.320488] io scheduler anticipatory registered
[14315325.325471] io scheduler deadline registered
[14315325.330093] io scheduler cfq registered (default)
[14315325.347124] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.352550] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.357664] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.363096] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.368532] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.373958] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.379400] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.384832] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.390257] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.395702] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.401128] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.406570] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.412103] assign_interrupt_mode Found MSI capability
[14315325.417495] assign_interrupt_mode Found MSI capability
[14315325.423117] assign_interrupt_mode Found MSI capability
[14315325.428699] assign_interrupt_mode Found MSI capability
[14315325.434261] assign_interrupt_mode Found MSI capability
[14315325.439852] assign_interrupt_mode Found MSI capability
[14315325.445630] input: Power Button (FF) as /class/input/input0
[14315325.451566] ACPI: Power Button (FF) [PWRF]
[14315325.456096] input: Power Button (CM) as /class/input/input1
[14315325.462032] ACPI: Power Button (CM) [PWRB]
[14315325.466597] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.472703] ACPI: Fan [FAN] (on)
[14315325.476412] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.483407] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.489672] ACPI: Thermal Zone [THRM] (40 C)
[14315325.515084] Real Time Clock Driver v1.12ac
[14315325.519551] Linux agpgart interface v0.103
[14315325.522405] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.532506] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.539181] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.545695] loop: module loaded
[14315325.549211] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.554192] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.560689] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.567142] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.573040] tun: Universal TUN/TAP device driver, 1.6
[14315325.579215] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.585843] Driver 'sd' needs updating - please use bus_type methods
[14315325.592581] Driver 'sr' needs updating - please use bus_type methods
[14315325.599810] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.605928] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.617012] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.625543] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.633318] scsi0 : ahci
[14315326.636318] scsi1 : ahci
[14315326.639310] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.648938] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.974913] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.298606] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.303821] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.309930] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.319951] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.325283] scsi2 : sata_nv
[14315327.328505] scsi3 : sata_nv
[14315327.331854] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.339256] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.817593] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.850001] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.853336] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.869783] ata3.00: configured for UDMA/133
[14315328.191322] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.219446] isa bounce pool size: 16 pages
[14315328.223400] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.231269] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.239780] sd 2:0:0:0: [sda] Write Protect is off
[14315328.244146] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.253670] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.261251] sd 2:0:0:0: [sda] Write Protect is off
[14315328.266462] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.275948] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.354882] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.361206] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.368274] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.374396] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.383609] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.389578] scsi4 : sata_nv
[14315328.392808] scsi5 : sata_nv
[14315328.396161] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.403566] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.728977] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.062242] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.089804] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.093344] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.104073] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.109399] scsi6 : sata_nv
[14315329.112628] scsi7 : sata_nv
[14315329.115977] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.123550] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.448978] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.935319] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.949981] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.969583] ata8.00: configured for UDMA/100
[14315329.985939] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315329.996671] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315330.004588] Uniform CD-ROM driver Revision: 3.20
[14315330.009734] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315330.016179] block2mtd: version $Revision: 1.30 $
[14315330.022430] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.028547] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.037781] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.043442] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.051310] ehci_hcd 0000:00:02.1: debug port 1
[14315330.056460] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.071715] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.085697] usb usb1: configuration #1 chosen from 1 choice
[14315330.090582] hub 1-0:1.0: USB hub found
[14315330.096621] hub 1-0:1.0: 10 ports detected
[14315330.202222] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.206671] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.217516] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.223160] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.231006] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.290001] usb usb2: configuration #1 chosen from 1 choice
[14315330.295968] hub 2-0:1.0: USB hub found
[14315330.300086] hub 2-0:1.0: 10 ports detected
[14315330.379883] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.409890] USB Universal Host Controller Interface driver v3.0
[14315330.556147] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.732887] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.736710] usbcore: registered new interface driver usblp
[14315330.743197] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.749732] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.759913] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.765795] mice: PS/2 mouse device common for all mice
[14315330.794589] i2c /dev entries driver
[14315330.798559] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.804806] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.810309] it87: Found IT8716F chip at 0x290, revision 0
[14315330.816515] it87: in3 is VCC (+5V)
[14315330.820287] it87: in7 is VCCH (+5V Stand-By)
[14315330.836668] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.868855] md: raid1 personality registered for level 1
[14315330.873403] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.882630] Bluetooth: HCI USB driver ver 2.9
[14315330.976170] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.123334] usb 2-1: configuration #1 chosen from 1 choice
[14315331.382183] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.540000] usb 2-3: configuration #1 chosen from 1 choice
[14315331.808552] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.940004] usb 2-4: device descriptor read/64, error -62
[14315332.173337] usb 2-4: device descriptor read/64, error -62
[14315332.402153] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.533337] usb 2-4: device descriptor read/64, error -62
[14315332.766671] usb 2-4: device descriptor read/64, error -62
[14315332.995496] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.407402] usb 2-4: device not accepting address 6, error -62
[14315333.532699] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.944651] usb 2-4: device not accepting address 7, error -62
[14315333.950004] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.956499] usbcore: registered new interface driver hci_usb
[14315333.962673] Bluetooth: HCI UART driver ver 2.2
[14315333.968739] Bluetooth: HCI H4 protocol initialized
[14315333.973557] Bluetooth: HCI BCSP protocol initialized
[14315333.978882] cpuidle: using governor ladder
[14315333.983344] cpuidle: using governor menu
[14315333.993334] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315334.024614] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.045900] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.076496] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.098026] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.131356] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.141553] usbcore: registered new interface driver usbhid
[14315334.146883] usbhid: v2.6:USB HID core driver
[14315334.152895] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.159761] ALSA device list:
[14315334.163099] No soundcards found.
[14315334.164923] GACT probability on
[14315334.168433] Mirror/redirect action on
[14315334.172645] u32 classifier
[14315334.175798] Performance counters on
[14315334.179997] input device check on
[14315334.186593] Actions configured
[14315334.190754] IPv4 over IPv4 tunneling driver
[14315334.194812] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.200510] TCP bic registered
[14315334.203930] TCP cubic registered
[14315334.207519] TCP westwood registered
[14315334.211369] TCP htcp registered
[14315334.214874] TCP vegas registered
[14315334.219769] TCP yeah registered
[14315334.223274] Initializing XFRM netlink socket
[14315334.226913] NET: Registered protocol family 10
[14315334.233334] IPv6 over IPv4 tunneling driver
[14315334.237681] NET: Registered protocol family 17
[14315334.242488] NET: Registered protocol family 15
[14315334.247337] Bridge firewalling registered
[14315334.252514] Bluetooth: L2CAP ver 2.9
[14315334.256455] Bluetooth: L2CAP socket layer initialized
[14315334.260884] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.266300] Bluetooth: SCO socket layer initialized
[14315334.271215] Bluetooth: RFCOMM socket layer initialized
[14315334.276722] Bluetooth: RFCOMM TTY layer initialized
[14315334.281964] Bluetooth: RFCOMM ver 1.8
[14315334.285986] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.291653] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.297017] RPC: Registered udp transport module.
[14315334.303211] RPC: Registered tcp transport module.
[14315334.308385] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.315522] All bugs added by David S. Miller <davem@redhat.com>
[14315334.321890] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.332273] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.338288] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.343408] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.349345] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.355282] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.362884] md: Autodetecting RAID arrays.
[14315334.367252] md: Scanned 0 and added 0 devices.
[14315334.373309] md: autorun ...
[14315334.376465] md: ... autorun DONE.
[14315334.386667] EXT3-fs: INFO: recovery required on readonly filesystem.
[14315334.393336] EXT3-fs: write access will be enabled during recovery.
[14315334.416725] kjournald starting. Commit interval 5 seconds
[14315334.423089] EXT3-fs: recovery complete.
[14315334.435971] EXT3-fs: mounted filesystem with ordered data mode.
[14315334.439949] VFS: Mounted root (ext3 filesystem) readonly.
[14315334.446615] Freeing unused kernel memory: 256k freed
[14315335.296886] Marking TSC unstable due to cpufreq changes
[14315335.730020] Clocksource tsc unstable (delta = -255347879 ns)
[14315336.670291] scsi8 : pata_amd
[14315336.674553] scsi9 : pata_amd
[14315336.678547] ata9: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.685975] ata10: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.874470] ata9.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.894149] ata9.01: configured for UDMA/66
[14315336.931286] scsi 8:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.943338] sr1: scsi3-mmc drive: 15x/40x cd/rw xa/form2 cdda tray
[14315336.949995] sr 8:0:1:0: Attached scsi generic sg2 type 5
[14315336.956855] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315336.964127] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
[14315336.970252] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 22
[14315337.500998] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.509811] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.536133] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1200kHz
[14315337.543025] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315337.549160] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315337.560074] ALSA sound/pci/emu10k1/emu10k1_main.c:1748: vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315337.572708] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 21
[14315337.583341] ACPI: PCI Interrupt 0000:00:09.0[A] -> Sound card name=SB Live 5.1
[14315337.596675] Link [AMC1] -> GSI 21 (level, low) -> IRQ 21
[14315338.117626] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315338.126767] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315339.355589] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315339.505606] EXT3 FS on sda5, internal journal
[14315344.943338] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315426.797857] PM: Hibernation mode set to 'platform'
[14315426.810335] PM: Marking nosave pages: 000000000009f000 - 0000000000100000
[14315426.817965] PM: Basic memory bitmaps created
[14315426.822685] PM: Syncing filesystems ... done.
[14315426.830565] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315426.839564] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315426.847567] PM: Shrinking memory... \b-\bdone (0 pages freed)
[14315426.970882] PM: Freed 0 kbytes in 0.11 seconds (0.00 MB/s)
[14315426.977551] Suspending console(s)
[14315426.981319] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[14315426.981542] ACPI handle has no context!
[14315426.983937] serial 00:08: disabled
[14315427.010050] ACPI: PCI interrupt for device 0000:06:00.0 disabled
[14315427.017068] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315427.017078] ACPI handle has no context!
[14315427.030353] ACPI: PCI interrupt for device 0000:00:09.0 disabled
[14315427.043622] ACPI: PCI interrupt for device 0000:00:08.0 disabled
[14315427.056707] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315427.056732] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315427.056758] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315427.056794] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315427.056804] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315427.056939] ACPI: Preparing to enter system sleep state S4
[14315427.057420] Extended CMOS year: 2000
[14315427.057466] PM: Creating hibernation image:
[14315427.059998] PM: Need to copy 58014 pages
[14315427.059998] PM: Normal pages needed: 58014 + 1024 + 38, available pages: 465888
[14315427.059998] PM: Hibernation image created (58014 pages copied)
[14315427.059998] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315427.059998] svm_cpu_init: svm_data is NULL on 0
[14315427.059998] Extended CMOS year: 2000
[14315427.069771] ACPI: Unable to turn cooling device [ffff81007f842890] 'off'
[14315427.069821] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315427.069826] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315427.090058] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315427.090062] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315427.090076] PM: Writing back config space on device 0000:00:04.0 at offset 1 (was b00001, writing b00005)
[14315427.090082] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315427.090095] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14315427.090102] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315427.090105] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315427.090117] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14315427.090123] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315427.090126] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315427.090137] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14315427.090143] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315427.090147] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315427.090160] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315427.091283] ata10: port disabled. ignoring.
[14315427.103340] PM: Writing back config space on device 0000:00:08.0 at offset f (was 14010100, writing 1401010a)
[14315427.103345] PM: Writing back config space on device 0000:00:08.0 at offset 7 (was 0, writing fe028000)
[14315427.103347] PM: Writing back config space on device 0000:00:08.0 at offset 6 (was 0, writing fe029000)
[14315427.103350] PM: Writing back config space on device 0000:00:08.0 at offset 5 (was 1, writing b001)
[14315427.103353] PM: Writing back config space on device 0000:00:08.0 at offset 4 (was 0, writing fe02a000)
[14315427.103356] PM: Writing back config space on device 0000:00:08.0 at offset 1 (was b00000, writing b00007)
[14315427.103668] eth0: no link during initialization.
[14315427.116673] PM: Writing back config space on device 0000:00:09.0 at offset f (was 14010100, writing 1401010a)
[14315427.116677] PM: Writing back config space on device 0000:00:09.0 at offset 7 (was 0, writing fe025000)
[14315427.116680] PM: Writing back config space on device 0000:00:09.0 at offset 6 (was 0, writing fe026000)
[14315427.116683] PM: Writing back config space on device 0000:00:09.0 at offset 5 (was 1, writing ac01)
[14315427.116685] PM: Writing back config space on device 0000:00:09.0 at offset 4 (was 0, writing fe027000)
[14315427.116689] PM: Writing back config space on device 0000:00:09.0 at offset 1 (was b00000, writing b00007)
[14315427.117148] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315427.117161] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[14315427.117172] PCI: Setting latency timer of device 0000:00:0c.0 to 64
[14315427.117184] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[14315427.117195] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315427.117207] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[14315427.130013] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315427.137561] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 100003, writing 100007)
[14315427.137572] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315427.137576] PCI: Setting latency timer of device 0000:06:00.0 to 64
[14315427.140558] serial 00:08: activated
[14315427.140593] sd 2:0:0:0: [sda] Starting disk
[14315427.273684] ata9.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315427.273686] ata9.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315427.273705] ata9: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315427.286764] ata9.01: configured for UDMA/66
[14315427.410007] ata7: SATA link down (SStatus 0 SControl 300)
[14315427.420530] ata6: SATA link down (SStatus 0 SControl 300)
[14315427.431053] ata4: SATA link down (SStatus 0 SControl 300)
[14315427.441578] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315427.441635] ata5: SATA link down (SStatus 0 SControl 300)
[14315427.452239] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315427.452277] ata1: SATA link down (SStatus 0 SControl 300)
[14315427.457007] ata8.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315427.460007] ata2: SATA link down (SStatus 0 SControl 300)
[14315427.470059] ata8.00: configured for UDMA/100
[14315427.470115] ata3.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315427.470117] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315427.476763] ata3.00: configured for UDMA/133
[14315427.476819] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315427.476832] sd 2:0:0:0: [sda] Write Protect is off
[14315427.476834] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315427.476855] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315428.259602] PM: writing image.
[14315428.263115] PM: Free swap pages: 977947
[14315428.270383] PM: Saving image data pages (58128 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315431.183335] PM: Wrote 232512 kbytes in 2.90 seconds (80.17 MB/s)
[14315431.191699] PM: S|
[14315431.444446] Suspending console(s)
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.110 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ 289c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316531] Calibrating delay using timer specific routine.. 4827.23 BogoMIPS (lpj=8041982)
[14315324.323020] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339629] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396296] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438521] ACPI: Interpreter enabled
[14315324.442551] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447309] ACPI: Using IOAPIC for interrupt routing
[14315324.464177] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469985] PCI: Transparent bridge - 0000:00:06.0
[14315324.538635] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559235] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585899] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605880] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612556] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.629975] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.635894] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.642560] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.649973] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.655882] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.662566] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.666639] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.672251] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.678915] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.683304] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.688904] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.695579] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.702245] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.707907] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.714987] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.721976] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.728807] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.735481] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.743232] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.749906] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.755480] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.759968] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.766565] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.773239] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.778814] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.783301] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.786634] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.789968] pnp: PnP ACPI init
[14315324.793301] ACPI: bus type pnp registered
[14315324.803957] pnp: PnP ACPI: found 13 devices
[14315324.808509] ACPI: ACPI bus type pnp unregistered
[14315324.813301] SCSI subsystem initialized
[14315324.816635] usbcore: registered new interface driver usbfs
[14315324.819968] usbcore: registered new interface driver hub
[14315324.823301] usbcore: registered new device driver usb
[14315324.826635] PCI: Using ACPI for IRQ routing
[14315324.829968] testing the IO APIC.......................
[14315324.833301]
[14315324.835356] .................................... done.
[14315324.850582] Bluetooth: Core ver 2.11
[14315324.854604] NET: Registered protocol family 31
[14315324.859413] Bluetooth: HCI device and connection manager initialized
[14315324.863301] Bluetooth: HCI socket layer initialized
[14315324.866634] DMAR:parse DMAR table failure.
[14315324.877861] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.884754] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.891641] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.898527] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.905414] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.912301] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.919195] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.925911] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.932625] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.939350] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.947279] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.954257] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.963208] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.970616] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.978022] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.985947] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315324.993402] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.001327] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.008299] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.016264] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.024032] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.031957] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.039908] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.047836] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.055787] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.064066] PCI: Bridge: 0000:00:06.0
[14315325.068099] IO window: 9000-9fff
[14315325.071872] MEM window: 0xfde00000-0xfdefffff
[14315325.076768] PREFETCH window: disabled.
[14315325.081061] PCI: Bridge: 0000:00:0a.0
[14315325.085091] IO window: 8000-8fff
[14315325.089745] MEM window: 0xfdd00000-0xfddfffff
[14315325.093523] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.100238] PCI: Bridge: 0000:00:0b.0
[14315325.104270] IO window: disabled.
[14315325.108042] MEM window: disabled.
[14315325.112971] PREFETCH window: disabled.
[14315325.116839] PCI: Bridge: 0000:00:0c.0
[14315325.120868] IO window: disabled.
[14315325.124633] MEM window: disabled.
[14315325.128491] PREFETCH window: disabled.
[14315325.132810] PCI: Bridge: 0000:00:0d.0
[14315325.136842] IO window: disabled.
[14315325.140614] MEM window: disabled.
[14315325.144474] PREFETCH window: disabled.
[14315325.148766] PCI: Bridge: 0000:00:0e.0
[14315325.153090] IO window: 6000-7fff
[14315325.156863] MEM window: 0xfdc00000-0xfdcfffff
[14315325.160906] PREFETCH window: disabled.
[14315325.165813] PCI: Bridge: 0000:00:0f.0
[14315325.169843] IO window: disabled.
[14315325.173608] MEM window: disabled.
[14315325.177458] PREFETCH window: disabled.
[14315325.181823] NET: Registered protocol family 2
[14315325.219002] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.227126] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.236670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.249908] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.256885] TCP reno registered
[14315325.268726] NET: Registered protocol family 1
[14315325.274356] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.281292] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.287715] fuse init (API version 7.9)
[14315325.292563] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.300227] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.307546] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.316196] io scheduler noop registered
[14315325.320488] io scheduler anticipatory registered
[14315325.325471] io scheduler deadline registered
[14315325.330100] io scheduler cfq registered (default)
[14315325.347130] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.352552] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.357669] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.363103] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.368540] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.373965] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.379405] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.384839] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.390264] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.395707] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.401132] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.406576] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.412109] assign_interrupt_mode Found MSI capability
[14315325.417503] assign_interrupt_mode Found MSI capability
[14315325.423123] assign_interrupt_mode Found MSI capability
[14315325.428704] assign_interrupt_mode Found MSI capability
[14315325.434268] assign_interrupt_mode Found MSI capability
[14315325.439860] assign_interrupt_mode Found MSI capability
[14315325.445637] input: Power Button (FF) as /class/input/input0
[14315325.451572] ACPI: Power Button (FF) [PWRF]
[14315325.456101] input: Power Button (CM) as /class/input/input1
[14315325.462038] ACPI: Power Button (CM) [PWRB]
[14315325.466603] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.472710] ACPI: Fan [FAN] (on)
[14315325.476417] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.483409] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.489678] ACPI: Thermal Zone [THRM] (40 C)
[14315325.515082] Real Time Clock Driver v1.12ac
[14315325.519546] Linux agpgart interface v0.103
[14315325.522402] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.532504] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.539177] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.545692] loop: module loaded
[14315325.549206] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.554189] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.560687] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.567138] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.573035] tun: Universal TUN/TAP device driver, 1.6
[14315325.579212] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.585841] Driver 'sd' needs updating - please use bus_type methods
[14315325.592576] Driver 'sr' needs updating - please use bus_type methods
[14315325.599806] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.605924] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.617015] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.625541] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.633320] scsi0 : ahci
[14315326.636319] scsi1 : ahci
[14315326.639308] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.648936] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.974915] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.298612] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.303820] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.309930] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.319948] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.325280] scsi2 : sata_nv
[14315327.328500] scsi3 : sata_nv
[14315327.331850] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.339252] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.817600] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.833335] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.836670] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.853117] ata3.00: configured for UDMA/133
[14315328.174650] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.202771] isa bounce pool size: 16 pages
[14315328.206733] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.214599] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.223109] sd 2:0:0:0: [sda] Write Protect is off
[14315328.227477] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.237002] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.244582] sd 2:0:0:0: [sda] Write Protect is off
[14315328.249792] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.259278] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.321782] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.328113] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.335181] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.341304] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.350058] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.355400] scsi4 : sata_nv
[14315328.358625] scsi5 : sata_nv
[14315328.361977] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.369382] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.695882] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.028901] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.056470] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.060011] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.070746] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.076072] scsi6 : sata_nv
[14315329.079301] scsi7 : sata_nv
[14315329.082650] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.090223] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.415659] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.901986] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.916644] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.936252] ata8.00: configured for UDMA/100
[14315329.952582] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315329.963362] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315329.971281] Uniform CD-ROM driver Revision: 3.20
[14315329.976425] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315329.982815] block2mtd: version $Revision: 1.30 $
[14315329.989019] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315329.995141] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.004375] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.010034] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.017902] ehci_hcd 0000:00:02.1: debug port 1
[14315330.023053] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.038380] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.052366] usb usb1: configuration #1 chosen from 1 choice
[14315330.057252] hub 1-0:1.0: USB hub found
[14315330.063292] hub 1-0:1.0: 10 ports detected
[14315330.168892] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.173337] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.184188] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.189832] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.197677] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.256668] usb usb2: configuration #1 chosen from 1 choice
[14315330.262631] hub 2-0:1.0: USB hub found
[14315330.266750] hub 2-0:1.0: 10 ports detected
[14315330.346545] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.373218] USB Universal Host Controller Interface driver v3.0
[14315330.522812] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.699574] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.703376] usbcore: registered new interface driver usblp
[14315330.709861] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.716397] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.726578] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.732459] mice: PS/2 mouse device common for all mice
[14315330.761257] i2c /dev entries driver
[14315330.765231] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.771478] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.776979] it87: Found IT8716F chip at 0x290, revision 0
[14315330.783176] it87: in3 is VCC (+5V)
[14315330.786941] it87: in7 is VCCH (+5V Stand-By)
[14315330.803334] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.835468] md: raid1 personality registered for level 1
[14315330.840069] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.849335] Bluetooth: HCI USB driver ver 2.9
[14315330.942877] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.090001] usb 2-1: configuration #1 chosen from 1 choice
[14315331.348850] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.506667] usb 2-3: configuration #1 chosen from 1 choice
[14315331.775224] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.906671] usb 2-4: device descriptor read/64, error -62
[14315332.140004] usb 2-4: device descriptor read/64, error -62
[14315332.368875] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.500004] usb 2-4: device descriptor read/64, error -62
[14315332.733337] usb 2-4: device descriptor read/64, error -62
[14315332.962211] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.374067] usb 2-4: device not accepting address 6, error -62
[14315333.499359] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.911319] usb 2-4: device not accepting address 7, error -62
[14315333.916670] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.923165] usbcore: registered new interface driver hci_usb
[14315333.929333] Bluetooth: HCI UART driver ver 2.2
[14315333.935401] Bluetooth: HCI H4 protocol initialized
[14315333.940218] Bluetooth: HCI BCSP protocol initialized
[14315333.945544] cpuidle: using governor ladder
[14315333.950005] cpuidle: using governor menu
[14315333.960001] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315333.991282] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.012566] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.043164] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.064696] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.098016] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.108216] usbcore: registered new interface driver usbhid
[14315334.113552] usbhid: v2.6:USB HID core driver
[14315334.119564] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.126431] ALSA device list:
[14315334.129768] No soundcards found.
[14315334.131593] GACT probability on
[14315334.135104] Mirror/redirect action on
[14315334.139314] u32 classifier
[14315334.142467] Performance counters on
[14315334.146667] input device check on
[14315334.153262] Actions configured
[14315334.157422] IPv4 over IPv4 tunneling driver
[14315334.161479] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.167179] TCP bic registered
[14315334.170598] TCP cubic registered
[14315334.174186] TCP westwood registered
[14315334.178037] TCP htcp registered
[14315334.181542] TCP vegas registered
[14315334.186438] TCP yeah registered
[14315334.189943] Initializing XFRM netlink socket
[14315334.193583] NET: Registered protocol family 10
[14315334.200001] IPv6 over IPv4 tunneling driver
[14315334.204347] NET: Registered protocol family 17
[14315334.209155] NET: Registered protocol family 15
[14315334.214005] Bridge firewalling registered
[14315334.219184] Bluetooth: L2CAP ver 2.9
[14315334.223125] Bluetooth: L2CAP socket layer initialized
[14315334.227554] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.232972] Bluetooth: SCO socket layer initialized
[14315334.237893] Bluetooth: RFCOMM socket layer initialized
[14315334.243400] Bluetooth: RFCOMM TTY layer initialized
[14315334.248649] Bluetooth: RFCOMM ver 1.8
[14315334.252672] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.258338] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.263703] RPC: Registered udp transport module.
[14315334.269897] RPC: Registered tcp transport module.
[14315334.275072] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.282219] All bugs added by David S. Miller <davem@redhat.com>
[14315334.288584] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.298968] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.304983] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.310102] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.316040] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.321985] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.334765] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315334.342603] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315334.350575] PM: Loading image data pages (58128 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%Marking TSC unstable due to cpufreq changes
[14315335.338247] \b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%<4>Clocksource tsc unstable (delta = -234257146 ns)
[14315335.743561] \b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315337.613519] PM: Read 232512 kbytes in 3.25 seconds (71.54 MB/s)
[14315337.622034] Suspending console(s)
[14315426.981319] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[14315426.981542] ACPI handle has no context!
[14315426.983937] serial 00:08: disabled
[14315427.010050] ACPI: PCI interrupt for device 0000:06:00.0 disabled
[14315427.017068] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315427.017078] ACPI handle has no context!
[14315427.030353] ACPI: PCI interrupt for device 0000:00:09.0 disabled
[14315427.043622] ACPI: PCI interrupt for device 0000:00:08.0 disabled
[14315427.056707] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315427.056732] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315427.056758] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315427.056794] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315427.056804] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315427.056939] ACPI: Preparing to enter system sleep state S4
[14315427.057420] Extended CMOS year: 2000
[14315427.057466] PM: Creating hibernation image:
[14315427.059998] PM: Need to copy 58014 pages
[14315427.059998] PM: Normal pages needed: 58014 + 1024 + 38, available pages: 465888
[14315427.059998] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315427.059998] svm_cpu_init: svm_data is NULL on 0
[14315427.059998] Extended CMOS year: 2000
[14315427.069743] ACPI: Unable to turn cooling device [ffff81007f842890] 'off'
[14315427.069794] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315427.069798] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315427.120866] usb usb2: root hub lost power or was reset
[14315427.120872] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315427.120876] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315427.120885] usb usb1: root hub lost power or was reset
[14315427.120889] ehci_hcd 0000:00:02.1: debug port 1
[14315427.120891] PCI: cache line size of 64 is not supported by device 0000:00:02.1
[14315427.120898] PM: Writing back config space on device 0000:00:04.0 at offset b (was 82391043, writing 8239f043)
[14315427.120906] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315427.120919] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14315427.120925] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315427.120928] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315427.120940] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14315427.120946] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315427.120950] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315427.120961] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14315427.120967] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315427.120970] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315427.120984] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315427.124043] ata10: port disabled. ignoring.
[14315427.133651] eth0: no link during initialization.
[14315427.147151] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315427.147164] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[14315427.147176] PCI: Setting latency timer of device 0000:00:0c.0 to 64
[14315427.147187] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[14315427.147198] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315427.147210] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[14315427.160009] PM: Writing back config space on device 0000:01:08.0 at offset 1 (was 2900005, writing 2900001)
[14315427.160016] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315427.167566] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 100003, writing 100007)
[14315427.167576] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315427.167580] PCI: Setting latency timer of device 0000:06:00.0 to 64
[14315427.170564] serial 00:08: activated
[14315427.170599] sd 2:0:0:0: [sda] Starting disk
[14315427.307022] ata9.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315427.307024] ata9.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315427.307044] ata9: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315427.320098] ata9.01: configured for UDMA/66
[14315427.440007] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315427.440065] ata7: SATA link down (SStatus 0 SControl 300)
[14315427.450716] ata8.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315427.450777] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315427.450811] ata4: SATA link down (SStatus 0 SControl 300)
[14315427.461589] ata5: SATA link down (SStatus 0 SControl 300)
[14315427.472280] ata8.00: configured for UDMA/100
[14315427.472287] ata6: SATA link down (SStatus 0 SControl 300)
[14315427.482948] ata1: SATA link down (SStatus 0 SControl 300)
[14315427.482969] ata3.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315427.482971] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315427.490073] ata2: SATA link down (SStatus 0 SControl 300)
[14315427.490097] ata3.00: configured for UDMA/133
[14315427.490152] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315427.490166] sd 2:0:0:0: [sda] Write Protect is off
[14315427.490168] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315427.490189] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315428.233337] usb 2-1: reset low speed USB device using ohci_hcd and address 2
[14315428.803336] usb 2-3: reset low speed USB device using ohci_hcd and address 3
[14315429.655057] PM: Image restored successfully.
[14315429.706987] Restarting tasks ... done.
[14315429.717613] PM: Basic memory bitmaps freed
[14315430.076674] usb 2-4: device descriptor read/64, error -62
[14315430.313336] usb 2-4: device descriptor read/64, error -62
[14315430.666669] usb 2-4: device descriptor read/64, error -62
[14315430.900002] usb 2-4: device descriptor read/64, error -62
[14315431.533334] usb 2-4: device not accepting address 10, error -62
[14315432.063338] usb 2-4: device not accepting address 11, error -62
[14315432.073067] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315590.280012] Restarting system.
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.102 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ 289c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316530] Calibrating delay using timer specific routine.. 4827.21 BogoMIPS (lpj=8041944)
[14315324.323021] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339629] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396296] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438508] ACPI: Interpreter enabled
[14315324.442537] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447295] ACPI: Using IOAPIC for interrupt routing
[14315324.464042] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469922] PCI: Transparent bridge - 0000:00:06.0
[14315324.538635] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559236] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585882] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605890] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612556] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.629975] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.635878] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.642543] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.649973] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.655900] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.662559] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.666639] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.672252] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.678917] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.683304] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.688906] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.695580] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.702246] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.707919] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.714994] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.721969] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.728825] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.735489] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.743242] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.749903] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.755483] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.759968] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.766573] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.773240] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.778824] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.783301] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.786634] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.789968] pnp: PnP ACPI init
[14315324.793301] ACPI: bus type pnp registered
[14315324.803954] pnp: PnP ACPI: found 13 devices
[14315324.808508] ACPI: ACPI bus type pnp unregistered
[14315324.813301] SCSI subsystem initialized
[14315324.816635] usbcore: registered new interface driver usbfs
[14315324.819968] usbcore: registered new interface driver hub
[14315324.823301] usbcore: registered new device driver usb
[14315324.826635] PCI: Using ACPI for IRQ routing
[14315324.829968] testing the IO APIC.......................
[14315324.833301]
[14315324.835357] .................................... done.
[14315324.850556] Bluetooth: Core ver 2.11
[14315324.854570] NET: Registered protocol family 31
[14315324.859379] Bluetooth: HCI device and connection manager initialized
[14315324.863301] Bluetooth: HCI socket layer initialized
[14315324.866634] DMAR:parse DMAR table failure.
[14315324.877860] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.884746] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.891631] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.898518] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.905408] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.912293] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.919185] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.925895] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.932609] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.939334] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.947262] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.954232] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.963186] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.970592] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.977999] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.985925] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315324.993379] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.001305] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.008278] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.016242] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.024006] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.031932] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.039884] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.047811] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.055763] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.064040] PCI: Bridge: 0000:00:06.0
[14315325.068076] IO window: 9000-9fff
[14315325.071848] MEM window: 0xfde00000-0xfdefffff
[14315325.076745] PREFETCH window: disabled.
[14315325.081037] PCI: Bridge: 0000:00:0a.0
[14315325.085068] IO window: 8000-8fff
[14315325.089723] MEM window: 0xfdd00000-0xfddfffff
[14315325.093501] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.100214] PCI: Bridge: 0000:00:0b.0
[14315325.104247] IO window: disabled.
[14315325.108019] MEM window: disabled.
[14315325.112948] PREFETCH window: disabled.
[14315325.116814] PCI: Bridge: 0000:00:0c.0
[14315325.120847] IO window: disabled.
[14315325.124619] MEM window: disabled.
[14315325.128478] PREFETCH window: disabled.
[14315325.132796] PCI: Bridge: 0000:00:0d.0
[14315325.136826] IO window: disabled.
[14315325.140591] MEM window: disabled.
[14315325.144450] PREFETCH window: disabled.
[14315325.148742] PCI: Bridge: 0000:00:0e.0
[14315325.153066] IO window: 6000-7fff
[14315325.156838] MEM window: 0xfdc00000-0xfdcfffff
[14315325.160884] PREFETCH window: disabled.
[14315325.165790] PCI: Bridge: 0000:00:0f.0
[14315325.169822] IO window: disabled.
[14315325.173595] MEM window: disabled.
[14315325.177454] PREFETCH window: disabled.
[14315325.181819] NET: Registered protocol family 2
[14315325.219002] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.227131] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.236670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.249908] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.256886] TCP reno registered
[14315325.268730] NET: Registered protocol family 1
[14315325.274356] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.281293] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.287717] fuse init (API version 7.9)
[14315325.292568] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.300241] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.307561] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.316208] io scheduler noop registered
[14315325.320497] io scheduler anticipatory registered
[14315325.325481] io scheduler deadline registered
[14315325.330111] io scheduler cfq registered (default)
[14315325.347150] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.352575] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.357690] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.363123] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.368561] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.373986] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.379427] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.384859] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.390285] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.395729] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.401155] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.406597] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.412129] assign_interrupt_mode Found MSI capability
[14315325.417523] assign_interrupt_mode Found MSI capability
[14315325.423144] assign_interrupt_mode Found MSI capability
[14315325.428724] assign_interrupt_mode Found MSI capability
[14315325.434286] assign_interrupt_mode Found MSI capability
[14315325.439871] assign_interrupt_mode Found MSI capability
[14315325.445649] input: Power Button (FF) as /class/input/input0
[14315325.451586] ACPI: Power Button (FF) [PWRF]
[14315325.456116] input: Power Button (CM) as /class/input/input1
[14315325.462053] ACPI: Power Button (CM) [PWRB]
[14315325.466616] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.472724] ACPI: Fan [FAN] (on)
[14315325.476430] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.483424] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.489691] ACPI: Thermal Zone [THRM] (40 C)
[14315325.515064] Real Time Clock Driver v1.12ac
[14315325.519532] Linux agpgart interface v0.103
[14315325.522407] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.532508] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.539180] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.545698] loop: module loaded
[14315325.549212] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.554194] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.560690] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.567145] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.573040] tun: Universal TUN/TAP device driver, 1.6
[14315325.579216] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.585843] Driver 'sd' needs updating - please use bus_type methods
[14315325.592580] Driver 'sr' needs updating - please use bus_type methods
[14315325.599809] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.605928] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.617011] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.625536] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.633316] scsi0 : ahci
[14315326.636314] scsi1 : ahci
[14315326.639306] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.648935] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.974913] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.298611] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.303820] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.309931] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.319949] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.325281] scsi2 : sata_nv
[14315327.328510] scsi3 : sata_nv
[14315327.331859] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.339261] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.817599] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.850001] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.853336] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.869783] ata3.00: configured for UDMA/133
[14315328.191321] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.219442] isa bounce pool size: 16 pages
[14315328.223399] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.231271] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.239780] sd 2:0:0:0: [sda] Write Protect is off
[14315328.244148] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.253671] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.261252] sd 2:0:0:0: [sda] Write Protect is off
[14315328.266461] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.275947] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.343550] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.360876] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.370002] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.373346] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.384048] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.389393] scsi4 : sata_nv
[14315328.392624] scsi5 : sata_nv
[14315328.395973] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.403380] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.728648] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.062241] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.089803] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.093345] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.104075] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.109401] scsi6 : sata_nv
[14315329.112630] scsi7 : sata_nv
[14315329.115980] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.123554] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.448988] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.935320] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.949978] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.969586] ata8.00: configured for UDMA/100
[14315329.985915] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315329.996699] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315330.004622] Uniform CD-ROM driver Revision: 3.20
[14315330.009767] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315330.016157] block2mtd: version $Revision: 1.30 $
[14315330.022363] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.028478] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.037711] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.043372] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.051239] ehci_hcd 0000:00:02.1: debug port 1
[14315330.056388] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.071713] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.085701] usb usb1: configuration #1 chosen from 1 choice
[14315330.090587] hub 1-0:1.0: USB hub found
[14315330.096636] hub 1-0:1.0: 10 ports detected
[14315330.202238] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.206670] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.217524] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.223175] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.231020] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.290001] usb usb2: configuration #1 chosen from 1 choice
[14315330.295965] hub 2-0:1.0: USB hub found
[14315330.300082] hub 2-0:1.0: 10 ports detected
[14315330.379882] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.409888] USB Universal Host Controller Interface driver v3.0
[14315330.556145] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.732886] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.736710] usbcore: registered new interface driver usblp
[14315330.743197] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.749729] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.759911] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.765794] mice: PS/2 mouse device common for all mice
[14315330.794589] i2c /dev entries driver
[14315330.798566] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.804815] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.810317] it87: Found IT8716F chip at 0x290, revision 0
[14315330.816523] it87: in3 is VCC (+5V)
[14315330.820288] it87: in7 is VCCH (+5V Stand-By)
[14315330.836668] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.868735] md: raid1 personality registered for level 1
[14315330.873404] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.882674] Bluetooth: HCI USB driver ver 2.9
[14315330.976223] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.123334] usb 2-1: configuration #1 chosen from 1 choice
[14315331.382180] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.540000] usb 2-3: configuration #1 chosen from 1 choice
[14315331.808554] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.940004] usb 2-4: device descriptor read/64, error -62
[14315332.173337] usb 2-4: device descriptor read/64, error -62
[14315332.402156] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.533337] usb 2-4: device descriptor read/64, error -62
[14315332.766671] usb 2-4: device descriptor read/64, error -62
[14315332.995493] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.407390] usb 2-4: device not accepting address 6, error -62
[14315333.532695] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.944640] usb 2-4: device not accepting address 7, error -62
[14315333.950004] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.956498] usbcore: registered new interface driver hci_usb
[14315333.962672] Bluetooth: HCI UART driver ver 2.2
[14315333.968739] Bluetooth: HCI H4 protocol initialized
[14315333.973557] Bluetooth: HCI BCSP protocol initialized
[14315333.978883] cpuidle: using governor ladder
[14315333.983344] cpuidle: using governor menu
[14315333.993334] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315334.024608] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.045905] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.076513] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.098028] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.131364] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.141560] usbcore: registered new interface driver usbhid
[14315334.146883] usbhid: v2.6:USB HID core driver
[14315334.152895] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.159761] ALSA device list:
[14315334.163099] No soundcards found.
[14315334.164925] GACT probability on
[14315334.168436] Mirror/redirect action on
[14315334.172645] u32 classifier
[14315334.175798] Performance counters on
[14315334.179997] input device check on
[14315334.186592] Actions configured
[14315334.190751] IPv4 over IPv4 tunneling driver
[14315334.194811] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.200508] TCP bic registered
[14315334.203929] TCP cubic registered
[14315334.207517] TCP westwood registered
[14315334.211369] TCP htcp registered
[14315334.214872] TCP vegas registered
[14315334.219769] TCP yeah registered
[14315334.223275] Initializing XFRM netlink socket
[14315334.226913] NET: Registered protocol family 10
[14315334.233334] IPv6 over IPv4 tunneling driver
[14315334.237681] NET: Registered protocol family 17
[14315334.242496] NET: Registered protocol family 15
[14315334.247347] Bridge firewalling registered
[14315334.252534] Bluetooth: L2CAP ver 2.9
[14315334.256474] Bluetooth: L2CAP socket layer initialized
[14315334.260911] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.266327] Bluetooth: SCO socket layer initialized
[14315334.271249] Bluetooth: RFCOMM socket layer initialized
[14315334.276754] Bluetooth: RFCOMM TTY layer initialized
[14315334.281996] Bluetooth: RFCOMM ver 1.8
[14315334.286019] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.291686] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.299916] RPC: Registered udp transport module.
[14315334.303335] RPC: Registered tcp transport module.
[14315334.308419] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.315567] All bugs added by David S. Miller <davem@redhat.com>
[14315334.321940] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.332325] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.338338] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.343459] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.349398] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.355343] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.362984] md: Autodetecting RAID arrays.
[14315334.367449] md: Scanned 0 and added 0 devices.
[14315334.371557] md: autorun ...
[14315334.374891] md: ... autorun DONE.
[14315334.391967] kjournald starting. Commit interval 5 seconds
[14315334.397819] EXT3-fs: mounted filesystem with ordered data mode.
[14315334.404101] VFS: Mounted root (ext3 filesystem) readonly.
[14315334.409871] Freeing unused kernel memory: 256k freed
[14315335.297020] Marking TSC unstable due to cpufreq changes
[14315335.730012] Clocksource tsc unstable (delta = -255154532 ns)
[14315336.547459] scsi8 : pata_amd
[14315336.556004] scsi9 : pata_amd
[14315336.559980] ata9: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.569559] ata10: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.753712] ata9.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.774227] ata9.01: configured for UDMA/66
[14315336.792690] scsi 8:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.812244] sr1: scsi3-mmc drive: 15x/40x cd/rw xa/form2 cdda tray
[14315336.822030] sr 8:0:1:0: Attached scsi generic sg2 type 5
[14315336.836673] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315336.846671] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
[14315336.850017] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 22
[14315337.374170] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.383077] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.408097] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1201kHz
[14315337.416746] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315337.426145] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 21
[14315337.436674] ACPI: PCI Interrupt 0000:00:09.0[A] -> GSI 18 (level, low) -> IRQ 18
[14315337.443346] ALSA sound/pci/emu10k1/emu10k1_main.c:1748: vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315337.456880] Link [AMC1] -> GSI 21 (level, low) -> IRQ 21
[14315337.462937] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: <7>PCI: Setting latency timer of device 0000:00:09.0 to 64
[14315337.474998] Sound card name=SB Live 5.1
[14315337.990957] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315338.000093] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315339.206917] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315339.373498] EXT3 FS on sda5, internal journal
[14315343.910005] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315512.846677] Restarting system.
[ 0.000000] Linux version 2.6.26-rc2 (ranma@melchior) (gcc version 4.2.3 (Debian 4.2.3-5)) #6 PREEMPT Sun May 18 11:35:22 CEST 2008
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.104 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ 289c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316530] Calibrating delay using timer specific routine.. 4827.21 BogoMIPS (lpj=8041947)
[14315324.323022] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339621] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396296] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438519] ACPI: Interpreter enabled
[14315324.442547] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447303] ACPI: Using IOAPIC for interrupt routing
[14315324.464177] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469985] PCI: Transparent bridge - 0000:00:06.0
[14315324.538601] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559218] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585891] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605891] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612555] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.630527] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.637909] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.645287] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.653306] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.659217] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.665900] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.669972] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.675584] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.682239] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.686638] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.692240] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.698914] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.705578] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.711240] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.718319] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.725300] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.732141] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.738814] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.746565] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.753240] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.758814] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.765483] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.773222] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.779905] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.785480] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.789968] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.793301] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.796634] pnp: PnP ACPI init
[14315324.799968] ACPI: bus type pnp registered
[14315324.810627] pnp: PnP ACPI: found 13 devices
[14315324.815176] ACPI: ACPI bus type pnp unregistered
[14315324.820094] SCSI subsystem initialized
[14315324.824313] usbcore: registered new interface driver usbfs
[14315324.829968] usbcore: registered new interface driver hub
[14315324.833301] usbcore: registered new device driver usb
[14315324.836635] PCI: Using ACPI for IRQ routing
[14315324.839968] testing the IO APIC.......................
[14315324.843301]
[14315324.845351] .................................... done.
[14315324.860685] Bluetooth: Core ver 2.11
[14315324.864708] NET: Registered protocol family 31
[14315324.869516] Bluetooth: HCI device and connection manager initialized
[14315324.873301] Bluetooth: HCI socket layer initialized
[14315324.876634] DMAR:parse DMAR table failure.
[14315324.887858] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.894743] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.901628] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.908516] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.915405] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.922290] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.929184] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.935902] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.942615] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.949338] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.957269] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.964238] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.973193] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.980600] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.988007] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.995934] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315325.003388] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.011315] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.018288] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.026250] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.034015] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.041941] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.049894] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.057820] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.065770] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.074050] PCI: Bridge: 0000:00:06.0
[14315325.078085] IO window: 9000-9fff
[14315325.081858] MEM window: 0xfde00000-0xfdefffff
[14315325.086754] PREFETCH window: disabled.
[14315325.091046] PCI: Bridge: 0000:00:0a.0
[14315325.095076] IO window: 8000-8fff
[14315325.099729] MEM window: 0xfdd00000-0xfddfffff
[14315325.103500] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.110213] PCI: Bridge: 0000:00:0b.0
[14315325.114245] IO window: disabled.
[14315325.118017] MEM window: disabled.
[14315325.122946] PREFETCH window: disabled.
[14315325.126804] PCI: Bridge: 0000:00:0c.0
[14315325.130833] IO window: disabled.
[14315325.134600] MEM window: disabled.
[14315325.138458] PREFETCH window: disabled.
[14315325.142769] PCI: Bridge: 0000:00:0d.0
[14315325.146801] IO window: disabled.
[14315325.150573] MEM window: disabled.
[14315325.154423] PREFETCH window: disabled.
[14315325.158715] PCI: Bridge: 0000:00:0e.0
[14315325.163038] IO window: 6000-7fff
[14315325.166811] MEM window: 0xfdc00000-0xfdcfffff
[14315325.170857] PREFETCH window: disabled.
[14315325.175763] PCI: Bridge: 0000:00:0f.0
[14315325.179795] IO window: disabled.
[14315325.183566] MEM window: disabled.
[14315325.187417] PREFETCH window: disabled.
[14315325.191783] NET: Registered protocol family 2
[14315325.229002] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.237130] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.246670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.259886] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.266864] TCP reno registered
[14315325.278702] NET: Registered protocol family 1
[14315325.284351] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.291286] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.297709] fuse init (API version 7.9)
[14315325.302558] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.310222] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.317540] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.326190] io scheduler noop registered
[14315325.330478] io scheduler anticipatory registered
[14315325.335461] io scheduler deadline registered
[14315325.340092] io scheduler cfq registered (default)
[14315325.357112] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.362538] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.367654] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.373088] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.378525] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.383949] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.389391] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.394824] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.400251] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.405693] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.411118] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.416561] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.422095] assign_interrupt_mode Found MSI capability
[14315325.427487] assign_interrupt_mode Found MSI capability
[14315325.433108] assign_interrupt_mode Found MSI capability
[14315325.438688] assign_interrupt_mode Found MSI capability
[14315325.444251] assign_interrupt_mode Found MSI capability
[14315325.449836] assign_interrupt_mode Found MSI capability
[14315325.455611] input: Power Button (FF) as /class/input/input0
[14315325.461546] ACPI: Power Button (FF) [PWRF]
[14315325.466074] input: Power Button (CM) as /class/input/input1
[14315325.472006] ACPI: Power Button (CM) [PWRB]
[14315325.476568] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.482677] ACPI: Fan [FAN] (on)
[14315325.486384] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.493377] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.499642] ACPI: Thermal Zone [THRM] (40 C)
[14315325.525116] Real Time Clock Driver v1.12ac
[14315325.529584] Linux agpgart interface v0.103
[14315325.532404] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.542506] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.549179] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.555696] loop: module loaded
[14315325.559210] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.564192] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.570689] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.577143] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.583039] tun: Universal TUN/TAP device driver, 1.6
[14315325.589215] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.595842] Driver 'sd' needs updating - please use bus_type methods
[14315325.602579] Driver 'sr' needs updating - please use bus_type methods
[14315325.609799] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.615919] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.627010] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.635542] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.643321] scsi0 : ahci
[14315326.646316] scsi1 : ahci
[14315326.649311] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.658933] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.984916] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.308608] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.313818] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.319931] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.329945] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.335280] scsi2 : sata_nv
[14315327.338510] scsi3 : sata_nv
[14315327.341859] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.349261] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.827615] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.843335] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.846670] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.863111] ata3.00: configured for UDMA/133
[14315328.184651] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.212771] isa bounce pool size: 16 pages
[14315328.216734] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.224599] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.233109] sd 2:0:0:0: [sda] Write Protect is off
[14315328.237478] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.247000] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.254580] sd 2:0:0:0: [sda] Write Protect is off
[14315328.259791] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.269276] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.323288] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.330130] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.336268] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.342490] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.353291] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.358638] scsi4 : sata_nv
[14315328.361866] scsi5 : sata_nv
[14315328.365218] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.372623] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.697890] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.045558] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.073128] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.076678] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.087411] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.092739] scsi6 : sata_nv
[14315329.095968] scsi7 : sata_nv
[14315329.099315] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.106890] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.432324] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.918653] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.933312] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.952917] ata8.00: configured for UDMA/100
[14315329.969307] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315329.980002] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315329.987925] Uniform CD-ROM driver Revision: 3.20
[14315329.993069] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315329.999580] block2mtd: version $Revision: 1.30 $
[14315330.005787] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.011906] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.020034] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.025697] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.033567] ehci_hcd 0000:00:02.1: debug port 1
[14315330.039828] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.055050] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.069021] usb usb1: configuration #1 chosen from 1 choice
[14315330.073904] hub 1-0:1.0: USB hub found
[14315330.079943] hub 1-0:1.0: 10 ports detected
[14315330.185545] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.190004] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.200850] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.206494] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.214338] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.273335] usb usb2: configuration #1 chosen from 1 choice
[14315330.279300] hub 2-0:1.0: USB hub found
[14315330.283418] hub 2-0:1.0: 10 ports detected
[14315330.363216] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.393223] USB Universal Host Controller Interface driver v3.0
[14315330.539481] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.716235] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.720045] usbcore: registered new interface driver usblp
[14315330.726533] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.733067] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.743247] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.749128] mice: PS/2 mouse device common for all mice
[14315330.777922] i2c /dev entries driver
[14315330.781891] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.788138] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.793642] it87: Found IT8716F chip at 0x290, revision 0
[14315330.799837] it87: in3 is VCC (+5V)
[14315330.803602] it87: in7 is VCCH (+5V Stand-By)
[14315330.820001] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.852186] md: raid1 personality registered for level 1
[14315330.856737] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.865963] Bluetooth: HCI USB driver ver 2.9
[14315330.959504] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.106668] usb 2-1: configuration #1 chosen from 1 choice
[14315331.365515] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.523334] usb 2-3: configuration #1 chosen from 1 choice
[14315331.791887] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.923338] usb 2-4: device descriptor read/64, error -62
[14315332.156671] usb 2-4: device descriptor read/64, error -62
[14315332.385515] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.516671] usb 2-4: device descriptor read/64, error -62
[14315332.750004] usb 2-4: device descriptor read/64, error -62
[14315332.978851] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.390725] usb 2-4: device not accepting address 6, error -62
[14315333.516027] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.927978] usb 2-4: device not accepting address 7, error -62
[14315333.933337] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.939825] usbcore: registered new interface driver hci_usb
[14315333.945995] Bluetooth: HCI UART driver ver 2.2
[14315333.952061] Bluetooth: HCI H4 protocol initialized
[14315333.956877] Bluetooth: HCI BCSP protocol initialized
[14315333.962203] cpuidle: using governor ladder
[14315333.966663] cpuidle: using governor menu
[14315333.976667] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315334.007940] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.029233] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.059844] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.081366] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.114693] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.124887] usbcore: registered new interface driver usbhid
[14315334.130213] usbhid: v2.6:USB HID core driver
[14315334.136227] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.143094] ALSA device list:
[14315334.146431] No soundcards found.
[14315334.148254] GACT probability on
[14315334.151765] Mirror/redirect action on
[14315334.155975] u32 classifier
[14315334.159128] Performance counters on
[14315334.163328] input device check on
[14315334.169922] Actions configured
[14315334.174081] IPv4 over IPv4 tunneling driver
[14315334.178142] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.183841] TCP bic registered
[14315334.187260] TCP cubic registered
[14315334.190848] TCP westwood registered
[14315334.194698] TCP htcp registered
[14315334.198203] TCP vegas registered
[14315334.203098] TCP yeah registered
[14315334.206602] Initializing XFRM netlink socket
[14315334.210240] NET: Registered protocol family 10
[14315334.216668] IPv6 over IPv4 tunneling driver
[14315334.221013] NET: Registered protocol family 17
[14315334.225821] NET: Registered protocol family 15
[14315334.230670] Bridge firewalling registered
[14315334.235847] Bluetooth: L2CAP ver 2.9
[14315334.239786] Bluetooth: L2CAP socket layer initialized
[14315334.244214] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.249630] Bluetooth: SCO socket layer initialized
[14315334.254543] Bluetooth: RFCOMM socket layer initialized
[14315334.260049] Bluetooth: RFCOMM TTY layer initialized
[14315334.265292] Bluetooth: RFCOMM ver 1.8
[14315334.269315] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.274982] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.280348] RPC: Registered udp transport module.
[14315334.286542] RPC: Registered tcp transport module.
[14315334.291716] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.298863] All bugs added by David S. Miller <davem@redhat.com>
[14315334.305229] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.315605] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.321620] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.326740] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.332685] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.338629] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.346269] md: Autodetecting RAID arrays.
[14315334.350736] md: Scanned 0 and added 0 devices.
[14315334.354843] md: autorun ...
[14315334.358176] md: ... autorun DONE.
[14315334.378632] kjournald starting. Commit interval 5 seconds
[14315334.383342] EXT3-fs: mounted filesystem with ordered data mode.
[14315334.389657] VFS: Mounted root (ext3 filesystem) readonly.
[14315334.395955] Freeing unused kernel memory: 256k freed
[14315335.297594] Marking TSC unstable due to cpufreq changes
[14315335.730019] Clocksource tsc unstable (delta = -254354539 ns)
[14315336.187994] scsi8 : pata_amd
[14315336.206951] scsi9 : pata_amd
[14315336.211289] ata9: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.230968] ata10: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.450486] ata9.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.486799] ata9.01: configured for UDMA/66
[14315336.520587] scsi 8:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.533339] sr1: scsi3-mmc drive: 15x/40x cd/rw xa/form2 cdda tray
[14315336.554239] sr 8:0:1:0: Attached scsi generic sg2 type 5
[14315336.595616] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1200kHz
[14315336.609411] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315336.615888] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315336.626735] ALSA sound/pci/emu10k1/emu10k1_main.c:1748: vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315336.640098] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: Sound card name=SB Live 5.1
[14315336.815269] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315336.826591] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 22
[14315336.830011] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 22 (level, low) -> IRQ 22
[14315337.364191] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.373122] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.386672] ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 21
[14315337.392797] ACPI: PCI Interrupt 0000:00:09.0[A] -> Link [AMC1] -> GSI 21 (level, low) -> IRQ 21
[14315337.917670] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315337.926821] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315339.234610] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315339.384616] EXT3 FS on sda5, internal journal
[14315344.014128] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315372.154367] PM: Hibernation mode set to 'platform'
[14315372.166833] PM: Marking nosave pages: 000000000009f000 - 0000000000100000
[14315372.174210] PM: Basic memory bitmaps created
[14315372.178928] PM: Syncing filesystems ... done.
[14315372.200197] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315372.208527] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315372.216672] PM: Shrinking memory... \b-\bdone (0 pages freed)
[14315372.367805] PM: Freed 0 kbytes in 0.14 seconds (0.00 MB/s)
[14315372.374473] Suspending console(s)
[14315372.380623] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[14315372.400001] ACPI handle has no context!
[14315372.400001] serial 00:08: disabled
[14315372.426722] ACPI: PCI interrupt for device 0000:06:00.0 disabled
[14315372.433749] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315372.433760] ACPI handle has no context!
[14315372.473374] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315372.473400] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315372.473426] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315372.473462] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315372.473472] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315372.473607] ACPI: Preparing to enter system sleep state S4
[14315372.474088] Extended CMOS year: 2000
[14315372.474134] PM: Creating hibernation image:
[14315372.476670] PM: Need to copy 42177 pages
[14315372.476670] PM: Normal pages needed: 42177 + 1024 + 38, available pages: 481725
[14315372.476670] PM: Hibernation image created (42177 pages copied)
[14315372.476670] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315372.476670] svm_cpu_init: svm_data is NULL on 0
[14315372.476670] Extended CMOS year: 2000
[14315372.486423] ACPI: Unable to turn cooling device [ffff81007f842890] 'off'
[14315372.486474] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315372.486478] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315372.506677] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315372.506681] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315372.506695] PM: Writing back config space on device 0000:00:04.0 at offset 1 (was b00001, writing b00005)
[14315372.506702] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315372.506715] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14315372.506721] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315372.506724] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315372.506736] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14315372.506742] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315372.506746] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315372.506758] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14315372.506764] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315372.506767] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315372.506780] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315372.507902] ata10: port disabled. ignoring.
[14315372.520012] PM: Writing back config space on device 0000:00:08.0 at offset f (was 14010100, writing 1401010a)
[14315372.520017] PM: Writing back config space on device 0000:00:08.0 at offset 7 (was 0, writing fe028000)
[14315372.520020] PM: Writing back config space on device 0000:00:08.0 at offset 6 (was 0, writing fe029000)
[14315372.520022] PM: Writing back config space on device 0000:00:08.0 at offset 5 (was 1, writing b001)
[14315372.520025] PM: Writing back config space on device 0000:00:08.0 at offset 4 (was 0, writing fe02a000)
[14315372.520028] PM: Writing back config space on device 0000:00:08.0 at offset 1 (was b00000, writing b00007)
[14315372.520243] eth0: no link during initialization.
[14315372.533345] PM: Writing back config space on device 0000:00:09.0 at offset f (was 14010100, writing 1401010a)
[14315372.533349] PM: Writing back config space on device 0000:00:09.0 at offset 7 (was 0, writing fe025000)
[14315372.533352] PM: Writing back config space on device 0000:00:09.0 at offset 6 (was 0, writing fe026000)
[14315372.533354] PM: Writing back config space on device 0000:00:09.0 at offset 5 (was 1, writing ac01)
[14315372.533357] PM: Writing back config space on device 0000:00:09.0 at offset 4 (was 0, writing fe027000)
[14315372.533360] PM: Writing back config space on device 0000:00:09.0 at offset 1 (was b00000, writing b00007)
[14315372.533586] eth1: no link during initialization.
[14315372.533598] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315372.533610] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[14315372.533622] PCI: Setting latency timer of device 0000:00:0c.0 to 64
[14315372.533633] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[14315372.533644] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315372.533656] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[14315372.546684] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315372.554236] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 100003, writing 100007)
[14315372.554247] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315372.554251] PCI: Setting latency timer of device 0000:06:00.0 to 64
[14315372.557235] serial 00:08: activated
[14315372.557269] sd 2:0:0:0: [sda] Starting disk
[14315372.690357] ata9.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315372.690360] ata9.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315372.690379] ata9: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315372.703436] ata9.01: configured for UDMA/66
[14315372.826679] ata7: SATA link down (SStatus 0 SControl 300)
[14315372.837200] ata4: SATA link down (SStatus 0 SControl 300)
[14315372.847724] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315372.847780] ata6: SATA link down (SStatus 0 SControl 300)
[14315372.858387] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315372.858420] ata5: SATA link down (SStatus 0 SControl 300)
[14315372.868993] ata1: SATA link down (SStatus 0 SControl 300)
[14315372.869092] ata8.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315372.869157] ata3.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315372.869160] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315372.876679] ata2: SATA link down (SStatus 0 SControl 300)
[14315372.880068] ata8.00: configured for UDMA/100
[14315372.880168] ata3.00: configured for UDMA/133
[14315372.880225] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315372.880238] sd 2:0:0:0: [sda] Write Protect is off
[14315372.880240] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315372.880261] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315373.700276] PM: writing image.
[14315373.704044] PM: Free swap pages: 977947
[14315373.711976] PM: Saving image data pages (42260 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315375.750167] PM: Wrote 169040 kbytes in 2.03 seconds (83.27 MB/s)
[14315375.760237] PM: S|
[14315376.023595] Suspending console(s)
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7B80, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE30C0, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEC540, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3240, 92AD (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEC740, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEC8C0, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEC940, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEC680, 007C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-8eb01f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 514863
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.112 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ 2894000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2056088k/2096000k available (4489k kernel code, 39052k reserved, 1754k data, 256k init)
[14315324.316530] Calibrating delay using timer specific routine.. 4827.21 BogoMIPS (lpj=8041949)
[14315324.323021] Mount-cache hash table entries: 256
[14315324.326661] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.329994] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.333327] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.339621] ACPI: Core revision 20080321
[14315324.353326] enabled ExtINT on CPU#0
[14315324.356659] ENABLING IO-APIC IRQs
[14315324.359992] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.396295] Using local APIC timer interrupts.
[14315324.403323] Detected 12.557 MHz APIC timer.
[14315324.406656] net_namespace: 1160 bytes
[14315324.409989] NET: Registered protocol family 16
[14315324.413322] No dock devices found.
[14315324.416655] TOM: 0000000080000000 aka 2048M
[14315324.419988] ACPI: bus type pci registered
[14315324.423321] PCI: Using configuration type 1 for base access
[14315324.438520] ACPI: Interpreter enabled
[14315324.442549] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.447303] ACPI: Using IOAPIC for interrupt routing
[14315324.464040] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.469921] PCI: Transparent bridge - 0000:00:06.0
[14315324.538606] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.546647] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.553313] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.559228] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.566645] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.573312] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.579978] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.585899] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.593310] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.599977] ACPI: PCI Interrupt Link [LUBA] (IRQs *5 7 9 10 11 14 15)
[14315324.605890] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.612555] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.616642] ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.623308] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.630526] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 *11 14 15)
[14315324.637917] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 *10 11 14 15)
[14315324.645304] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.653306] ACPI: PCI Interrupt Link [LSID] (IRQs 5 7 9 *10 11 14 15)
[14315324.659235] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 10 *11 14 15)
[14315324.665894] ACPI: PCI Interrupt Link [LSA2] (IRQs *5 7 9 10 11 14 15)
[14315324.669972] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.675585] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.682242] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.686638] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.692239] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.698904] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.705571] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.711249] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.718328] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.725318] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.732150] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.738824] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.746575] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0, disabled.
[14315324.753221] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.758816] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.765456] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.773215] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.779888] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.785492] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.789968] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.793301] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.796634] pnp: PnP ACPI init
[14315324.799968] ACPI: bus type pnp registered
[14315324.810364] pnp: PnP ACPI: found 13 devices
[14315324.814913] ACPI: ACPI bus type pnp unregistered
[14315324.820061] SCSI subsystem initialized
[14315324.824281] usbcore: registered new interface driver usbfs
[14315324.829968] usbcore: registered new interface driver hub
[14315324.833301] usbcore: registered new device driver usb
[14315324.836635] PCI: Using ACPI for IRQ routing
[14315324.839968] testing the IO APIC.......................
[14315324.843301]
[14315324.845357] .................................... done.
[14315324.860722] Bluetooth: Core ver 2.11
[14315324.864743] NET: Registered protocol family 31
[14315324.869552] Bluetooth: HCI device and connection manager initialized
[14315324.873301] Bluetooth: HCI socket layer initialized
[14315324.876634] DMAR:parse DMAR table failure.
[14315324.887859] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315324.894742] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315324.901629] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315324.908515] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315324.915403] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315324.922290] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315324.929184] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315324.935901] system 00:02: ioport range 0x800-0x87f has been reserved
[14315324.942615] system 00:02: ioport range 0x290-0x297 has been reserved
[14315324.949339] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315324.957269] system 00:0c: iomem range 0xd2800-0xd3fff has been reserved
[14315324.964247] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315324.973201] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315324.980607] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315324.988013] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315324.995938] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315325.003394] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.011319] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.018294] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.026258] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.034024] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.041951] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.049901] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.057826] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.065778] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.074055] PCI: Bridge: 0000:00:06.0
[14315325.078091] IO window: 9000-9fff
[14315325.081862] MEM window: 0xfde00000-0xfdefffff
[14315325.086758] PREFETCH window: disabled.
[14315325.091051] PCI: Bridge: 0000:00:0a.0
[14315325.095083] IO window: 8000-8fff
[14315325.099738] MEM window: 0xfdd00000-0xfddfffff
[14315325.103515] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.110231] PCI: Bridge: 0000:00:0b.0
[14315325.114261] IO window: disabled.
[14315325.118026] MEM window: disabled.
[14315325.122954] PREFETCH window: disabled.
[14315325.126820] PCI: Bridge: 0000:00:0c.0
[14315325.130852] IO window: disabled.
[14315325.134625] MEM window: disabled.
[14315325.138484] PREFETCH window: disabled.
[14315325.142801] PCI: Bridge: 0000:00:0d.0
[14315325.146833] IO window: disabled.
[14315325.150606] MEM window: disabled.
[14315325.154464] PREFETCH window: disabled.
[14315325.158758] PCI: Bridge: 0000:00:0e.0
[14315325.163082] IO window: 6000-7fff
[14315325.166847] MEM window: 0xfdc00000-0xfdcfffff
[14315325.170890] PREFETCH window: disabled.
[14315325.175795] PCI: Bridge: 0000:00:0f.0
[14315325.179825] IO window: disabled.
[14315325.183589] MEM window: disabled.
[14315325.187448] PREFETCH window: disabled.
[14315325.191814] NET: Registered protocol family 2
[14315325.229000] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.237127] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.246670] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.259891] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.266866] TCP reno registered
[14315325.278699] NET: Registered protocol family 1
[14315325.284354] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.291285] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.297709] fuse init (API version 7.9)
[14315325.302556] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.310220] msgmni has been set to 4016 for ipc namespace ffffffff807eda90
[14315325.317538] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.326187] io scheduler noop registered
[14315325.330478] io scheduler anticipatory registered
[14315325.335460] io scheduler deadline registered
[14315325.340090] io scheduler cfq registered (default)
[14315325.357122] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.362552] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.367669] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.373101] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.378539] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.383966] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.389406] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.394839] pci 0000:00:0b.0: Enabling HT MSI Mapping
[14315325.400264] pci 0000:00:0c.0: Enabling HT MSI Mapping
[14315325.405707] pci 0000:00:0d.0: Enabling HT MSI Mapping
[14315325.411131] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.416574] pci 0000:00:0f.0: Enabling HT MSI Mapping
[14315325.422109] assign_interrupt_mode Found MSI capability
[14315325.427502] assign_interrupt_mode Found MSI capability
[14315325.433124] assign_interrupt_mode Found MSI capability
[14315325.438703] assign_interrupt_mode Found MSI capability
[14315325.444267] assign_interrupt_mode Found MSI capability
[14315325.449850] assign_interrupt_mode Found MSI capability
[14315325.455627] input: Power Button (FF) as /class/input/input0
[14315325.461561] ACPI: Power Button (FF) [PWRF]
[14315325.466090] input: Power Button (CM) as /class/input/input1
[14315325.472028] ACPI: Power Button (CM) [PWRB]
[14315325.476593] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.482698] ACPI: Fan [FAN] (on)
[14315325.486407] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.493401] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.499668] ACPI: Thermal Zone [THRM] (40 C)
[14315325.525086] Real Time Clock Driver v1.12ac
[14315325.529550] Linux agpgart interface v0.103
[14315325.532400] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.542502] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.549175] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.555688] loop: module loaded
[14315325.559205] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.564189] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.570684] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.577136] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.583034] tun: Universal TUN/TAP device driver, 1.6
[14315325.589212] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.595842] Driver 'sd' needs updating - please use bus_type methods
[14315325.602577] Driver 'sr' needs updating - please use bus_type methods
[14315325.609797] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315325.615916] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315326.627016] ahci 0000:06:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[14315326.635540] ahci 0000:06:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[14315326.643310] scsi0 : ahci
[14315326.646309] scsi1 : ahci
[14315326.649297] ata1: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 16
[14315326.658925] ata2: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 16
[14315326.984915] ata1: SATA link down (SStatus 0 SControl 300)
[14315327.308610] ata2: SATA link down (SStatus 0 SControl 300)
[14315327.313817] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315327.319931] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315327.329946] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315327.335280] scsi2 : sata_nv
[14315327.338509] scsi3 : sata_nv
[14315327.341858] ata3: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315327.349259] ata4: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315327.827605] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315327.860001] ata3.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315327.863336] ata3.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315327.879784] ata3.00: configured for UDMA/133
[14315328.201320] ata4: SATA link down (SStatus 0 SControl 300)
[14315328.229435] isa bounce pool size: 16 pages
[14315328.233401] scsi 2:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315328.241268] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.249780] sd 2:0:0:0: [sda] Write Protect is off
[14315328.254148] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.263670] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315328.271251] sd 2:0:0:0: [sda] Write Protect is off
[14315328.276461] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315328.285946] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315328.364934] sd 2:0:0:0: [sda] Attached SCSI disk
[14315328.371268] sd 2:0:0:0: Attached scsi generic sg0 type 0
[14315328.378335] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315328.384458] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315328.393681] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315328.399650] scsi4 : sata_nv
[14315328.402877] scsi5 : sata_nv
[14315328.406229] ata5: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315328.413636] ata6: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315328.739046] ata5: SATA link down (SStatus 0 SControl 300)
[14315329.072240] ata6: SATA link down (SStatus 0 SControl 300)
[14315329.099800] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315329.103345] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315329.114072] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315329.119397] scsi6 : sata_nv
[14315329.122626] scsi7 : sata_nv
[14315329.125977] ata7: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315329.133550] ata8: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315329.458987] ata7: SATA link down (SStatus 0 SControl 300)
[14315329.945324] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315329.959980] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315329.979585] ata8.00: configured for UDMA/100
[14315329.995934] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315330.006668] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315330.014593] Uniform CD-ROM driver Revision: 3.20
[14315330.019739] sr 7:0:0:0: Attached scsi generic sg1 type 5
[14315330.026194] block2mtd: version $Revision: 1.30 $
[14315330.032398] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315330.038520] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315330.047753] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315330.053414] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315330.061282] ehci_hcd 0000:00:02.1: debug port 1
[14315330.066441] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315330.081716] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315330.095685] usb usb1: configuration #1 chosen from 1 choice
[14315330.100569] hub 1-0:1.0: USB hub found
[14315330.106610] hub 1-0:1.0: 10 ports detected
[14315330.212212] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315330.216670] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315330.227524] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315330.233169] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315330.241011] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315330.300001] usb usb2: configuration #1 chosen from 1 choice
[14315330.305965] hub 2-0:1.0: USB hub found
[14315330.310084] hub 2-0:1.0: 10 ports detected
[14315330.389881] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315330.419887] USB Universal Host Controller Interface driver v3.0
[14315330.566155] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315330.742876] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315330.746711] usbcore: registered new interface driver usblp
[14315330.753196] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[14315330.759730] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[14315330.769902] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315330.775782] mice: PS/2 mouse device common for all mice
[14315330.804591] i2c /dev entries driver
[14315330.808566] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315330.814814] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315330.820315] it87: Found IT8716F chip at 0x290, revision 0
[14315330.826520] it87: in3 is VCC (+5V)
[14315330.830294] it87: in7 is VCCH (+5V Stand-By)
[14315330.846668] input: AT Translated Set 2 keyboard as /class/input/input2
[14315330.879234] md: raid1 personality registered for level 1
[14315330.883403] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315330.892669] Bluetooth: HCI USB driver ver 2.9
[14315330.986210] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315331.133334] usb 2-1: configuration #1 chosen from 1 choice
[14315331.392186] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315331.550000] usb 2-3: configuration #1 chosen from 1 choice
[14315331.818549] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315331.950004] usb 2-4: device descriptor read/64, error -62
[14315332.183338] usb 2-4: device descriptor read/64, error -62
[14315332.412141] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315332.543337] usb 2-4: device descriptor read/64, error -62
[14315332.776671] usb 2-4: device descriptor read/64, error -62
[14315333.005475] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315333.417401] usb 2-4: device not accepting address 6, error -62
[14315333.542700] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.954657] usb 2-4: device not accepting address 7, error -62
[14315333.960004] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.966491] usbcore: registered new interface driver hci_usb
[14315333.972664] Bluetooth: HCI UART driver ver 2.2
[14315333.978731] Bluetooth: HCI H4 protocol initialized
[14315333.983548] Bluetooth: HCI BCSP protocol initialized
[14315333.988871] cpuidle: using governor ladder
[14315333.993332] cpuidle: using governor menu
[14315334.003334] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input3
[14315334.034620] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315334.055900] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315334.086496] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.108027] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input5
[14315334.141346] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315334.151542] usbcore: registered new interface driver usbhid
[14315334.156882] usbhid: v2.6:USB HID core driver
[14315334.162895] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315334.169762] ALSA device list:
[14315334.173099] No soundcards found.
[14315334.174923] GACT probability on
[14315334.178434] Mirror/redirect action on
[14315334.182643] u32 classifier
[14315334.185796] Performance counters on
[14315334.189994] input device check on
[14315334.196591] Actions configured
[14315334.200749] IPv4 over IPv4 tunneling driver
[14315334.204809] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315334.210509] TCP bic registered
[14315334.213927] TCP cubic registered
[14315334.217517] TCP westwood registered
[14315334.221366] TCP htcp registered
[14315334.224871] TCP vegas registered
[14315334.229768] TCP yeah registered
[14315334.233272] Initializing XFRM netlink socket
[14315334.236909] NET: Registered protocol family 10
[14315334.243335] IPv6 over IPv4 tunneling driver
[14315334.247680] NET: Registered protocol family 17
[14315334.252488] NET: Registered protocol family 15
[14315334.257338] Bridge firewalling registered
[14315334.262514] Bluetooth: L2CAP ver 2.9
[14315334.266454] Bluetooth: L2CAP socket layer initialized
[14315334.270883] Bluetooth: SCO (Voice Link) ver 0.5
[14315334.276299] Bluetooth: SCO socket layer initialized
[14315334.281213] Bluetooth: RFCOMM socket layer initialized
[14315334.286720] Bluetooth: RFCOMM TTY layer initialized
[14315334.291961] Bluetooth: RFCOMM ver 1.8
[14315334.295984] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315334.301651] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315334.307017] RPC: Registered udp transport module.
[14315334.313210] RPC: Registered tcp transport module.
[14315334.318383] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315334.325524] All bugs added by David S. Miller <davem@redhat.com>
[14315334.331898] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315334.342280] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315334.348297] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315334.353416] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315334.359351] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315334.365288] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315334.378066] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315334.385893] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315334.401111] PM: Loading image data pages (42260 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%Marking TSC unstable due to cpufreq changes
[14315335.302783] \b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%<4>Clocksource tsc unstable (delta = -253700290 ns)
[14315335.743340] \b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315336.766775] PM: Read 169040 kbytes in 2.35 seconds (71.93 MB/s)
[14315336.773008] Suspending console(s)
[14315372.380623] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[14315372.400001] ACPI handle has no context!
[14315372.400001] serial 00:08: disabled
[14315372.426722] ACPI: PCI interrupt for device 0000:06:00.0 disabled
[14315372.433749] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315372.433760] ACPI handle has no context!
[14315372.473374] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315372.473400] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315372.473426] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315372.473462] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315372.473472] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315372.473607] ACPI: Preparing to enter system sleep state S4
[14315372.474088] Extended CMOS year: 2000
[14315372.474134] PM: Creating hibernation image:
[14315372.476670] PM: Need to copy 42177 pages
[14315372.476670] PM: Normal pages needed: 42177 + 1024 + 38, available pages: 481725
[14315372.476670] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315372.476670] svm_cpu_init: svm_data is NULL on 0
[14315372.476670] Extended CMOS year: 2000
[14315372.486394] ACPI: Unable to turn cooling device [ffff81007f842890] 'off'
[14315372.486444] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315372.486449] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315372.537518] usb usb2: root hub lost power or was reset
[14315372.537524] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315372.537528] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315372.537537] usb usb1: root hub lost power or was reset
[14315372.537541] ehci_hcd 0000:00:02.1: debug port 1
[14315372.537543] PCI: cache line size of 64 is not supported by device 0000:00:02.1
[14315372.537550] PM: Writing back config space on device 0000:00:04.0 at offset b (was 82391043, writing 8239f043)
[14315372.537558] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315372.537571] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14315372.537578] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315372.537581] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315372.537593] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14315372.537599] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315372.537602] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315372.537614] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14315372.537620] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315372.537623] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315372.537636] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315372.540713] ata10: port disabled. ignoring.
[14315372.550227] eth0: no link during initialization.
[14315372.563683] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315372.563696] PCI: Setting latency timer of device 0000:00:0b.0 to 64
[14315372.563707] PCI: Setting latency timer of device 0000:00:0c.0 to 64
[14315372.563719] PCI: Setting latency timer of device 0000:00:0d.0 to 64
[14315372.563730] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315372.563742] PCI: Setting latency timer of device 0000:00:0f.0 to 64
[14315372.564039] br0: port 2(eth1) entering learning state
[14315372.576716] PM: Writing back config space on device 0000:01:08.0 at offset 1 (was 2900005, writing 2900001)
[14315372.576726] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315372.584286] PM: Writing back config space on device 0000:06:00.0 at offset 1 (was 100003, writing 100007)
[14315372.584297] ACPI: PCI Interrupt 0000:06:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315372.584301] PCI: Setting latency timer of device 0000:06:00.0 to 64
[14315372.587247] serial 00:08: activated
[14315372.587278] sd 2:0:0:0: [sda] Starting disk
[14315372.723691] ata9.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315372.723693] ata9.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315372.723713] ata9: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315372.736770] ata9.01: configured for UDMA/66
[14315372.856680] ata5: SATA link down (SStatus 0 SControl 300)
[14315372.867205] ata4: SATA link down (SStatus 0 SControl 300)
[14315372.877729] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315372.877786] ata6: SATA link down (SStatus 0 SControl 300)
[14315372.888391] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315372.888423] ata7: SATA link down (SStatus 0 SControl 300)
[14315372.898997] ata1: SATA link down (SStatus 0 SControl 300)
[14315372.899097] ata8.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315372.899162] ata3.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315372.899165] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315372.906679] ata2: SATA link down (SStatus 0 SControl 300)
[14315372.910068] ata8.00: configured for UDMA/100
[14315372.910168] ata3.00: configured for UDMA/133
[14315372.910224] sd 2:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315372.910238] sd 2:0:0:0: [sda] Write Protect is off
[14315372.910240] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315372.910261] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315373.563339] br0: topology change detected, propagating
[14315373.563342] br0: port 2(eth1) entering forwarding state
[14315373.650009] usb 2-1: reset low speed USB device using ohci_hcd and address 2
[14315374.220008] usb 2-3: reset low speed USB device using ohci_hcd and address 3
[14315375.075625] PM: Image restored successfully.
[14315375.127302] Restarting tasks ... done.
[14315375.137874] PM: Basic memory bitmaps freed
[14315375.496675] usb 2-4: device descriptor read/64, error -62
[14315375.730007] usb 2-4: device descriptor read/64, error -62
[14315376.083341] usb 2-4: device descriptor read/64, error -62
[14315376.316674] usb 2-4: device descriptor read/64, error -62
[14315376.950007] usb 2-4: device not accepting address 10, error -62
[14315377.480010] usb 2-4: device not accepting address 11, error -62
[14315377.489893] hub 2-0:1.0: unable to enumerate USB device on port 4
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-18 15:09 ` [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
@ 2008-05-20 22:39 ` Rafael J. Wysocki
2008-05-25 15:04 ` Tobias Diedrich
1 sibling, 0 replies; 26+ messages in thread
From: Rafael J. Wysocki @ 2008-05-20 22:39 UTC (permalink / raw)
To: Tobias Diedrich; +Cc: netdev, linux-kernel, Ayaz Abdulla, Stephen Hemminger
On Sunday, 18 of May 2008, Tobias Diedrich wrote:
> Tobias Diedrich wrote:
> > Note that so far this is only tested on my system with hibernate
> > using the 'shutdown' method.
>
> Ok, I've run tests now:
>
> First Windoze:
> Windoze, Standby (equiv. to Linux 'mem' state): WOL borked, resumes fine
> Windoze, Hibernate: WOL borked, resumes fine
>
> Linux, unpatched:
> Hibernate, shutdown method: Works with known caveats
> Hibernate, platform method: WOL borked,
That may be worth some investigation. However, since that doesn't work on
Windows too, I suspect the platform is slightly broken.
> resumes fine
>
> Linux, patched:
> Hibernate, shutdown method: Works
> Hibernate, platform method: WOL borked, resumes fine
> Suspend ('standby' state):
> WOL borked, USB borked after resume, kernel freeze
> Suspend ('mem' state, text console):
> WOL borked, VGA stays dark, otherwise working
You can try s2ram to bring the VGA to life, I think
(http://suspend.sf.net/s2ram-support.html).
> Suspend ('mem' state, radeonfb):
> WOL borked, VGA stays dark, userspace dead after resume (but pingable)
>
> Summary: I suspect my BIOS sucks
That's possible ...
> Version: ASUS M2N-SLI DELUXE ACPI BIOS Revision 0903
> Release Date: 02/13/2007
>
> 1 point for Linux, 0 points for Windows, Linux wins ;)
Thanks,
Rafael
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 1/4] Restore multicast settings on resume
2008-05-18 13:00 ` [PATCH 1/4] Restore multicast settings on resume Tobias Diedrich
@ 2008-05-22 10:21 ` Jeff Garzik
0 siblings, 0 replies; 26+ messages in thread
From: Jeff Garzik @ 2008-05-22 10:21 UTC (permalink / raw)
To: Tobias Diedrich, netdev, linux-kernel, Ayaz Abdulla,
Rafael J. Wysocki, Stephen
Tobias Diedrich wrote:
> From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
>
> nv_open() resets multicast settings, call nv_set_multicast(dev) to restore them.
> (Maybe this should rather be moved into nv_open())
>
> Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
applied
Ayaz, have you reviewed the other patches in this series?
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-18 15:09 ` [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
2008-05-20 22:39 ` Rafael J. Wysocki
@ 2008-05-25 15:04 ` Tobias Diedrich
2008-05-25 18:13 ` Tobias Diedrich
1 sibling, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-25 15:04 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
Tobias Diedrich wrote:
> First Windoze:
> Windoze, Standby (equiv. to Linux 'mem' state): WOL borked, resumes fine
> Windoze, Hibernate: WOL borked, resumes fine
I have to correct myself on this:
I ran the above test an a japanese version of Windows (where I have
some difficulty reading all the technical texts)
I've retested this on an english version of Windows and
found that I accidentally enabled one checkbox, which said:
"Only allow management stations to bring the computer out of standby"
If I disable that one, I can wakeup the machine without problems.
So my BIOS is not as borked as I thought and it should be possible
to wake up the machine even with platform. Further debugging will
have to wait until at least next weekend though (maybe longer)...
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-25 15:04 ` Tobias Diedrich
@ 2008-05-25 18:13 ` Tobias Diedrich
2008-05-27 6:21 ` Tobias Diedrich
0 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-25 18:13 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
Tobias Diedrich wrote:
> So my BIOS is not as borked as I thought and it should be possible
> to wake up the machine even with platform. Further debugging will
> have to wait until at least next weekend though (maybe longer)...
Or maybe it doesn't have to wait, I was just too curious:
Summary first: I got platform mode to work!
After grepping and reading through kernel/power/disk.c and
(rather obfuscated) drivers/acpi/.* code, and reading up on
ACPI _GPE (General Purpose Event?), and having a look at my DSDT I
noticed two things:
1) The network controllers are assigned to their own _GPE bits(pins?):
|[...]
| Scope (\_GPE)
| {
|[...]
| Method (_L0B, 0, NotSerialized)
| {
| Notify (\_SB.PCI0.MMAC, 0x02)
| }
|
| Method (_L0A, 0, NotSerialized)
| {
| Notify (\_SB.PCI0.MAC1, 0x02)
| }
|[...]
2) drivers/acpi/sleep/proc.c registers a 'wakeup' file:
| proc_create("wakeup", S_IFREG | S_IRUGO | S_IWUSR,
| acpi_root_dir, &acpi_system_wakeup_device_fops);
And I then remembered that someone said in
http://bugzilla.kernel.org/show_bug.cgi?id=8381
it works for him if he writes $MAGICVALUE into a proc file.
And yes, if I write 'MMAC' and 'MAC1' into /proc/acpi/wakeup, then
wake-on-lan works even in platform mode.
So...
AFAICS this bit of setup magic should not be required, because:
1) /proc/acpi/wakeup knows which pci device is associated to each GPE bit
|ranma@melchior:~$ cat /proc/acpi/wakeup
|Device S-state Status Sysfs node
|HUB0 S5 disabled pci:0000:00:06.0
|XVR0 S5 disabled
|XVR1 S5 disabled pci:0000:00:0e.0
|XVR2 S5 disabled
|XVR3 S5 disabled
|XVR4 S5 disabled
|XVR5 S5 disabled pci:0000:00:0a.0
|UAR1 S5 disabled pnp:00:09
|PS2K S4 disabled pnp:00:0b
|USB0 S4 disabled pci:0000:00:02.0
|USB2 S4 disabled pci:0000:00:02.1
|AZAD S5 disabled pci:0000:00:06.1
|MMAC S5 enabled pci:0000:00:08.0
|MAC1 S5 enabled pci:0000:00:09.0
(values after manually enabling MMAC and MAC1)
2) kernel/power/disk.c calls hibernation_ops->enter(), which is
acpi_suspend_enter, which calls acpi_enable_wakeup_device, which
sets up GPE wakup bits. This _should_ take care of enabling MMAC
and MAC1 automatically, but apparently does not work correctly at
some point.
I guess someone more knowledgable in ACPI stuff should have a look
at this.
Hope that helps,
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-25 18:13 ` Tobias Diedrich
@ 2008-05-27 6:21 ` Tobias Diedrich
2008-05-27 21:32 ` David Brownell
2008-05-31 22:12 ` Tobias Diedrich
0 siblings, 2 replies; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-27 6:21 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, Davi
Tobias Diedrich wrote:
> Tobias Diedrich wrote:
> > So my BIOS is not as borked as I thought and it should be possible
> > to wake up the machine even with platform. Further debugging will
> > have to wait until at least next weekend though (maybe longer)...
>
> Or maybe it doesn't have to wait, I was just too curious:
>
> Summary first: I got platform mode to work!
>
> After grepping and reading through kernel/power/disk.c and
> (rather obfuscated) drivers/acpi/.* code, and reading up on
> ACPI _GPE (General Purpose Event?), and having a look at my DSDT I
> noticed two things:
>
> 1) The network controllers are assigned to their own _GPE bits(pins?):
> |[...]
> | Scope (\_GPE)
> | {
> |[...]
> | Method (_L0B, 0, NotSerialized)
> | {
> | Notify (\_SB.PCI0.MMAC, 0x02)
> | }
> |
> | Method (_L0A, 0, NotSerialized)
> | {
> | Notify (\_SB.PCI0.MAC1, 0x02)
> | }
> |[...]
>
> 2) drivers/acpi/sleep/proc.c registers a 'wakeup' file:
> | proc_create("wakeup", S_IFREG | S_IRUGO | S_IWUSR,
> | acpi_root_dir, &acpi_system_wakeup_device_fops);
>
> And I then remembered that someone said in
> http://bugzilla.kernel.org/show_bug.cgi?id=8381
> it works for him if he writes $MAGICVALUE into a proc file.
>
> And yes, if I write 'MMAC' and 'MAC1' into /proc/acpi/wakeup, then
> wake-on-lan works even in platform mode.
>
> So...
> AFAICS this bit of setup magic should not be required, because:
>
> 1) /proc/acpi/wakeup knows which pci device is associated to each GPE bit
> |ranma@melchior:~$ cat /proc/acpi/wakeup
> |Device S-state Status Sysfs node
> |HUB0 S5 disabled pci:0000:00:06.0
> |XVR0 S5 disabled
> |XVR1 S5 disabled pci:0000:00:0e.0
> |XVR2 S5 disabled
> |XVR3 S5 disabled
> |XVR4 S5 disabled
> |XVR5 S5 disabled pci:0000:00:0a.0
> |UAR1 S5 disabled pnp:00:09
> |PS2K S4 disabled pnp:00:0b
> |USB0 S4 disabled pci:0000:00:02.0
> |USB2 S4 disabled pci:0000:00:02.1
> |AZAD S5 disabled pci:0000:00:06.1
> |MMAC S5 enabled pci:0000:00:08.0
> |MAC1 S5 enabled pci:0000:00:09.0
> (values after manually enabling MMAC and MAC1)
>
> 2) kernel/power/disk.c calls hibernation_ops->enter(), which is
> acpi_suspend_enter, which calls acpi_enable_wakeup_device, which
> sets up GPE wakup bits. This _should_ take care of enabling MMAC
> and MAC1 automatically, but apparently does not work correctly at
> some point.
>
> I guess someone more knowledgable in ACPI stuff should have a look
> at this.
Any reason this patch hasn't made it into the kernel so far?
http://lists.laptop.org/pipermail/devel/2007-April/004691.html
(Ok, I tried getting it to apply to a current kernel, but it
a splodes (reboots instead of powering off, last message on the
serial console is "ACPI handle has no context!", see below))
The platform_enable_wakeup() hook is still there, but unused.
AFAICS this patch should solve the "'ethtool -s eth0 wol g' doesn't
suffice, I also have to write magic values into /proc/acpi/wakeup"
issue.
[14315431.627226] PM: Hibernation mode set to 'platform'
[14315431.639031] PM: Marking nosave pages: 000000000009f000 - 0000000000100000
[14315431.646879] PM: Basic memory bitmaps created
[14315431.651822] PM: Syncing filesystems ... done.
[14315431.660495] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315431.669364] Freezing remaining freezable tasks ... (elapsed 0.00 seconds)
[14315431.677609] PM: Shrinking memory... done (0 pages freed)
[14315431.924310] PM: Freed 0 kbytes in 0.24 seconds (0.00 MB/s)
[14315431.932191] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14315431.938679] ACPI handle has no context!
[14315432.534157] serial 00:09: activated
[14315432.539218] sd 0:0:0:0: [sda] Starting disk
[14315432.749996] PM: writing image.
[14315432.775321] PM: Free swap pages: 977947
[14315432.779662] PM: Saving image data pages (72491 pages) ... done
[14315436.437643] PM: Wrote 289964 kbytes in 3.65 seconds (79.44 MB/s)
[14315436.444385] PM: S|
[14315436.840487] ohci_hcd 0000:00:02.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ.
[14315436.854132] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14315436.859325] sd 0:0:0:0: [sda] Stopping disk
[14315437.284158] ACPI handle has no context!
^@[ 0.000000] Linux version 2.6.26-rc2 (ranma@melchior) (gcc version 4.2.3 (Debian 4.2.3-5)) #8 PREEMPT Tue May 27 00:03:20 CEST 2008
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-27 6:21 ` Tobias Diedrich
@ 2008-05-27 21:32 ` David Brownell
2008-05-31 7:20 ` Pavel Machek
2008-05-31 22:12 ` Tobias Diedrich
1 sibling, 1 reply; 26+ messages in thread
From: David Brownell @ 2008-05-27 21:32 UTC (permalink / raw)
To: Tobias Diedrich
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, linux-acpi, linux-pm
On Monday 26 May 2008, Tobias Diedrich wrote:
> The platform_enable_wakeup() hook is still there, but unused.
The patches to support it (still) haven't been merged.
> AFAICS this patch should solve the "'ethtool -s eth0 wol g' doesn't
> suffice, I also have to write magic values into /proc/acpi/wakeup"
> issue.
Yeah; under ACPI, PCI does not act like it does everywhere else.
Nor does wakeup in general.
After sending patches to fix that for a couple years now, I'm
well past being tired of doing that. I suggest it's overdue for
the ACPI team to get this part of their act together.
That is: either start merging those patches, possibly with updates
to handle broken hardware better; or rewrite them; ... or just say
explicitly the message I've been receiving: "Linux ACPI will never
support wakeup the way the rest of Linux can and does". (And the
"why" should be something reasonable.)
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 2/4] setup wake-on-lan before shutting down
2008-05-18 13:02 ` [PATCH 2/4] setup wake-on-lan before shutting down Tobias Diedrich
@ 2008-05-31 2:20 ` Jeff Garzik
0 siblings, 0 replies; 26+ messages in thread
From: Jeff Garzik @ 2008-05-31 2:20 UTC (permalink / raw)
To: Tobias Diedrich, netdev, linux-kernel, Ayaz Abdulla,
Rafael J. Wysocki, Stephen
Tobias Diedrich wrote:
> From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
>
> When hibernating in 'shutdown' mode, after saving the image the suspend hook
> is not called again.
> However, if the device is in promiscous mode, wake-on-lan will not work.
> This adds a shutdown hook to setup wake-on-lan before the final shutdown.
>
> Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
applied 2-4
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-27 21:32 ` David Brownell
@ 2008-05-31 7:20 ` Pavel Machek
2008-06-05 2:38 ` David Brownell
0 siblings, 1 reply; 26+ messages in thread
From: Pavel Machek @ 2008-05-31 7:20 UTC (permalink / raw)
To: David Brownell
Cc: Tobias Diedrich, netdev, linux-kernel, Ayaz Abdulla,
Rafael J. Wysocki, Stephen Hemminger, linux-acpi, linux-pm
Hi!
> > The platform_enable_wakeup() hook is still there, but unused.
>
> The patches to support it (still) haven't been merged.
>
>
> > AFAICS this patch should solve the "'ethtool -s eth0 wol g' doesn't
> > suffice, I also have to write magic values into /proc/acpi/wakeup"
> > issue.
>
> Yeah; under ACPI, PCI does not act like it does everywhere else.
> Nor does wakeup in general.
>
> After sending patches to fix that for a couple years now, I'm
> well past being tired of doing that. I suggest it's overdue for
> the ACPI team to get this part of their act together.
I'm afraid you expect too much from the acpi team. If you can't merge
patches yourself, perhaps someone interested (Tobias? me?) can push
them for you?
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-27 6:21 ` Tobias Diedrich
2008-05-27 21:32 ` David Brownell
@ 2008-05-31 22:12 ` Tobias Diedrich
2008-06-01 2:51 ` [linux-pm] " Alan Stern
1 sibling, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-31 22:12 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, Davi
Tobias Diedrich wrote:
> Tobias Diedrich wrote:
> > Tobias Diedrich wrote:
> > > So my BIOS is not as borked as I thought and it should be possible
> > > to wake up the machine even with platform. Further debugging will
> > > have to wait until at least next weekend though (maybe longer)...
> >
> > Or maybe it doesn't have to wait, I was just too curious:
> >
> > Summary first: I got platform mode to work!
> >
> > After grepping and reading through kernel/power/disk.c and
> > (rather obfuscated) drivers/acpi/.* code, and reading up on
> > ACPI _GPE (General Purpose Event?), and having a look at my DSDT I
> > noticed two things:
> >
> > 1) The network controllers are assigned to their own _GPE bits(pins?):
> > |[...]
> > | Scope (\_GPE)
> > | {
> > |[...]
> > | Method (_L0B, 0, NotSerialized)
> > | {
> > | Notify (\_SB.PCI0.MMAC, 0x02)
> > | }
> > |
> > | Method (_L0A, 0, NotSerialized)
> > | {
> > | Notify (\_SB.PCI0.MAC1, 0x02)
> > | }
> > |[...]
> >
> > 2) drivers/acpi/sleep/proc.c registers a 'wakeup' file:
> > | proc_create("wakeup", S_IFREG | S_IRUGO | S_IWUSR,
> > | acpi_root_dir, &acpi_system_wakeup_device_fops);
> >
> > And I then remembered that someone said in
> > http://bugzilla.kernel.org/show_bug.cgi?id=8381
> > it works for him if he writes $MAGICVALUE into a proc file.
> >
> > And yes, if I write 'MMAC' and 'MAC1' into /proc/acpi/wakeup, then
> > wake-on-lan works even in platform mode.
> >
> > So...
> > AFAICS this bit of setup magic should not be required, because:
> >
> > 1) /proc/acpi/wakeup knows which pci device is associated to each GPE bit
> > |ranma@melchior:~$ cat /proc/acpi/wakeup
> > |Device S-state Status Sysfs node
> > |HUB0 S5 disabled pci:0000:00:06.0
> > |XVR0 S5 disabled
> > |XVR1 S5 disabled pci:0000:00:0e.0
> > |XVR2 S5 disabled
> > |XVR3 S5 disabled
> > |XVR4 S5 disabled
> > |XVR5 S5 disabled pci:0000:00:0a.0
> > |UAR1 S5 disabled pnp:00:09
> > |PS2K S4 disabled pnp:00:0b
> > |USB0 S4 disabled pci:0000:00:02.0
> > |USB2 S4 disabled pci:0000:00:02.1
> > |AZAD S5 disabled pci:0000:00:06.1
> > |MMAC S5 enabled pci:0000:00:08.0
> > |MAC1 S5 enabled pci:0000:00:09.0
> > (values after manually enabling MMAC and MAC1)
> >
> > 2) kernel/power/disk.c calls hibernation_ops->enter(), which is
> > acpi_suspend_enter, which calls acpi_enable_wakeup_device, which
> > sets up GPE wakup bits. This _should_ take care of enabling MMAC
> > and MAC1 automatically, but apparently does not work correctly at
> > some point.
> >
> > I guess someone more knowledgable in ACPI stuff should have a look
> > at this.
>
> Any reason this patch hasn't made it into the kernel so far?
> http://lists.laptop.org/pipermail/devel/2007-April/004691.html
>
> (Ok, I tried getting it to apply to a current kernel, but it
> a splodes (reboots instead of powering off, last message on the
> serial console is "ACPI handle has no context!", see below))
>
> The platform_enable_wakeup() hook is still there, but unused.
> AFAICS this patch should solve the "'ethtool -s eth0 wol g' doesn't
> suffice, I also have to write magic values into /proc/acpi/wakeup"
> issue.
Ok, after another long debugging session I finally found out the
reason for the immediate reboot (after finding the place that
suspends the serial console (drivers/pnp) and disabling that suspend
path):
The system is woken up by USB activity! (Optical mouse, anyone?)
Lo and behold:
drivers/usb/core/hcd-pci.c tries it's best to activate 'wake on
usb', which I didn't know since it apparently also never worked.
However, after applying the 'use platform_enable_wakeup'-patch,
not only forcedeth wake starts working, also usb wake.
If I prevent usb wake:
|echo disabled > /sys/devices/pci0000\:00/0000\:00\:02.0/power/wakeup'
|echo disabled > /sys/devices/pci0000\:00/0000\:00\:02.1/power/wakeup'
And then hibernate in platform mode, the immediate reboot is gone
and waking up using magic packets works fine even without setting up
/proc/acpi/wakeup first.
Maybe I should try hooking mouse and keyboard onto different usb
host controllers, so I can disable wakeup for the mouse host
controller and enable wakeup for the keyboard host controller,
then it should be possible to wake the system by pressing a key. :)
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 5/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
` (4 preceding siblings ...)
2008-05-18 15:09 ` [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
@ 2008-05-31 22:54 ` Tobias Diedrich
2008-06-27 6:09 ` Jeff Garzik
2008-05-31 23:20 ` [PATCH 6/4] " Tobias Diedrich
6 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-31 22:54 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger
From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
We currently don't signal the kernel we that this device can wake
the system. Call device_init_wakeup() to correct this.
Without this device_can_wakeup and device_may_wakeup will return
incorrect values.
Together with the minimized acpi wakeup patch (6/4 ;)), which will
follow in the next mail, this really makes wake-on-lan work for me
as expected (i.e. "ethtool -s eth0 wol g" is sufficient, no
additional magic needed).
Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Index: linux-2.6.26-rc4.forcedwol/drivers/net/forcedeth.c
===================================================================
--- linux-2.6.26-rc4.forcedwol.orig/drivers/net/forcedeth.c 2008-06-01 00:29:58.000000000 +0200
+++ linux-2.6.26-rc4.forcedwol/drivers/net/forcedeth.c 2008-06-01 00:30:48.000000000 +0200
@@ -5539,6 +5539,11 @@
/* set mac address */
nv_copy_mac_to_hw(dev);
+ /* Workaround current PCI init glitch: wakeup bits aren't
+ * being set from PCI PM capability.
+ */
+ device_init_wakeup(&pci_dev->dev, 1);
+
/* disable WOL */
writel(0, base + NvRegWakeUpFlags);
np->wolenabled = 0;
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 6/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
` (5 preceding siblings ...)
2008-05-31 22:54 ` [PATCH 5/4] " Tobias Diedrich
@ 2008-05-31 23:20 ` Tobias Diedrich
6 siblings, 0 replies; 26+ messages in thread
From: Tobias Diedrich @ 2008-05-31 23:20 UTC (permalink / raw)
To: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, Davi
From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
This patch is the minimal amount of code needed to support
wake-on-lan in platform mode properly (i.e. "ethtool -s eth0 wol g"
is sufficient, no additional magic needed) for me.
This is derived from David Brownells patch
(http://lists.laptop.org/pipermail/devel/2007-April/004691.html).
However I decided to move the hook into pci-acpi.c since the other
two pci hooks also live there and pci and acpi are the only users of
the platform_enable_wakeup-hook.
As a 'side-effect' this also makes wake on usb activity work for me
and I had to disable usb wakeup (which is enabled by default) using
the power/wakeup sysfs functionality ("echo disabled >
${sysfs_path_to_device}/power/wakeup").
(BTW I first thought the 'immediate reboot because of usb wake' effect is
caused by the optical mouse generating a wake event, but it rather
seems to be a problem with a flaky secondary usb host controller,
which sees a connected device where nothing is attached)
Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Index: linux-2.6.26-rc4.forcedwol/drivers/pci/pci-acpi.c
===================================================================
--- linux-2.6.26-rc4.forcedwol.orig/drivers/pci/pci-acpi.c 2008-06-01 00:40:23.000000000 +0200
+++ linux-2.6.26-rc4.forcedwol/drivers/pci/pci-acpi.c 2008-06-01 00:46:55.000000000 +0200
@@ -315,6 +315,25 @@
}
return PCI_POWER_ERROR;
}
+
+static int acpi_platform_enable_wakeup(struct device *dev, int is_on)
+{
+ struct acpi_device *adev;
+ int status;
+
+ if (!device_can_wakeup(dev))
+ return -EINVAL;
+
+ if (is_on && !device_may_wakeup(dev))
+ return -EINVAL;
+
+ status = acpi_bus_get_device(DEVICE_ACPI_HANDLE(dev), &adev);
+ if (status < 0)
+ return status;
+
+ adev->wakeup.state.enabled = !!is_on;
+ return 0;
+}
#endif
static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
@@ -399,6 +418,7 @@
return 0;
#ifdef CONFIG_ACPI_SLEEP
platform_pci_choose_state = acpi_pci_choose_state;
+ platform_enable_wakeup = acpi_platform_enable_wakeup;
#endif
platform_pci_set_power_state = acpi_pci_set_power_state;
return 0;
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-31 22:12 ` Tobias Diedrich
@ 2008-06-01 2:51 ` Alan Stern
2008-06-01 7:49 ` Tobias Diedrich
0 siblings, 1 reply; 26+ messages in thread
From: Alan Stern @ 2008-06-01 2:51 UTC (permalink / raw)
To: Tobias Diedrich
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
On Sun, 1 Jun 2008, Tobias Diedrich wrote:
> Ok, after another long debugging session I finally found out the
> reason for the immediate reboot (after finding the place that
> suspends the serial console (drivers/pnp) and disabling that suspend
> path):
> The system is woken up by USB activity! (Optical mouse, anyone?)
>
> Lo and behold:
> drivers/usb/core/hcd-pci.c tries it's best to activate 'wake on
> usb', which I didn't know since it apparently also never worked.
> However, after applying the 'use platform_enable_wakeup'-patch,
> not only forcedeth wake starts working, also usb wake.
> If I prevent usb wake:
> |echo disabled > /sys/devices/pci0000\:00/0000\:00\:02.0/power/wakeup'
> |echo disabled > /sys/devices/pci0000\:00/0000\:00\:02.1/power/wakeup'
> And then hibernate in platform mode, the immediate reboot is gone
> and waking up using magic packets works fine even without setting up
> /proc/acpi/wakeup first.
>
> Maybe I should try hooking mouse and keyboard onto different usb
> host controllers, so I can disable wakeup for the mouse host
> controller and enable wakeup for the keyboard host controller,
> then it should be possible to wake the system by pressing a key. :)
You don't need to do that. Wakeup can be set specifically for each
individual USB device, provided CONFIG_USB_SUSPEND is enabled.
On Sun, 1 Jun 2008, Tobias Diedrich wrote:
> (BTW I first thought the 'immediate reboot because of usb wake' effect is
> caused by the optical mouse generating a wake event, but it rather
> seems to be a problem with a flaky secondary usb host controller,
> which sees a connected device where nothing is attached)
Can you provide debugging information (i.e., CONFIG_USB_DEBUG) with the
details on this bogus wakeup?
Alan Stern
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-06-01 2:51 ` [linux-pm] " Alan Stern
@ 2008-06-01 7:49 ` Tobias Diedrich
2008-06-02 21:09 ` Alan Stern
0 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-06-01 7:49 UTC (permalink / raw)
To: Alan Stern
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
Alan Stern wrote:
> On Sun, 1 Jun 2008, Tobias Diedrich wrote:
>
> > Ok, after another long debugging session I finally found out the
> > reason for the immediate reboot (after finding the place that
> > suspends the serial console (drivers/pnp) and disabling that suspend
> > path):
> > The system is woken up by USB activity! (Optical mouse, anyone?)
> >
> > Lo and behold:
> > drivers/usb/core/hcd-pci.c tries it's best to activate 'wake on
> > usb', which I didn't know since it apparently also never worked.
> > However, after applying the 'use platform_enable_wakeup'-patch,
> > not only forcedeth wake starts working, also usb wake.
> > If I prevent usb wake:
> > |echo disabled > /sys/devices/pci0000\:00/0000\:00\:02.0/power/wakeup'
> > |echo disabled > /sys/devices/pci0000\:00/0000\:00\:02.1/power/wakeup'
> > And then hibernate in platform mode, the immediate reboot is gone
> > and waking up using magic packets works fine even without setting up
> > /proc/acpi/wakeup first.
> >
> > Maybe I should try hooking mouse and keyboard onto different usb
> > host controllers, so I can disable wakeup for the mouse host
> > controller and enable wakeup for the keyboard host controller,
> > then it should be possible to wake the system by pressing a key. :)
>
> You don't need to do that. Wakeup can be set specifically for each
> individual USB device, provided CONFIG_USB_SUSPEND is enabled.
Cool, I didn't know that. :)
> On Sun, 1 Jun 2008, Tobias Diedrich wrote:
>
> > (BTW I first thought the 'immediate reboot because of usb wake' effect is
> > caused by the optical mouse generating a wake event, but it rather
> > seems to be a problem with a flaky secondary usb host controller,
> > which sees a connected device where nothing is attached)
>
> Can you provide debugging information (i.e., CONFIG_USB_DEBUG) with the
> details on this bogus wakeup?
Sure.
Here is the complete log of one boot and two s2disk_platform cycles
captured using the serial console (in the first s2disk I forgot to
remove the 'turn off /sys/bus/usb/device/usb?/power/wakeup' part).
Interestingly even with power/wakeup disabled for usb1 and usb2,
which I assume to be the usb root ports, I could wake up the system
by pressing a key on my keyboard (which didn't work before turning
on CONFIG_USB_SUSPEND).
On the second suspend the system rebooted immediately as expected
(I power/wakeup for usb1 and usb2 back on and disabled the part in
the script).
I think this might be some general usb hw flakiness, since it seems
to detect (and has so for a long time) a non-existing device:
lsusb output:
Bus 002 Device 003: ID 045e:00db Microsoft Corp. Natural Ergonomic Keyboard 4000 V1.0
Bus 002 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
Bus 002 Device 001: ID 1d6b:0001
Bus 001 Device 001: ID 1d6b:0002
bogus device?:
[14316046.469949] usb 2-4: new full speed USB device using ohci_hcd and address 12
[14316046.679951] usb 2-4: device descriptor read/64, error -62
[14316046.986619] usb 2-4: device descriptor read/64, error -62
[14316047.263284] usb 2-4: new full speed USB device using ohci_hcd and address 13
[14316047.476614] usb 2-4: device descriptor read/64, error -62
[14316047.786618] usb 2-4: device descriptor read/64, error -62
[14316048.063282] usb 2-4: new full speed USB device using ohci_hcd and address 14
[14316048.499945] usb 2-4: device not accepting address 14, error -62
[14316048.669950] usb 2-4: new full speed USB device using ohci_hcd and address 15
[14316049.106612] usb 2-4: device not accepting address 15, error -62
[14316049.112960] hub 2-0:1.0: unable to enumerate USB device on port 4
complete log:
[ 0.000000] Linux version 2.6.26-rc4 (ranma@melchior) (gcc version 4.2.3 (Debian 4.2.3-5)) #28 PREEMPT Sun Jun 1 09:06:24 CEST 2008
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7D20, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE3100, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEADC0, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3280, 7ACE (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEB000, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEB180, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEB200, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEAF00, 0098 (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-d3638f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 4, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 513763
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.107 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[14315324.233334] ... MAX_LOCKDEP_SUBCLASSES: 8
[14315324.233334] ... MAX_LOCK_DEPTH: 48
[14315324.233334] ... MAX_LOCKDEP_KEYS: 2048
[14315324.233334] ... CLASSHASH_SIZE: 1024
[14315324.233334] ... MAX_LOCKDEP_ENTRIES: 8192
[14315324.233334] ... MAX_LOCKDEP_CHAINS: 16384
[14315324.233334] ... CHAINHASH_SIZE: 8192
[14315324.233334] memory used by lock dependency info: 1648 kB
[14315324.233334] per task-struct memory footprint: 2688 bytes
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ ab94000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2051692k/2096000k available (4624k kernel code, 43544k reserved, 2268k data, 260k init)
[14315324.316528] Calibrating delay using timer specific routine.. 4827.00 BogoMIPS (lpj=8043211)
[14315324.322857] Mount-cache hash table entries: 256
[14315324.327217] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.333327] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.336660] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.342947] ACPI: Core revision 20080321
[14315324.359992] Parsing all Control Methods:
[14315324.364011] Table [DSDT](id 0001) - 1203 Objects with 101 Devices 380 Methods 44 Regions
[14315324.369992] Parsing all Control Methods:
[14315324.373967] Table [SSDT](id 0002) - 4 Objects with 0 Devices 0 Methods 0 Regions
[14315324.379991] tbxface-0598 [02] tb_load_namespace : ACPI Tables successfully acquired
[14315324.389990] evxfevnt-0091 [02] enable : Transition to ACPI mode successful
[14315324.398904] enabled ExtINT on CPU#0
[14315324.402998] ENABLING IO-APIC IRQs
[14315324.406656] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.442963] Using local APIC timer interrupts.
[14315324.449986] Detected 12.557 MHz APIC timer.
[14315324.453320] net_namespace: 1272 bytes
[14315324.456653] NET: Registered protocol family 16
[14315324.460262] No dock devices found.
[14315324.464194] TOM: 0000000080000000 aka 2048M
[14315324.468795] ACPI: bus type pci registered
[14315324.473293] PCI: Using configuration type 1 for base access
[14315324.481636] evgpeblk-0956 [04] ev_create_gpe_block : GPE 00 to 1F [_GPE] 4 regs on int 0x9
[14315324.490696] evgpeblk-0956 [04] ev_create_gpe_block : GPE 20 to 5F [_GPE] 8 regs on int 0x9
[14315324.509805] Completing Region/Field/Buffer/Package initialization:...................................................................................................................................................................................
[14315324.545447] Initialized 39/44 Regions 11/11 Fields 40/40 Buffers 89/101 Packages (1216 nodes)
[14315324.549980] Initializing Device/Processor/Thermal objects by executing _INI methods:...
[14315324.556256] Executed 3 _INI methods requiring 1 _STA executions (examined 108 objects)
[14315324.559979] evgpeblk-1052 [03] ev_initialize_gpe_bloc: Found 9 Wake, Enabled 0 Runtime GPEs in this block
[14315324.569979] evgpeblk-1052 [03] ev_initialize_gpe_bloc: Found 0 Wake, Enabled 1 Runtime GPEs in this block
[14315324.579978] ACPI: Interpreter enabled
[14315324.583311] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.587948] ACPI: Using IOAPIC for interrupt routing
[14315324.615454] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.619975] PCI: Transparent bridge - 0000:00:06.0
[14315324.713931] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.722733] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.728224] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.735722] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.741551] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.750168] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.758958] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.763301] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.768608] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.777265] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 *11 14 15)
[14315324.784758] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.792250] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.796634] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[14315324.800688] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.809482] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
[14315324.813827] ACPI: PCI Interrupt Link [LUB2] (IRQs *5 7 9 10 11 14 15)
[14315324.821294] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.829954] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[14315324.834333] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 *10 11 14 15)
[14315324.841605] ACPI: PCI Interrupt Link [LSA2] (IRQs 5 7 9 10 *11 14 15)
[14315324.849225] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.853301] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.857246] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.863511] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.870581] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.877827] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.885078] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.889968] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.895427] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.899968] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.903301] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.907248] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.915379] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[14315324.919968] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.923301] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.927247] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.934990] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.943235] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.947245] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.954299] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.961445] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.966635] pnp: PnP ACPI init
[14315324.969968] ACPI: bus type pnp registered
[14315324.982451] pnp: PnP ACPI: found 13 devices
[14315324.986635] ACPI: ACPI bus type pnp unregistered
[14315324.989968] SCSI subsystem initialized
[14315324.993377] usbcore: registered new interface driver usbfs
[14315324.999287] usbcore: registered new interface driver hub
[14315325.003301] usbcore: registered new device driver usb
[14315325.006635] PCI: Using ACPI for IRQ routing
[14315325.009968] testing the IO APIC.......................
[14315325.013301]
[14315325.013301] .................................... done.
[14315325.027785] Bluetooth: Core ver 2.11
[14315325.031917] NET: Registered protocol family 31
[14315325.036635] Bluetooth: HCI device and connection manager initialized
[14315325.039968] Bluetooth: HCI socket layer initialized
[14315325.043301] DMAR:parse DMAR table failure.
[14315325.054043] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315325.060940] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315325.067827] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315325.074713] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315325.081599] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315325.088485] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315325.095383] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315325.102096] system 00:02: ioport range 0x800-0x87f has been reserved
[14315325.108810] system 00:02: ioport range 0x290-0x297 has been reserved
[14315325.115545] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315325.123493] system 00:0c: iomem range 0xcd000-0xcffff has been reserved
[14315325.130468] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315325.139923] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315325.147331] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315325.154737] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315325.162662] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315325.170117] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.178042] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.185014] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.199644] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.206697] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.214622] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.222574] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.230499] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.238429] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.247393] PCI: Bridge: 0000:00:06.0
[14315325.251010] IO window: 9000-9fff
[14315325.254789] MEM window: disabled.
[14315325.259839] PREFETCH window: disabled.
[14315325.263706] PCI: Bridge: 0000:00:0a.0
[14315325.267734] IO window: 8000-8fff
[14315325.271508] MEM window: 0xfde00000-0xfdefffff
[14315325.276406] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.283120] PCI: Bridge: 0000:00:0e.0
[14315325.287151] IO window: 6000-7fff
[14315325.290924] MEM window: 0xfdd00000-0xfddfffff
[14315325.295819] PREFETCH window: disabled.
[14315325.300188] NET: Registered protocol family 2
[14315325.336002] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.344144] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.353336] TCP bind hash table entries: 65536 (order: 9, 3670016 bytes)
[14315325.365879] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.372885] TCP reno registered
[14315325.385861] NET: Registered protocol family 1
[14315325.392316] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.399451] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.405975] fuse init (API version 7.9)
[14315325.410333] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.419250] msgmni has been set to 4007 for ipc namespace ffffffff808882f0
[14315325.426690] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.434542] io scheduler noop registered
[14315325.439746] io scheduler anticipatory registered
[14315325.444057] io scheduler deadline registered
[14315325.449069] io scheduler cfq registered (default)
[14315325.466317] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.471768] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.476878] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.482326] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.487762] pci 0000:00:06.1: Enabling HT MSI Mapping
[14315325.493216] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.498657] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.504089] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.509542] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.515240] assign_interrupt_mode Found MSI capability
[14315325.520563] assign_interrupt_mode Found MSI capability
[14315325.526830] input: Power Button (FF) as /class/input/input0
[14315325.532803] ACPI: Power Button (FF) [PWRF]
[14315325.537393] input: Power Button (CM) as /class/input/input1
[14315325.543334] ACPI: Power Button (CM) [PWRB]
[14315325.549405] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.556669] ACPI: Fan [FAN] (on)
[14315325.560283] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.566782] ACPI: Expecting a [Reference] package element, found type 0
[14315325.574062] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.580526] ACPI: Thermal Zone [THRM] (40 C)
[14315325.603598] Real Time Clock Driver v1.12ac
[14315325.608082] Linux agpgart interface v0.103
[14315325.612554] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.622766] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.630112] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.637619] loop: module loaded
[14315325.641039] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.647521] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.653835] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.660291] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.666298] tun: Universal TUN/TAP device driver, 1.6
[14315325.671719] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.678486] Driver 'sd' needs updating - please use bus_type methods
[14315325.685250] Driver 'sr' needs updating - please use bus_type methods
[14315325.692968] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315325.699090] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315325.708856] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315325.714155] scsi0 : sata_nv
[14315325.717573] scsi1 : sata_nv
[14315325.721157] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315325.729249] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315326.206695] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315326.220214] ata1.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315326.226591] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315326.240528] ata1.00: configured for UDMA/133
[14315326.573689] ata2: SATA link down (SStatus 0 SControl 300)
[14315326.592884] isa bounce pool size: 16 pages
[14315326.596954] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315326.606003] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315326.613427] sd 0:0:0:0: [sda] Write Protect is off
[14315326.618629] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315326.627076] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315326.636278] sd 0:0:0:0: [sda] Write Protect is off
[14315326.640932] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315326.650430] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315326.691809] sd 0:0:0:0: [sda] Attached SCSI disk
[14315326.697309] sd 0:0:0:0: Attached scsi generic sg0 type 0
[14315326.706671] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315326.712679] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315326.720959] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315326.726665] scsi2 : sata_nv
[14315326.730009] scsi3 : sata_nv
[14315326.733588] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315326.740998] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315327.077024] ata3: SATA link down (SStatus 0 SControl 300)
[14315327.423689] ata4: SATA link down (SStatus 0 SControl 300)
[14315327.443336] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315327.449341] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315327.457739] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315327.463435] scsi4 : sata_nv
[14315327.466797] scsi5 : sata_nv
[14315327.470365] ata5: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315327.477943] ata6: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315327.813749] ata5: SATA link down (SStatus 0 SControl 300)
[14315328.303360] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315328.316777] ata6.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315328.336778] ata6.00: configured for UDMA/100
[14315328.355468] scsi 5:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315328.366670] sr0: scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[14315328.373341] Uniform CD-ROM driver Revision: 3.20
[14315328.380357] sr 5:0:0:0: Attached scsi generic sg1 type 5
[14315328.391894] block2mtd: version $Revision: 1.30 $
[14315328.397846] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315328.403986] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315328.413704] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315328.420231] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315328.427723] ehci_hcd 0000:00:02.1: debug port 1
[14315328.433160] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315328.448349] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315328.456845] usb usb1: configuration #1 chosen from 1 choice
[14315328.462979] hub 1-0:1.0: USB hub found
[14315328.467136] hub 1-0:1.0: 10 ports detected
[14315328.573556] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[14315328.580717] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[14315328.588392] usb usb1: Product: EHCI Host Controller
[14315328.595058] usb usb1: Manufacturer: Linux 2.6.26-rc4 ehci_hcd
[14315328.600310] usb usb1: SerialNumber: 0000:00:02.1
[14315328.607391] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315328.613502] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315328.622764] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315328.628592] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315328.636474] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315328.695724] usb usb2: configuration #1 chosen from 1 choice
[14315328.701789] hub 2-0:1.0: USB hub found
[14315328.705943] hub 2-0:1.0: 10 ports detected
[14315328.783404] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315328.816650] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[14315328.823342] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[14315328.830616] usb usb2: Product: OHCI Host Controller
[14315328.835858] usb usb2: Manufacturer: Linux 2.6.26-rc4 ohci_hcd
[14315328.840212] usb usb2: SerialNumber: 0000:00:02.0
[14315328.846458] USB Universal Host Controller Interface driver v3.0
[14315328.986691] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315329.163356] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315329.169974] usbcore: registered new interface driver usblp
[14315329.176790] PNP: No PS/2 controller found. Probing ports directly.
[14315329.183811] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315329.189375] serio: i8042 AUX port at 0x60,0x64 irq 12
[14315329.195449] mice: PS/2 mouse device common for all mice
[14315329.219956] i2c /dev entries driver
[14315329.223980] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315329.230289] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315329.236621] it87: Found IT8716F chip at 0x290, revision 0
[14315329.240605] it87: in3 is VCC (+5V)
[14315329.246525] it87: in7 is VCCH (+5V Stand-By)
[14315329.276668] md: raid1 personality registered for level 1
[14315329.283566] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315329.292582] Bluetooth: HCI USB driver ver 2.9
[14315329.450012] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315329.636693] usb 2-1: configuration #1 chosen from 1 choice
[14315329.660003] usb 2-1: New USB device found, idVendor=045e, idProduct=0040
[14315329.666684] usb 2-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[14315329.674262] usb 2-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[14315329.683288] usb 2-1: Manufacturer: Microsoft
[14315329.963344] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315330.156679] usb 2-3: configuration #1 chosen from 1 choice
[14315330.193336] usb 2-3: New USB device found, idVendor=045e, idProduct=00db
[14315330.200017] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[14315330.207602] usb 2-3: Product: Natural® Ergonomic Keyboard 4000
[14315330.213796] usb 2-3: Manufacturer: Microsoft
[14315330.496678] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315330.670011] usb 2-4: device descriptor read/64, error -62
[14315330.943344] usb 2-4: device descriptor read/64, error -62
[14315331.210011] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315331.383344] usb 2-4: device descriptor read/64, error -62
[14315331.656677] usb 2-4: device descriptor read/64, error -62
[14315331.923344] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315332.336674] usb 2-4: device not accepting address 6, error -62
[14315332.500011] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315332.913341] usb 2-4: device not accepting address 7, error -62
[14315332.919546] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315332.926358] usbcore: registered new interface driver hci_usb
[14315332.932679] Bluetooth: HCI UART driver ver 2.2
[14315332.938855] Bluetooth: HCI H4 protocol initialized
[14315332.943679] Bluetooth: HCI BCSP protocol initialized
[14315332.949029] cpuidle: using governor ladder
[14315332.953490] cpuidle: using governor menu
[14315332.963336] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input2
[14315332.994617] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315333.013341] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input3
[14315333.047434] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315333.070002] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315333.104253] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315333.114512] usbcore: registered new interface driver usbhid
[14315333.120305] usbhid: v2.6:USB HID core driver
[14315333.126452] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315333.134233] ALSA device list:
[14315333.137578] No soundcards found.
[14315333.141510] GACT probability on
[14315333.145020] Mirror/redirect action on
[14315333.150212] u32 classifier
[14315333.153287] Performance counters on
[14315333.154901] input device check on
[14315333.159018] Actions configured
[14315333.166486] IPv4 over IPv4 tunneling driver
[14315333.170629] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315333.176416] TCP bic registered
[14315333.179848] TCP cubic registered
[14315333.183441] TCP westwood registered
[14315333.187300] TCP htcp registered
[14315333.190813] TCP vegas registered
[14315333.194411] TCP yeah registered
[14315333.197923] Initializing XFRM netlink socket
[14315333.202884] NET: Registered protocol family 10
[14315333.210003] IPv6 over IPv4 tunneling driver
[14315333.216669] NET: Registered protocol family 17
[14315333.221405] NET: Registered protocol family 15
[14315333.226324] Bridge firewalling registered
[14315333.230726] Bluetooth: L2CAP ver 2.9
[14315333.236670] Bluetooth: L2CAP socket layer initialized
[14315333.240010] Bluetooth: SCO (Voice Link) ver 0.5
[14315333.245429] Bluetooth: SCO socket layer initialized
[14315333.250384] Bluetooth: RFCOMM socket layer initialized
[14315333.255904] Bluetooth: RFCOMM TTY layer initialized
[14315333.261155] Bluetooth: RFCOMM ver 1.8
[14315333.266419] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315333.270458] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315333.277052] RPC: Registered udp transport module.
[14315333.282436] RPC: Registered tcp transport module.
[14315333.287563] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315333.296237] All bugs added by David S. Miller <davem@redhat.com>
[14315333.300148] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315333.313310] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315333.316895] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315333.323065] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315333.335676] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315333.341612] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315333.350003] md: Autodetecting RAID arrays.
[14315333.354367] md: Scanned 0 and added 0 devices.
[14315333.358509] md: autorun ...
[14315333.361835] md: ... autorun DONE.
[14315333.381886] kjournald starting. Commit interval 5 seconds
[14315333.387883] EXT3-fs: mounted filesystem with ordered data mode.
[14315333.394472] VFS: Mounted root (ext3 filesystem) readonly.
[14315333.400861] Freeing unused kernel memory: 260k freed
[14315333.406477] Write protecting the kernel read-only data: 6480k
[14315334.057088] Marking TSC unstable due to cpufreq changes
[14315334.230019] Clocksource tsc unstable (delta = -103393192 ns)
[14315336.340991] scsi6 : pata_amd
[14315336.344444] scsi7 : pata_amd
[14315336.349256] ata7: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[14315336.364276] ata8: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[14315336.559195] ata7.01: ATAPI: Pioneer DVD-ROM ATAPIModel DVD-106S 0122, E1.22, max UDMA/66
[14315336.581322] ata7.01: configured for UDMA/66
[14315336.598214] scsi 6:0:1:0: CD-ROM PIONEER DVD-ROM DVD-106 1.22 PQ: 0 ANSI: 5
[14315336.610878] sr1: scsi3-mmc drive: 40x/40x cd/rw xa/form2 cdda tray
[14315336.617824] sr 6:0:1:0: Attached scsi generic sg2 type 5
[14315336.639413] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
[14315336.645635] ACPI: PCI Interrupt 0000:00:06.1[B] -> Link [AAZA] -> GSI 22 (level, low) -> IRQ 22
[14315336.656334] ALSA sound/pci/hda/hda_intel.c:1904: chipset global capabilities = 0x4401
[14315336.690054] ALSA sound/pci/hda/hda_intel.c:745: codec_mask = 0x1
[14315336.728674] ALSA sound/pci/hda/hda_codec.c:2350: hda_codec: model '6stack-dig' is selected for config 1043:81f6 (Asus M2N-SLI)
[14315337.118212] ALSA sound/pci/hda/hda_codec.c:1127: Cannot find slave Headphone Playback Volume, skipped
[14315337.129724] ALSA sound/pci/hda/hda_codec.c:1127: Cannot find slave Mono Playback Volume, skipped
[14315337.139447] ALSA sound/pci/hda/hda_codec.c:1127: Cannot find slave Speaker Playback Volume, skipped
[14315337.148749] ALSA sound/pci/hda/hda_codec.c:1127: Cannot find slave Speaker Playback Switch, skipped
[14315337.161249] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
[14315337.169779] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 21
[14315337.175914] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [APCH] -> GSI 21 (level, low) -> IRQ 21
[14315337.702535] forcedeth 0000:00:08.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 00:17:31:aa:1e:89
[14315337.711357] forcedeth 0000:00:08.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315337.750004] gameport: EMU10K1 is pci0000:01:08.1/gameport0, io 0x9800, speed 1201kHz
[14315337.765496] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[14315337.771668] ACPI: PCI Interrupt 0000:01:08.0[A] -> ACPI: PCI Interrupt Link [AMC1] enabled at IRQ 20
[14315337.783535] Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315337.797875] ACPI: PCI Interrupt 0000:00:09.0[A] -> ALSA sound/pci/emu10k1/emu10k1_main.c:1748: vendor=0x1102, device=0x2, subsystem_vendor_id=0x80641102, subsystem_id=0x8064
[14315337.819202] Link [AMC1] -> GSI 20 (level, low) -> IRQ 20
[14315337.833609] ALSA sound/pci/emu10k1/emu10k1_main.c:1773: Sound card name=SB Live 5.1
[14315338.353675] forcedeth 0000:00:09.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:17:31:ac:c6:64
[14315338.362986] forcedeth 0000:00:09.0: highdma csum vlan pwrctl mgmt timirq gbit lnktim msi msi-x desc-v3
[14315339.093711] Adding 3911788k swap on /dev/sda6. Priority:-1 extents:1 across:3911788k
[14315339.279495] EXT3 FS on sda5, internal journal
[14315344.690008] br0: Dropping NETIF_F_UFO since no NETIF_F_HW_CSUM feature.
[14315356.516848]
[14315356.516850] =================================
[14315356.520007] [ INFO: inconsistent lock state ]
[14315356.520007] 2.6.26-rc4 #28
[14315356.520007] ---------------------------------
[14315356.520007] inconsistent {in-hardirq-W} -> {hardirq-on-W} usage.
[14315356.520007] ethtool/1985 [HC0[0]:SC0[1]:HE1:SE0] takes:
[14315356.520007] (&np->lock){++..}, at: [<ffffffffa000c5fd>] nv_set_settings+0xc8/0x3de [forcedeth]
[14315356.520008] {in-hardirq-W} state was registered at:
[14315356.520008] [<ffffffffffffffff>] 0xffffffffffffffff
[14315356.520008] irq event stamp: 3606
[14315356.520008] hardirqs last enabled at (3605): [<ffffffff8068106f>] _spin_unlock_irqrestore+0x3f/0x68
[14315356.520008] hardirqs last disabled at (3604): [<ffffffff80680d38>] _spin_lock_irqsave+0x13/0x46
[14315356.520008] softirqs last enabled at (3534): [<ffffffff80246ba5>] __do_softirq+0xbc/0xc5
[14315356.520008] softirqs last disabled at (3606): [<ffffffff80680b33>] _spin_lock_bh+0x11/0x41
[14315356.520008]
[14315356.520008] other info that might help us debug this:
[14315356.520008] 2 locks held by ethtool/1985:
[14315356.520008] #0: (rtnl_mutex){--..}, at: [<ffffffff80596072>] rtnl_lock+0x12/0x14
[14315356.520008] #1: (_xmit_ETHER){-+..}, at: [<ffffffffa000c5e8>] nv_set_settings+0xb3/0x3de [forcedeth]
[14315356.520008]
[14315356.520008] stack backtrace:
[14315356.520008] Pid: 1985, comm: ethtool Not tainted 2.6.26-rc4 #28
[14315356.520008]
[14315356.520008] Call Trace:
[14315356.520008] [<ffffffff8025f190>] print_usage_bug+0x162/0x173
[14315356.520008] [<ffffffff8025fa8b>] mark_lock+0x231/0x41f
[14315356.520008] [<ffffffff802607cf>] __lock_acquire+0x4e7/0xcac
[14315356.520008] [<ffffffff8025fe64>] ? trace_hardirqs_on+0xf1/0x115
[14315356.520008] [<ffffffff80272c3a>] ? disable_irq_nosync+0x6f/0x7b
[14315356.520008] [<ffffffff80261375>] lock_acquire+0x55/0x6e
[14315356.520008] [<ffffffffa000c5fd>] ? :forcedeth:nv_set_settings+0xc8/0x3de
[14315356.520008] [<ffffffff80680b15>] _spin_lock+0x2f/0x3c
[14315356.520008] [<ffffffffa000c5fd>] :forcedeth:nv_set_settings+0xc8/0x3de
[14315356.520008] [<ffffffff8058f8bb>] dev_ethtool+0x186/0xea3
[14315356.520008] [<ffffffff8067f446>] ? mutex_lock_nested+0x243/0x275
[14315356.520008] [<ffffffff8025df2b>] ? debug_mutex_free_waiter+0x46/0x4a
[14315356.520008] [<ffffffff8067f469>] ? mutex_lock_nested+0x266/0x275
[14315356.520008] [<ffffffff8058e1ce>] dev_ioctl+0x4eb/0x600
[14315356.520008] [<ffffffff8068106f>] ? _spin_unlock_irqrestore+0x3f/0x68
[14315356.520008] [<ffffffff80580f91>] sock_ioctl+0x1f5/0x202
[14315356.520008] [<ffffffff802a322e>] vfs_ioctl+0x2a/0x77
[14315356.520008] [<ffffffff802a34d6>] do_vfs_ioctl+0x25b/0x270
[14315356.520008] [<ffffffff806807b6>] ? trace_hardirqs_on_thunk+0x35/0x3a
[14315356.520008] [<ffffffff802a352d>] sys_ioctl+0x42/0x65
[14315356.520008] [<ffffffff8021fffb>] system_call_after_swapgs+0x7b/0x80
[14315356.520008]
[14315356.786222] eth0: link down.
[14315356.794850] eth1: link down.
[14315356.812266] br0: port 2(eth1) entering disabled state
[14315360.086673] eth1: link up.
[14315360.086679] br0: port 2(eth1) entering learning state
[14315360.850884] ALSA sound/pci/hda/hda_intel.c:1318: azx_pcm_prepare: bufsize=0x1800, format=0x4011
[14315360.867017] ALSA sound/pci/hda/hda_codec.c:716: hda_codec_setup_stream: NID=0x2, stream=0x5, channel=0, format=0x4011
[14315360.900023] ALSA sound/pci/hda/hda_codec.c:716: hda_codec_setup_stream: NID=0x4, stream=0x5, channel=0, format=0x4011
[14315360.917746] ALSA sound/pci/hda/hda_codec.c:716: hda_codec_setup_stream: NID=0x6, stream=0x5, channel=0, format=0x4011
[14315360.936740] ALSA sound/pci/hda/hda_codec.c:716: hda_codec_setup_stream: NID=0x5, stream=0x5, channel=0, format=0x4011
[14315360.953352] ALSA sound/pci/hda/hda_codec.c:716: hda_codec_setup_stream: NID=0xa, stream=0x5, channel=0, format=0x4011
[14315360.980039] ALSA sound/pci/hda/hda_codec.c:728: hda_codec_cleanup_stream: NID=0x4
[14315360.989433] ALSA sound/pci/hda/hda_codec.c:728: hda_codec_cleanup_stream: NID=0x6
[14315360.998047] ALSA sound/pci/hda/hda_codec.c:728: hda_codec_cleanup_stream: NID=0x5
[14315361.010006] ALSA sound/pci/hda/hda_codec.c:728: hda_codec_cleanup_stream: NID=0xa
[14315361.017106] ALSA sound/pci/hda/hda_codec.c:728: hda_codec_cleanup_stream: NID=0x2
[14315361.096677] br0: topology change detected, propagating
[14315361.102234] br0: port 2(eth1) entering forwarding state
[14315361.127387] warning: `ntpd' uses 32-bit capabilities (legacy support in use)
[14315370.790944] [drm] Initialized drm 1.1.0 20060810
[14315370.863426] ACPI: PCI Interrupt Link [APC7] enabled at IRQ 16
[14315370.873077] IOAPIC[0]: Set routing entry (4-16 -> 0x71 -> IRQ 16 Mode:1 Active:1)
[14315370.878347] ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315370.887791] PCI: Setting latency timer of device 0000:02:00.0 to 64
[14315370.894798] [drm] Initialized radeon 1.28.0 20060524 on minor 0
[14315372.590005] [drm] Setting GART location based on new memory map
[14315372.891221] [drm] Loading R300 Microcode
[14315372.895667] [drm] writeback test succeeded in 1 usecs
[14315498.823670] usb usb1: usb auto-resume
[14315498.828106] ehci_hcd 0000:00:02.1: resume root hub
[14315498.896667] hub 1-0:1.0: hub_resume
[14315498.900484] hub 1-0:1.0: state 7 ports 10 chg 0000 evt 0000
[14315501.576676] hub 1-0:1.0: hub_suspend
[14315501.580562] usb usb1: bus auto-suspend
[14315501.584590] ehci_hcd 0000:00:02.1: suspend root hub
[14315986.250681] PM: Hibernation mode set to 'platform'
[14315986.262135] PM: Marking nosave pages: 000000000009f000 - 0000000000100000
[14315986.268938] PM: Basic memory bitmaps created
[14315986.275559] PM: Syncing filesystems ... done.
[14315986.281302] Freezing user space processes ... (elapsed 0.01 seconds) done.
[14315986.302172] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315986.311774] PM: Shrinking memory... \b-\bdone (0 pages freed)
[14315986.381882] PM: Freed 0 kbytes in 0.06 seconds (0.00 MB/s)
[14315986.391641] hub 2-0:1.0: hub_suspend
[14315986.394524] usb usb2: bus suspend
[14315986.397661] ohci_hcd 0000:00:02.0: suspend root hub
[14315986.402857] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14315986.416245] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315986.422433] ACPI handle has no context!
[14315986.437294] ACPI: PCI interrupt for device 0000:00:09.0 disabled
[14315986.457213] ACPI: PCI interrupt for device 0000:00:08.0 disabled
[14315986.489964] ACPI: PCI interrupt for device 0000:00:06.1 disabled
[14315986.509671] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315986.513325] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315986.519720] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315986.526071] ata8: port disabled. ignoring.
[14315986.532436] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315986.536836] ehci_hcd 0000:00:02.1: --> no state change
[14315986.543206] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315986.548623] ohci_hcd 0000:00:02.0: --> no state change
[14315986.555166] ACPI: Preparing to enter system sleep state S4
[14315986.563274] Extended CMOS year: 2000
[14315986.563274] PM: Creating hibernation image:
[14315986.563274] PM: Need to copy 81901 pages
[14315986.563274] PM: Normal pages needed: 81901 + 1024 + 38, available pages: 442001
[14315986.563274] PM: Hibernation image created (81901 pages copied)
[14315986.563274] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315986.563274] svm_cpu_init: svm_data is NULL on 0
[14315986.563274] Extended CMOS year: 2000
[14315986.578298] ACPI: Unable to turn cooling device [ffff81007f842f50] 'off'
[14315986.585910] ohci_hcd 0000:00:02.0: PCI legacy resume
[14315986.592483] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315986.601596] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315986.606980] ohci_hcd 0000:00:02.0: powerup ports
[14315986.635128] ehci_hcd 0000:00:02.1: PCI legacy resume
[14315986.639069] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315986.648268] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315986.654320] PM: Writing back config space on device 0000:00:04.0 at offset 1 (was b00001, writing b00005)
[14315986.664193] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315986.672444] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14315986.686607] ata8: port disabled. ignoring.
[14315986.689887] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315986.698256] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315986.704608] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14315986.714616] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315986.725062] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315986.730649] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14315986.740907] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315986.751487] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315986.757101] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315986.776624] PM: Writing back config space on device 0000:00:06.1 at offset f (was 5020200, writing 5020205)
[14315986.786839] PM: Writing back config space on device 0000:00:06.1 at offset 4 (was 0, writing fe020000)
[14315986.796835] PM: Writing back config space on device 0000:00:06.1 at offset 1 (was b00000, writing b00002)
[14315986.806652] ACPI: PCI Interrupt 0000:00:06.1[B] -> Link [AAZA] -> GSI 22 (level, low) -> IRQ 22
[14315986.815909] PCI: Setting latency timer of device 0000:00:06.1 to 64
[14315986.841174] ata7.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315986.846526] ata7.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315986.853216] ata7: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315986.876773] ata7.01: configured for UDMA/66
[14315987.026629] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315987.044422] ata2: SATA link down (SStatus 0 SControl 300)
[14315987.053013] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315987.056619] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315987.086474] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315987.100696] ata4: SATA link down (SStatus 0 SControl 300)
[14315987.106528] ata5: SATA link down (SStatus 0 SControl 300)
[14315987.113327] ata6.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315987.119156] ata3: SATA link down (SStatus 0 SControl 300)
[14315987.130853] ata6.00: configured for UDMA/100
[14315987.135041] ata1.00: configured for UDMA/133
[14315987.139861] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315987.149821] sd 0:0:0:0: [sda] Write Protect is off
[14315987.153694] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315987.159532] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315987.253291] PM: Writing back config space on device 0000:00:08.0 at offset f (was 14010100, writing 1401010a)
[14315987.263676] PM: Writing back config space on device 0000:00:08.0 at offset 7 (was 0, writing fe028000)
[14315987.273674] PM: Writing back config space on device 0000:00:08.0 at offset 6 (was 0, writing fe029000)
[14315987.283223] PM: Writing back config space on device 0000:00:08.0 at offset 5 (was 1, writing b001)
[14315987.293222] PM: Writing back config space on device 0000:00:08.0 at offset 4 (was 0, writing fe02a000)
[14315987.302646] PM: Writing back config space on device 0000:00:08.0 at offset 1 (was b00000, writing b00007)
[14315987.313036] eth0: no link during initialization.
[14315987.329957] PM: Writing back config space on device 0000:00:09.0 at offset f (was 14010100, writing 1401010a)
[14315987.340347] PM: Writing back config space on device 0000:00:09.0 at offset 7 (was 0, writing fe025000)
[14315987.350344] PM: Writing back config space on device 0000:00:09.0 at offset 6 (was 0, writing fe026000)
[14315987.359896] PM: Writing back config space on device 0000:00:09.0 at offset 5 (was 1, writing ac01)
[14315987.369897] PM: Writing back config space on device 0000:00:09.0 at offset 4 (was 0, writing fe027000)
[14315987.379327] PM: Writing back config space on device 0000:00:09.0 at offset 1 (was b00000, writing b00007)
[14315987.392577] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315987.397575] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315987.416636] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315987.435121] ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315987.444992] PCI: Setting latency timer of device 0000:02:00.0 to 64
[14315987.450509] sd 0:0:0:0: [sda] Starting disk
[14315987.461766] usb usb1: usb resume
[14315987.468753] ehci_hcd 0000:00:02.1: resume root hub
[14315987.536706] hub 1-0:1.0: hub_resume
[14315987.540738] usb usb2: usb resume
[14315987.544405] ohci_hcd 0000:00:02.0: resume root hub
[14315987.616616] hub 2-0:1.0: hub_resume
[14315987.620615] PM: writing image.
[14315987.624243] PM: Free swap pages: 977947
[14315987.631831] PM: Saving image data pages (82061 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315991.823947] PM: Wrote 328244 kbytes in 4.18 seconds (78.52 MB/s)
[14315991.831374] PM: S|
[14315992.111206] ohci_hcd 0000:00:02.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ.
[14315992.125935] usb 2-3: usb suspend
[14315992.140442] usb 2-1: usb suspend
[14315992.156628] hub 2-0:1.0: hub_suspend
[14315992.160623] usb usb2: bus suspend
[14315992.164341] ohci_hcd 0000:00:02.0: suspend root hub
[14315992.169625] hub 1-0:1.0: hub_suspend
[14315992.176288] usb usb1: bus suspend
[14315992.177833] ehci_hcd 0000:00:02.1: suspend root hub
[14315992.182633] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14315992.189475] sd 0:0:0:0: [sda] Stopping disk
[14315992.623539] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14315992.630323] ACPI handle has no context!
[14315992.686627] ACPI: PCI interrupt for device 0000:00:06.1 disabled
[14315992.706451] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315992.723228] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315992.739839] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315992.756495] ata8: port disabled. ignoring.
[14315992.771213] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14315992.789743] ehci_hcd 0000:00:02.1: --> PCI D3/wakeup
[14315992.792010] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315992.811783] ohci_hcd 0000:00:02.0: --> PCI D3/wakeup
[14315992.815627] ACPI: Preparing to enter system sleep state S4
[14315992.825538] Extended CMOS year: 2000
[14315992.826645] hwsleep-0324 [03] enter_sleep_state : Entering sleep state [S4]
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7D20, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE3100, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEADC0, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3280, 7ACE (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEB000, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEB180, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEB200, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEAF00, 0098 (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-d3638f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 4, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 513763
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.116 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[14315324.233334] ... MAX_LOCKDEP_SUBCLASSES: 8
[14315324.233334] ... MAX_LOCK_DEPTH: 48
[14315324.233334] ... MAX_LOCKDEP_KEYS: 2048
[14315324.233334] ... CLASSHASH_SIZE: 1024
[14315324.233334] ... MAX_LOCKDEP_ENTRIES: 8192
[14315324.233334] ... MAX_LOCKDEP_CHAINS: 16384
[14315324.233334] ... CHAINHASH_SIZE: 8192
[14315324.233334] memory used by lock dependency info: 1648 kB
[14315324.233334] per task-struct memory footprint: 2688 bytes
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ 289c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2051692k/2096000k available (4624k kernel code, 43544k reserved, 2268k data, 260k init)
[14315324.316528] Calibrating delay using timer specific routine.. 4827.99 BogoMIPS (lpj=8043188)
[14315324.322866] Mount-cache hash table entries: 256
[14315324.327216] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.333327] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.336660] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.342949] ACPI: Core revision 20080321
[14315324.359992] Parsing all Control Methods:
[14315324.364011] Table [DSDT](id 0001) - 1203 Objects with 101 Devices 380 Methods 44 Regions
[14315324.369992] Parsing all Control Methods:
[14315324.373967] Table [SSDT](id 0002) - 4 Objects with 0 Devices 0 Methods 0 Regions
[14315324.379991] tbxface-0598 [02] tb_load_namespace : ACPI Tables successfully acquired
[14315324.389990] evxfevnt-0091 [02] enable : Transition to ACPI mode successful
[14315324.398905] enabled ExtINT on CPU#0
[14315324.403006] ENABLING IO-APIC IRQs
[14315324.406656] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.442963] Using local APIC timer interrupts.
[14315324.449986] Detected 12.557 MHz APIC timer.
[14315324.453320] net_namespace: 1272 bytes
[14315324.456653] NET: Registered protocol family 16
[14315324.460279] No dock devices found.
[14315324.464209] TOM: 0000000080000000 aka 2048M
[14315324.468810] ACPI: bus type pci registered
[14315324.473327] PCI: Using configuration type 1 for base access
[14315324.485055] evgpeblk-0956 [04] ev_create_gpe_block : GPE 00 to 1F [_GPE] 4 regs on int 0x9
[14315324.494056] evgpeblk-0956 [04] ev_create_gpe_block : GPE 20 to 5F [_GPE] 8 regs on int 0x9
[14315324.513173] Completing Region/Field/Buffer/Package initialization:...................................................................................................................................................................................
[14315324.548804] Initialized 39/44 Regions 11/11 Fields 40/40 Buffers 89/101 Packages (1216 nodes)
[14315324.553313] Initializing Device/Processor/Thermal objects by executing _INI methods:...
[14315324.559599] Executed 3 _INI methods requiring 1 _STA executions (examined 108 objects)
[14315324.563312] evgpeblk-1052 [03] ev_initialize_gpe_bloc: Found 9 Wake, Enabled 0 Runtime GPEs in this block
[14315324.573312] evgpeblk-1052 [03] ev_initialize_gpe_bloc: Found 0 Wake, Enabled 1 Runtime GPEs in this block
[14315324.583311] ACPI: Interpreter enabled
[14315324.586644] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.591289] ACPI: Using IOAPIC for interrupt routing
[14315324.618925] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.623308] PCI: Transparent bridge - 0000:00:06.0
[14315324.717297] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.726104] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.731566] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.739052] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.744887] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.753505] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.762300] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.766634] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.771942] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.778222] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 *11 14 15)
[14315324.785019] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.792423] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.796634] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[14315324.800686] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.809480] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
[14315324.813829] ACPI: PCI Interrupt Link [LUB2] (IRQs *5 7 9 10 11 14 15)
[14315324.821297] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.830093] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[14315324.837596] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 *10 11 14 15)
[14315324.845095] ACPI: PCI Interrupt Link [LSA2] (IRQs 5 7 9 10 *11 14 15)
[14315324.852709] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.856634] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.860580] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.866844] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.874099] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.881348] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.888598] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.893301] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.898761] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.903301] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.906634] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.910582] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.918714] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[14315324.923301] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.926634] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.930582] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.938324] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.946569] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.950580] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.957634] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.964780] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.969968] pnp: PnP ACPI init
[14315324.973301] ACPI: bus type pnp registered
[14315324.985823] pnp: PnP ACPI: found 13 devices
[14315324.989968] ACPI: ACPI bus type pnp unregistered
[14315324.993301] SCSI subsystem initialized
[14315324.996759] usbcore: registered new interface driver usbfs
[14315325.002670] usbcore: registered new interface driver hub
[14315325.006635] usbcore: registered new device driver usb
[14315325.009968] PCI: Using ACPI for IRQ routing
[14315325.013301] testing the IO APIC.......................
[14315325.016635]
[14315325.016635] .................................... done.
[14315325.031049] Bluetooth: Core ver 2.11
[14315325.035185] NET: Registered protocol family 31
[14315325.039968] Bluetooth: HCI device and connection manager initialized
[14315325.043301] Bluetooth: HCI socket layer initialized
[14315325.046635] DMAR:parse DMAR table failure.
[14315325.057361] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315325.064251] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315325.071137] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315325.078022] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315325.084910] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315325.091796] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315325.098693] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315325.105406] system 00:02: ioport range 0x800-0x87f has been reserved
[14315325.112119] system 00:02: ioport range 0x290-0x297 has been reserved
[14315325.118858] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315325.126797] system 00:0c: iomem range 0xcd000-0xcffff has been reserved
[14315325.133778] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315325.143248] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315325.150653] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315325.158059] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315325.165984] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315325.173440] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.181365] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.188337] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.202969] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.210022] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.217947] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.225900] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.233830] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.241760] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.250722] PCI: Bridge: 0000:00:06.0
[14315325.254332] IO window: 9000-9fff
[14315325.258111] MEM window: disabled.
[14315325.263163] PREFETCH window: disabled.
[14315325.267029] PCI: Bridge: 0000:00:0a.0
[14315325.271058] IO window: 8000-8fff
[14315325.274831] MEM window: 0xfde00000-0xfdefffff
[14315325.279727] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.286443] PCI: Bridge: 0000:00:0e.0
[14315325.290472] IO window: 6000-7fff
[14315325.294245] MEM window: 0xfdd00000-0xfddfffff
[14315325.299141] PREFETCH window: disabled.
[14315325.303509] NET: Registered protocol family 2
[14315325.339327] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.347472] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.356669] TCP bind hash table entries: 65536 (order: 9, 3670016 bytes)
[14315325.369177] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.376181] TCP reno registered
[14315325.389176] NET: Registered protocol family 1
[14315325.395754] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.402891] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.409416] fuse init (API version 7.9)
[14315325.413774] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.422698] msgmni has been set to 4007 for ipc namespace ffffffff808882f0
[14315325.430145] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.437997] io scheduler noop registered
[14315325.443166] io scheduler anticipatory registered
[14315325.447466] io scheduler deadline registered
[14315325.452480] io scheduler cfq registered (default)
[14315325.469713] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.475169] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.480288] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.485738] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.491174] pci 0000:00:06.1: Enabling HT MSI Mapping
[14315325.496626] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.502069] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.507500] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.512953] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.518653] assign_interrupt_mode Found MSI capability
[14315325.523975] assign_interrupt_mode Found MSI capability
[14315325.530243] input: Power Button (FF) as /class/input/input0
[14315325.536222] ACPI: Power Button (FF) [PWRF]
[14315325.540812] input: Power Button (CM) as /class/input/input1
[14315325.546753] ACPI: Power Button (CM) [PWRB]
[14315325.552821] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.558944] ACPI: Fan [FAN] (on)
[14315325.562831] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.570104] ACPI: Expecting a [Reference] package element, found type 0
[14315325.577473] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.583938] ACPI: Thermal Zone [THRM] (40 C)
[14315325.610263] Real Time Clock Driver v1.12ac
[14315325.614742] Linux agpgart interface v0.103
[14315325.619213] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.629426] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.636741] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.644310] loop: module loaded
[14315325.647672] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.654153] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.660478] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.666934] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.672973] tun: Universal TUN/TAP device driver, 1.6
[14315325.678389] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.685197] Driver 'sd' needs updating - please use bus_type methods
[14315325.691990] Driver 'sr' needs updating - please use bus_type methods
[14315325.699727] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315325.705854] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315325.715675] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315325.720975] scsi0 : sata_nv
[14315325.724440] scsi1 : sata_nv
[14315325.728031] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315325.736121] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315326.213362] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315326.243549] ata1.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315326.249924] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315326.263860] ata1.00: configured for UDMA/133
[14315326.597023] ata2: SATA link down (SStatus 0 SControl 300)
[14315326.616245] isa bounce pool size: 16 pages
[14315326.620287] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315326.629360] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315326.636789] sd 0:0:0:0: [sda] Write Protect is off
[14315326.641991] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315326.652984] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315326.660029] sd 0:0:0:0: [sda] Write Protect is off
[14315326.664333] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315326.673832] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315326.733373] sd 0:0:0:0: [sda] Attached SCSI disk
[14315326.741834] sd 0:0:0:0: Attached scsi generic sg0 type 0
[14315326.749400] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315326.755559] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315326.766066] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315326.771298] scsi2 : sata_nv
[14315326.774646] scsi3 : sata_nv
[14315326.779736] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315326.786676] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315327.120357] ata3: SATA link down (SStatus 0 SControl 300)
[14315327.467022] ata4: SATA link down (SStatus 0 SControl 300)
[14315327.486670] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315327.492679] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315327.501079] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315327.506771] scsi4 : sata_nv
[14315327.510118] scsi5 : sata_nv
[14315327.513669] ata5: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315327.521249] ata6: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315327.857023] ata5: SATA link down (SStatus 0 SControl 300)
[14315328.346694] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315328.360110] ata6.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315328.380111] ata6.00: configured for UDMA/100
[14315328.398843] scsi 5:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315328.410003] sr0: scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[14315328.416674] Uniform CD-ROM driver Revision: 3.20
[14315328.423724] sr 5:0:0:0: Attached scsi generic sg1 type 5
[14315328.435246] block2mtd: version $Revision: 1.30 $
[14315328.442473] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315328.446685] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315328.457118] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315328.463634] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315328.471119] ehci_hcd 0000:00:02.1: debug port 1
[14315328.476547] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315328.491682] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315328.500162] usb usb1: configuration #1 chosen from 1 choice
[14315328.506296] hub 1-0:1.0: USB hub found
[14315328.510445] hub 1-0:1.0: 10 ports detected
[14315328.616897] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[14315328.624059] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[14315328.631737] usb usb1: Product: EHCI Host Controller
[14315328.638403] usb usb1: Manufacturer: Linux 2.6.26-rc4 ehci_hcd
[14315328.643654] usb usb1: SerialNumber: 0000:00:02.1
[14315328.650676] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315328.656787] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315328.666056] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315328.673336] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315328.680048] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315328.739096] usb usb2: configuration #1 chosen from 1 choice
[14315328.745173] hub 2-0:1.0: USB hub found
[14315328.749310] hub 2-0:1.0: 10 ports detected
[14315328.826737] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315328.859995] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[14315328.866675] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[14315328.873961] usb usb2: Product: OHCI Host Controller
[14315328.879205] usb usb2: Manufacturer: Linux 2.6.26-rc4 ohci_hcd
[14315328.883557] usb usb2: SerialNumber: 0000:00:02.0
[14315328.889802] USB Universal Host Controller Interface driver v3.0
[14315329.030024] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315329.206690] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315329.213291] usbcore: registered new interface driver usblp
[14315329.220135] PNP: No PS/2 controller found. Probing ports directly.
[14315329.227168] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315329.232704] serio: i8042 AUX port at 0x60,0x64 irq 12
[14315329.238736] mice: PS/2 mouse device common for all mice
[14315329.263258] i2c /dev entries driver
[14315329.267314] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315329.273623] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315329.279949] it87: Found IT8716F chip at 0x290, revision 0
[14315329.283937] it87: in3 is VCC (+5V)
[14315329.289850] it87: in7 is VCCH (+5V Stand-By)
[14315329.320001] md: raid1 personality registered for level 1
[14315329.327686] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315329.339952] Bluetooth: HCI USB driver ver 2.9
[14315329.493345] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315329.680026] usb 2-1: configuration #1 chosen from 1 choice
[14315329.703336] usb 2-1: New USB device found, idVendor=045e, idProduct=0040
[14315329.710017] usb 2-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[14315329.717602] usb 2-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[14315329.726619] usb 2-1: Manufacturer: Microsoft
[14315330.006678] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315330.200012] usb 2-3: configuration #1 chosen from 1 choice
[14315330.236669] usb 2-3: New USB device found, idVendor=045e, idProduct=00db
[14315330.243350] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[14315330.250927] usb 2-3: Product: Natural® Ergonomic Keyboard 4000
[14315330.257121] usb 2-3: Manufacturer: Microsoft
[14315330.540011] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315330.713344] usb 2-4: device descriptor read/64, error -62
[14315330.986677] usb 2-4: device descriptor read/64, error -62
[14315331.253344] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315331.426677] usb 2-4: device descriptor read/64, error -62
[14315331.700011] usb 2-4: device descriptor read/64, error -62
[14315331.966678] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315332.380008] usb 2-4: device not accepting address 6, error -62
[14315332.543344] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315332.956675] usb 2-4: device not accepting address 7, error -62
[14315332.962884] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315332.969681] usbcore: registered new interface driver hci_usb
[14315332.976016] Bluetooth: HCI UART driver ver 2.2
[14315332.982175] Bluetooth: HCI H4 protocol initialized
[14315332.986991] Bluetooth: HCI BCSP protocol initialized
[14315332.992341] cpuidle: using governor ladder
[14315332.996802] cpuidle: using governor menu
[14315333.006669] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input2
[14315333.037967] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315333.056674] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input3
[14315333.090722] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315333.113335] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315333.147542] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315333.157794] usbcore: registered new interface driver usbhid
[14315333.163615] usbhid: v2.6:USB HID core driver
[14315333.169753] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315333.177526] ALSA device list:
[14315333.180871] No soundcards found.
[14315333.184803] GACT probability on
[14315333.188313] Mirror/redirect action on
[14315333.193511] u32 classifier
[14315333.196590] Performance counters on
[14315333.198201] input device check on
[14315333.202321] Actions configured
[14315333.209755] IPv4 over IPv4 tunneling driver
[14315333.213971] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315333.219759] TCP bic registered
[14315333.223189] TCP cubic registered
[14315333.226782] TCP westwood registered
[14315333.230632] TCP htcp registered
[14315333.234141] TCP vegas registered
[14315333.237735] TCP yeah registered
[14315333.241240] Initializing XFRM netlink socket
[14315333.246173] NET: Registered protocol family 10
[14315333.253336] IPv6 over IPv4 tunneling driver
[14315333.260003] NET: Registered protocol family 17
[14315333.266655] NET: Registered protocol family 15
[14315333.270137] Bridge firewalling registered
[14315333.274547] Bluetooth: L2CAP ver 2.9
[14315333.278487] Bluetooth: L2CAP socket layer initialized
[14315333.283907] Bluetooth: SCO (Voice Link) ver 0.5
[14315333.288799] Bluetooth: SCO socket layer initialized
[14315333.293704] Bluetooth: RFCOMM socket layer initialized
[14315333.299223] Bluetooth: RFCOMM TTY layer initialized
[14315333.304474] Bluetooth: RFCOMM ver 1.8
[14315333.309739] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315333.313777] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315333.320383] RPC: Registered udp transport module.
[14315333.325755] RPC: Registered tcp transport module.
[14315333.330882] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315333.339565] All bugs added by David S. Miller <davem@redhat.com>
[14315333.343476] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315333.356638] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315333.360223] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315333.366392] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315333.379005] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315333.384939] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315333.397176] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315333.405713] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315333.413728] PM: Loading image data pages (82061 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%Marking TSC unstable due to cpufreq changes
[14315334.100080] \b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%<4>Clocksource tsc unstable (delta = -83348826 ns)
[14315334.761277] \b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315338.103363] PM: Read 328244 kbytes in 4.69 seconds (69.98 MB/s)
[14315338.118467] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14315338.125657] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315338.132768] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315338.139434] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315338.145877] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315338.152470] Extended CMOS year: 2000
[14315986.563274] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14315986.563274] evxfevnt-0079 [02] enable : System is already in ACPI mode
[14315986.563274] svm_cpu_init: svm_data is NULL on 0
[14315986.563274] Extended CMOS year: 2000
[14315986.589380] ACPI: Unable to turn cooling device [ffff81007f842f50] 'off'
[14315986.595650] ohci_hcd 0000:00:02.0: PCI legacy resume
[14315986.602250] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315986.610740] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14315986.616840] ohci_hcd 0000:00:02.0: lost power
[14315986.676746] ohci_hcd 0000:00:02.0: OHCI controller state
[14315986.682550] ohci_hcd 0000:00:02.0: OHCI 1.0, NO legacy support registers
[14315986.689553] ohci_hcd 0000:00:02.0: control 0x683 RWE RWC HCFS=operational CBSR=3
[14315986.699552] ohci_hcd 0000:00:02.0: cmdstatus 0x00000 SOC=0
[14315986.703045] ohci_hcd 0000:00:02.0: intrstatus 0x00000044 RHSC SF
[14315986.709712] ohci_hcd 0000:00:02.0: intrenable 0x8000000a MIE RD WDH
[14315986.716023] ohci_hcd 0000:00:02.0: hcca frame #002b
[14315986.722593] ohci_hcd 0000:00:02.0: roothub.a 0100120a POTPGT=1 NOCP NPS NDP=10(10)
[14315986.728984] ohci_hcd 0000:00:02.0: roothub.b 00000000 PPCM=0000 DR=0000
[14315986.735900] ohci_hcd 0000:00:02.0: roothub.status 00008000 DRWE
[14315986.742568] ohci_hcd 0000:00:02.0: roothub.portstatus [0] 0x00010301 CSC LSDA PPS CCS
[14315986.752122] ohci_hcd 0000:00:02.0: roothub.portstatus [1] 0x00000100 PPS
[14315986.757264] ohci_hcd 0000:00:02.0: roothub.portstatus [2] 0x00010301 CSC LSDA PPS CCS
[14315986.765496] ohci_hcd 0000:00:02.0: roothub.portstatus [3] 0x00010101 CSC PPS CCS
[14315986.775496] ohci_hcd 0000:00:02.0: roothub.portstatus [4] 0x00000100 PPS
[14315986.780480] ohci_hcd 0000:00:02.0: roothub.portstatus [5] 0x00000100 PPS
[14315986.787580] ohci_hcd 0000:00:02.0: roothub.portstatus [6] 0x00000100 PPS
[14315986.794677] ohci_hcd 0000:00:02.0: roothub.portstatus [7] 0x00000100 PPS
[14315986.801774] ohci_hcd 0000:00:02.0: roothub.portstatus [8] 0x00000100 PPS
[14315986.808870] ohci_hcd 0000:00:02.0: roothub.portstatus [9] 0x00000100 PPS
[14315986.815970] ohci_hcd 0000:00:02.0: restart complete
[14315986.822637] usb usb2: root hub lost power or was reset
[14315986.827920] ohci_hcd 0000:00:02.0: suspend root hub
[14315986.832075] ehci_hcd 0000:00:02.1: PCI legacy resume
[14315986.838745] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315986.847146] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14315986.853423] ehci_hcd 0000:00:02.1: lost power, restarting
[14315986.859232] usb usb1: root hub lost power or was reset
[14315986.865901] ehci_hcd 0000:00:02.1: reset command 080b02 park=3 ithresh=8 period=1024 Reset HALT
[14315986.874772] ehci_hcd 0000:00:02.1: debug port 1
[14315986.878896] PCI: cache line size of 64 is not supported by device 0000:00:02.1
[14315986.888901] PM: Writing back config space on device 0000:00:04.0 at offset b (was 82391043, writing 8239f043)
[14315986.897045] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14315986.910015] ata8: port disabled. ignoring.
[14315986.914630] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14315986.924729] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315986.934453] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14315986.941010] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14315986.951635] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315986.961165] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14315986.968038] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14315986.978536] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315986.988059] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14315986.994917] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14315987.013297] PM: Writing back config space on device 0000:00:06.1 at offset 1 (was b00006, writing b00002)
[14315987.023378] ACPI: PCI Interrupt 0000:00:06.1[B] -> Link [AAZA] -> GSI 22 (level, low) -> IRQ 22
[14315987.032679] PCI: Setting latency timer of device 0000:00:06.1 to 64
[14315987.085970] ata7.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14315987.089928] ata7.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14315987.096627] ata7: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14315987.113600] ata7.01: configured for UDMA/66
[14315987.263295] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315987.325767] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315987.352457] ata2: SATA link down (SStatus 0 SControl 300)
[14315987.357660] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315987.363714] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14315987.370155] ata6.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14315987.379831] ata3: SATA link down (SStatus 0 SControl 300)
[14315987.382567] ata5: SATA link down (SStatus 0 SControl 300)
[14315987.389289] ata4: SATA link down (SStatus 0 SControl 300)
[14315987.395472] ata6.00: configured for UDMA/100
[14315987.401731] ata1.00: configured for UDMA/133
[14315987.405175] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315987.412932] sd 0:0:0:0: [sda] Write Protect is off
[14315987.419578] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14315987.424926] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315987.467065] eth0: no link during initialization.
[14315987.484033] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14315987.491779] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14315987.509959] PM: Writing back config space on device 0000:01:08.0 at offset 1 (was 2900005, writing 2900001)
[14315987.520213] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14315987.537783] ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14315987.548735] PCI: Setting latency timer of device 0000:02:00.0 to 64
[14315987.555499] sd 0:0:0:0: [sda] Starting disk
[14315987.585461] usb usb1: usb resume
[14315987.609591] ehci_hcd 0000:00:02.1: resume root hub after power loss
[14315987.689950] ehci_hcd 0000:00:02.1: port 4 low speed --> companion
[14315987.696455] ehci_hcd 0000:00:02.1: port 3 low speed --> companion
[14315987.703118] ehci_hcd 0000:00:02.1: port 1 low speed --> companion
[14315987.799951] ehci_hcd 0000:00:02.1: GetStatus port 4 status 003402 POWER OWNER sig=k CSC
[14315987.808460] ehci_hcd 0000:00:02.1: GetStatus port 3 status 003402 POWER OWNER sig=k CSC
[14315987.818459] ehci_hcd 0000:00:02.1: GetStatus port 1 status 003402 POWER OWNER sig=k CSC
[14315987.836617] hub 1-0:1.0: hub_reset_resume
[14315987.841029] hub 1-0:1.0: trying to enable port power on non-switchable hub
[14315987.949971] usb usb2: usb resume
[14315987.953634] ohci_hcd 0000:00:02.0: wakeup root hub
[14315988.026616] hub 2-0:1.0: hub_reset_resume
[14315988.031030] hub 2-0:1.0: trying to enable port power on non-switchable hub
[14315988.139956] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00010101 CSC PPS CCS
[14315988.159949] usb 2-1: finish reset-resume
[14315988.419952] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [0] = 0x00100303 PRSC LSDA PPS PES CCS
[14315988.479955] usb 2-1: reset low speed USB device using ohci_hcd and address 2
[14315988.743285] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [0] = 0x00100303 PRSC LSDA PPS PES CCS
[14315988.846616] usb 2-3: finish reset-resume
[14315989.106618] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [2] = 0x00100303 PRSC LSDA PPS PES CCS
[14315989.166618] usb 2-3: reset low speed USB device using ohci_hcd and address 3
[14315989.433285] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [2] = 0x00100303 PRSC LSDA PPS PES CCS
[14315989.516610] usb 2-3: manual set_interface for iface 0, alt 0
[14315989.537646] usb 2-3: manual set_interface for iface 1, alt 0
[14315989.554579] PM: Image restored successfully.
[14315989.624012] Restarting tasks ... <7>hub 1-0:1.0: state 7 ports 10 chg 0000 evt 0000
[14315989.635191] usb usb1: remote wakeup needed for autosuspend
[14315989.639411] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0010
[14315989.646085] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00010101 CSC PPS CCS
[14315989.655410] hub 2-0:1.0: port 4, status 0101, change 0001, 12 Mb/s
[14315989.734100] done.
[14315989.737591] PM: Basic memory bitmaps freed
[14315989.803290] hub 2-0:1.0: debounce: port 4: total 100ms stable 100ms status 0x101
[14315989.916620] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315989.979960] usb 2-4: new full speed USB device using ohci_hcd and address 8
[14315989.988178] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.002481] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.009944] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.126620] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315990.186620] usb 2-4: device descriptor read/64, error -62
[14315990.294084] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.303277] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.303277] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.433285] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315990.493290] usb 2-4: device descriptor read/64, error -62
[14315990.706618] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315990.769956] usb 2-4: new full speed USB device using ohci_hcd and address 9
[14315990.780758] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.791297] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.804078] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315990.919953] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315990.979957] usb 2-4: device descriptor read/64, error -62
[14315991.087264] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315991.096610] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315991.096614] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0in 5ec20000 cc 5 --> status -62
[14315991.229953] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315991.289964] usb 2-4: device descriptor read/64, error -62
[14315991.503285] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315991.566624] usb 2-4: new full speed USB device using ohci_hcd and address 10
[14315991.577744] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0out 5ec20000 cc 5 --> status -62
[14315991.790449] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0out 5ec20000 cc 5 --> status -62
[14315992.003284] usb 2-4: device not accepting address 10, error -62
[14315992.113285] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14315992.173291] usb 2-4: new full speed USB device using ohci_hcd and address 11
[14315992.184180] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0out 5ec20000 cc 5 --> status -62
[14315992.397242] ohci_hcd 0000:00:02.0: urb ffff810079c53680 path 4 ep0out 5ec20000 cc 5 --> status -62
[14315992.609950] usb 2-4: device not accepting address 11, error -62
[14315992.616293] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315992.626214] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0010
[14315999.439944] [drm] Loading R300 Microcode
[14316042.515071] PM: Hibernation mode set to 'platform'
[14316042.526291] PM: Marking nosave pages: 000000000009f000 - 0000000000100000
[14316042.536589] PM: Basic memory bitmaps created
[14316042.538198] PM: Syncing filesystems ... done.
[14316042.550112] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14316042.565534] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14316042.574058] PM: Shrinking memory... \b-\bdone (0 pages freed)
[14316042.771984] PM: Freed 0 kbytes in 0.19 seconds (0.00 MB/s)
[14316042.779933] hub 2-0:1.0: hub_suspend
[14316042.783880] usb usb2: bus suspend
[14316042.789752] ohci_hcd 0000:00:02.0: suspend root hub
[14316042.793447] hub 1-0:1.0: hub_suspend
[14316042.797397] usb usb1: bus suspend
[14316042.801079] ehci_hcd 0000:00:02.1: suspend root hub
[14316042.806378] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14316042.819280] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14316042.825677] ACPI handle has no context!
[14316042.879962] ACPI: PCI interrupt for device 0000:00:06.1 disabled
[14316042.899754] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14316042.903324] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14316042.909780] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14316042.916204] ata8: port disabled. ignoring.
[14316042.922637] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14316042.929007] ehci_hcd 0000:00:02.1: --> no state change
[14316042.932395] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14316042.939043] ohci_hcd 0000:00:02.0: --> no state change
[14316042.945692] ACPI: Preparing to enter system sleep state S4
[14316042.952727] Extended CMOS year: 2000
[14316042.953739] PM: Creating hibernation image:
[14316042.953739] PM: Need to copy 82428 pages
[14316042.953739] PM: Normal pages needed: 82428 + 1024 + 38, available pages: 441474
[14316042.953739] PM: Hibernation image created (82428 pages copied)
[14316042.953739] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14316042.953739] svm_cpu_init: svm_data is NULL on 0
[14316042.953739] Extended CMOS year: 2000
[14316042.966088] ACPI: Unable to turn cooling device [ffff81007f842f50] 'off'
[14316042.976587] ohci_hcd 0000:00:02.0: PCI legacy resume
[14316042.979948] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14316042.989587] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14316042.996229] ohci_hcd 0000:00:02.0: powerup ports
[14316043.022910] ehci_hcd 0000:00:02.1: PCI legacy resume
[14316043.026611] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14316043.036198] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14316043.042853] PM: Writing back config space on device 0000:00:04.0 at offset 1 (was b00001, writing b00005)
[14316043.052878] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14316043.062714] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14316043.074451] ata8: port disabled. ignoring.
[14316043.078822] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14316043.088715] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14316043.095744] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14316043.105945] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14316043.113674] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14316043.123267] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14316043.133264] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14316043.140088] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14316043.146850] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14316043.166620] PM: Writing back config space on device 0000:00:06.1 at offset f (was 5020200, writing 5020205)
[14316043.176821] PM: Writing back config space on device 0000:00:06.1 at offset 4 (was 0, writing fe020000)
[14316043.186581] PM: Writing back config space on device 0000:00:06.1 at offset 1 (was b00000, writing b00002)
[14316043.199936] ACPI: PCI Interrupt 0000:00:06.1[B] -> Link [AAZA] -> GSI 22 (level, low) -> IRQ 22
[14316043.207524] PCI: Setting latency timer of device 0000:00:06.1 to 64
[14316043.231202] ata7.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14316043.236607] ata7.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14316043.243198] ata7: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14316043.266812] ata7.01: configured for UDMA/66
[14316043.416621] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14316043.434478] ata2: SATA link down (SStatus 0 SControl 300)
[14316043.453759] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14316043.460338] ata4: SATA link down (SStatus 0 SControl 300)
[14316043.476354] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14316043.483008] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14316043.499809] ata6.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14316043.506447] ata5: SATA link down (SStatus 0 SControl 300)
[14316043.513068] ata3: SATA link down (SStatus 0 SControl 300)
[14316043.524158] ata6.00: configured for UDMA/100
[14316043.528288] ata1.00: configured for UDMA/133
[14316043.533090] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14316043.543053] sd 0:0:0:0: [sda] Write Protect is off
[14316043.546928] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14316043.552768] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14316043.646619] PM: Writing back config space on device 0000:00:08.0 at offset f (was 14010100, writing 1401010a)
[14316043.657001] PM: Writing back config space on device 0000:00:08.0 at offset 7 (was 0, writing fe028000)
[14316043.666998] PM: Writing back config space on device 0000:00:08.0 at offset 6 (was 0, writing fe029000)
[14316043.676541] PM: Writing back config space on device 0000:00:08.0 at offset 5 (was 1, writing b001)
[14316043.686542] PM: Writing back config space on device 0000:00:08.0 at offset 4 (was 0, writing fe02a000)
[14316043.695962] PM: Writing back config space on device 0000:00:08.0 at offset 1 (was b00000, writing b00007)
[14316043.706310] eth0: no link during initialization.
[14316043.723285] PM: Writing back config space on device 0000:00:09.0 at offset f (was 14010100, writing 1401010a)
[14316043.733675] PM: Writing back config space on device 0000:00:09.0 at offset 7 (was 0, writing fe025000)
[14316043.743671] PM: Writing back config space on device 0000:00:09.0 at offset 6 (was 0, writing fe026000)
[14316043.753222] PM: Writing back config space on device 0000:00:09.0 at offset 5 (was 1, writing ac01)
[14316043.763222] PM: Writing back config space on device 0000:00:09.0 at offset 4 (was 0, writing fe027000)
[14316043.772644] PM: Writing back config space on device 0000:00:09.0 at offset 1 (was b00000, writing b00007)
[14316043.785895] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14316043.790896] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14316043.809963] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14316043.828438] ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14316043.838298] PCI: Setting latency timer of device 0000:02:00.0 to 64
[14316043.843816] sd 0:0:0:0: [sda] Starting disk
[14316043.858391] usb usb1: usb resume
[14316043.918524] ehci_hcd 0000:00:02.1: resume root hub
[14316043.986610] hub 1-0:1.0: hub_resume
[14316043.990514] usb usb2: usb resume
[14316043.994137] ohci_hcd 0000:00:02.0: resume root hub
[14316044.066609] hub 2-0:1.0: hub_resume
[14316044.070613] PM: writing image.
[14316044.074110] PM: Free swap pages: 977947
[14316044.079438] PM: Saving image data pages (82589 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%\b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%\b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14316048.280494] PM: Wrote 330356 kbytes in 4.19 seconds (78.84 MB/s)
[14316048.287753] PM: S|
[14316048.677728] ohci_hcd 0000:00:02.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ.
[14316048.692267] usb 2-3: usb suspend
[14316048.714043] usb 2-1: usb suspend
[14316048.729956] hub 2-0:1.0: hub_suspend
[14316048.733955] usb usb2: bus suspend
[14316048.737675] ohci_hcd 0000:00:02.0: suspend root hub
[14316048.742965] hub 1-0:1.0: hub_suspend
[14316048.749629] usb usb1: bus suspend
[14316048.751176] ehci_hcd 0000:00:02.1: suspend root hub
[14316048.755970] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14316048.762812] sd 0:0:0:0: [sda] Stopping disk
[14316049.190010] ACPI: PCI interrupt for device 0000:01:08.0 disabled
[14316049.196537] ACPI handle has no context!
[14316049.253289] ACPI: PCI interrupt for device 0000:00:06.1 disabled
[14316049.273115] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14316049.289891] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14316049.306511] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14316049.323158] ata8: port disabled. ignoring.
[14316049.337876] ACPI: PCI interrupt for device 0000:00:02.1 disabled
[14316049.356406] ehci_hcd 0000:00:02.1: --> PCI D3/wakeup
[14316049.358672] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14316049.378443] ohci_hcd 0000:00:02.0: --> PCI D3/wakeup
[14316049.382302] ACPI: Preparing to enter system sleep state S4
[14316049.392357] Extended CMOS year: 2000
[14316049.393306] hwsleep-0324 [03] enter_sleep_state : Entering sleep state [S4]
[ 0.000000] Command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007fee0000 (usable)
[ 0.000000] BIOS-e820: 000000007fee0000 - 000000007fee3000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007fee3000 - 000000007fef0000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007fef0000 - 000000007ff00000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] max_pfn_mapped = 1048576
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] init_memory_mapping
[ 0.000000] DMI 2.4 present.
[ 0.000000] ACPI: RSDP 000F7D20, 0024 (r2 Nvidia)
[ 0.000000] ACPI: XSDT 7FEE3100, 004C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: FACP 7FEEADC0, 00F4 (r3 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: DSDT 7FEE3280, 7ACE (r1 NVIDIA AWRDACPI 1000 MSFT 3000000)
[ 0.000000] ACPI: FACS 7FEE0000, 0040
[ 0.000000] ACPI: SSDT 7FEEB000, 0136 (r1 PTLTD POWERNOW 1 LTP 1)
[ 0.000000] ACPI: HPET 7FEEB180, 0038 (r1 Nvidia ASUSACPI 42302E31 AWRD 98)
[ 0.000000] ACPI: MCFG 7FEEB200, 003C (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] ACPI: APIC 7FEEAF00, 0098 (r1 Nvidia ASUSACPI 42302E31 AWRD 0)
[ 0.000000] early res: 0 [0-fff] BIOS data page
[ 0.000000] early res: 1 [6000-7fff] TRAMPOLINE
[ 0.000000] early res: 2 [200000-d3638f] TEXT DATA BSS
[ 0.000000] early res: 3 [9f800-fffff] BIOS reserved
[ 0.000000] early res: 4 [8000-bfff] PGTABLE
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0 -> 4096
[ 0.000000] DMA32 4096 -> 1048576
[ 0.000000] Normal 1048576 -> 1048576
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0 -> 159
[ 0.000000] 0: 256 -> 524000
[ 0.000000] Detected use of extended apic ids on hypertransport bus
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 4, version 0, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[ 0.000000] Setting APIC routing to flat
[ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] mapped APIC to ffffffffff5fb000 ( fee00000)
[ 0.000000] mapped IOAPIC to ffffffffff5fa000 (00000000fec00000)
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 7ff00000:70100000)
[14315324.233334] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 513763
[14315324.233334] Kernel command line: root=/dev/sda5 resume=/dev/sda6 vga=6 apic=verbose console=ttyS0,115200 console=tty0 pci=nomsi no_console_suspend ro
[14315324.233334] Initializing CPU#0
[14315324.233334] PID hash table entries: 4096 (order: 12, 32768 bytes)
[14315324.233334] Extended CMOS year: 2000
[14315324.233334] TSC calibrated against PM_TIMER
[14315324.233334] time.c: Detected 2411.099 MHz processor.
[14315324.233334] Console: colour VGA+ 80x60
[14315324.233334] console [tty0] enabled
[14315324.233334] console [ttyS0] enabled
[14315324.233334] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[14315324.233334] ... MAX_LOCKDEP_SUBCLASSES: 8
[14315324.233334] ... MAX_LOCK_DEPTH: 48
[14315324.233334] ... MAX_LOCKDEP_KEYS: 2048
[14315324.233334] ... CLASSHASH_SIZE: 1024
[14315324.233334] ... MAX_LOCKDEP_ENTRIES: 8192
[14315324.233334] ... MAX_LOCKDEP_CHAINS: 16384
[14315324.233334] ... CHAINHASH_SIZE: 8192
[14315324.233334] memory used by lock dependency info: 1648 kB
[14315324.233334] per task-struct memory footprint: 2688 bytes
[14315324.233334] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[14315324.233334] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[14315324.233334] Checking aperture...
[14315324.233334] Node 0: aperture @ 89c000000 size 32 MB
[14315324.233334] Aperture beyond 4GB. Ignoring.
[14315324.233334] No AGP bridge found
[14315324.233334] Memory: 2051692k/2096000k available (4624k kernel code, 43544k reserved, 2268k data, 260k init)
[14315324.316528] Calibrating delay using timer specific routine.. 4827.00 BogoMIPS (lpj=8043205)
[14315324.322857] Mount-cache hash table entries: 256
[14315324.327216] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[14315324.333327] CPU: L2 Cache: 512K (64 bytes/line)
[14315324.336660] CPU: AMD Athlon(tm) 64 Processor 3800+ stepping 01
[14315324.342949] ACPI: Core revision 20080321
[14315324.359992] Parsing all Control Methods:
[14315324.364011] Table [DSDT](id 0001) - 1203 Objects with 101 Devices 380 Methods 44 Regions
[14315324.369992] Parsing all Control Methods:
[14315324.373967] Table [SSDT](id 0002) - 4 Objects with 0 Devices 0 Methods 0 Regions
[14315324.379991] tbxface-0598 [02] tb_load_namespace : ACPI Tables successfully acquired
[14315324.389990] evxfevnt-0091 [02] enable : Transition to ACPI mode successful
[14315324.398902] enabled ExtINT on CPU#0
[14315324.402995] ENABLING IO-APIC IRQs
[14315324.406656] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[14315324.442963] Using local APIC timer interrupts.
[14315324.449986] Detected 12.557 MHz APIC timer.
[14315324.453320] net_namespace: 1272 bytes
[14315324.456653] NET: Registered protocol family 16
[14315324.460264] No dock devices found.
[14315324.464193] TOM: 0000000080000000 aka 2048M
[14315324.468794] ACPI: bus type pci registered
[14315324.473293] PCI: Using configuration type 1 for base access
[14315324.481638] evgpeblk-0956 [04] ev_create_gpe_block : GPE 00 to 1F [_GPE] 4 regs on int 0x9
[14315324.490697] evgpeblk-0956 [04] ev_create_gpe_block : GPE 20 to 5F [_GPE] 8 regs on int 0x9
[14315324.509805] Completing Region/Field/Buffer/Package initialization:...................................................................................................................................................................................
[14315324.545438] Initialized 39/44 Regions 11/11 Fields 40/40 Buffers 89/101 Packages (1216 nodes)
[14315324.549980] Initializing Device/Processor/Thermal objects by executing _INI methods:...
[14315324.556256] Executed 3 _INI methods requiring 1 _STA executions (examined 108 objects)
[14315324.559979] evgpeblk-1052 [03] ev_initialize_gpe_bloc: Found 9 Wake, Enabled 0 Runtime GPEs in this block
[14315324.569979] evgpeblk-1052 [03] ev_initialize_gpe_bloc: Found 0 Wake, Enabled 1 Runtime GPEs in this block
[14315324.579978] ACPI: Interpreter enabled
[14315324.583311] ACPI: (supports S0 S1 S3 S4 S5)
[14315324.587956] ACPI: Using IOAPIC for interrupt routing
[14315324.615461] ACPI: PCI Root Bridge [PCI0] (0000:00)
[14315324.619975] PCI: Transparent bridge - 0000:00:06.0
[14315324.713902] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.722705] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.728225] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 *10 11 14 15)
[14315324.735728] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.741552] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.750170] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.758961] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 *11 14 15)
[14315324.763301] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.768606] ACPI: PCI Interrupt Link [LP2P] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.777265] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 *11 14 15)
[14315324.784756] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
[14315324.792248] ACPI: PCI Interrupt Link [LMC1] (IRQs 5 7 9 *10 11 14 15)
[14315324.796634] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[14315324.800688] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.809481] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
[14315324.813830] ACPI: PCI Interrupt Link [LUB2] (IRQs *5 7 9 10 11 14 15)
[14315324.821293] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[14315324.829952] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[14315324.834335] ACPI: PCI Interrupt Link [LFID] (IRQs 5 7 9 *10 11 14 15)
[14315324.841605] ACPI: PCI Interrupt Link [LSA2] (IRQs 5 7 9 10 *11 14 15)
[14315324.849224] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[14315324.853301] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0, disabled.
[14315324.857248] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0
[14315324.863512] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[14315324.870578] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0, disabled.
[14315324.877826] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0, disabled.
[14315324.885076] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0
[14315324.889968] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[14315324.895428] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0
[14315324.899968] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[14315324.903301] ACPI: PCI Interrupt Link [AMC1] (IRQs 20 21 22 23) *0
[14315324.907248] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[14315324.915381] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[14315324.919968] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0
[14315324.923301] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0
[14315324.927248] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[14315324.934992] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[14315324.943228] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[14315324.947246] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[14315324.954299] ACPI: PCI Interrupt Link [ASA2] (IRQs 20 21 22 23) *0
[14315324.961381] Linux Plug and Play Support v0.97 (c) Adam Belay
[14315324.966635] pnp: PnP ACPI init
[14315324.969968] ACPI: bus type pnp registered
[14315324.982451] pnp: PnP ACPI: found 13 devices
[14315324.986635] ACPI: ACPI bus type pnp unregistered
[14315324.989968] SCSI subsystem initialized
[14315324.993332] usbcore: registered new interface driver usbfs
[14315324.999240] usbcore: registered new interface driver hub
[14315325.003301] usbcore: registered new device driver usb
[14315325.006635] PCI: Using ACPI for IRQ routing
[14315325.009968] testing the IO APIC.......................
[14315325.013301]
[14315325.013301] .................................... done.
[14315325.027803] Bluetooth: Core ver 2.11
[14315325.031935] NET: Registered protocol family 31
[14315325.036635] Bluetooth: HCI device and connection manager initialized
[14315325.039968] Bluetooth: HCI socket layer initialized
[14315325.043301] DMAR:parse DMAR table failure.
[14315325.054041] system 00:01: ioport range 0x1000-0x107f has been reserved
[14315325.060937] system 00:01: ioport range 0x1080-0x10ff has been reserved
[14315325.067822] system 00:01: ioport range 0x1400-0x147f has been reserved
[14315325.074710] system 00:01: ioport range 0x1480-0x14ff has been reserved
[14315325.081595] system 00:01: ioport range 0x1800-0x187f has been reserved
[14315325.088483] system 00:01: ioport range 0x1880-0x18ff has been reserved
[14315325.095381] system 00:02: ioport range 0x4d0-0x4d1 has been reserved
[14315325.102093] system 00:02: ioport range 0x800-0x87f has been reserved
[14315325.108807] system 00:02: ioport range 0x290-0x297 has been reserved
[14315325.115543] system 00:0b: iomem range 0xf0000000-0xf3ffffff could not be reserved
[14315325.123491] system 00:0c: iomem range 0xcd000-0xcffff has been reserved
[14315325.130464] system 00:0c: iomem range 0xf0000-0xf7fff could not be reserved
[14315325.139923] system 00:0c: iomem range 0xf8000-0xfbfff could not be reserved
[14315325.147328] system 00:0c: iomem range 0xfc000-0xfffff could not be reserved
[14315325.154735] system 00:0c: iomem range 0xfefff000-0xfefff0ff could not be reserved
[14315325.162659] system 00:0c: iomem range 0x7fee0000-0x7fefffff could not be reserved
[14315325.170116] system 00:0c: iomem range 0xffff0000-0xffffffff could not be reserved
[14315325.178043] system 00:0c: iomem range 0x0-0x9ffff could not be reserved
[14315325.185017] system 00:0c: iomem range 0x100000-0x7fedffff could not be reserved
[14315325.199647] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[14315325.206708] system 00:0c: iomem range 0xfee00000-0xfeefffff could not be reserved
[14315325.214634] system 00:0c: iomem range 0xfefff000-0xfeffffff could not be reserved
[14315325.222585] system 00:0c: iomem range 0xfff80000-0xfff80fff could not be reserved
[14315325.230510] system 00:0c: iomem range 0xfff90000-0xfffbffff could not be reserved
[14315325.238441] system 00:0c: iomem range 0xfffed000-0xfffeffff could not be reserved
[14315325.247394] PCI: Bridge: 0000:00:06.0
[14315325.251018] IO window: 9000-9fff
[14315325.254790] MEM window: disabled.
[14315325.259831] PREFETCH window: disabled.
[14315325.263697] PCI: Bridge: 0000:00:0a.0
[14315325.267727] IO window: 8000-8fff
[14315325.271501] MEM window: 0xfde00000-0xfdefffff
[14315325.276395] PREFETCH window: 0x00000000e8000000-0x00000000efffffff
[14315325.283110] PCI: Bridge: 0000:00:0e.0
[14315325.287142] IO window: 6000-7fff
[14315325.290913] MEM window: 0xfdd00000-0xfddfffff
[14315325.295811] PREFETCH window: disabled.
[14315325.300178] NET: Registered protocol family 2
[14315325.335996] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[14315325.344142] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[14315325.353337] TCP bind hash table entries: 65536 (order: 9, 3670016 bytes)
[14315325.365827] TCP: Hash tables configured (established 262144 bind 65536)
[14315325.372834] TCP reno registered
[14315325.385835] NET: Registered protocol family 1
[14315325.392305] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[14315325.399441] JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[14315325.405968] fuse init (API version 7.9)
[14315325.410326] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[14315325.419254] msgmni has been set to 4007 for ipc namespace ffffffff808882f0
[14315325.426697] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[14315325.434550] io scheduler noop registered
[14315325.439766] io scheduler anticipatory registered
[14315325.444075] io scheduler deadline registered
[14315325.449091] io scheduler cfq registered (default)
[14315325.466344] pci 0000:00:05.0: Enabling HT MSI Mapping
[14315325.471799] pci 0000:00:05.1: Enabling HT MSI Mapping
[14315325.476916] pci 0000:00:05.2: Enabling HT MSI Mapping
[14315325.482372] pci 0000:00:06.0: Enabling HT MSI Mapping
[14315325.487809] pci 0000:00:06.1: Enabling HT MSI Mapping
[14315325.493262] pci 0000:00:08.0: Enabling HT MSI Mapping
[14315325.498703] pci 0000:00:09.0: Enabling HT MSI Mapping
[14315325.504135] pci 0000:00:0a.0: Enabling HT MSI Mapping
[14315325.509588] pci 0000:00:0e.0: Enabling HT MSI Mapping
[14315325.515287] assign_interrupt_mode Found MSI capability
[14315325.520606] assign_interrupt_mode Found MSI capability
[14315325.526881] input: Power Button (FF) as /class/input/input0
[14315325.532858] ACPI: Power Button (FF) [PWRF]
[14315325.537449] input: Power Button (CM) as /class/input/input1
[14315325.543390] ACPI: Power Button (CM) [PWRB]
[14315325.549458] ACPI: PNP0C0B:00 is registered as cooling_device0
[14315325.555580] ACPI: Fan [FAN] (on)
[14315325.559460] ACPI: ACPI0007:00 is registered as cooling_device1
[14315325.566720] ACPI: Expecting a [Reference] package element, found type 0
[14315325.574102] ACPI: LNXTHERM:01 is registered as thermal_zone0
[14315325.580563] ACPI: Thermal Zone [THRM] (40 C)
[14315325.603595] Real Time Clock Driver v1.12ac
[14315325.608075] Linux agpgart interface v0.103
[14315325.612547] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
[14315325.622760] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.630102] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[14315325.637596] loop: module loaded
[14315325.641032] e1000e: Intel(R) PRO/1000 Network Driver - 0.3.3.3-k2
[14315325.647514] e1000e: Copyright (c) 1999-2008 Intel Corporation.
[14315325.653829] e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
[14315325.660284] e100: Copyright(c) 1999-2006 Intel Corporation
[14315325.666293] tun: Universal TUN/TAP device driver, 1.6
[14315325.671712] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[14315325.678480] Driver 'sd' needs updating - please use bus_type methods
[14315325.685243] Driver 'sr' needs updating - please use bus_type methods
[14315325.692949] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 23
[14315325.699077] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14315325.708827] sata_nv 0000:00:05.0: Using SWNCQ mode
[14315325.714123] scsi0 : sata_nv
[14315325.717541] scsi1 : sata_nv
[14315325.721110] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xdc00 irq 23
[14315325.729217] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xdc08 irq 23
[14315326.206695] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14315326.220214] ata1.00: ATA-8: SAMSUNG HD501LJ, CR100-12, max UDMA7
[14315326.226587] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[14315326.240521] ata1.00: configured for UDMA/133
[14315326.573691] ata2: SATA link down (SStatus 0 SControl 300)
[14315326.592889] isa bounce pool size: 16 pages
[14315326.596955] scsi 0:0:0:0: Direct-Access ATA SAMSUNG HD501LJ CR10 PQ: 0 ANSI: 5
[14315326.606007] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315326.613434] sd 0:0:0:0: [sda] Write Protect is off
[14315326.618637] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315326.627081] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14315326.636275] sd 0:0:0:0: [sda] Write Protect is off
[14315326.640928] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14315326.650427] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[14315326.740003] sd 0:0:0:0: [sda] Attached SCSI disk
[14315326.748229] sd 0:0:0:0: Attached scsi generic sg0 type 0
[14315326.755781] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 22
[14315326.761936] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14315326.772452] sata_nv 0000:00:05.1: Using SWNCQ mode
[14315326.777683] scsi2 : sata_nv
[14315326.781028] scsi3 : sata_nv
[14315326.784603] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc800 irq 22
[14315326.792706] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc808 irq 22
[14315327.127025] ata3: SATA link down (SStatus 0 SControl 300)
[14315327.473691] ata4: SATA link down (SStatus 0 SControl 300)
[14315327.493337] ACPI: PCI Interrupt Link [ASA2] enabled at IRQ 21
[14315327.499341] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14315327.507738] sata_nv 0000:00:05.2: Using SWNCQ mode
[14315327.513425] scsi4 : sata_nv
[14315327.516781] scsi5 : sata_nv
[14315327.520348] ata5: SATA max UDMA/133 cmd 0xc400 ctl 0xc000 bmdma 0xb400 irq 21
[14315327.527925] ata6: SATA max UDMA/133 cmd 0xbc00 ctl 0xb800 bmdma 0xb408 irq 21
[14315327.863749] ata5: SATA link down (SStatus 0 SControl 300)
[14315328.353361] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14315328.383444] ata6.00: ATAPI: TSSTcorp CDDVDW SH-S203B, SB00, max UDMA/100
[14315328.436778] ata6.00: configured for UDMA/100
[14315328.476668] scsi 5:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S203B SB00 PQ: 0 ANSI: 5
[14315328.600002] sr0: scsi3-mmc drive: 125x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[14315328.642296] Uniform CD-ROM driver Revision: 3.20
[14315328.649446] sr 5:0:0:0: Attached scsi generic sg1 type 5
[14315328.659784] block2mtd: version $Revision: 1.30 $
[14315328.667052] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 20
[14315328.673194] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14315328.682802] ehci_hcd 0000:00:02.1: EHCI Host Controller
[14315328.689317] ehci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 1
[14315328.696829] ehci_hcd 0000:00:02.1: debug port 1
[14315328.702248] ehci_hcd 0000:00:02.1: irq 20, io mem 0xfe02e000
[14315328.716567] ehci_hcd 0000:00:02.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[14315328.723891] usb usb1: configuration #1 chosen from 1 choice
[14315328.730025] hub 1-0:1.0: USB hub found
[14315328.734185] hub 1-0:1.0: 10 ports detected
[14315328.840224] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[14315328.847386] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[14315328.855061] usb usb1: Product: EHCI Host Controller
[14315328.861727] usb usb1: Manufacturer: Linux 2.6.26-rc4 ehci_hcd
[14315328.866980] usb usb1: SerialNumber: 0000:00:02.1
[14315328.873993] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[14315328.880101] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14315328.889364] ohci_hcd 0000:00:02.0: OHCI Host Controller
[14315328.896669] ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 2
[14315328.903383] ohci_hcd 0000:00:02.0: irq 23, io mem 0xfe02f000
[14315328.962374] usb usb2: configuration #1 chosen from 1 choice
[14315328.968432] hub 2-0:1.0: USB hub found
[14315328.972586] hub 2-0:1.0: 10 ports detected
[14315329.050071] hub 1-0:1.0: unable to enumerate USB device on port 1
[14315329.083321] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[14315329.090008] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[14315329.097286] usb usb2: Product: OHCI Host Controller
[14315329.102530] usb usb2: Manufacturer: Linux 2.6.26-rc4 ohci_hcd
[14315329.106885] usb usb2: SerialNumber: 0000:00:02.0
[14315329.113130] USB Universal Host Controller Interface driver v3.0
[14315329.253357] hub 1-0:1.0: unable to enumerate USB device on port 3
[14315329.430023] hub 1-0:1.0: unable to enumerate USB device on port 4
[14315329.436621] usbcore: registered new interface driver usblp
[14315329.443451] PNP: No PS/2 controller found. Probing ports directly.
[14315329.450472] serio: i8042 KBD port at 0x60,0x64 irq 1
[14315329.456021] serio: i8042 AUX port at 0x60,0x64 irq 12
[14315329.462037] mice: PS/2 mouse device common for all mice
[14315329.486561] i2c /dev entries driver
[14315329.490643] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x1c00
[14315329.496959] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x1c40
[14315329.503281] it87: Found IT8716F chip at 0x290, revision 0
[14315329.507267] it87: in3 is VCC (+5V)
[14315329.513179] it87: in7 is VCCH (+5V Stand-By)
[14315329.543335] md: raid1 personality registered for level 1
[14315329.550473] device-mapper: ioctl: 4.13.0-ioctl (2007-10-18) initialised: dm-devel@redhat.com
[14315329.559489] Bluetooth: HCI USB driver ver 2.9
[14315329.716679] usb 2-1: new low speed USB device using ohci_hcd and address 2
[14315329.903359] usb 2-1: configuration #1 chosen from 1 choice
[14315329.926669] usb 2-1: New USB device found, idVendor=045e, idProduct=0040
[14315329.933351] usb 2-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[14315329.940927] usb 2-1: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[14315329.949952] usb 2-1: Manufacturer: Microsoft
[14315330.230013] usb 2-3: new low speed USB device using ohci_hcd and address 3
[14315330.423345] usb 2-3: configuration #1 chosen from 1 choice
[14315330.460003] usb 2-3: New USB device found, idVendor=045e, idProduct=00db
[14315330.466683] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[14315330.474261] usb 2-3: Product: Natural® Ergonomic Keyboard 4000
[14315330.480453] usb 2-3: Manufacturer: Microsoft
[14315330.763344] usb 2-4: new full speed USB device using ohci_hcd and address 4
[14315330.936678] usb 2-4: device descriptor read/64, error -62
[14315331.210011] usb 2-4: device descriptor read/64, error -62
[14315331.476678] usb 2-4: new full speed USB device using ohci_hcd and address 5
[14315331.650011] usb 2-4: device descriptor read/64, error -62
[14315331.923344] usb 2-4: device descriptor read/64, error -62
[14315332.190011] usb 2-4: new full speed USB device using ohci_hcd and address 6
[14315332.603341] usb 2-4: device not accepting address 6, error -62
[14315332.766677] usb 2-4: new full speed USB device using ohci_hcd and address 7
[14315333.180008] usb 2-4: device not accepting address 7, error -62
[14315333.186213] hub 2-0:1.0: unable to enumerate USB device on port 4
[14315333.193008] usbcore: registered new interface driver hci_usb
[14315333.199346] Bluetooth: HCI UART driver ver 2.2
[14315333.205504] Bluetooth: HCI H4 protocol initialized
[14315333.210322] Bluetooth: HCI BCSP protocol initialized
[14315333.215671] cpuidle: using governor ladder
[14315333.220135] cpuidle: using governor menu
[14315333.230002] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /class/input/input2
[14315333.261274] input: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:02.0-1
[14315333.280007] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input3
[14315333.314087] input: USB HID v1.11 Keyboard [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315333.336668] input: Microsoft Natural® Ergonomic Keyboard 4000 as /class/input/input4
[14315333.370899] input: USB HID v1.11 Device [Microsoft Natural® Ergonomic Keyboard 4000] on usb-0000:00:02.0-3
[14315333.381147] usbcore: registered new interface driver usbhid
[14315333.386945] usbhid: v2.6:USB HID core driver
[14315333.393085] Advanced Linux Sound Architecture Driver Version 1.0.16.
[14315333.400869] ALSA device list:
[14315333.404208] No soundcards found.
[14315333.408145] GACT probability on
[14315333.411653] Mirror/redirect action on
[14315333.416853] u32 classifier
[14315333.419931] Performance counters on
[14315333.421542] input device check on
[14315333.425661] Actions configured
[14315333.433116] IPv4 over IPv4 tunneling driver
[14315333.437304] ip_tables: (C) 2000-2006 Netfilter Core Team
[14315333.443091] TCP bic registered
[14315333.446522] TCP cubic registered
[14315333.450115] TCP westwood registered
[14315333.453967] TCP htcp registered
[14315333.457479] TCP vegas registered
[14315333.461077] TCP yeah registered
[14315333.464582] Initializing XFRM netlink socket
[14315333.469529] NET: Registered protocol family 10
[14315333.476669] IPv6 over IPv4 tunneling driver
[14315333.483336] NET: Registered protocol family 17
[14315333.490002] NET: Registered protocol family 15
[14315333.493450] Bridge firewalling registered
[14315333.497860] Bluetooth: L2CAP ver 2.9
[14315333.501800] Bluetooth: L2CAP socket layer initialized
[14315333.507218] Bluetooth: SCO (Voice Link) ver 0.5
[14315333.512112] Bluetooth: SCO socket layer initialized
[14315333.517037] Bluetooth: RFCOMM socket layer initialized
[14315333.522549] Bluetooth: RFCOMM TTY layer initialized
[14315333.527800] Bluetooth: RFCOMM ver 1.8
[14315333.533062] Bluetooth: BNEP (Ethernet Emulation) ver 1.2
[14315333.537101] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[14315333.543695] RPC: Registered udp transport module.
[14315333.549077] RPC: Registered tcp transport module.
[14315333.554204] 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com>
[14315333.562880] All bugs added by David S. Miller <davem@redhat.com>
[14315333.566792] powernow-k8: Found 1 AMD Athlon(tm) 64 Processor 3800+ processors (1 cpu cores) (version 2.20.00)
[14315333.579955] powernow-k8: 0 : fid 0x10 (2400 MHz), vid 0x8
[14315333.583538] powernow-k8: 1 : fid 0xe (2200 MHz), vid 0xa
[14315333.589709] powernow-k8: 2 : fid 0xc (2000 MHz), vid 0xc
[14315333.602320] powernow-k8: 3 : fid 0xa (1800 MHz), vid 0xe
[14315333.608255] powernow-k8: 4 : fid 0x2 (1000 MHz), vid 0x12
[14315333.620496] Freezing user space processes ... (elapsed 0.00 seconds) done.
[14315333.629026] Freezing remaining freezable tasks ... (elapsed 0.00 seconds) done.
[14315333.637034] PM: Loading image data pages (82589 pages) ... \b\b\b\b 0%\b\b\b\b 1%\b\b\b\b 2%\b\b\b\b 3%\b\b\b\b 4%\b\b\b\b 5%\b\b\b\b 6%\b\b\b\b 7%\b\b\b\b 8%\b\b\b\b 9%\b\b\b\b 10%\b\b\b\b 11%\b\b\b\b 12%\b\b\b\b 13%\b\b\b\b 14%\b\b\b\b 15%\b\b\b\b 16%\b\b\b\b 17%\b\b\b\b 18%\b\b\b\b 19%\b\b\b\b 20%\b\b\b\b 21%\b\b\b\b 22%\b\b\b\b 23%\b\b\b\b 24%\b\b\b\b 25%\b\b\b\b 26%\b\b\b\b 27%\b\b\b\b 28%\b\b\b\b 29%\b\b\b\b 30%\b\b\b\b 31%Marking TSC unstable due to cpufreq changes
[14315335.330662] \b\b\b\b 32%\b\b\b\b 33%\b\b\b\b 34%\b\b\b\b 35%\b\b\b\b 36%\b\b\b\b 37%\b\b\b\b 38%\b\b\b\b 39%\b\b\b\b 40%<4>Clocksource tsc unstable (delta = -248506648 ns)
[14315335.735245] \b\b\b\b 41%\b\b\b\b 42%\b\b\b\b 43%\b\b\b\b 44%\b\b\b\b 45%\b\b\b\b 46%\b\b\b\b 47%\b\b\b\b 48%\b\b\b\b 49%\b\b\b\b 50%\b\b\b\b 51%\b\b\b\b 52%\b\b\b\b 53%\b\b\b\b 54%\b\b\b\b 55%\b\b\b\b 56%\b\b\b\b 57%\b\b\b\b 58%\b\b\b\b 59%\b\b\b\b 60%\b\b\b\b 61%\b\b\b\b 62%\b\b\b\b 63%\b\b\b\b 64%\b\b\b\b 65%\b\b\b\b 66%\b\b\b\b 67%\b\b\b\b 68%\b\b\b\b 69%\b\b\b\b 70%\b\b\b\b 71%\b\b\b\b 72%\b\b\b\b 73%\b\b\b\b 74%\b\b\b\b 75%\b\b\b\b 76%\b\b\b\b 77%\b\b\b\b 78%\b\b\b\b 79%\b\b\b\b 80%\b\b\b\b 81%\b\b\b\b 82%\b\b\b\b 83%\b\b\b\b 84%\b\b\b\b 85%\b\b\b\b 86%\b\b\b\b 87%\b\b\b\b 88%\b\b\b\b 89%\b\b\b\b 90%\b\b\b\b 91%\b\b\b\b 92%\b\b\b\b 93%\b\b\b\b 94%\b\b\b\b 95%\b\b\b\b 96%\b\b\b\b 97%\b\b\b\b 98%\b\b\b\b 99%\b\b\b\b100%\b\b\b\bdone
[14315338.320334] PM: Read 330356 kbytes in 4.68 seconds (70.58 MB/s)
[14315338.341762] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[14315338.350008] ACPI: PCI interrupt for device 0000:00:05.2 disabled
[14315338.354161] ACPI: PCI interrupt for device 0000:00:05.1 disabled
[14315338.360826] ACPI: PCI interrupt for device 0000:00:05.0 disabled
[14315338.367267] ACPI: PCI interrupt for device 0000:00:02.0 disabled
[14315338.373860] Extended CMOS year: 2000
[14316042.953739] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[14316042.953739] evxfevnt-0079 [02] enable : System is already in ACPI mode
[14316042.953739] svm_cpu_init: svm_data is NULL on 0
[14316042.953739] Extended CMOS year: 2000
[14316042.978446] ACPI: Unable to turn cooling device [ffff81007f842f50] 'off'
[14316042.985081] ohci_hcd 0000:00:02.0: PCI legacy resume
[14316042.991683] ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [APCF] -> GSI 23 (level, low) -> IRQ 23
[14316043.000127] PCI: Setting latency timer of device 0000:00:02.0 to 64
[14316043.006555] ohci_hcd 0000:00:02.0: lost power
[14316043.067239] ohci_hcd 0000:00:02.0: OHCI controller state
[14316043.073837] ohci_hcd 0000:00:02.0: OHCI 1.0, NO legacy support registers
[14316043.080939] ohci_hcd 0000:00:02.0: control 0x683 RWE RWC HCFS=operational CBSR=3
[14316043.088830] ohci_hcd 0000:00:02.0: cmdstatus 0x00000 SOC=0
[14316043.095497] ohci_hcd 0000:00:02.0: intrstatus 0x00000044 RHSC SF
[14316043.101379] ohci_hcd 0000:00:02.0: intrenable 0x8000000a MIE RD WDH
[14316043.107788] ohci_hcd 0000:00:02.0: hcca frame #002d
[14316043.113060] ohci_hcd 0000:00:02.0: roothub.a 0100120a POTPGT=1 NOCP NPS NDP=10(10)
[14316043.123059] ohci_hcd 0000:00:02.0: roothub.b 00000000 PPCM=0000 DR=0000
[14316043.128132] ohci_hcd 0000:00:02.0: roothub.status 00008000 DRWE
[14316043.134800] ohci_hcd 0000:00:02.0: roothub.portstatus [0] 0x00010301 CSC LSDA PPS CCS
[14316043.142770] ohci_hcd 0000:00:02.0: roothub.portstatus [1] 0x00000100 PPS
[14316043.149876] ohci_hcd 0000:00:02.0: roothub.portstatus [2] 0x00010301 CSC LSDA PPS CCS
[14316043.159876] ohci_hcd 0000:00:02.0: roothub.portstatus [3] 0x00010101 CSC PPS CCS
[14316043.166081] ohci_hcd 0000:00:02.0: roothub.portstatus [4] 0x00000100 PPS
[14316043.173177] ohci_hcd 0000:00:02.0: roothub.portstatus [5] 0x00000100 PPS
[14316043.183177] ohci_hcd 0000:00:02.0: roothub.portstatus [6] 0x00000100 PPS
[14316043.187374] ohci_hcd 0000:00:02.0: roothub.portstatus [7] 0x00000100 PPS
[14316043.194471] ohci_hcd 0000:00:02.0: roothub.portstatus [8] 0x00000100 PPS
[14316043.201571] ohci_hcd 0000:00:02.0: roothub.portstatus [9] 0x00000100 PPS
[14316043.208667] ohci_hcd 0000:00:02.0: restart complete
[14316043.215334] usb usb2: root hub lost power or was reset
[14316043.219485] ohci_hcd 0000:00:02.0: suspend root hub
[14316043.226154] ehci_hcd 0000:00:02.1: PCI legacy resume
[14316043.231435] ACPI: PCI Interrupt 0000:00:02.1[B] -> Link [APCL] -> GSI 20 (level, low) -> IRQ 20
[14316043.239441] PCI: Setting latency timer of device 0000:00:02.1 to 64
[14316043.246120] ehci_hcd 0000:00:02.1: lost power, restarting
[14316043.252770] usb usb1: root hub lost power or was reset
[14316043.258599] ehci_hcd 0000:00:02.1: reset command 080b02 park=3 ithresh=8 period=1024 Reset HALT
[14316043.267470] ehci_hcd 0000:00:02.1: debug port 1
[14316043.271595] PCI: cache line size of 64 is not supported by device 0000:00:02.1
[14316043.279323] PCI: Setting latency timer of device 0000:00:04.0 to 64
[14316043.294538] ata8: port disabled. ignoring.
[14316043.300828] PM: Writing back config space on device 0000:00:05.0 at offset 1 (was b00003, writing b00007)
[14316043.310929] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [APSI] -> GSI 23 (level, low) -> IRQ 23
[14316043.320659] PCI: Setting latency timer of device 0000:00:05.0 to 64
[14316043.327303] PM: Writing back config space on device 0000:00:05.1 at offset 1 (was b00003, writing b00007)
[14316043.338069] ACPI: PCI Interrupt 0000:00:05.1[B] -> Link [APSJ] -> GSI 22 (level, low) -> IRQ 22
[14316043.347650] PCI: Setting latency timer of device 0000:00:05.1 to 64
[14316043.354561] PM: Writing back config space on device 0000:00:05.2 at offset 1 (was b00003, writing b00007)
[14316043.365135] ACPI: PCI Interrupt 0000:00:05.2[C] -> Link [ASA2] -> GSI 21 (level, low) -> IRQ 21
[14316043.374686] PCI: Setting latency timer of device 0000:00:05.2 to 64
[14316043.381567] PCI: Setting latency timer of device 0000:00:06.0 to 64
[14316043.399958] PM: Writing back config space on device 0000:00:06.1 at offset 1 (was b00006, writing b00002)
[14316043.410047] ACPI: PCI Interrupt 0000:00:06.1[B] -> Link [AAZA] -> GSI 22 (level, low) -> IRQ 22
[14316043.419357] PCI: Setting latency timer of device 0000:00:06.1 to 64
[14316043.475393] ata7.01: ACPI cmd ef/03:44:00:00:00:b0 filtered out
[14316043.479959] ata7.01: ACPI cmd ef/03:0c:00:00:00:b0 filtered out
[14316043.486295] ata7: nv_mode_filter: 0x1f01f&0x1f01f->0x1f01f, BIOS=0x1f000 (0xc50000) ACPI=0x1f01f (600:30:0x1c)
[14316043.503603] ata7.01: configured for UDMA/66
[14316043.649959] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14316043.705849] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14316043.761923] ata2: SATA link down (SStatus 0 SControl 300)
[14316043.768607] ata6.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14316043.774862] ata4: SATA link down (SStatus 0 SControl 300)
[14316043.781536] ata3: SATA link down (SStatus 0 SControl 300)
[14316043.787696] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 filtered out
[14316043.793812] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 filtered out
[14316043.800465] ata6.00: configured for UDMA/100
[14316043.805232] ata5: SATA link down (SStatus 0 SControl 300)
[14316043.811777] ata1.00: configured for UDMA/133
[14316043.819807] sd 0:0:0:0: [sda] 976773168 512-byte hardware sectors (500108 MB)
[14316043.824302] sd 0:0:0:0: [sda] Write Protect is off
[14316043.829585] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[14316043.836316] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[14316043.870403] eth0: no link during initialization.
[14316043.887365] PCI: Setting latency timer of device 0000:00:0a.0 to 64
[14316043.895115] PCI: Setting latency timer of device 0000:00:0e.0 to 64
[14316043.913287] PM: Writing back config space on device 0000:01:08.0 at offset 1 (was 2900005, writing 2900001)
[14316043.923545] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [APC3] -> GSI 18 (level, low) -> IRQ 18
[14316043.941120] ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [APC7] -> GSI 16 (level, low) -> IRQ 16
[14316043.952082] PCI: Setting latency timer of device 0000:02:00.0 to 64
[14316043.958846] sd 0:0:0:0: [sda] Starting disk
[14316043.969848] usb usb1: usb resume
[14316043.977995] ehci_hcd 0000:00:02.1: resume root hub after power loss
[14316044.073278] ehci_hcd 0000:00:02.1: port 4 low speed --> companion
[14316044.079790] ehci_hcd 0000:00:02.1: port 3 low speed --> companion
[14316044.086449] ehci_hcd 0000:00:02.1: port 1 low speed --> companion
[14316044.183280] ehci_hcd 0000:00:02.1: GetStatus port 4 status 003402 POWER OWNER sig=k CSC
[14316044.198098] ehci_hcd 0000:00:02.1: GetStatus port 3 status 003402 POWER OWNER sig=k CSC
[14316044.208097] ehci_hcd 0000:00:02.1: GetStatus port 1 status 003402 POWER OWNER sig=k CSC
[14316044.226611] hub 1-0:1.0: hub_reset_resume
[14316044.231026] hub 1-0:1.0: trying to enable port power on non-switchable hub
[14316044.339965] usb usb2: usb resume
[14316044.343635] ohci_hcd 0000:00:02.0: wakeup root hub
[14316044.416610] hub 2-0:1.0: hub_reset_resume
[14316044.421024] hub 2-0:1.0: trying to enable port power on non-switchable hub
[14316044.529951] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00010101 CSC PPS CCS
[14316044.549943] usb 2-1: finish reset-resume
[14316044.809946] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [0] = 0x00100303 PRSC LSDA PPS PES CCS
[14316044.869949] usb 2-1: reset low speed USB device using ohci_hcd and address 2
[14316045.133279] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [0] = 0x00100303 PRSC LSDA PPS PES CCS
[14316045.236610] usb 2-3: finish reset-resume
[14316045.496612] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [2] = 0x00100303 PRSC LSDA PPS PES CCS
[14316045.556612] usb 2-3: reset low speed USB device using ohci_hcd and address 3
[14316045.823279] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [2] = 0x00100303 PRSC LSDA PPS PES CCS
[14316045.904597] usb 2-3: manual set_interface for iface 0, alt 0
[14316045.927640] usb 2-3: manual set_interface for iface 1, alt 0
[14316045.939040] PM: Image restored successfully.
[14316046.137987] Restarting tasks ... <7>hub 1-0:1.0: state 7 ports 10 chg 0000 evt 0000
[14316046.148422] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0010
[14316046.155074] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00010101 CSC PPS CCS
[14316046.164442] hub 2-0:1.0: port 4, status 0101, change 0001, 12 Mb/s
[14316046.257296] done.
[14316046.267195] PM: Basic memory bitmaps freed
[14316046.293285] hub 2-0:1.0: debounce: port 4: total 100ms stable 100ms status 0x101
[14316046.406614] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316046.469949] usb 2-4: new full speed USB device using ohci_hcd and address 12
[14316046.480843] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316046.491303] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316046.504082] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316046.619948] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316046.679951] usb 2-4: device descriptor read/64, error -62
[14316046.787270] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316046.796604] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316046.796608] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316046.926614] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316046.986619] usb 2-4: device descriptor read/64, error -62
[14316047.199946] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316047.263284] usb 2-4: new full speed USB device using ohci_hcd and address 13
[14316047.271820] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316047.284069] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316047.293272] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316047.413281] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316047.476614] usb 2-4: device descriptor read/64, error -62
[14316047.584063] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316047.593272] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316047.593275] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0in 5ec20000 cc 5 --> status -62
[14316047.726613] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316047.786618] usb 2-4: device descriptor read/64, error -62
[14316047.999946] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316048.063282] usb 2-4: new full speed USB device using ohci_hcd and address 14
[14316048.074171] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0out 5ec20000 cc 5 --> status -62
[14316048.287247] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0out 5ec20000 cc 5 --> status -62
[14316048.499945] usb 2-4: device not accepting address 14, error -62
[14316048.609947] ohci_hcd 0000:00:02.0: GetStatus roothub.portstatus [3] = 0x00100103 PRSC PPS PES CCS
[14316048.669950] usb 2-4: new full speed USB device using ohci_hcd and address 15
[14316048.680847] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0out 5ec20000 cc 5 --> status -62
[14316048.894040] ohci_hcd 0000:00:02.0: urb ffff810079c53080 path 4 ep0out 5ec20000 cc 5 --> status -62
[14316049.106612] usb 2-4: device not accepting address 15, error -62
[14316049.112960] hub 2-0:1.0: unable to enumerate USB device on port 4
[14316049.119635] hub 1-0:1.0: hub_suspend
[14316049.126148] usb usb1: bus auto-suspend
[14316049.127875] ehci_hcd 0000:00:02.1: suspend root hub
[14316049.137334] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0010
[14316054.935949] [drm] Loading R300 Microcode
[14316192.574403] usb usb1: usb auto-resume
[14316192.579981] ehci_hcd 0000:00:02.1: resume root hub
[14316192.686598] hub 1-0:1.0: hub_resume
[14316192.690414] hub 1-0:1.0: state 7 ports 10 chg 0000 evt 0000
[14316194.696600] hub 1-0:1.0: hub_suspend
[14316194.700479] usb usb1: bus auto-suspend
[14316194.704516] ehci_hcd 0000:00:02.1: suspend root hub
Kernel config:
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.26-rc4
# Sun Jun 1 09:04:00 2008
#
CONFIG_64BIT=y
# CONFIG_X86_32 is not set
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
# CONFIG_GENERIC_LOCKBREAK is not set
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_FAST_CMPXCHG_LOCAL=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
# CONFIG_GENERIC_GPIO is not set
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
# CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ZONE_DMA32=y
CONFIG_ARCH_POPULATES_NODE_MAP=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_AOUT=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_X86_TRAMPOLINE=y
# CONFIG_KTIME_SCALAR is not set
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
# CONFIG_POSIX_MQUEUE is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
# CONFIG_TASKSTATS is not set
# CONFIG_AUDIT is not set
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_LOG_BUF_SHIFT=16
# CONFIG_CGROUPS is not set
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_GROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_USER_SCHED=y
# CONFIG_CGROUP_SCHED is not set
CONFIG_SYSFS_DEPRECATED=y
CONFIG_SYSFS_DEPRECATED_V2=y
# CONFIG_RELAY is not set
# CONFIG_NAMESPACES is not set
# CONFIG_BLK_DEV_INITRD is not set
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
CONFIG_EMBEDDED=y
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
# CONFIG_COMPAT_BRK is not set
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_ANON_INODES=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
# CONFIG_PROFILING is not set
# CONFIG_MARKERS is not set
CONFIG_HAVE_OPROFILE=y
# CONFIG_KPROBES is not set
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
# CONFIG_HAVE_DMA_ATTRS is not set
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y
CONFIG_BLOCK=y
# CONFIG_BLK_DEV_IO_TRACE is not set
CONFIG_BLK_DEV_BSG=y
CONFIG_BLOCK_COMPAT=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# CONFIG_DEFAULT_AS is not set
# CONFIG_DEFAULT_DEADLINE is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_CLASSIC_RCU=y
#
# Processor type and features
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
# CONFIG_SMP is not set
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_X86_RDC321X is not set
# CONFIG_X86_VSMP is not set
# CONFIG_PARAVIRT_GUEST is not set
CONFIG_MEMTEST_BOOTPARAM=y
CONFIG_MEMTEST_BOOTPARAM_VALUE=0
# 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 is not set
CONFIG_MK8=y
# 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_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_CPU=y
CONFIG_X86_L1_CACHE_BYTES=64
CONFIG_X86_INTERNODE_CACHE_BYTES=64
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_TSC=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
# CONFIG_CALGARY_IOMMU is not set
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
# CONFIG_PREEMPT_RCU is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCE_INTEL is not set
CONFIG_X86_MCE_AMD=y
# CONFIG_I8K is not set
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_SELECT_MEMORY_MODEL=y
# CONFIG_FLATMEM_MANUAL is not set
# CONFIG_DISCONTIGMEM_MANUAL is not set
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_HAVE_MEMORY_PRESENT=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
#
# Memory hotplug is currently incompatible with Software Suspend
#
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_RESOURCES_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MTRR=y
CONFIG_X86_PAT=y
# CONFIG_EFI is not set
# CONFIG_SECCOMP is not set
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
CONFIG_HZ_300=y
# CONFIG_HZ_1000 is not set
CONFIG_HZ=300
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x200000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x200000
CONFIG_COMPAT_VDSO=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
#
# Power management options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_VERBOSE is not set
CONFIG_CAN_PM_TRACE=y
# CONFIG_PM_TRACE_RTC is not set
CONFIG_PM_SLEEP=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_PROCFS=y
CONFIG_ACPI_PROCFS_POWER=y
CONFIG_ACPI_SYSFS_POWER=y
CONFIG_ACPI_PROC_EVENT=y
CONFIG_ACPI_AC=y
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
# CONFIG_ACPI_BAY is not set
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_WMI is not set
# CONFIG_ACPI_ASUS is not set
# CONFIG_ACPI_TOSHIBA is not set
CONFIG_ACPI_CUSTOM_DSDT_FILE=""
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
CONFIG_ACPI_DEBUG=y
CONFIG_ACPI_DEBUG_FUNC_TRACE=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_SYSTEM=y
CONFIG_X86_PM_TIMER=y
# CONFIG_ACPI_CONTAINER is not set
# CONFIG_ACPI_SBS is not set
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=y
# CONFIG_CPU_FREQ_STAT_DETAILS is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
#
# CPUFreq processor drivers
#
# CONFIG_X86_ACPI_CPUFREQ is not set
CONFIG_X86_POWERNOW_K8=y
CONFIG_X86_POWERNOW_K8_ACPI=y
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
# CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set
# CONFIG_X86_SPEEDSTEP_LIB is not set
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
# CONFIG_PCI_MMCONFIG is not set
CONFIG_PCI_DOMAINS=y
CONFIG_DMAR=y
CONFIG_DMAR_GFX_WA=y
CONFIG_DMAR_FLOPPY_WA=y
CONFIG_PCIEPORTBUS=y
CONFIG_PCIEAER=y
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEBUG=y
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
CONFIG_PCI_LEGACY=y
# CONFIG_PCI_DEBUG is not set
CONFIG_HT_IRQ=y
CONFIG_ISA_DMA_API=y
CONFIG_K8_NB=y
# CONFIG_PCCARD is not set
# CONFIG_HOTPLUG_PCI is not set
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
#
# Networking
#
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
CONFIG_XFRM=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
CONFIG_NET_KEY=y
# CONFIG_NET_KEY_MIGRATE is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_ASK_IP_FIB_HASH=y
# CONFIG_IP_FIB_TRIE is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=y
# CONFIG_NET_IPGRE is not set
CONFIG_IP_MROUTE=y
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
CONFIG_INET_AH=y
CONFIG_INET_ESP=y
CONFIG_INET_IPCOMP=y
CONFIG_INET_XFRM_TUNNEL=y
CONFIG_INET_TUNNEL=y
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
CONFIG_INET_XFRM_MODE_BEET=y
CONFIG_INET_LRO=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
CONFIG_TCP_CONG_ADVANCED=y
CONFIG_TCP_CONG_BIC=y
CONFIG_TCP_CONG_CUBIC=y
CONFIG_TCP_CONG_WESTWOOD=y
CONFIG_TCP_CONG_HTCP=y
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
CONFIG_TCP_CONG_VEGAS=y
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
CONFIG_TCP_CONG_YEAH=y
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_DEFAULT_BIC is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_HTCP is not set
# CONFIG_DEFAULT_VEGAS is not set
# CONFIG_DEFAULT_WESTWOOD is not set
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
# CONFIG_IP_VS is not set
CONFIG_IPV6=y
# CONFIG_IPV6_PRIVACY is not set
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=y
CONFIG_INET6_ESP=y
CONFIG_INET6_IPCOMP=y
# CONFIG_IPV6_MIP6 is not set
CONFIG_INET6_XFRM_TUNNEL=y
CONFIG_INET6_TUNNEL=y
CONFIG_INET6_XFRM_MODE_TRANSPORT=y
CONFIG_INET6_XFRM_MODE_TUNNEL=y
CONFIG_INET6_XFRM_MODE_BEET=y
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
CONFIG_IPV6_SIT=y
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=y
# CONFIG_IPV6_MULTIPLE_TABLES is not set
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_PIMSM_V2=y
# CONFIG_NETWORK_SECMARK is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=y
#
# Core Netfilter Configuration
#
# CONFIG_NETFILTER_NETLINK_QUEUE is not set
# CONFIG_NETFILTER_NETLINK_LOG is not set
# CONFIG_NF_CONNTRACK is not set
CONFIG_NETFILTER_XTABLES=y
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=y
# CONFIG_NETFILTER_XT_TARGET_DSCP is not set
CONFIG_NETFILTER_XT_TARGET_MARK=y
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=y
# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
# CONFIG_NETFILTER_XT_TARGET_TRACE is not set
# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set
# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
CONFIG_NETFILTER_XT_MATCH_DCCP=y
# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
# CONFIG_NETFILTER_XT_MATCH_ESP is not set
# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
CONFIG_NETFILTER_XT_MATCH_LENGTH=y
CONFIG_NETFILTER_XT_MATCH_LIMIT=y
CONFIG_NETFILTER_XT_MATCH_MAC=y
CONFIG_NETFILTER_XT_MATCH_MARK=y
# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
CONFIG_NETFILTER_XT_MATCH_PHYSDEV=y
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=y
# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
CONFIG_NETFILTER_XT_MATCH_REALM=y
CONFIG_NETFILTER_XT_MATCH_SCTP=y
# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
CONFIG_NETFILTER_XT_MATCH_STRING=y
CONFIG_NETFILTER_XT_MATCH_TCPMSS=y
# CONFIG_NETFILTER_XT_MATCH_TIME is not set
# CONFIG_NETFILTER_XT_MATCH_U32 is not set
# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
#
# IP: Netfilter Configuration
#
# CONFIG_IP_NF_QUEUE is not set
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_MATCH_RECENT=y
CONFIG_IP_NF_MATCH_ECN=y
# CONFIG_IP_NF_MATCH_AH is not set
CONFIG_IP_NF_MATCH_TTL=y
CONFIG_IP_NF_MATCH_ADDRTYPE=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_TARGET_LOG=y
CONFIG_IP_NF_TARGET_ULOG=y
CONFIG_IP_NF_MANGLE=y
CONFIG_IP_NF_TARGET_ECN=y
CONFIG_IP_NF_TARGET_TTL=y
CONFIG_IP_NF_RAW=y
# CONFIG_IP_NF_ARPTABLES is not set
#
# IPv6: Netfilter Configuration
#
CONFIG_IP6_NF_QUEUE=y
# CONFIG_IP6_NF_IPTABLES is not set
#
# Bridge: Netfilter Configuration
#
# CONFIG_BRIDGE_NF_EBTABLES is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
CONFIG_BRIDGE=y
CONFIG_VLAN_8021Q=y
# CONFIG_DECNET is not set
CONFIG_LLC=y
# 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_ECONET is not set
# CONFIG_WAN_ROUTER is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
CONFIG_NET_SCH_CBQ=y
CONFIG_NET_SCH_HTB=y
# CONFIG_NET_SCH_HFSC is not set
CONFIG_NET_SCH_PRIO=y
# CONFIG_NET_SCH_RR is not set
CONFIG_NET_SCH_RED=y
CONFIG_NET_SCH_SFQ=y
CONFIG_NET_SCH_TEQL=y
CONFIG_NET_SCH_TBF=y
CONFIG_NET_SCH_GRED=y
CONFIG_NET_SCH_DSMARK=y
# CONFIG_NET_SCH_NETEM is not set
CONFIG_NET_SCH_INGRESS=y
#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=y
CONFIG_NET_CLS_TCINDEX=y
CONFIG_NET_CLS_ROUTE4=y
CONFIG_NET_CLS_ROUTE=y
CONFIG_NET_CLS_FW=y
CONFIG_NET_CLS_U32=y
CONFIG_CLS_U32_PERF=y
CONFIG_CLS_U32_MARK=y
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_EMATCH is not set
CONFIG_NET_CLS_ACT=y
CONFIG_NET_ACT_POLICE=y
CONFIG_NET_ACT_GACT=y
CONFIG_GACT_PROB=y
CONFIG_NET_ACT_MIRRED=y
CONFIG_NET_ACT_IPT=y
# CONFIG_NET_ACT_NAT is not set
CONFIG_NET_ACT_PEDIT=y
# CONFIG_NET_ACT_SIMP is not set
CONFIG_NET_CLS_IND=y
CONFIG_NET_SCH_FIFO=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
CONFIG_BT=y
CONFIG_BT_L2CAP=y
CONFIG_BT_SCO=y
CONFIG_BT_RFCOMM=y
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=y
# CONFIG_BT_BNEP_MC_FILTER is not set
# CONFIG_BT_BNEP_PROTO_FILTER is not set
CONFIG_BT_HIDP=y
#
# Bluetooth device drivers
#
CONFIG_BT_HCIUSB=y
CONFIG_BT_HCIUSB_SCO=y
CONFIG_BT_HCIUART=y
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
# CONFIG_BT_HCIUART_LL is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_AF_RXRPC is not set
CONFIG_FIB_RULES=y
#
# Wireless
#
# CONFIG_CFG80211 is not set
# CONFIG_WIRELESS_EXT is not set
# CONFIG_MAC80211 is not set
# CONFIG_IEEE80211 is not set
# CONFIG_RFKILL is not set
# CONFIG_NET_9P is not set
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
# CONFIG_STANDALONE is not set
# CONFIG_PREVENT_FIRMWARE_BUILD is not set
CONFIG_FW_LOADER=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_CONNECTOR is not set
CONFIG_MTD=y
# CONFIG_MTD_DEBUG is not set
# CONFIG_MTD_CONCAT is not set
CONFIG_MTD_PARTITIONS=y
# CONFIG_MTD_REDBOOT_PARTS is not set
# CONFIG_MTD_CMDLINE_PARTS is not set
# CONFIG_MTD_AR7_PARTS is not set
#
# User Modules And Translation Layers
#
CONFIG_MTD_CHAR=y
CONFIG_MTD_BLKDEVS=y
CONFIG_MTD_BLOCK=y
# CONFIG_FTL is not set
# CONFIG_NFTL is not set
# CONFIG_INFTL is not set
# CONFIG_RFD_FTL is not set
# CONFIG_SSFDC is not set
# CONFIG_MTD_OOPS is not set
#
# RAM/ROM/Flash chip drivers
#
# CONFIG_MTD_CFI is not set
# CONFIG_MTD_JEDECPROBE is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_CFI_I4 is not set
# CONFIG_MTD_CFI_I8 is not set
# CONFIG_MTD_RAM is not set
# CONFIG_MTD_ROM is not set
# CONFIG_MTD_ABSENT is not set
#
# Mapping drivers for chip access
#
# CONFIG_MTD_COMPLEX_MAPPINGS is not set
# CONFIG_MTD_TS5500 is not set
# CONFIG_MTD_INTEL_VR_NOR is not set
# CONFIG_MTD_PLATRAM is not set
#
# Self-contained MTD device drivers
#
# CONFIG_MTD_PMC551 is not set
# CONFIG_MTD_SLRAM is not set
# CONFIG_MTD_PHRAM is not set
# CONFIG_MTD_MTDRAM is not set
CONFIG_MTD_BLOCK2MTD=y
#
# Disk-On-Chip Device Drivers
#
# CONFIG_MTD_DOC2000 is not set
# CONFIG_MTD_DOC2001 is not set
# CONFIG_MTD_DOC2001PLUS is not set
# CONFIG_MTD_NAND is not set
# CONFIG_MTD_ONENAND is not set
#
# UBI - Unsorted block images
#
# CONFIG_MTD_UBI is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# 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_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_CRYPTOLOOP=y
# 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_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_MISC_DEVICES=y
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_INTEL_MENLOW is not set
# CONFIG_EEEPC_LAPTOP is not set
# CONFIG_ENCLOSURE_SERVICES is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
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=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set
CONFIG_SCSI_WAIT_SCAN=m
#
# SCSI Transports
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# 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_AIC94XX is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA 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_MVSAS is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_SRP is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_ACPI=y
CONFIG_SATA_PMP=y
CONFIG_SATA_AHCI=y
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
# CONFIG_SATA_SVW is not set
# CONFIG_ATA_PIIX is not set
# CONFIG_SATA_MV is not set
CONFIG_SATA_NV=y
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SX4 is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_PATA_ACPI is not set
# CONFIG_PATA_ALI is not set
CONFIG_PATA_AMD=m
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RZ1000 is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_SCH is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
CONFIG_MD_RAID1=y
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
CONFIG_DM_CRYPT=y
CONFIG_DM_SNAPSHOT=y
CONFIG_DM_MIRROR=y
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_IEEE1394 is not set
# CONFIG_I2O is not set
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
# CONFIG_NETDEVICES_MULTIQUEUE is not set
# CONFIG_IFB is not set
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_MACVLAN is not set
# CONFIG_EQUALIZER is not set
CONFIG_TUN=y
# CONFIG_VETH is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_ARCNET is not set
# CONFIG_PHYLIB is not set
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_NET_TULIP is not set
# CONFIG_HP100 is not set
# CONFIG_IBM_NEW_EMAC_ZMII is not set
# CONFIG_IBM_NEW_EMAC_RGMII is not set
# CONFIG_IBM_NEW_EMAC_TAH is not set
# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
CONFIG_NET_PCI=y
# CONFIG_PCNET32 is not set
# CONFIG_AMD8111_ETH is not set
# CONFIG_ADAPTEC_STARFIRE is not set
# CONFIG_B44 is not set
CONFIG_FORCEDETH=m
# CONFIG_FORCEDETH_NAPI is not set
# CONFIG_EEPRO100 is not set
CONFIG_E100=y
# CONFIG_FEALNX is not set
# CONFIG_NATSEMI is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_R6040 is not set
# CONFIG_SIS900 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SUNDANCE is not set
# CONFIG_VIA_RHINE is not set
# CONFIG_SC92031 is not set
CONFIG_NETDEV_1000=y
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
CONFIG_E1000E=y
CONFIG_E1000E_ENABLED=y
# CONFIG_IP1000 is not set
# CONFIG_IGB is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_R8169=y
CONFIG_R8169_NAPI=y
CONFIG_R8169_VLAN=y
# CONFIG_SIS190 is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_VIA_VELOCITY is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2 is not set
# CONFIG_QLA3XXX is not set
# CONFIG_ATL1 is not set
CONFIG_NETDEV_10000=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGB is not set
# CONFIG_S2IO is not set
# CONFIG_MYRI10GE is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_NIU is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_TEHUTI is not set
# CONFIG_BNX2X is not set
# CONFIG_SFC is not set
# CONFIG_TR is not set
#
# Wireless LAN
#
# CONFIG_WLAN_PRE80211 is not set
# CONFIG_WLAN_80211 is not set
# CONFIG_IWLWIFI_LEDS 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=m
CONFIG_USB_NET_AX8817X=m
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_DM9601 is not set
# CONFIG_USB_NET_GL620A is not set
CONFIG_USB_NET_NET1080=m
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_MCS7830 is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
CONFIG_USB_NET_ZAURUS=m
# 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_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_ISDN is not set
# CONFIG_PHONE is not set
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1600
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1200
CONFIG_INPUT_JOYDEV=y
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG 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_KEYBOARD_STOWAWAY is not set
CONFIG_INPUT_MOUSE=y
# CONFIG_MOUSE_PS2 is not set
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_VSXXXAA is not set
CONFIG_INPUT_JOYSTICK=y
CONFIG_JOYSTICK_ANALOG=m
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_UINPUT is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
CONFIG_GAMEPORT=m
# CONFIG_GAMEPORT_NS558 is not set
# CONFIG_GAMEPORT_L4 is not set
CONFIG_GAMEPORT_EMU10K1=m
# CONFIG_GAMEPORT_FM801 is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
CONFIG_DEVKMEM=y
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_NOZOMI is not set
#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
# CONFIG_SERIAL_JSM is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_IPMI_HANDLER is not set
# CONFIG_HW_RANDOM is not set
# CONFIG_NVRAM is not set
CONFIG_RTC=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_PC8736x_GPIO is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_CHARDEV=y
CONFIG_I2C_ALGOBIT=m
#
# 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_PIIX4 is not set
CONFIG_I2C_NFORCE2=y
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_TINY_USB is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
# CONFIG_I2C_PCA_PLATFORM is not set
#
# Miscellaneous I2C Chip support
#
# CONFIG_DS1682 is not set
# CONFIG_SENSORS_EEPROM is not set
# CONFIG_SENSORS_PCF8574 is not set
# CONFIG_PCF8575 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_SENSORS_MAX6875 is not set
# CONFIG_SENSORS_TSL2550 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
# CONFIG_SPI is not set
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_BATTERY_DS2760 is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7473 is not set
CONFIG_SENSORS_K8TEMP=m
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_FSCPOS is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_CORETEMP is not set
CONFIG_SENSORS_IT87=y
# 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_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
CONFIG_THERMAL=y
# CONFIG_WATCHDOG is not set
#
# Sonics Silicon Backplane
#
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set
#
# Multifunction device drivers
#
# CONFIG_MFD_SM501 is not set
# CONFIG_HTC_PASIC3 is not set
#
# Multimedia devices
#
#
# Multimedia core support
#
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2_COMMON=m
CONFIG_VIDEO_ALLOW_V4L1=y
CONFIG_VIDEO_V4L1_COMPAT=y
# CONFIG_DVB_CORE is not set
CONFIG_VIDEO_MEDIA=m
#
# Multimedia drivers
#
# CONFIG_MEDIA_ATTACH is not set
CONFIG_MEDIA_TUNER=m
# CONFIG_MEDIA_TUNER_CUSTOMIZE is not set
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_VIDEO_V4L2=m
CONFIG_VIDEO_V4L1=m
# CONFIG_VIDEO_CAPTURE_DRIVERS is not set
# CONFIG_RADIO_ADAPTERS is not set
# CONFIG_DAB is not set
#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
# CONFIG_AGP_INTEL is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_DRM=m
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
CONFIG_DRM_RADEON=m
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_VGASTATE is not set
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
CONFIG_FB=m
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_DDC=m
CONFIG_FB_CFB_FILLRECT=m
CONFIG_FB_CFB_COPYAREA=m
CONFIG_FB_CFB_IMAGEBLIT=m
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
# CONFIG_FB_SYS_FILLRECT is not set
# CONFIG_FB_SYS_COPYAREA is not set
# CONFIG_FB_SYS_IMAGEBLIT is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
# CONFIG_FB_SYS_FOPS is not set
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
# CONFIG_FB_TILEBLITTING is not set
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
# CONFIG_FB_RADEON_BACKLIGHT is not set
CONFIG_FB_RADEON_DEBUG=y
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_VIRTUAL is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_CORGI is not set
# CONFIG_BACKLIGHT_PROGEAR is not set
#
# Display device support
#
CONFIG_DISPLAY_SUPPORT=y
#
# Display hardware drivers
#
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
CONFIG_VIDEO_SELECT=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=m
# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
CONFIG_FONTS=y
# CONFIG_FONT_8x8 is not set
# CONFIG_FONT_8x16 is not set
# CONFIG_FONT_6x11 is not set
# CONFIG_FONT_7x14 is not set
# CONFIG_FONT_PEARL_8x8 is not set
# CONFIG_FONT_ACORN_8x8 is not set
# CONFIG_FONT_MINI_4x6 is not set
# CONFIG_FONT_SUN8x16 is not set
CONFIG_FONT_SUN12x22=y
# CONFIG_FONT_10x18 is not set
CONFIG_LOGO=y
CONFIG_LOGO_LINUX_MONO=y
CONFIG_LOGO_LINUX_VGA16=y
CONFIG_LOGO_LINUX_CLUT224=y
#
# Sound
#
CONFIG_SOUND=y
#
# Advanced Linux Sound Architecture
#
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
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_PCM_OSS_PLUGINS is not set
CONFIG_SND_SEQUENCER_OSS=y
# CONFIG_SND_RTCTIMER is not set
# CONFIG_SND_DYNAMIC_MINORS is not set
# CONFIG_SND_SUPPORT_OLD_API is not set
CONFIG_SND_VERBOSE_PROCFS=y
CONFIG_SND_VERBOSE_PRINTK=y
CONFIG_SND_DEBUG=y
CONFIG_SND_DEBUG_DETECT=y
# CONFIG_SND_PCM_XRUN_DEBUG is not set
CONFIG_SND_VMASTER=y
#
# Generic devices
#
# CONFIG_SND_PCSP is not set
CONFIG_SND_AC97_CODEC=m
# 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_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# 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_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5530 is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
CONFIG_SND_EMU10K1=m
# CONFIG_SND_EMU10K1X 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_FM801 is not set
CONFIG_SND_HDA_INTEL=m
# CONFIG_SND_HDA_HWDEP is not set
CONFIG_SND_HDA_CODEC_REALTEK=y
CONFIG_SND_HDA_CODEC_ANALOG=y
CONFIG_SND_HDA_CODEC_SIGMATEL=y
CONFIG_SND_HDA_CODEC_VIA=y
CONFIG_SND_HDA_CODEC_ATIHDMI=y
CONFIG_SND_HDA_CODEC_CONEXANT=y
CONFIG_SND_HDA_CODEC_CMEDIA=y
CONFIG_SND_HDA_CODEC_SI3054=y
CONFIG_SND_HDA_GENERIC=y
# CONFIG_SND_HDA_POWER_SAVE is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_HIFIER is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
CONFIG_SND_AC97_POWER_SAVE=y
CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0
#
# USB devices
#
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
#
# System on Chip audio support
#
# CONFIG_SND_SOC is not set
#
# ALSA SoC audio for Freescale SOCs
#
#
# SoC Audio for the Texas Instruments OMAP
#
#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set
CONFIG_AC97_BUS=m
CONFIG_HID_SUPPORT=y
CONFIG_HID=y
# CONFIG_HID_DEBUG is not set
# CONFIG_HIDRAW is not set
#
# USB Input Devices
#
CONFIG_USB_HID=y
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
# CONFIG_HID_FF is not set
# CONFIG_USB_HIDDEV is not set
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
CONFIG_USB_DEBUG=y
# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_DEVICE_CLASS is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
CONFIG_USB_SUSPEND=y
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_EHCI_TT_NEWSCHED is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
# CONFIG_USB_WDM is not set
#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#
#
# may also be needed; see USB_STORAGE Help for more information
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# 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_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
CONFIG_USB_STORAGE_CYPRESS_ATACB=y
# CONFIG_USB_LIBUSUAL is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
CONFIG_USB_MON=y
#
# USB port drivers
#
CONFIG_USB_SERIAL=m
# CONFIG_USB_EZUSB is not set
CONFIG_USB_SERIAL_GENERIC=y
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_AIRPRIME is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_CH341 is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_CP2101 is not set
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_FUNSOFT is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_GARMIN is not set
# CONFIG_USB_SERIAL_IPW is not set
# CONFIG_USB_SERIAL_IUU is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
# CONFIG_USB_SERIAL_MOS7840 is not set
# CONFIG_USB_SERIAL_MOTOROLA is not set
# CONFIG_USB_SERIAL_NAVMAN is not set
CONFIG_USB_SERIAL_PL2303=m
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
# CONFIG_USB_SERIAL_HP4X is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OPTION is not set
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_SERIAL_DEBUG is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX 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_BERRY_CHARGE is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_PHIDGET is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_GADGET is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
# CONFIG_EDAC is not set
# CONFIG_RTC_CLASS is not set
CONFIG_DMADEVICES=y
#
# DMA Devices
#
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_UIO is not set
#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_ISCSI_IBFT_FIND is not set
#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
# CONFIG_EXT4DEV_FS 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_FS_POSIX_ACL=y
CONFIG_XFS_FS=y
# CONFIG_XFS_QUOTA is not set
# CONFIG_XFS_POSIX_ACL is not set
# CONFIG_XFS_RT is not set
# CONFIG_XFS_DEBUG is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
CONFIG_DNOTIFY=y
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=y
CONFIG_GENERIC_ACL=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=932
CONFIG_FAT_DEFAULT_IOCHARSET="utf8"
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_CONFIGFS_FS=y
#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
CONFIG_JFFS2_FS=y
CONFIG_JFFS2_FS_DEBUG=0
CONFIG_JFFS2_FS_WRITEBUFFER=y
# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
# CONFIG_JFFS2_SUMMARY is not set
# CONFIG_JFFS2_FS_XATTR is not set
# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
CONFIG_JFFS2_ZLIB=y
# CONFIG_JFFS2_LZO is not set
CONFIG_JFFS2_RTIME=y
# CONFIG_JFFS2_RUBIN is not set
CONFIG_CRAMFS=y
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
# CONFIG_NFS_V4 is not set
CONFIG_NFSD=y
CONFIG_NFSD_V2_ACL=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_V3_ACL=y
# CONFIG_NFSD_V4 is not set
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_SUNRPC_BIND34=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_RPCSEC_GSS_SPKM3 is not set
CONFIG_SMB_FS=y
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp850"
CONFIG_CIFS=y
# CONFIG_CIFS_STATS is not set
# CONFIG_CIFS_WEAK_PW_HASH is not set
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_EXPERIMENTAL 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
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
CONFIG_NLS_CODEPAGE_850=y
# 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=y
# 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=y
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=y
# CONFIG_DLM is not set
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
CONFIG_ENABLE_WARN_DEPRECATED=y
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=3072
CONFIG_MAGIC_SYSRQ=y
# CONFIG_UNUSED_SYMBOLS is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
CONFIG_DETECT_SOFTLOCKUP=y
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_DEBUG_SLAB is not set
CONFIG_DEBUG_PREEMPT=y
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_RT_MUTEX_TESTER is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_DEBUG_SPINLOCK_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_WRITECOUNT is not set
# CONFIG_DEBUG_LIST is not set
# CONFIG_DEBUG_SG is not set
CONFIG_FRAME_POINTER=y
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
# CONFIG_KGDB_TESTS is not set
# CONFIG_NONPROMISC_DEVMEM is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DIRECT_GBPAGES is not set
# CONFIG_DEBUG_RODATA_TEST is not set
# CONFIG_DEBUG_NX_TEST is not set
CONFIG_X86_MPPARSE=y
# CONFIG_IOMMU_DEBUG is not set
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=0
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_MANAGER=y
# CONFIG_CRYPTO_GF128MUL is not set
CONFIG_CRYPTO_NULL=y
# CONFIG_CRYPTO_CRYPTD is not set
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set
#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CTR is not set
# CONFIG_CRYPTO_CTS is not set
# CONFIG_CRYPTO_ECB is not set
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set
#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
#
# Digest
#
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=y
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_TGR192 is not set
CONFIG_CRYPTO_WP512=y
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_X86_64=y
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=y
CONFIG_CRYPTO_BLOWFISH=y
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST6 is not set
CONFIG_CRYPTO_DES=y
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
# CONFIG_CRYPTO_LZO is not set
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_HIFN_795X is not set
CONFIG_HAVE_KVM=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=y
# CONFIG_KVM_INTEL is not set
CONFIG_KVM_AMD=y
# CONFIG_VIRTIO_PCI is not set
# CONFIG_VIRTIO_BALLOON is not set
#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_FIND_NEXT_BIT=y
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC16 is not set
CONFIG_CRC_ITU_T=y
CONFIG_CRC32=y
# CONFIG_CRC7 is not set
# CONFIG_LIBCRC32C is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=y
CONFIG_TEXTSEARCH_BM=y
CONFIG_TEXTSEARCH_FSM=y
CONFIG_PLIST=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-06-01 7:49 ` Tobias Diedrich
@ 2008-06-02 21:09 ` Alan Stern
2008-06-03 6:16 ` Tobias Diedrich
0 siblings, 1 reply; 26+ messages in thread
From: Alan Stern @ 2008-06-02 21:09 UTC (permalink / raw)
To: Tobias Diedrich
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
On Sun, 1 Jun 2008, Tobias Diedrich wrote:
> > > (BTW I first thought the 'immediate reboot because of usb wake' effect is
> > > caused by the optical mouse generating a wake event, but it rather
> > > seems to be a problem with a flaky secondary usb host controller,
> > > which sees a connected device where nothing is attached)
> >
> > Can you provide debugging information (i.e., CONFIG_USB_DEBUG) with the
> > details on this bogus wakeup?
>
> Sure.
> Here is the complete log of one boot and two s2disk_platform cycles
> captured using the serial console (in the first s2disk I forgot to
> remove the 'turn off /sys/bus/usb/device/usb?/power/wakeup' part).
>
> Interestingly even with power/wakeup disabled for usb1 and usb2,
> which I assume to be the usb root ports, I could wake up the system
> by pressing a key on my keyboard (which didn't work before turning
> on CONFIG_USB_SUSPEND).
>
> On the second suspend the system rebooted immediately as expected
> (I power/wakeup for usb1 and usb2 back on and disabled the part in
> the script).
>
> I think this might be some general usb hw flakiness, since it seems
> to detect (and has so for a long time) a non-existing device:
>
> lsusb output:
> Bus 002 Device 003: ID 045e:00db Microsoft Corp. Natural Ergonomic Keyboard 4000 V1.0
> Bus 002 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
> Bus 002 Device 001: ID 1d6b:0001
> Bus 001 Device 001: ID 1d6b:0002
>
> bogus device?:
> [14316046.469949] usb 2-4: new full speed USB device using ohci_hcd and address 12
> [14316046.679951] usb 2-4: device descriptor read/64, error -62
> [14316046.986619] usb 2-4: device descriptor read/64, error -62
> [14316047.263284] usb 2-4: new full speed USB device using ohci_hcd and address 13
> [14316047.476614] usb 2-4: device descriptor read/64, error -62
> [14316047.786618] usb 2-4: device descriptor read/64, error -62
> [14316048.063282] usb 2-4: new full speed USB device using ohci_hcd and address 14
> [14316048.499945] usb 2-4: device not accepting address 14, error -62
> [14316048.669950] usb 2-4: new full speed USB device using ohci_hcd and address 15
> [14316049.106612] usb 2-4: device not accepting address 15, error -62
> [14316049.112960] hub 2-0:1.0: unable to enumerate USB device on port 4
It's possible. Maybe there's a builtin broken USB device, or maybe the
D+ pin on port 4 is wired to a positive voltage source.
The log didn't reveal anything. Perhaps you can learn more by looking
at the "registers" file for that OHCI controller in debugfs.
Also, you should run "lspci -vv" as root to see what wakeup signals the
USB controllers are issuing.
Alan Stern
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-06-02 21:09 ` Alan Stern
@ 2008-06-03 6:16 ` Tobias Diedrich
2008-06-03 14:12 ` Alan Stern
0 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-06-03 6:16 UTC (permalink / raw)
To: Alan Stern
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
Alan Stern wrote:
> On Sun, 1 Jun 2008, Tobias Diedrich wrote:
>
> > > > (BTW I first thought the 'immediate reboot because of usb wake' effect is
> > > > caused by the optical mouse generating a wake event, but it rather
> > > > seems to be a problem with a flaky secondary usb host controller,
> > > > which sees a connected device where nothing is attached)
> > >
> > > Can you provide debugging information (i.e., CONFIG_USB_DEBUG) with the
> > > details on this bogus wakeup?
> >
> > Sure.
> > Here is the complete log of one boot and two s2disk_platform cycles
> > captured using the serial console (in the first s2disk I forgot to
> > remove the 'turn off /sys/bus/usb/device/usb?/power/wakeup' part).
> >
> > Interestingly even with power/wakeup disabled for usb1 and usb2,
> > which I assume to be the usb root ports, I could wake up the system
> > by pressing a key on my keyboard (which didn't work before turning
> > on CONFIG_USB_SUSPEND).
> >
> > On the second suspend the system rebooted immediately as expected
> > (I power/wakeup for usb1 and usb2 back on and disabled the part in
> > the script).
> >
> > I think this might be some general usb hw flakiness, since it seems
> > to detect (and has so for a long time) a non-existing device:
> >
> > lsusb output:
> > Bus 002 Device 003: ID 045e:00db Microsoft Corp. Natural Ergonomic Keyboard 4000 V1.0
> > Bus 002 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
> > Bus 002 Device 001: ID 1d6b:0001
> > Bus 001 Device 001: ID 1d6b:0002
> >
> > bogus device?:
> > [14316046.469949] usb 2-4: new full speed USB device using ohci_hcd and address 12
> > [14316046.679951] usb 2-4: device descriptor read/64, error -62
> > [14316046.986619] usb 2-4: device descriptor read/64, error -62
> > [14316047.263284] usb 2-4: new full speed USB device using ohci_hcd and address 13
> > [14316047.476614] usb 2-4: device descriptor read/64, error -62
> > [14316047.786618] usb 2-4: device descriptor read/64, error -62
> > [14316048.063282] usb 2-4: new full speed USB device using ohci_hcd and address 14
> > [14316048.499945] usb 2-4: device not accepting address 14, error -62
> > [14316048.669950] usb 2-4: new full speed USB device using ohci_hcd and address 15
> > [14316049.106612] usb 2-4: device not accepting address 15, error -62
> > [14316049.112960] hub 2-0:1.0: unable to enumerate USB device on port 4
>
> It's possible. Maybe there's a builtin broken USB device, or maybe the
> D+ pin on port 4 is wired to a positive voltage source.
One of the ports on the back of the board seems to be broken (Maybe
esd?), the other three work fine, but nothing happens when I plug a
device into that one, so I guess that's the culprit.
> The log didn't reveal anything. Perhaps you can learn more by looking
> at the "registers" file for that OHCI controller in debugfs.
Ok, I can try that this evening...
> Also, you should run "lspci -vv" as root to see what wakeup signals the
> USB controllers are issuing.
00:00.0 RAM memory: nVidia Corporation MCP55 Memory Controller (rev a1)
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Capabilities: [44] HyperTransport: Slave or Primary Interface
Command: BaseUnitID=0 UnitCnt=15 MastHost- DefDir- DUL-
Link Control 0: CFlE+ CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0 IsocEn- LSEn+ ExtCTL- 64b-
Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit DwFcInEn- LWO=16bit DwFcOutEn-
Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0 IsocEn- LSEn- ExtCTL- 64b-
Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit DwFcInEn- LWO=8bit DwFcOutEn-
Revision ID: 1.03
Link Frequency 0: 1.0GHz
Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
Link Frequency Capability 0: 200MHz+ 300MHz+ 400MHz+ 500MHz+ 600MHz+ 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
Feature Capability: IsocFC+ LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
Link Frequency 1: 200MHz
Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz- 800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
Error Handling: PFlE+ OFlE+ PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF- RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
Prefetchable memory behind bridge Upper: 00-00
Bus Number: 00
Capabilities: [e0] #00 [fee0]
00:01.0 ISA bridge: nVidia Corporation MCP55 LPC Bridge (rev a2)
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
00:01.1 SMBus: nVidia Corporation MCP55 SMBus (rev a2)
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Interrupt: pin A routed to IRQ 10
Region 0: I/O ports at fc00 [size=64]
Region 4: I/O ports at 1c00 [size=64]
Region 5: I/O ports at 1c40 [size=64]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: nForce2_smbus
00:02.0 USB Controller: nVidia Corporation MCP55 USB Controller (rev a1) (prog-if 10 [OHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (750ns min, 250ns max)
Interrupt: pin A routed to IRQ 23
Region 0: Memory at fe02f000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: ohci_hcd
00:02.1 USB Controller: nVidia Corporation MCP55 USB Controller (rev a2) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (750ns min, 250ns max)
Interrupt: pin B routed to IRQ 20
Region 0: Memory at fe02e000 (32-bit, non-prefetchable) [size=256]
Capabilities: [44] Debug port: BAR=1 offset=0098
Capabilities: [80] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME+
Kernel driver in use: ehci_hcd
00:04.0 IDE interface: nVidia Corporation MCP55 IDE (rev a1) (prog-if 8a [Master SecP PriP])
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (750ns min, 250ns max)
Region 0: [virtual] Memory at 000001f0 (32-bit, non-prefetchable) [disabled] [size=8]
Region 1: [virtual] Memory at 000003f0 (type 3, non-prefetchable) [disabled] [size=1]
Region 2: [virtual] Memory at 00000170 (32-bit, non-prefetchable) [disabled] [size=8]
Region 3: [virtual] Memory at 00000370 (type 3, non-prefetchable) [disabled] [size=1]
Region 4: I/O ports at f000 [size=16]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: pata_amd
Kernel modules: pata_amd
00:05.0 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (750ns min, 250ns max)
Interrupt: pin A routed to IRQ 23
Region 0: I/O ports at 09f0 [size=8]
Region 1: I/O ports at 0bf0 [size=4]
Region 2: I/O ports at 0970 [size=8]
Region 3: I/O ports at 0b70 [size=4]
Region 4: I/O ports at dc00 [size=16]
Region 5: Memory at fe02d000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [b0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/2 Enable-
Address: 0000000000000000 Data: 0000
Capabilities: [cc] HyperTransport: MSI Mapping Enable+ Fixed+
Kernel driver in use: sata_nv
00:05.1 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (750ns min, 250ns max)
Interrupt: pin B routed to IRQ 22
Region 0: I/O ports at 09e0 [size=8]
Region 1: I/O ports at 0be0 [size=4]
Region 2: I/O ports at 0960 [size=8]
Region 3: I/O ports at 0b60 [size=4]
Region 4: I/O ports at c800 [size=16]
Region 5: Memory at fe02c000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [b0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/2 Enable-
Address: 0000000000000000 Data: 0000
Capabilities: [cc] HyperTransport: MSI Mapping Enable+ Fixed+
Kernel driver in use: sata_nv
00:05.2 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (750ns min, 250ns max)
Interrupt: pin C routed to IRQ 21
Region 0: I/O ports at c400 [size=8]
Region 1: I/O ports at c000 [size=4]
Region 2: I/O ports at bc00 [size=8]
Region 3: I/O ports at b800 [size=4]
Region 4: I/O ports at b400 [size=16]
Region 5: Memory at fe02b000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [b0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/2 Enable-
Address: 0000000000000000 Data: 0000
Capabilities: [cc] HyperTransport: MSI Mapping Enable+ Fixed+
Kernel driver in use: sata_nv
00:06.0 PCI bridge: nVidia Corporation MCP55 PCI bridge (rev a2) (prog-if 01 [Subtractive decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
I/O behind bridge: 00009000-00009fff
Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr+ DiscTmrStat- DiscTmrSERREn+
Capabilities: [b8] Subsystem: nVidia Corporation Unknown device cb84
Capabilities: [8c] HyperTransport: MSI Mapping Enable+ Fixed-
Mapping Address Base: 00000000fee00000
00:06.1 Audio device: nVidia Corporation MCP55 High Definition Audio (rev a2)
Subsystem: ASUSTeK Computer Inc. Unknown device 81f6
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (500ns min, 1250ns max)
Interrupt: pin B routed to IRQ 22
Region 0: Memory at fe020000 (32-bit, non-prefetchable) [size=16K]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] Message Signalled Interrupts: Mask+ 64bit+ Queue=0/0 Enable-
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [6c] HyperTransport: MSI Mapping Enable+ Fixed+
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel
00:08.0 Bridge: nVidia Corporation MCP55 Ethernet (rev a2)
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (250ns min, 5000ns max)
Interrupt: pin A routed to IRQ 21
Region 0: Memory at fe02a000 (32-bit, non-prefetchable) [size=4K]
Region 1: I/O ports at b000 [size=8]
Region 2: Memory at fe029000 (32-bit, non-prefetchable) [size=256]
Region 3: Memory at fe028000 (32-bit, non-prefetchable) [size=16]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 PME-Enable+ DSel=0 DScale=0 PME-
Capabilities: [70] MSI-X: Enable- Mask- TabSize=8
Vector table: BAR=2 offset=00000000
PBA: BAR=3 offset=00000000
Capabilities: [50] Message Signalled Interrupts: Mask+ 64bit+ Queue=0/3 Enable-
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [6c] HyperTransport: MSI Mapping Enable+ Fixed+
Kernel driver in use: forcedeth
Kernel modules: forcedeth
00:09.0 Bridge: nVidia Corporation MCP55 Ethernet (rev a2)
Subsystem: ASUSTeK Computer Inc. Unknown device 8239
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0 (250ns min, 5000ns max)
Interrupt: pin A routed to IRQ 20
Region 0: Memory at fe027000 (32-bit, non-prefetchable) [size=4K]
Region 1: I/O ports at ac00 [size=8]
Region 2: Memory at fe026000 (32-bit, non-prefetchable) [size=256]
Region 3: Memory at fe025000 (32-bit, non-prefetchable) [size=16]
Capabilities: [44] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 PME-Enable+ DSel=0 DScale=0 PME-
Capabilities: [70] MSI-X: Enable- Mask- TabSize=8
Vector table: BAR=2 offset=00000000
PBA: BAR=3 offset=00000000
Capabilities: [50] Message Signalled Interrupts: Mask+ 64bit+ Queue=0/3 Enable-
Address: 0000000000000000 Data: 0000
Masking: 00000000 Pending: 00000000
Capabilities: [6c] HyperTransport: MSI Mapping Enable+ Fixed+
Kernel driver in use: forcedeth
Kernel modules: forcedeth
00:0a.0 PCI bridge: nVidia Corporation MCP55 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
I/O behind bridge: 00008000-00008fff
Memory behind bridge: fde00000-fdefffff
Prefetchable memory behind bridge: 00000000e8000000-00000000efffffff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA+ MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Subsystem: nVidia Corporation Unknown device 0000
Capabilities: [48] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable-
Address: 0000000000000000 Data: 0000
Capabilities: [60] HyperTransport: MSI Mapping Enable+ Fixed-
Mapping Address Base: 00000000fee00000
Capabilities: [80] Express (v1) Root Port (Slot+), MSI 00
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <4us
ExtTag- RBE+ FLReset-
DevCtl: Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #5, Speed 2.5GT/s, Width x8, ASPM L0s L1, Latency L0 <512ns, L1 <4us
ClockPM- Suprise- LLActRep+ BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surpise-
Slot # 0, PowerLimit 0.000000; Interlock- NoCompl-
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Off, PwrInd On, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet+ LinkState+
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
RootCap: CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
Kernel driver in use: pcieport-driver
00:0e.0 PCI bridge: nVidia Corporation MCP55 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
I/O behind bridge: 00006000-00007fff
Memory behind bridge: fdd00000-fddfffff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR- NoISA+ VGA- MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Subsystem: nVidia Corporation Unknown device 0000
Capabilities: [48] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable-
Address: 0000000000000000 Data: 0000
Capabilities: [60] HyperTransport: MSI Mapping Enable+ Fixed-
Mapping Address Base: 00000000fee00000
Capabilities: [80] Express (v1) Root Port (Slot+), MSI 00
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <4us
ExtTag- RBE+ FLReset-
DevCtl: Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <4us
ClockPM- Suprise- LLActRep+ BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled+ Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surpise-
Slot # 0, PowerLimit 0.000000; Interlock- NoCompl-
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
Control: AttnInd Off, PwrInd On, Power- Interlock-
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
Changed: MRL- PresDet+ LinkState+
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
RootCap: CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
Kernel driver in use: pcieport-driver
00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Capabilities: [80] HyperTransport: Host or Secondary Interface
!!! Possibly incomplete decoding
Command: WarmRst+ DblEnd-
Link Control: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0
Link Config: MLWI=16bit MLWO=16bit LWI=16bit LWO=16bit
Revision ID: 1.02
00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Capabilities: [f0] Secure device <?>
Kernel driver in use: k8temp
Kernel modules: k8temp
01:08.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 07)
Subsystem: Creative Labs SBLive! 5.1 Model SB0100
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 32 (500ns min, 5000ns max)
Interrupt: pin A routed to IRQ 18
Region 0: I/O ports at 9c00 [size=32]
Capabilities: [dc] Power Management version 1
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: EMU10K1_Audigy
Kernel modules: snd-emu10k1
01:08.1 Input device controller: Creative Labs SB Live! Game Port (rev 07)
Subsystem: Creative Labs Gameport Joystick
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 32
Region 0: I/O ports at 9800 [size=8]
Capabilities: [dc] Power Management version 1
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: Emu10k1_gameport
Kernel modules: emu10k1-gp
02:00.0 VGA compatible controller: ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)] (prog-if 00 [VGA controller])
Subsystem: Hightech Information System Ltd. Unknown device 201e
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Interrupt: pin A routed to IRQ 16
Region 0: Memory at e8000000 (32-bit, prefetchable) [size=128M]
Region 1: I/O ports at 8c00 [size=256]
Region 2: Memory at fdef0000 (32-bit, non-prefetchable) [size=64K]
Expansion ROM at fdec0000 [disabled] [size=128K]
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [58] Express (v1) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <128ns, L1 <2us
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE- FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #5, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency L0 <128ns, L1 <1us
ClockPM- Suprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
Capabilities: [80] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
Address: 0000000000000000 Data: 0000
Kernel modules: radeonfb
02:00.1 Display controller: ATI Technologies Inc RV370 [Radeon X300SE]
Subsystem: Hightech Information System Ltd. Unknown device 201f
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Region 0: Memory at fdee0000 (32-bit, non-prefetchable) [size=64K]
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [58] Express (v1) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <128ns, L1 <2us
ExtTag- AttnBtn- AttnInd- PwrInd- RBE- FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
LnkCap: Port #5, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency L0 <128ns, L1 <1us
ClockPM- Suprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
HTH,
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-06-03 6:16 ` Tobias Diedrich
@ 2008-06-03 14:12 ` Alan Stern
2008-06-03 17:30 ` Tobias Diedrich
0 siblings, 1 reply; 26+ messages in thread
From: Alan Stern @ 2008-06-03 14:12 UTC (permalink / raw)
To: Tobias Diedrich
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
On Tue, 3 Jun 2008, Tobias Diedrich wrote:
> One of the ports on the back of the board seems to be broken (Maybe
> esd?), the other three work fine, but nothing happens when I plug a
> device into that one, so I guess that's the culprit.
Sounds like it.
> > The log didn't reveal anything. Perhaps you can learn more by looking
> > at the "registers" file for that OHCI controller in debugfs.
>
> Ok, I can try that this evening...
>
> > Also, you should run "lspci -vv" as root to see what wakeup signals the
> > USB controllers are issuing.
...
> 00:02.0 USB Controller: nVidia Corporation MCP55 USB Controller (rev a1) (prog-if 10 [OHCI])
> Subsystem: ASUSTeK Computer Inc. Unknown device 8239
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
> Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> Latency: 0 (750ns min, 250ns max)
> Interrupt: pin A routed to IRQ 23
> Region 0: Memory at fe02f000 (32-bit, non-prefetchable) [size=4K]
> Capabilities: [44] Power Management version 2
> Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
> Status: D0 PME-Enable- DSel=0 DScale=0 PME-
> Kernel driver in use: ohci_hcd
The OHCI controller settings look normal. It doesn't appear to be
sending a wakeup signal.
> 00:02.1 USB Controller: nVidia Corporation MCP55 USB Controller (rev a2) (prog-if 20 [EHCI])
> Subsystem: ASUSTeK Computer Inc. Unknown device 8239
> Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
> Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> Latency: 0 (750ns min, 250ns max)
> Interrupt: pin B routed to IRQ 20
> Region 0: Memory at fe02e000 (32-bit, non-prefetchable) [size=256]
> Capabilities: [44] Debug port: BAR=1 offset=0098
> Capabilities: [80] Power Management version 2
> Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
> Status: D0 PME-Enable- DSel=0 DScale=0 PME+
> Kernel driver in use: ehci_hcd
The EHCI controller settings, however, are strange. The relevant part
is the Power Management Status line near the end:
> Status: D0 PME-Enable- DSel=0 DScale=0 PME+
This means the controller is in the D0 state (as expected) and
PME-Enable is currently turned off ("PME" stands for "Power Management
Event"). But the PME+ at the end means that as soon as PME does get
enabled -- like when the controller is suspended at the start of a
system sleep -- it _will_ send a PME signal.
So for some reason your EHCI controller thinks a wakeup event is
pending. This means you should examine the contents of the "registers"
file in the debugfs directory for the EHCI controller, not OHCI.
Alan Stern
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-06-03 14:12 ` Alan Stern
@ 2008-06-03 17:30 ` Tobias Diedrich
2008-06-03 20:06 ` Alan Stern
0 siblings, 1 reply; 26+ messages in thread
From: Tobias Diedrich @ 2008-06-03 17:30 UTC (permalink / raw)
To: Alan Stern
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
Alan Stern wrote:
> > > Also, you should run "lspci -vv" as root to see what wakeup signals the
> > > USB controllers are issuing.
[...]
> > 00:02.1 USB Controller: nVidia Corporation MCP55 USB Controller (rev a2) (prog-if 20 [EHCI])
> > Subsystem: ASUSTeK Computer Inc. Unknown device 8239
> > Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
> > Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> > Latency: 0 (750ns min, 250ns max)
> > Interrupt: pin B routed to IRQ 20
> > Region 0: Memory at fe02e000 (32-bit, non-prefetchable) [size=256]
> > Capabilities: [44] Debug port: BAR=1 offset=0098
> > Capabilities: [80] Power Management version 2
> > Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
> > Status: D0 PME-Enable- DSel=0 DScale=0 PME+
> > Kernel driver in use: ehci_hcd
>
> The EHCI controller settings, however, are strange. The relevant part
> is the Power Management Status line near the end:
>
> > Status: D0 PME-Enable- DSel=0 DScale=0 PME+
>
> This means the controller is in the D0 state (as expected) and
> PME-Enable is currently turned off ("PME" stands for "Power Management
> Event"). But the PME+ at the end means that as soon as PME does get
> enabled -- like when the controller is suspended at the start of a
> system sleep -- it _will_ send a PME signal.
>
> So for some reason your EHCI controller thinks a wakeup event is
> pending. This means you should examine the contents of the "registers"
> file in the debugfs directory for the EHCI controller, not OHCI.
melchior:/mnt/ehci/0000:00:02.1# cat registers
bus pci, device 0000:00:02.1 (driver 10 Dec 2004)
EHCI Host Controller
EHCI 1.00, hcd state 1
ownership 00000001
SMI sts/enable 0xc0080000
structural params 0x00101a8a
capability params 0x0000a086
status 0008 FLR
command 010009 (park)=0 ithresh=1 period=256 RUN
intrenable 37 IAA FATAL PCD ERR INT
uframe 3f3a
port 1 status 003400 POWER OWNER sig=k
port 2 status 001000 POWER sig=se0
port 3 status 003400 POWER OWNER sig=k
port 4 status 003400 POWER OWNER sig=k
port 5 status 001000 POWER sig=se0
port 6 status 001000 POWER sig=se0
port 7 status 001000 POWER sig=se0
port 8 status 001000 POWER sig=se0
port 9 status 001000 POWER sig=se0
port 10 status 001000 POWER sig=se0
irq normal 0 err 0 reclaim 0 (lost 0)
complete 0 unlink 0
HTH,
--
Tobias PGP: http://9ac7e0bc.uguu.de
このメールは十割再利用されたビットで作られています。
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [linux-pm] [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-06-03 17:30 ` Tobias Diedrich
@ 2008-06-03 20:06 ` Alan Stern
0 siblings, 0 replies; 26+ messages in thread
From: Alan Stern @ 2008-06-03 20:06 UTC (permalink / raw)
To: Tobias Diedrich
Cc: netdev, linux-kernel, Ayaz Abdulla, Rafael J. Wysocki,
Stephen Hemminger, David Brownell, linux-acpi, linux-pm
On Tue, 3 Jun 2008, Tobias Diedrich wrote:
> > So for some reason your EHCI controller thinks a wakeup event is
> > pending. This means you should examine the contents of the "registers"
> > file in the debugfs directory for the EHCI controller, not OHCI.
>
> melchior:/mnt/ehci/0000:00:02.1# cat registers
> bus pci, device 0000:00:02.1 (driver 10 Dec 2004)
> EHCI Host Controller
> EHCI 1.00, hcd state 1
> ownership 00000001
> SMI sts/enable 0xc0080000
> structural params 0x00101a8a
> capability params 0x0000a086
> status 0008 FLR
> command 010009 (park)=0 ithresh=1 period=256 RUN
> intrenable 37 IAA FATAL PCD ERR INT
> uframe 3f3a
> port 1 status 003400 POWER OWNER sig=k
> port 2 status 001000 POWER sig=se0
> port 3 status 003400 POWER OWNER sig=k
> port 4 status 003400 POWER OWNER sig=k
> port 5 status 001000 POWER sig=se0
> port 6 status 001000 POWER sig=se0
> port 7 status 001000 POWER sig=se0
> port 8 status 001000 POWER sig=se0
> port 9 status 001000 POWER sig=se0
> port 10 status 001000 POWER sig=se0
> irq normal 0 err 0 reclaim 0 (lost 0)
> complete 0 unlink 0
Got to admit, I'm stumped. There's nothing in the state description to
indicate why the controller should want to signal a wakeup event.
As an experiment, you could try disabling wakeup on the EHCI controller
alone, leaving it enabled on the OHCI controller. Since the keyboard
-- and in fact all your USB devices -- is attached to the OHCI
controller, it should do what you want.
Alan Stern
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-31 7:20 ` Pavel Machek
@ 2008-06-05 2:38 ` David Brownell
0 siblings, 0 replies; 26+ messages in thread
From: David Brownell @ 2008-06-05 2:38 UTC (permalink / raw)
To: Pavel Machek
Cc: Tobias Diedrich, netdev, linux-kernel, Ayaz Abdulla,
Rafael J. Wysocki, Stephen Hemminger, linux-acpi, linux-pm
On Saturday 31 May 2008, Pavel Machek wrote:
>
> > Yeah; under ACPI, PCI does not act like it does everywhere else.
> > Nor does wakeup in general.
> >
> > After sending patches to fix that for a couple years now, I'm
> > well past being tired of doing that. I suggest it's overdue for
> > the ACPI team to get this part of their act together.
>
> I'm afraid you expect too much from the acpi team.
I'm likewise "afraid" that may be too much to expect.
If that's true, it's going to be even harder making
the cross-platform Linux PM framework do what it needs
to do. Having various devices (not just laptop lids or
power buttons, or RTC alarms) wake systems from low power
states is pretty fundamental to the "P" part of ACPI.
And it's not like wakeup events are unique to ACPI.
> If you can't merge
> patches yourself, perhaps someone interested (Tobias? me?) can push
> them for you?
I kind of think the ACPI team needs to just become more
responsive. They helped Windows do this stuff; why has
Linux only seen delays and obstacles in this area?
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH 5/4] Fix forcedeth hibernate/wake-on-lan problems
2008-05-31 22:54 ` [PATCH 5/4] " Tobias Diedrich
@ 2008-06-27 6:09 ` Jeff Garzik
0 siblings, 0 replies; 26+ messages in thread
From: Jeff Garzik @ 2008-06-27 6:09 UTC (permalink / raw)
To: Tobias Diedrich, netdev, linux-kernel, Ayaz Abdulla,
Rafael J. Wysocki, Stephen
Tobias Diedrich wrote:
> From: Tobias Diedrich <ranma+kernel@tdiedrich.de>
>
> We currently don't signal the kernel we that this device can wake
> the system. Call device_init_wakeup() to correct this.
> Without this device_can_wakeup and device_may_wakeup will return
> incorrect values.
> Together with the minimized acpi wakeup patch (6/4 ;)), which will
> follow in the next mail, this really makes wake-on-lan work for me
> as expected (i.e. "ethtool -s eth0 wol g" is sufficient, no
> additional magic needed).
>
> Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
applied 5-6
^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2008-06-27 6:10 UTC | newest]
Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-18 12:57 [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
2008-05-18 13:00 ` [PATCH 1/4] Restore multicast settings on resume Tobias Diedrich
2008-05-22 10:21 ` Jeff Garzik
2008-05-18 13:02 ` [PATCH 2/4] setup wake-on-lan before shutting down Tobias Diedrich
2008-05-31 2:20 ` Jeff Garzik
2008-05-18 13:03 ` [PATCH 3/4] save/restore device configuration space Tobias Diedrich
2008-05-18 13:04 ` [PATCH 4/4] reorder suspend/resume code Tobias Diedrich
2008-05-18 15:09 ` [PATCH 0/4] Fix forcedeth hibernate/wake-on-lan problems Tobias Diedrich
2008-05-20 22:39 ` Rafael J. Wysocki
2008-05-25 15:04 ` Tobias Diedrich
2008-05-25 18:13 ` Tobias Diedrich
2008-05-27 6:21 ` Tobias Diedrich
2008-05-27 21:32 ` David Brownell
2008-05-31 7:20 ` Pavel Machek
2008-06-05 2:38 ` David Brownell
2008-05-31 22:12 ` Tobias Diedrich
2008-06-01 2:51 ` [linux-pm] " Alan Stern
2008-06-01 7:49 ` Tobias Diedrich
2008-06-02 21:09 ` Alan Stern
2008-06-03 6:16 ` Tobias Diedrich
2008-06-03 14:12 ` Alan Stern
2008-06-03 17:30 ` Tobias Diedrich
2008-06-03 20:06 ` Alan Stern
2008-05-31 22:54 ` [PATCH 5/4] " Tobias Diedrich
2008-06-27 6:09 ` Jeff Garzik
2008-05-31 23:20 ` [PATCH 6/4] " Tobias Diedrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).