All of lore.kernel.org
 help / color / mirror / Atom feed
* SATA disks disabled on boot
@ 2014-07-11 21:06 Nuno Magalhães
  2014-07-14 16:36 ` Tejun Heo
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2014-07-11 21:06 UTC (permalink / raw)
  To: linux-ide

Greetings,

This is my first post, after having been searching around. A major
source of information was this[1] thread but it's old and the OP
changed hardware.

This is mine:
* Asus M2nPV-VM motherboard
* BIOS version 5005 (this was the last version ever released)
* Phenom II X4 910e CPU
* 8GiB DDR2 RAM (dual-channel 800MHz)
* 4 SATA drives:
** 2 Toshiba DTACA100 (ports SATA1 and 3)
** 2 WD Reds WD10EFRX (ports SATA2 and 4)
* ATI/AMD Radeon HD 5450 on a PCIe slot

The toshibas comprise a RAID1, on top of which is LVM with Debian
stable Wheezy 7.5, linux 3.2.0-4-amd64. My boot parameters are:
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX="iommu=noaperture acpi_enforce_resources=lax"
(no AGP and i'm trying to get lm-sensors to work)

The Reds have nothing yet (i'm RTFMing on ZFS) and they are the
problem: randomly, one or the other get disabled at boot.

>From lspci:
00:0d.0 IDE interface: NVIDIA Corporation MCP51 IDE (rev a1)
00:0e.0 IDE interface: NVIDIA Corporation MCP51 Serial ATA Controller (rev a1)
00:0f.0 IDE interface: NVIDIA Corporation MCP51 Serial ATA Controller (rev a1)

>From dmesg:
    # dmesg |grep ata4
    [    0.914589] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma
0xf308 irq 20
    [    2.356417] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [    2.364553] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
    [    2.364556] ata4.00: 268435455 sectors, multi 1: LBA NCQ (depth 31/32)
    [    2.372541] ata4.00: n_sectors mismatch 268435455 != 1953525168
    [    2.372543] ata4.00: revalidation failed (errno=-19)
    [    2.372590] ata4: limiting SATA link speed to 1.5 Gbps
    [    2.372592] ata4.00: limiting speed to UDMA/133:PIO3
    [    7.824219] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [    7.833088] ata4.00: n_sectors mismatch 268435455 != 1953525168
    [    7.833091] ata4.00: revalidation failed (errno=-19)
    [    7.833135] ata4.00: disabled

It happens mostly with ata4 but it's also happened with ata2. The
issue seems to be this:
    [    2.364556] ata4.00: 268435455 sectors, multi 1: LBA NCQ (depth 31/32)
It should be LBA48 NCQ

These are the BIOS settings that seem relevant:

    extended IDE drive: auto
    access mode: auto
    SATA controller 1,2: enabled
    SATA DMA transfer: enabled
    SATA port 3,4: enabled
    SATA2 DMA transfer: enabled
    Plug'n'play OS: yes

I have no clue whether this is because of the drives (hope not!), if
so, how can i go around it (forcing LBA48)? Or a misconfiguration
somewhere. The disks
are new and pass SMART tests.

Could this be ACPI/APIC related? Something about sata_nv?

Any pointers for further debugging/solutions would be welcome.

Cheers,
Nuno

[1] http://lkml.iu.edu/hypermail/linux/kernel/0709.1/1614.html

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-07-11 21:06 SATA disks disabled on boot Nuno Magalhães
@ 2014-07-14 16:36 ` Tejun Heo
  2014-07-14 23:24   ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Tejun Heo @ 2014-07-14 16:36 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: linux-ide

Hello,

On Fri, Jul 11, 2014 at 10:06:14PM +0100, Nuno Magalhães wrote:
>     # dmesg |grep ata4
>     [    0.914589] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma
> 0xf308 irq 20
>     [    2.356417] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>     [    2.364553] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
>     [    2.364556] ata4.00: 268435455 sectors, multi 1: LBA NCQ (depth 31/32)
>     [    2.372541] ata4.00: n_sectors mismatch 268435455 != 1953525168
>     [    2.372543] ata4.00: revalidation failed (errno=-19)
>     [    2.372590] ata4: limiting SATA link speed to 1.5 Gbps
>     [    2.372592] ata4.00: limiting speed to UDMA/133:PIO3
>     [    7.824219] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>     [    7.833088] ata4.00: n_sectors mismatch 268435455 != 1953525168
>     [    7.833091] ata4.00: revalidation failed (errno=-19)
>     [    7.833135] ata4.00: disabled

So, the device initially reports that it doesn't support LBA48 and
then later changes its mind later on for some reason.  That's weird.
I wonder whether the controller is meddling with the IDENTIFY data.
AFAICS, there isn't anything in ATA spec which would make a device
change whether it reports 48 bit support or not.

Can you please try the followings?

1. After boot is complete, re-trigger device attach by doing

   echo - - - > /sys/class/scsi_host/hostN/scan

2. Boot with libata.force=dump_id and report full dmesg after boot.

3. Boot with libata.force=nohrst and see whether anything changes.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-07-14 16:36 ` Tejun Heo
@ 2014-07-14 23:24   ` Nuno Magalhães
  2014-07-16 20:35     ` Nuno Magalhães
  2014-08-17 13:39     ` Tejun Heo
  0 siblings, 2 replies; 22+ messages in thread
From: Nuno Magalhães @ 2014-07-14 23:24 UTC (permalink / raw)
  To: tj; +Cc: linux-ide

[-- Attachment #1: Type: text/plain, Size: 1290 bytes --]

Hi,

Thank you for your reply.

On Mon, Jul 14, 2014 at 5:36 PM, Tejun Heo <tj@kernel.org> wrote:
> So, the device initially reports that it doesn't support LBA48 and
> then later changes its mind later on for some reason.  That's weird.
> I wonder whether the controller is meddling with the IDENTIFY data.
> AFAICS, there isn't anything in ATA spec which would make a device
> change whether it reports 48 bit support or not.
>
> Can you please try the followings?

This doesn't happen every-time i boot, only sometimes (about 50/50).
Once i booted and the disk was disabled, i created dmesg1.nodisk

> 1. After boot is complete, re-trigger device attach by doing
>
>    echo - - - > /sys/class/scsi_host/hostN/scan

Partial dmesg2.reset (i just wanted to see what this output to dmesg,
i didn't reboot)

> 2. Boot with libata.force=dump_id and report full dmesg after boot.

dmesg3.dump_id

> 3. Boot with libata.force=nohrst and see whether anything changes.

dmesg4.nohrst

> Thanks.

Thank you for your time.

Both dump_id and nohrst detected the drive the first time i used them.
Should i keep trying one or the other until the disk is dropped again
(or not)? Should i specify both boot options simultaneously?

Kind regards,
Nuno Magalhães

[-- Attachment #2: dmesg1.nodisk --]
[-- Type: application/octet-stream, Size: 54608 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.60-1+deb7u1
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/lvm_lv_root ro iommu=noaperture acpi_enforce_resources=lax quiet
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[    0.000000]  BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfef0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cfef3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfef3000 - 00000000cff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000200000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: System manufacturer System Product Name/M2NPV-VM, BIOS ASUS M2NPV-VM ACPI BIOS Revision 5005 06/02/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x200000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 base 000100000000 mask FFFF00000000 write-back
[    0.000000]   4 base 0000CFF00000 mask 00FFFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000200000000 aka 8192M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xcfef0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000f5aa0] f5aa0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfef0000
[    0.000000]  0000000000 - 00c0000000 page 1G
[    0.000000]  00c0000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfef0000 page 4k
[    0.000000] kernel direct mapping tables up to cfef0000 @ 1fffd000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-0000000200000000
[    0.000000]  0100000000 - 0200000000 page 1G
[    0.000000] kernel direct mapping tables up to 200000000 @ cfeef000-cfef0000
[    0.000000] RAMDISK: 378bc000 - 37c56000
[    0.000000] ACPI: RSDP 00000000000f7640 00024 (v02 Nvidia)
[    0.000000] ACPI: XSDT 00000000cfef3100 0004C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 00000000cfef9e00 000F4 (v03 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 00000000cfef3280 06B1B (v01 NVIDIA ASUSACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000cfef0000 00040
[    0.000000] ACPI: SSDT 00000000cfefa040 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 00000000cfefa940 00038 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000098)
[    0.000000] ACPI: MCFG 00000000cfefa9c0 0003C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 00000000cfef9f40 00098 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000200000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000200000000
[    0.000000]   NODE_DATA [00000001ffffb000 - 00000001ffffffff]
[    0.000000]  [ffffea0000000000-ffffea0006ffffff] PMD -> [ffff8801f8200000-ffff8801fe7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00200000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfef0
[    0.000000]     0: 0x00100000 -> 0x00200000
[    0.000000] On node 0 totalpages: 1900159
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3922 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833320 pages, LIFO batch:31
[    0.000000]   Normal zone: 14336 pages used for memmap
[    0.000000]   Normal zone: 1034240 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    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 17, 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] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    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] PM: Registered nosave memory: 00000000cfef0000 - 00000000cfef3000
[    0.000000] PM: Registered nosave memory: 00000000cfef3000 - 00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at cff00000 (gap: cff00000:10100000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff8801ffc00000 s82944 r8192 d23552 u524288
[    0.000000] pcpu-alloc: s82944 r8192 d23552 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1871482
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/lvm_lv_root ro iommu=noaperture acpi_enforce_resources=lax quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 7417476k/8388608k available (3431k kernel code, 787972k absent, 183160k reserved, 3308k data, 580k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:33024 nr_irqs:712 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2605.420 MHz processor.
[    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5210.84 BogoMIPS (lpj=10421680)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004054] Security Framework initialized
[    0.004059] AppArmor: AppArmor disabled by boot time parameter
[    0.008051] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.010842] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.012107] Mount-cache hash table entries: 256
[    0.012217] Initializing cgroup subsys cpuacct
[    0.012221] Initializing cgroup subsys memory
[    0.012233] Initializing cgroup subsys devices
[    0.012237] Initializing cgroup subsys freezer
[    0.012239] Initializing cgroup subsys net_cls
[    0.012241] Initializing cgroup subsys blkio
[    0.012247] Initializing cgroup subsys perf_event
[    0.012274] tseg: 00cff00000
[    0.012276] CPU: Physical Processor ID: 0
[    0.012278] CPU: Processor Core ID: 0
[    0.012280] mce: CPU supports 6 MCE banks
[    0.012289] using AMD E400 aware idle routine
[    0.012592] ACPI: Core revision 20110623
[    0.017029] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.058720] CPU0: AMD Phenom(tm) II X4 910e Processor stepping 03
[    0.060003] Performance Events: AMD PMU driver.
[    0.060003] ... version:                0
[    0.060003] ... bit width:              48
[    0.060003] ... generic registers:      4
[    0.060003] ... value mask:             0000ffffffffffff
[    0.060003] ... max period:             00007fffffffffff
[    0.060003] ... fixed-purpose events:   0
[    0.060003] ... event mask:             000000000000000f
[    0.060003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.060003] Booting Node   0, Processors  #1
[    0.060003] smpboot cpu 1: start_ip = 9a000
[    0.148026] NMI watchdog enabled, takes one hw-pmu counter.
[    0.148044] System has AMD C1E enabled
[    0.148054] Switch to broadcast mode on CPU1
[    0.148118]  #2
[    0.148120] smpboot cpu 2: start_ip = 9a000
[    0.240035] NMI watchdog enabled, takes one hw-pmu counter.
[    0.240051] Switch to broadcast mode on CPU2
[    0.240123]  #3 Ok.
[    0.240125] smpboot cpu 3: start_ip = 9a000
[    0.332045] NMI watchdog enabled, takes one hw-pmu counter.
[    0.332063] Brought up 4 CPUs
[    0.332066] Total of 4 processors activated (20843.73 BogoMIPS).
[    0.332062] Switch to broadcast mode on CPU3
[    0.336149] Switch to broadcast mode on CPU0
[    0.336184] devtmpfs: initialized
[    0.340435] PM: Registering ACPI NVS region at cfef0000 (12288 bytes)
[    0.340435] print_constraints: dummy: 
[    0.340435] NET: Registered protocol family 16
[    0.340435] node 0 link 0: io port [d000, ffff]
[    0.340435] TOM: 00000000d0000000 aka 3328M
[    0.340435] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
[    0.340435] node 0 link 0: mmio [a0000, bffff]
[    0.340435] node 0 link 0: mmio [d0000000, dfffffff]
[    0.340435] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.340435] node 0 link 0: mmio [e0000000, e02fffff] ==> [e0100000, e02fffff]
[    0.340435] TOM2: 0000000200000000 aka 8192M
[    0.340435] bus: [00, 02] on node 0 link 0
[    0.340435] bus: 00 index 0 [io  0x0000-0xffff]
[    0.340435] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.340435] bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
[    0.340435] bus: 00 index 3 [mem 0xe0300000-0xffffffff]
[    0.340435] bus: 00 index 4 [mem 0xe0100000-0xe02fffff]
[    0.340435] bus: 00 index 5 [mem 0x200000000-0xfcffffffff]
[    0.340435] Extended Config Space enabled on 1 nodes
[    0.340435] ACPI: bus type pci registered
[    0.340435] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.340435] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.361441] PCI: Using configuration type 1 for base access
[    0.362149] bio: create slab <bio-0> at 0
[    0.362149] ACPI: Added _OSI(Module Device)
[    0.362149] ACPI: Added _OSI(Processor Device)
[    0.362149] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.362149] ACPI: Added _OSI(Processor Aggregator Device)
[    0.362149] ACPI: EC: Look up EC in DSDT
[    0.368411] ACPI: Interpreter enabled
[    0.368417] ACPI: (supports S0 S1 S3 S4 S5)
[    0.368436] ACPI: Using IOAPIC for interrupt routing
[    0.374241] ACPI: No dock devices found.
[    0.374243] HEST: Table not found.
[    0.374247] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.374293] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.374386] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.374389] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.374391] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.374393] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.374395] pci_root PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff]
[    0.374408] pci 0000:00:00.0: [10de:02f0] type 0 class 0x000500
[    0.374467] pci 0000:00:00.2: [10de:02fe] type 0 class 0x000500
[    0.374510] pci 0000:00:00.3: [10de:02f8] type 0 class 0x000500
[    0.374553] pci 0000:00:00.4: [10de:02f9] type 0 class 0x000500
[    0.374597] pci 0000:00:00.5: [10de:02ff] type 0 class 0x000500
[    0.374646] pci 0000:00:00.6: [10de:027f] type 0 class 0x000500
[    0.374682] pci 0000:00:00.7: [10de:027e] type 0 class 0x000500
[    0.374733] pci 0000:00:04.0: [10de:02fb] type 1 class 0x000604
[    0.374766] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.374809] pci 0000:00:09.0: [10de:0270] type 0 class 0x000500
[    0.375088] pci 0000:00:0a.0: [10de:0260] type 0 class 0x000601
[    0.375187] pci 0000:00:0a.1: [10de:0264] type 0 class 0x000c05
[    0.375253] pci 0000:00:0a.1: reg 20: [io  0x4c00-0x4c3f]
[    0.375265] pci 0000:00:0a.1: reg 24: [io  0x4c40-0x4c7f]
[    0.375321] pci 0000:00:0a.1: PME# supported from D3hot D3cold
[    0.375345] pci 0000:00:0a.2: [10de:0272] type 0 class 0x000500
[    0.375458] pci 0000:00:0b.0: [10de:026d] type 0 class 0x000c03
[    0.375478] pci 0000:00:0b.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
[    0.375569] pci 0000:00:0b.0: supports D1 D2
[    0.375571] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.375598] pci 0000:00:0b.1: [10de:026e] type 0 class 0x000c03
[    0.375620] pci 0000:00:0b.1: reg 10: [mem 0xfe02e000-0xfe02e0ff]
[    0.375720] pci 0000:00:0b.1: supports D1 D2
[    0.375722] pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.375759] pci 0000:00:0d.0: [10de:0265] type 0 class 0x000101
[    0.375813] pci 0000:00:0d.0: reg 20: [io  0xfd00-0xfd0f]
[    0.375886] pci 0000:00:0e.0: [10de:0266] type 0 class 0x000101
[    0.375911] pci 0000:00:0e.0: reg 10: [io  0x09f0-0x09f7]
[    0.375922] pci 0000:00:0e.0: reg 14: [io  0x0bf0-0x0bf3]
[    0.375932] pci 0000:00:0e.0: reg 18: [io  0x0970-0x0977]
[    0.375943] pci 0000:00:0e.0: reg 1c: [io  0x0b70-0x0b73]
[    0.375954] pci 0000:00:0e.0: reg 20: [io  0xf800-0xf80f]
[    0.375965] pci 0000:00:0e.0: reg 24: [mem 0xfe02d000-0xfe02dfff]
[    0.376068] pci 0000:00:0f.0: [10de:0267] type 0 class 0x000101
[    0.376092] pci 0000:00:0f.0: reg 10: [io  0x09e0-0x09e7]
[    0.376103] pci 0000:00:0f.0: reg 14: [io  0x0be0-0x0be3]
[    0.376114] pci 0000:00:0f.0: reg 18: [io  0x0960-0x0967]
[    0.376125] pci 0000:00:0f.0: reg 1c: [io  0x0b60-0x0b63]
[    0.376136] pci 0000:00:0f.0: reg 20: [io  0xf300-0xf30f]
[    0.376147] pci 0000:00:0f.0: reg 24: [mem 0xfe02c000-0xfe02cfff]
[    0.376233] pci 0000:00:10.0: [10de:026f] type 1 class 0x000604
[    0.376339] pci 0000:00:10.1: [10de:026c] type 0 class 0x000403
[    0.376365] pci 0000:00:10.1: reg 10: [mem 0xfe024000-0xfe027fff]
[    0.376476] pci 0000:00:10.1: PME# supported from D3hot D3cold
[    0.376520] pci 0000:00:14.0: [10de:0269] type 0 class 0x000680
[    0.376539] pci 0000:00:14.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.376550] pci 0000:00:14.0: reg 14: [io  0xf200-0xf207]
[    0.376628] pci 0000:00:14.0: supports D1 D2
[    0.376629] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.376649] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
[    0.376665] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
[    0.376679] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
[    0.376692] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
[    0.376708] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
[    0.376761] pci 0000:01:00.0: [1002:68e1] type 0 class 0x000300
[    0.376773] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.376783] pci 0000:01:00.0: reg 18: [mem 0xfddc0000-0xfdddffff 64bit]
[    0.376789] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.376801] pci 0000:01:00.0: reg 30: [mem 0xfdda0000-0xfddbffff pref]
[    0.376828] pci 0000:01:00.0: supports D1 D2
[    0.376846] pci 0000:01:00.1: [1002:aa68] type 0 class 0x000403
[    0.376858] pci 0000:01:00.1: reg 10: [mem 0xfddfc000-0xfddfffff 64bit]
[    0.376908] pci 0000:01:00.1: supports D1 D2
[    0.384042] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.384047] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.384050] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.384054] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.384127] pci 0000:02:09.0: [10ec:8169] type 0 class 0x000200
[    0.384151] pci 0000:02:09.0: reg 10: [io  0xec00-0xecff]
[    0.384164] pci 0000:02:09.0: reg 14: [mem 0xfdcff000-0xfdcff0ff]
[    0.384223] pci 0000:02:09.0: reg 30: [mem 0xfdce0000-0xfdceffff pref]
[    0.384264] pci 0000:02:09.0: supports D1 D2
[    0.384265] pci 0000:02:09.0: PME# supported from D1 D2 D3hot D3cold
[    0.384316] pci 0000:00:10.0: PCI bridge to [bus 02-02] (subtractive decode)
[    0.384320] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.384325] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.384329] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.384331] pci 0000:00:10.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.384334] pci 0000:00:10.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.384336] pci 0000:00:10.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.384338] pci 0000:00:10.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.384340] pci 0000:00:10.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
[    0.384354] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.384507] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.384612]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.384615]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.384617] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.409653] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409697] ACPI: PCI Interrupt Link [LNK2] (IRQs *5 7 9 10 11 14 15)
[    0.409737] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409777] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409818] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 *11 14 15)
[    0.409858] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 *10 11 14 15)
[    0.409900] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409940] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409979] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410019] ACPI: PCI Interrupt Link [LUBB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410059] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 10 *11 14 15)
[    0.410098] ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410138] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[    0.410177] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410217] ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410256] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410295] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410335] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410375] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[    0.410415] ACPI: PCI Interrupt Link [LFID] (IRQs *5 7 9 10 11 14 15)
[    0.410488] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[    0.410561] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
[    0.410628] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
[    0.410694] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[    0.410762] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0
[    0.410827] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
[    0.410893] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
[    0.410959] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[    0.411025] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
[    0.411092] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
[    0.411159] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[    0.411225] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
[    0.411292] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[    0.411359] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[    0.411426] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
[    0.411493] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
[    0.411560] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
[    0.411626] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[    0.411693] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[    0.411760] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[    0.411827] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[    0.411914] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.411914] vgaarb: loaded
[    0.411914] vgaarb: bridge control possible 0000:01:00.0
[    0.411914] PCI: Using ACPI for IRQ routing
[    0.424985] PCI: pci_cache_line_size set to 64 bytes
[    0.425071] reserve RAM buffer: 000000000009f000 - 000000000009ffff 
[    0.425073] reserve RAM buffer: 00000000cfef0000 - 00000000cfffffff 
[    0.425175] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.425184] hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
[    0.425188] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
[    0.440065] Switching to clocksource hpet
[    0.441623] pnp: PnP ACPI init
[    0.441637] ACPI: bus type pnp registered
[    0.441715] pnp 00:00: [bus 00-ff]
[    0.441718] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.441720] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.441722] pnp 00:00: [io  0x0d00-0xffff window]
[    0.441724] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.441726] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.441728] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
[    0.441775] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.441823] pnp 00:01: [io  0x4000-0x407f]
[    0.441825] pnp 00:01: [io  0x4080-0x40ff]
[    0.441827] pnp 00:01: [io  0x4400-0x447f]
[    0.441828] pnp 00:01: [io  0x4480-0x44ff]
[    0.441830] pnp 00:01: [io  0x4800-0x487f]
[    0.441832] pnp 00:01: [io  0x4880-0x48ff]
[    0.441834] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.441836] pnp 00:01: [io  0x2000-0x207f]
[    0.441837] pnp 00:01: [io  0x2080-0x20ff]
[    0.441886] system 00:01: [io  0x4000-0x407f] has been reserved
[    0.441888] system 00:01: [io  0x4080-0x40ff] has been reserved
[    0.441891] system 00:01: [io  0x4400-0x447f] has been reserved
[    0.441893] system 00:01: [io  0x4480-0x44ff] has been reserved
[    0.441895] system 00:01: [io  0x4800-0x487f] has been reserved
[    0.441898] system 00:01: [io  0x4880-0x48ff] has been reserved
[    0.441900] system 00:01: [io  0x2000-0x207f] has been reserved
[    0.441902] system 00:01: [io  0x2080-0x20ff] has been reserved
[    0.441905] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.441946] pnp 00:02: [io  0x0010-0x001f]
[    0.441948] pnp 00:02: [io  0x0022-0x003f]
[    0.441949] pnp 00:02: [io  0x0044-0x005f]
[    0.441951] pnp 00:02: [io  0x0062-0x0063]
[    0.441953] pnp 00:02: [io  0x0065-0x006f]
[    0.441955] pnp 00:02: [io  0x0074-0x007f]
[    0.441956] pnp 00:02: [io  0x0091-0x0093]
[    0.441958] pnp 00:02: [io  0x00a2-0x00bf]
[    0.441960] pnp 00:02: [io  0x00e0-0x00ef]
[    0.441961] pnp 00:02: [io  0x04d0-0x04d1]
[    0.441963] pnp 00:02: [io  0x0800-0x087f]
[    0.441965] pnp 00:02: [io  0x0290-0x0297]
[    0.442016] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.442018] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.442021] system 00:02: [io  0x0290-0x0297] has been reserved
[    0.442023] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.442033] pnp 00:03: [dma 4]
[    0.442036] pnp 00:03: [io  0x0000-0x000f]
[    0.442038] pnp 00:03: [io  0x0080-0x0090]
[    0.442039] pnp 00:03: [io  0x0094-0x009f]
[    0.442041] pnp 00:03: [io  0x00c0-0x00df]
[    0.442067] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.442109] pnp 00:04: [irq 0 disabled]
[    0.442125] pnp 00:04: [irq 8]
[    0.442127] pnp 00:04: [mem 0xfefff000-0xfefff3ff]
[    0.442154] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.442178] pnp 00:05: [io  0x0070-0x0073]
[    0.442204] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.442211] pnp 00:06: [io  0x0061]
[    0.442237] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.442245] pnp 00:07: [io  0x00f0-0x00ff]
[    0.442257] pnp 00:07: [irq 13]
[    0.442283] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.442580] pnp 00:08: [io  0x03f8-0x03ff]
[    0.442592] pnp 00:08: [irq 4]
[    0.442648] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.442868] pnp 00:09: [io  0x02f8-0x02ff]
[    0.442880] pnp 00:09: [irq 3]
[    0.442933] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.443153] pnp 00:0a: [io  0x0378-0x037f]
[    0.443165] pnp 00:0a: [irq 7]
[    0.443207] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.444111] pnp 00:0b: [mem 0xe0000000-0xefffffff]
[    0.444168] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
[    0.444171] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.444267] pnp 00:0c: [mem 0x000f0000-0x000f3fff]
[    0.444269] pnp 00:0c: [mem 0x000f4000-0x000f7fff]
[    0.444271] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
[    0.444273] pnp 00:0c: [mem 0x000fc000-0x000fffff]
[    0.444275] pnp 00:0c: [mem 0xfefff000-0xfefff0ff]
[    0.444277] pnp 00:0c: [mem 0xcfef0000-0xcfefffff]
[    0.444279] pnp 00:0c: [mem 0xffff0000-0xffffffff]
[    0.444281] pnp 00:0c: [mem 0x00000000-0x0009ffff]
[    0.444283] pnp 00:0c: [mem 0x00100000-0xcfeeffff]
[    0.444285] pnp 00:0c: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.444287] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
[    0.444289] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
[    0.444291] pnp 00:0c: [mem 0xfefff000-0xfeffffff]
[    0.444292] pnp 00:0c: [mem 0xfff80000-0xfff80fff]
[    0.444294] pnp 00:0c: [mem 0xfff90000-0xfffbffff]
[    0.444296] pnp 00:0c: [mem 0xfffed000-0xfffeffff]
[    0.444324] pnp 00:0c: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xe0000000-0xe00fffff]; adding more reservations
[    0.444364] system 00:0c: [mem 0x000f0000-0x000f3fff] could not be reserved
[    0.444367] system 00:0c: [mem 0x000f4000-0x000f7fff] could not be reserved
[    0.444370] system 00:0c: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.444372] system 00:0c: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.444375] system 00:0c: [mem 0xfefff000-0xfefff0ff] has been reserved
[    0.444378] system 00:0c: [mem 0xcfef0000-0xcfefffff] could not be reserved
[    0.444380] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
[    0.444383] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.444385] system 00:0c: [mem 0x00100000-0xcfeeffff] could not be reserved
[    0.444388] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.444391] system 00:0c: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.444393] system 00:0c: [mem 0xfefff000-0xfeffffff] could not be reserved
[    0.444396] system 00:0c: [mem 0xfff80000-0xfff80fff] has been reserved
[    0.444399] system 00:0c: [mem 0xfff90000-0xfffbffff] has been reserved
[    0.444401] system 00:0c: [mem 0xfffed000-0xfffeffff] has been reserved
[    0.444404] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.444412] pnp: PnP ACPI: found 13 devices
[    0.444413] ACPI: ACPI bus type pnp unregistered
[    0.452508] PCI: max bus depth: 1 pci_try_num: 2
[    0.452522] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.452524] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.452527] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.452530] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452534] pci 0000:00:10.0: PCI bridge to [bus 02-02]
[    0.452537] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.452542] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.452547] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.452559] pci 0000:00:04.0: setting latency timer to 64
[    0.452566] pci 0000:00:10.0: setting latency timer to 64
[    0.452570] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.452572] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.452574] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452576] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452578] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452580] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.452582] pci_bus 0000:01: resource 1 [mem 0xfdd00000-0xfddfffff]
[    0.452584] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452586] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.452588] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    0.452590] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
[    0.452592] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    0.452594] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    0.452596] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452598] pci_bus 0000:02: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452600] pci_bus 0000:02: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452747] NET: Registered protocol family 2
[    0.452940] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.454096] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.456744] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.457065] TCP: Hash tables configured (established 524288 bind 65536)
[    0.457068] TCP reno registered
[    0.457080] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.457139] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.457332] NET: Registered protocol family 1
[    0.457391] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.457711] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[    0.528333] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
[    0.528482] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528496] pci 0000:00:0e.0: Enabling HT MSI Mapping
[    0.528590] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528604] pci 0000:00:0f.0: Enabling HT MSI Mapping
[    0.528703] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528713] pci 0000:00:10.0: Enabling HT MSI Mapping
[    0.528817] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528831] pci 0000:00:10.1: Enabling HT MSI Mapping
[    0.528856] pci 0000:01:00.0: Boot video device
[    0.528864] PCI: CLS 32 bytes, default 64
[    0.528917] Unpacking initramfs...
[    0.594325] Freeing initrd memory: 3688k freed
[    0.595308] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.595312] Placing 64MB software IO TLB between ffff8800cbef0000 - ffff8800cfef0000
[    0.595314] software IO TLB at phys 0xcbef0000 - 0xcfef0000
[    0.595853] IBS: LVT offset 1 assigned
[    0.595880] perf: AMD IBS detected (0x0000001f)
[    0.596160] audit: initializing netlink socket (disabled)
[    0.596177] type=2000 audit(1405377886.592:1): initialized
[    0.609621] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.611103] VFS: Disk quotas dquot_6.5.2
[    0.611141] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.611211] msgmni has been set to 14494
[    0.611481] alg: No test for stdrng (krng)
[    0.611522] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.611525] io scheduler noop registered
[    0.611527] io scheduler deadline registered
[    0.611567] io scheduler cfq registered (default)
[    0.611681] pcieport 0000:00:04.0: setting latency timer to 64
[    0.611711] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.611801] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.611819] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.611820] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.612212] ERST: Table is not found!
[    0.612214] GHES: HEST is not enabled!
[    0.612292] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.632969] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.724724] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.821178] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.842056] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.842413] Linux agpgart interface v0.103
[    0.843533] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.844073] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.844081] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.844242] mousedev: PS/2 mouse device common for all mice
[    0.844311] rtc_cmos 00:05: RTC can wake from S4
[    0.844473] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.844531] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.844543] cpuidle: using governor ladder
[    0.844545] cpuidle: using governor menu
[    0.844727] TCP cubic registered
[    0.844851] NET: Registered protocol family 10
[    0.845282] Mobile IPv6
[    0.845284] NET: Registered protocol family 17
[    0.845288] Registering the dns_resolver key type
[    0.845470] PM: Hibernation image not present or could not be loaded.
[    0.845479] registered taskstats version 1
[    0.846309] rtc_cmos 00:05: setting system clock to 2014-07-14 22:44:47 UTC (1405377887)
[    0.846344] Initializing network drop monitor service
[    0.847440] Freeing unused kernel memory: 580k freed
[    0.847590] Write protecting the kernel read-only data: 6144k
[    0.849976] Freeing unused kernel memory: 648k freed
[    0.852672] Freeing unused kernel memory: 688k freed
[    0.863939] udevd[59]: starting version 175
[    0.883539] SCSI subsystem initialized
[    0.896925] libata version 3.00 loaded.
[    0.897375] sata_nv 0000:00:0e.0: version 3.5
[    0.897584] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
[    0.897612] sata_nv 0000:00:0e.0: Using SWNCQ mode
[    0.897690] sata_nv 0000:00:0e.0: setting latency timer to 64
[    0.905097] scsi0 : sata_nv
[    0.909146] scsi1 : sata_nv
[    0.909307] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf800 irq 21
[    0.909311] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf808 irq 21
[    0.909512] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
[    0.909536] sata_nv 0000:00:0f.0: Using SWNCQ mode
[    0.909599] sata_nv 0000:00:0f.0: setting latency timer to 64
[    0.910521] scsi2 : sata_nv
[    0.910622] scsi3 : sata_nv
[    0.910728] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xf300 irq 20
[    0.910731] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xf308 irq 20
[    0.912266] ACPI: Fan [FAN] (on)
[    1.376094] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.380083] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.384601] ata1.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.384605] ata1.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.388884] ata3.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388887] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.396621] ata3.00: configured for UDMA/133
[    1.400817] ata1.00: configured for UDMA/133
[    1.401004] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.592081] Refined TSC clocksource calibration: 2605.434 MHz.
[    1.592085] Switching to clocksource tsc
[    1.868350] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.876529] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    1.876532] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.884559] ata2.00: n_sectors mismatch 1953525168 != 268435455
[    1.884561] ata2.00: revalidation failed (errno=-19)
[    1.884608] ata2: limiting SATA link speed to 1.5 Gbps
[    1.884610] ata2.00: limiting speed to UDMA/133:PIO3
[    7.336054] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    7.352778] ata2.00: configured for UDMA/133
[    7.352896] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    7.353072] scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    7.820075] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    7.828967] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    7.828970] ata4.00: 268435455 sectors, multi 1: LBA NCQ (depth 31/32)
[    7.836801] ata4.00: n_sectors mismatch 268435455 != 1953525168
[    7.836803] ata4.00: revalidation failed (errno=-19)
[    7.836849] ata4: limiting SATA link speed to 1.5 Gbps
[    7.836851] ata4.00: limiting speed to UDMA/133:PIO3
[   13.288066] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   13.296906] ata4.00: n_sectors mismatch 268435455 != 1953525168
[   13.296909] ata4.00: revalidation failed (errno=-19)
[   13.296952] ata4.00: disabled
[   13.297446] ACPI Warning: For \_TZ_.THRM._PSL: Return Package has no elements (empty) (20110623/nspredef-463)
[   13.297453] ACPI: [Package] has zero elements (ffff8801f7968300)
[   13.297497] ACPI: Invalid passive threshold
[   13.297692] thermal LNXTHERM:00: registered as thermal_zone0
[   13.297694] ACPI: Thermal Zone [THRM] (40 C)
[   13.298440] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   13.298443] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   13.298447] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   13.298453] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   13.298458] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[   13.298462] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[   13.298503] sd 1:0:0:0: [sdb] Write Protect is off
[   13.298506] sd 2:0:0:0: [sdc] Write Protect is off
[   13.298509] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   13.298512] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   13.298526] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.298531] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.298550] sd 0:0:0:0: [sda] Write Protect is off
[   13.298553] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   13.298717] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   13.315183]  sdb:
[   13.315427] sd 1:0:0:0: [sdb] Attached SCSI disk
[   13.335949]  sdc: sdc1
[   13.336247] sd 2:0:0:0: [sdc] Attached SCSI disk
[   13.337615]  sda: sda1
[   13.337867] sd 0:0:0:0: [sda] Attached SCSI disk
[   13.761694] md: md0 stopped.
[   13.762416] md: bind<sdc1>
[   13.762615] md: bind<sda1>
[   13.763683] md: raid1 personality registered for level 1
[   13.763872] bio: create slab <bio-1> at 1
[   13.763958] md/raid1:md0: active with 2 out of 2 mirrors
[   13.763979] md0: detected capacity change from 0 to 1000068677632
[   13.802249]  md0: unknown partition table
[   13.967118] device-mapper: uevent: version 1.0.3
[   13.967183] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[   14.231430] PM: Starting manual resume from disk
[   14.231434] PM: Hibernation image partition 253:1 present
[   14.231436] PM: Looking for hibernation image.
[   14.231602] PM: Image not found (code -22)
[   14.231605] PM: Hibernation image not present or could not be loaded.
[   14.241226] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[   14.241515] SGI XFS Quota Management subsystem
[   14.242650] XFS (dm-0): Mounting Filesystem
[   14.391615] XFS (dm-0): Ending clean mount
[   15.658055] udevd[457]: starting version 175
[   15.871816] ACPI: processor limited to max C-state 1
[   15.893620] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   15.893627] ACPI: Power Button [PWRB]
[   15.893705] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   15.893708] ACPI: Power Button [PWRF]
[   15.979403] asus_atk0110: Resources not safely usable due to acpi_enforce_resources kernel parameter
[   16.043882] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   16.070897] EDAC MC: Ver: 2.1.0
[   16.071854] MCE: In-kernel MCE decoding enabled.
[   16.072649] AMD64 EDAC driver v3.4.0
[   16.072712] EDAC amd64: DRAM ECC disabled.
[   16.072721] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[   16.072722]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[   16.072723]  (Note that use of the override may cause unknown side effects.)
[   16.074151] powernow-k8: Found 1 AMD Phenom(tm) II X4 910e Processor (4 cpu cores) (version 2.20.00)
[   16.074191] powernow-k8:    0 : pstate 0 (2600 MHz)
[   16.074193] powernow-k8:    1 : pstate 1 (1900 MHz)
[   16.074195] powernow-k8:    2 : pstate 2 (1400 MHz)
[   16.074197] powernow-k8:    3 : pstate 3 (800 MHz)
[   16.093510] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[   16.093966] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 23
[   16.093986] forcedeth 0000:00:14.0: setting latency timer to 64
[   16.110935] usbcore: registered new interface driver usbfs
[   16.110987] usbcore: registered new interface driver hub
[   16.111088] usbcore: registered new device driver usb
[   16.129648] parport_pc 00:0a: reported by Plug and Play ACPI
[   16.129697] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[   16.139385] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   16.139835] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[   16.139940] r8169 0000:02:09.0: (unregistered net_device): not PCI Express
[   16.141087] r8169 0000:02:09.0: eth0: RTL8169sb/8110sb at 0xffffc90000c78000, 08:60:6e:cf:a2:0f, XID 10000000 IRQ 17
[   16.141098] r8169 0000:02:09.0: eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[   16.232956] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   16.405236] [drm] Initialized drm 1.1.0 20060810
[   16.458071] [drm] radeon defaulting to kernel modesetting.
[   16.458079] [drm] radeon kernel modesetting enabled.
[   16.497962] ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
[   16.498424] radeon 0000:01:00.0: setting latency timer to 64
[   16.498443] [drm] initializing kernel modesetting (CEDAR 0x1002:0x68E1 0x1043:0x3000).
[   16.498539] [drm] register mmio base: 0xFDDC0000
[   16.498544] [drm] register mmio size: 131072
[   16.502331] ATOM BIOS: 68E1.12.20.0.62.AS04
[   16.502374] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[   16.502382] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[   16.502399] mtrr: your BIOS has configured an incorrect mask, fixing it.
[   16.502406] mtrr: your BIOS has configured an incorrect mask, fixing it.
[   16.512935] [drm] Detected VRAM RAM=1024M, BAR=256M
[   16.512944] [drm] RAM width 64bits DDR
[   16.513092] [TTM] Zone  kernel: Available graphics memory: 3711540 kiB
[   16.513098] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[   16.513103] [TTM] Initializing pool allocator
[   16.513117] [TTM] Initializing DMA pool allocator
[   16.513184] [drm] radeon: 1024M of VRAM memory ready
[   16.513189] [drm] radeon: 512M of GTT memory ready.
[   16.513236] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   16.514857] [drm] radeon: ib pool ready.
[   16.525703] [drm] Loading CEDAR Microcode
[   16.554329] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_pfp.bin into memory
[   16.573108] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_me.bin into memory
[   16.587640] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_rlc.bin into memory
[   16.589835] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[   16.590065] radeon 0000:01:00.0: WB enabled
[   16.590074] [drm] fence driver on ring 0 use gpu addr 0x40000c00 and cpu addr 0xffff8801f66d5c00
[   16.590084] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   16.590090] [drm] Driver supports precise vblank timestamp query.
[   16.590151] radeon 0000:01:00.0: irq 41 for MSI/MSI-X
[   16.590173] radeon 0000:01:00.0: radeon: using MSI.
[   16.590225] [drm] radeon: irq initialized.
[   16.607216] [drm] ring test on 0 succeeded in 1 usecs
[   16.608068] [drm] ib test on ring 0 succeeded in 0 usecs
[   16.608862] [drm] Radeon Display Connectors
[   16.608867] [drm] Connector 0:
[   16.608871] [drm]   HDMI-A
[   16.608875] [drm]   HPD1
[   16.608881] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[   16.608886] [drm]   Encoders:
[   16.608890] [drm]     DFP1: INTERNAL_UNIPHY1
[   16.608894] [drm] Connector 1:
[   16.608898] [drm]   DVI-I
[   16.608901] [drm]   HPD4
[   16.608907] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[   16.608912] [drm]   Encoders:
[   16.608916] [drm]     DFP2: INTERNAL_UNIPHY
[   16.608921] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[   16.608925] [drm] Connector 2:
[   16.608929] [drm]   VGA
[   16.608934] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[   16.608939] [drm]   Encoders:
[   16.608943] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   16.609013] [drm] Internal thermal controller without fan control
[   16.609105] [drm] radeon: power management initialized
[   16.625392] forcedeth 0000:00:14.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:18:f3:a8:01:be
[   16.625402] forcedeth 0000:00:14.0: highdma pwrctl gbit lnktim desc-v3
[   16.645289] ehci_hcd 0000:00:0b.1: setting latency timer to 64
[   16.645298] ehci_hcd 0000:00:0b.1: EHCI Host Controller
[   16.645356] ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
[   16.645401] ehci_hcd 0000:00:0b.1: debug port 1
[   16.645419] ehci_hcd 0000:00:0b.1: cache line size of 32 is not supported
[   16.645465] ehci_hcd 0000:00:0b.1: irq 22, io mem 0xfe02e000
[   16.656088] ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00
[   16.656144] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   16.656152] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   16.656159] usb usb1: Product: EHCI Host Controller
[   16.656164] usb usb1: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd
[   16.656169] usb usb1: SerialNumber: 0000:00:0b.1
[   16.656758] hub 1-0:1.0: USB hub found
[   16.656769] hub 1-0:1.0: 8 ports detected
[   16.667378] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   16.668450] [drm] fb mappable at 0xD0142000
[   16.668455] [drm] vram apper at 0xD0000000
[   16.668460] [drm] size 7299072
[   16.668464] [drm] fb depth is 24
[   16.668468] [drm]    pitch is 6912
[   16.668509] pata_amd 0000:00:0d.0: version 0.4.1
[   16.668589] pata_amd 0000:00:0d.0: setting latency timer to 64
[   16.669429] fbcon: radeondrmfb (fb0) is primary device
[   16.669450] scsi4 : pata_amd
[   16.669622] scsi5 : pata_amd
[   16.670788] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfd00 irq 14
[   16.670794] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfd08 irq 15
[   16.673994] ACPI: resource nForce2_smbus [io  0x4c00-0x4c3f] conflicts with ACPI region SM00 [io 0x4c00-0x4c05]
[   16.674000] ACPI: This conflict may cause random problems and system instability
[   16.674006] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   16.674086] i2c i2c-8: nForce2 SMBus adapter at 0x4c00
[   16.674145] i2c i2c-9: nForce2 SMBus adapter at 0x4c40
[   16.674596] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
[   16.674609] hda_intel: Disabling MSI
[   16.674680] snd_hda_intel 0000:00:10.1: setting latency timer to 64
[   16.680056] CE: hpet increased min_delta_ns to 11520 nsec
[   16.832711] ata5.00: ATAPI: HL-DT-STDVD-RAM GSA-H22N, 1.00, max UDMA/66
[   16.832732] ata5: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13)
[   16.849024] ata5.00: configured for UDMA/66
[   16.852839] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GSA-H22N 1.00 PQ: 0 ANSI: 5
[   17.034978] NV_TCO: NV TCO WatchDog Timer Driver v0.01
[   17.035161] NV_TCO: Watchdog reboot not detected.
[   17.035292] NV_TCO: initialized (0x4440). heartbeat=30 sec (nowayout=0)
[   17.052841] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[   17.052849] cdrom: Uniform CD-ROM driver Revision: 3.20
[   17.053181] sr 4:0:0:0: Attached scsi CD-ROM sr0
[   17.066338] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   17.066628] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   17.066746] sd 2:0:0:0: Attached scsi generic sg2 type 0
[   17.067665] sr 4:0:0:0: Attached scsi generic sg3 type 5
[   17.126788] Console: switching to colour frame buffer device 210x65
[   17.147993] fb0: radeondrmfb frame buffer device
[   17.147998] drm: registered panic notifier
[   17.148035] [drm] Initialized radeon 2.16.0 20080528 for 0000:01:00.0 on minor 0
[   17.378765] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:10.1/input/input3
[   17.528821] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
[   17.528959] snd_hda_intel 0000:01:00.1: irq 42 for MSI/MSI-X
[   17.529010] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[   17.529117] ohci_hcd 0000:00:0b.0: setting latency timer to 64
[   17.529125] ohci_hcd 0000:00:0b.0: OHCI Host Controller
[   17.529158] ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
[   17.529218] ohci_hcd 0000:00:0b.0: irq 23, io mem 0xfe02f000
[   17.549093] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[   17.549353] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:04.0/0000:01:00.1/sound/card1/input4
[   17.586134] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[   17.586144] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   17.586151] usb usb2: Product: OHCI Host Controller
[   17.586156] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ohci_hcd
[   17.586161] usb usb2: SerialNumber: 0000:00:0b.0
[   17.586500] hub 2-0:1.0: USB hub found
[   17.586514] hub 2-0:1.0: 8 ports detected
[   17.960093] usb 2-3: new low-speed USB device number 2 using ohci_hcd
[   18.179156] usb 2-3: New USB device found, idVendor=413c, idProduct=2005
[   18.179167] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   18.179174] usb 2-3: Product: DELL USB Keyboard
[   18.179179] usb 2-3: Manufacturer: DELL
[   18.220687] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:0b.0/usb2/2-3/2-3:1.0/input/input5
[   18.220939] generic-usb 0003:413C:2005.0001: input,hidraw0: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:0b.0-3/input0
[   18.220980] usbcore: registered new interface driver usbhid
[   18.220986] usbhid: USB HID core driver
[   18.909073] Adding 3903484k swap on /dev/mapper/lvm_lv_swap.  Priority:-1 extents:1 across:3903484k 
[   19.219949] loop: module loaded
[   19.283358] it87: Found IT8716F chip at 0x290, revision 1
[   19.283452] ACPI: resource it87 [io  0x0295-0x0296] conflicts with ACPI region HWRE [io 0x295-0x296]
[   19.283460] ACPI: This conflict may cause random problems and system instability
[   19.283466] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   21.493327] r8169 0000:02:09.0: eth0: link down
[   21.493340] r8169 0000:02:09.0: eth0: link down
[   21.496290] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.129183] r8169 0000:02:09.0: eth0: link up
[   23.132062] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   33.776612] eth0: no IPv6 routers present

[-- Attachment #3: dmesg2.reset --]
[-- Type: application/octet-stream, Size: 930 bytes --]

[  154.796640] ata4: hard resetting link
[  155.676118] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  155.684788] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[  155.684799] ata4.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[  155.692741] ata4.00: configured for UDMA/133
[  155.692760] ata4: EH complete
[  155.692988] scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[  155.693448] sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[  155.693456] sd 3:0:0:0: [sdd] 4096-byte physical blocks
[  155.693552] sd 3:0:0:0: Attached scsi generic sg4 type 0
[  155.693663] sd 3:0:0:0: [sdd] Write Protect is off
[  155.693675] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[  155.693804] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[  155.712334]  sdd:
[  155.712908] sd 3:0:0:0: [sdd] Attached SCSI disk

[-- Attachment #4: dmesg3.dump_id --]
[-- Type: application/octet-stream, Size: 68511 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.60-1+deb7u1
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/lvm_lv_root ro iommu=noaperture acpi_enforce_resources=lax libata.force=dump_id quiet
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[    0.000000]  BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfef0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cfef3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfef3000 - 00000000cff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000200000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: System manufacturer System Product Name/M2NPV-VM, BIOS ASUS M2NPV-VM ACPI BIOS Revision 5005 06/02/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x200000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 base 000100000000 mask FFFF00000000 write-back
[    0.000000]   4 base 0000CFF00000 mask 00FFFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000200000000 aka 8192M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xcfef0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000f5aa0] f5aa0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfef0000
[    0.000000]  0000000000 - 00c0000000 page 1G
[    0.000000]  00c0000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfef0000 page 4k
[    0.000000] kernel direct mapping tables up to cfef0000 @ 1fffd000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-0000000200000000
[    0.000000]  0100000000 - 0200000000 page 1G
[    0.000000] kernel direct mapping tables up to 200000000 @ cfeef000-cfef0000
[    0.000000] RAMDISK: 378bc000 - 37c56000
[    0.000000] ACPI: RSDP 00000000000f7640 00024 (v02 Nvidia)
[    0.000000] ACPI: XSDT 00000000cfef3100 0004C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 00000000cfef9e00 000F4 (v03 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 00000000cfef3280 06B1B (v01 NVIDIA ASUSACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000cfef0000 00040
[    0.000000] ACPI: SSDT 00000000cfefa040 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 00000000cfefa940 00038 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000098)
[    0.000000] ACPI: MCFG 00000000cfefa9c0 0003C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 00000000cfef9f40 00098 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000200000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000200000000
[    0.000000]   NODE_DATA [00000001ffffb000 - 00000001ffffffff]
[    0.000000]  [ffffea0000000000-ffffea0006ffffff] PMD -> [ffff8801f8200000-ffff8801fe7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00200000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfef0
[    0.000000]     0: 0x00100000 -> 0x00200000
[    0.000000] On node 0 totalpages: 1900159
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3922 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833320 pages, LIFO batch:31
[    0.000000]   Normal zone: 14336 pages used for memmap
[    0.000000]   Normal zone: 1034240 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    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 17, 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] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    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] PM: Registered nosave memory: 00000000cfef0000 - 00000000cfef3000
[    0.000000] PM: Registered nosave memory: 00000000cfef3000 - 00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at cff00000 (gap: cff00000:10100000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff8801ffc00000 s82944 r8192 d23552 u524288
[    0.000000] pcpu-alloc: s82944 r8192 d23552 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1871482
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/lvm_lv_root ro iommu=noaperture acpi_enforce_resources=lax libata.force=dump_id quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 7417476k/8388608k available (3431k kernel code, 787972k absent, 183160k reserved, 3308k data, 580k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:33024 nr_irqs:712 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2605.447 MHz processor.
[    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5210.89 BogoMIPS (lpj=10421788)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004054] Security Framework initialized
[    0.004059] AppArmor: AppArmor disabled by boot time parameter
[    0.008071] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.010867] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.012128] Mount-cache hash table entries: 256
[    0.012238] Initializing cgroup subsys cpuacct
[    0.012242] Initializing cgroup subsys memory
[    0.012254] Initializing cgroup subsys devices
[    0.012257] Initializing cgroup subsys freezer
[    0.012260] Initializing cgroup subsys net_cls
[    0.012262] Initializing cgroup subsys blkio
[    0.012268] Initializing cgroup subsys perf_event
[    0.012295] tseg: 00cff00000
[    0.012297] CPU: Physical Processor ID: 0
[    0.012298] CPU: Processor Core ID: 0
[    0.012301] mce: CPU supports 6 MCE banks
[    0.012310] using AMD E400 aware idle routine
[    0.012614] ACPI: Core revision 20110623
[    0.017034] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.058743] CPU0: AMD Phenom(tm) II X4 910e Processor stepping 03
[    0.060003] Performance Events: AMD PMU driver.
[    0.060003] ... version:                0
[    0.060003] ... bit width:              48
[    0.060003] ... generic registers:      4
[    0.060003] ... value mask:             0000ffffffffffff
[    0.060003] ... max period:             00007fffffffffff
[    0.060003] ... fixed-purpose events:   0
[    0.060003] ... event mask:             000000000000000f
[    0.060003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.060003] Booting Node   0, Processors  #1
[    0.060003] smpboot cpu 1: start_ip = 9a000
[    0.148026] NMI watchdog enabled, takes one hw-pmu counter.
[    0.148044] System has AMD C1E enabled
[    0.148054] Switch to broadcast mode on CPU1
[    0.148119]  #2
[    0.148120] smpboot cpu 2: start_ip = 9a000
[    0.240034] NMI watchdog enabled, takes one hw-pmu counter.
[    0.240050] Switch to broadcast mode on CPU2
[    0.240123]  #3 Ok.
[    0.240125] smpboot cpu 3: start_ip = 9a000
[    0.332045] NMI watchdog enabled, takes one hw-pmu counter.
[    0.332065] Brought up 4 CPUs
[    0.332067] Total of 4 processors activated (20843.56 BogoMIPS).
[    0.332064] Switch to broadcast mode on CPU3
[    0.336149] Switch to broadcast mode on CPU0
[    0.336184] devtmpfs: initialized
[    0.340436] PM: Registering ACPI NVS region at cfef0000 (12288 bytes)
[    0.340436] print_constraints: dummy: 
[    0.340436] NET: Registered protocol family 16
[    0.340436] node 0 link 0: io port [d000, ffff]
[    0.340436] TOM: 00000000d0000000 aka 3328M
[    0.340436] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
[    0.340436] node 0 link 0: mmio [a0000, bffff]
[    0.340436] node 0 link 0: mmio [d0000000, dfffffff]
[    0.340436] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.340436] node 0 link 0: mmio [e0000000, e02fffff] ==> [e0100000, e02fffff]
[    0.340436] TOM2: 0000000200000000 aka 8192M
[    0.340436] bus: [00, 02] on node 0 link 0
[    0.340436] bus: 00 index 0 [io  0x0000-0xffff]
[    0.340436] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.340436] bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
[    0.340436] bus: 00 index 3 [mem 0xe0300000-0xffffffff]
[    0.340436] bus: 00 index 4 [mem 0xe0100000-0xe02fffff]
[    0.340436] bus: 00 index 5 [mem 0x200000000-0xfcffffffff]
[    0.340436] Extended Config Space enabled on 1 nodes
[    0.340436] ACPI: bus type pci registered
[    0.340436] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.340436] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.361435] PCI: Using configuration type 1 for base access
[    0.362136] bio: create slab <bio-0> at 0
[    0.362136] ACPI: Added _OSI(Module Device)
[    0.362136] ACPI: Added _OSI(Processor Device)
[    0.362136] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.362136] ACPI: Added _OSI(Processor Aggregator Device)
[    0.362136] ACPI: EC: Look up EC in DSDT
[    0.368411] ACPI: Interpreter enabled
[    0.368417] ACPI: (supports S0 S1 S3 S4 S5)
[    0.368437] ACPI: Using IOAPIC for interrupt routing
[    0.374221] ACPI: No dock devices found.
[    0.374224] HEST: Table not found.
[    0.374227] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.374273] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.374366] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.374369] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.374371] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.374373] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.374375] pci_root PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff]
[    0.374388] pci 0000:00:00.0: [10de:02f0] type 0 class 0x000500
[    0.374447] pci 0000:00:00.2: [10de:02fe] type 0 class 0x000500
[    0.374490] pci 0000:00:00.3: [10de:02f8] type 0 class 0x000500
[    0.374533] pci 0000:00:00.4: [10de:02f9] type 0 class 0x000500
[    0.374577] pci 0000:00:00.5: [10de:02ff] type 0 class 0x000500
[    0.374626] pci 0000:00:00.6: [10de:027f] type 0 class 0x000500
[    0.374662] pci 0000:00:00.7: [10de:027e] type 0 class 0x000500
[    0.374713] pci 0000:00:04.0: [10de:02fb] type 1 class 0x000604
[    0.374746] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.374790] pci 0000:00:09.0: [10de:0270] type 0 class 0x000500
[    0.375068] pci 0000:00:0a.0: [10de:0260] type 0 class 0x000601
[    0.375167] pci 0000:00:0a.1: [10de:0264] type 0 class 0x000c05
[    0.375233] pci 0000:00:0a.1: reg 20: [io  0x4c00-0x4c3f]
[    0.375245] pci 0000:00:0a.1: reg 24: [io  0x4c40-0x4c7f]
[    0.375302] pci 0000:00:0a.1: PME# supported from D3hot D3cold
[    0.375326] pci 0000:00:0a.2: [10de:0272] type 0 class 0x000500
[    0.375438] pci 0000:00:0b.0: [10de:026d] type 0 class 0x000c03
[    0.375458] pci 0000:00:0b.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
[    0.375549] pci 0000:00:0b.0: supports D1 D2
[    0.375551] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.375578] pci 0000:00:0b.1: [10de:026e] type 0 class 0x000c03
[    0.375600] pci 0000:00:0b.1: reg 10: [mem 0xfe02e000-0xfe02e0ff]
[    0.375700] pci 0000:00:0b.1: supports D1 D2
[    0.375702] pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.375738] pci 0000:00:0d.0: [10de:0265] type 0 class 0x000101
[    0.375792] pci 0000:00:0d.0: reg 20: [io  0xfd00-0xfd0f]
[    0.375865] pci 0000:00:0e.0: [10de:0266] type 0 class 0x000101
[    0.375890] pci 0000:00:0e.0: reg 10: [io  0x09f0-0x09f7]
[    0.375901] pci 0000:00:0e.0: reg 14: [io  0x0bf0-0x0bf3]
[    0.375911] pci 0000:00:0e.0: reg 18: [io  0x0970-0x0977]
[    0.375922] pci 0000:00:0e.0: reg 1c: [io  0x0b70-0x0b73]
[    0.375933] pci 0000:00:0e.0: reg 20: [io  0xf800-0xf80f]
[    0.375944] pci 0000:00:0e.0: reg 24: [mem 0xfe02d000-0xfe02dfff]
[    0.376051] pci 0000:00:0f.0: [10de:0267] type 0 class 0x000101
[    0.376075] pci 0000:00:0f.0: reg 10: [io  0x09e0-0x09e7]
[    0.376086] pci 0000:00:0f.0: reg 14: [io  0x0be0-0x0be3]
[    0.376097] pci 0000:00:0f.0: reg 18: [io  0x0960-0x0967]
[    0.376108] pci 0000:00:0f.0: reg 1c: [io  0x0b60-0x0b63]
[    0.376119] pci 0000:00:0f.0: reg 20: [io  0xf300-0xf30f]
[    0.376130] pci 0000:00:0f.0: reg 24: [mem 0xfe02c000-0xfe02cfff]
[    0.376217] pci 0000:00:10.0: [10de:026f] type 1 class 0x000604
[    0.376322] pci 0000:00:10.1: [10de:026c] type 0 class 0x000403
[    0.376348] pci 0000:00:10.1: reg 10: [mem 0xfe024000-0xfe027fff]
[    0.376460] pci 0000:00:10.1: PME# supported from D3hot D3cold
[    0.376504] pci 0000:00:14.0: [10de:0269] type 0 class 0x000680
[    0.376523] pci 0000:00:14.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.376534] pci 0000:00:14.0: reg 14: [io  0xf200-0xf207]
[    0.376611] pci 0000:00:14.0: supports D1 D2
[    0.376613] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.376632] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
[    0.376648] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
[    0.376661] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
[    0.376675] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
[    0.376691] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
[    0.376745] pci 0000:01:00.0: [1002:68e1] type 0 class 0x000300
[    0.376757] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.376766] pci 0000:01:00.0: reg 18: [mem 0xfddc0000-0xfdddffff 64bit]
[    0.376773] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.376784] pci 0000:01:00.0: reg 30: [mem 0xfdda0000-0xfddbffff pref]
[    0.376811] pci 0000:01:00.0: supports D1 D2
[    0.376830] pci 0000:01:00.1: [1002:aa68] type 0 class 0x000403
[    0.376841] pci 0000:01:00.1: reg 10: [mem 0xfddfc000-0xfddfffff 64bit]
[    0.376891] pci 0000:01:00.1: supports D1 D2
[    0.384042] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.384047] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.384050] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.384053] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.384127] pci 0000:02:09.0: [10ec:8169] type 0 class 0x000200
[    0.384151] pci 0000:02:09.0: reg 10: [io  0xec00-0xecff]
[    0.384164] pci 0000:02:09.0: reg 14: [mem 0xfdcff000-0xfdcff0ff]
[    0.384224] pci 0000:02:09.0: reg 30: [mem 0xfdce0000-0xfdceffff pref]
[    0.384264] pci 0000:02:09.0: supports D1 D2
[    0.384266] pci 0000:02:09.0: PME# supported from D1 D2 D3hot D3cold
[    0.384316] pci 0000:00:10.0: PCI bridge to [bus 02-02] (subtractive decode)
[    0.384321] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.384325] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.384329] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.384332] pci 0000:00:10.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.384334] pci 0000:00:10.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.384336] pci 0000:00:10.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.384339] pci 0000:00:10.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.384341] pci 0000:00:10.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
[    0.384355] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.384507] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.384612]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.384615]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.384617] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.409642] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409687] ACPI: PCI Interrupt Link [LNK2] (IRQs *5 7 9 10 11 14 15)
[    0.409727] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409767] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409808] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 *11 14 15)
[    0.409848] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 *10 11 14 15)
[    0.409890] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409930] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409970] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410009] ACPI: PCI Interrupt Link [LUBB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410049] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 10 *11 14 15)
[    0.410088] ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410128] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[    0.410167] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410206] ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410245] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410284] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410324] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410364] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[    0.410404] ACPI: PCI Interrupt Link [LFID] (IRQs *5 7 9 10 11 14 15)
[    0.410477] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[    0.410550] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
[    0.410617] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
[    0.410683] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[    0.410751] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0
[    0.410817] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
[    0.410882] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
[    0.410948] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[    0.411014] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
[    0.411081] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
[    0.411148] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[    0.411214] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
[    0.411281] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[    0.411348] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[    0.411415] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
[    0.411482] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
[    0.411549] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
[    0.411616] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[    0.411683] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[    0.411750] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[    0.411816] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[    0.411904] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.411904] vgaarb: loaded
[    0.411904] vgaarb: bridge control possible 0000:01:00.0
[    0.411904] PCI: Using ACPI for IRQ routing
[    0.424974] PCI: pci_cache_line_size set to 64 bytes
[    0.425060] reserve RAM buffer: 000000000009f000 - 000000000009ffff 
[    0.425062] reserve RAM buffer: 00000000cfef0000 - 00000000cfffffff 
[    0.425165] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.425173] hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
[    0.425177] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
[    0.440064] Switching to clocksource hpet
[    0.441631] pnp: PnP ACPI init
[    0.441646] ACPI: bus type pnp registered
[    0.441723] pnp 00:00: [bus 00-ff]
[    0.441726] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.441728] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.441730] pnp 00:00: [io  0x0d00-0xffff window]
[    0.441732] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.441734] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.441736] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
[    0.441784] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.441832] pnp 00:01: [io  0x4000-0x407f]
[    0.441833] pnp 00:01: [io  0x4080-0x40ff]
[    0.441835] pnp 00:01: [io  0x4400-0x447f]
[    0.441837] pnp 00:01: [io  0x4480-0x44ff]
[    0.441839] pnp 00:01: [io  0x4800-0x487f]
[    0.441840] pnp 00:01: [io  0x4880-0x48ff]
[    0.441842] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.441844] pnp 00:01: [io  0x2000-0x207f]
[    0.441846] pnp 00:01: [io  0x2080-0x20ff]
[    0.441895] system 00:01: [io  0x4000-0x407f] has been reserved
[    0.441897] system 00:01: [io  0x4080-0x40ff] has been reserved
[    0.441899] system 00:01: [io  0x4400-0x447f] has been reserved
[    0.441902] system 00:01: [io  0x4480-0x44ff] has been reserved
[    0.441904] system 00:01: [io  0x4800-0x487f] has been reserved
[    0.441907] system 00:01: [io  0x4880-0x48ff] has been reserved
[    0.441909] system 00:01: [io  0x2000-0x207f] has been reserved
[    0.441911] system 00:01: [io  0x2080-0x20ff] has been reserved
[    0.441914] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.441955] pnp 00:02: [io  0x0010-0x001f]
[    0.441957] pnp 00:02: [io  0x0022-0x003f]
[    0.441958] pnp 00:02: [io  0x0044-0x005f]
[    0.441960] pnp 00:02: [io  0x0062-0x0063]
[    0.441962] pnp 00:02: [io  0x0065-0x006f]
[    0.441964] pnp 00:02: [io  0x0074-0x007f]
[    0.441965] pnp 00:02: [io  0x0091-0x0093]
[    0.441967] pnp 00:02: [io  0x00a2-0x00bf]
[    0.441969] pnp 00:02: [io  0x00e0-0x00ef]
[    0.441970] pnp 00:02: [io  0x04d0-0x04d1]
[    0.441972] pnp 00:02: [io  0x0800-0x087f]
[    0.441974] pnp 00:02: [io  0x0290-0x0297]
[    0.442025] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.442027] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.442030] system 00:02: [io  0x0290-0x0297] has been reserved
[    0.442032] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.442042] pnp 00:03: [dma 4]
[    0.442045] pnp 00:03: [io  0x0000-0x000f]
[    0.442047] pnp 00:03: [io  0x0080-0x0090]
[    0.442049] pnp 00:03: [io  0x0094-0x009f]
[    0.442051] pnp 00:03: [io  0x00c0-0x00df]
[    0.442077] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.442118] pnp 00:04: [irq 0 disabled]
[    0.442134] pnp 00:04: [irq 8]
[    0.442135] pnp 00:04: [mem 0xfefff000-0xfefff3ff]
[    0.442162] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.442185] pnp 00:05: [io  0x0070-0x0073]
[    0.442211] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.442219] pnp 00:06: [io  0x0061]
[    0.442245] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.442252] pnp 00:07: [io  0x00f0-0x00ff]
[    0.442264] pnp 00:07: [irq 13]
[    0.442290] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.442586] pnp 00:08: [io  0x03f8-0x03ff]
[    0.442597] pnp 00:08: [irq 4]
[    0.442653] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.442872] pnp 00:09: [io  0x02f8-0x02ff]
[    0.442884] pnp 00:09: [irq 3]
[    0.442936] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.443155] pnp 00:0a: [io  0x0378-0x037f]
[    0.443167] pnp 00:0a: [irq 7]
[    0.443210] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.444111] pnp 00:0b: [mem 0xe0000000-0xefffffff]
[    0.444167] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
[    0.444170] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.444265] pnp 00:0c: [mem 0x000f0000-0x000f3fff]
[    0.444267] pnp 00:0c: [mem 0x000f4000-0x000f7fff]
[    0.444269] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
[    0.444271] pnp 00:0c: [mem 0x000fc000-0x000fffff]
[    0.444273] pnp 00:0c: [mem 0xfefff000-0xfefff0ff]
[    0.444274] pnp 00:0c: [mem 0xcfef0000-0xcfefffff]
[    0.444276] pnp 00:0c: [mem 0xffff0000-0xffffffff]
[    0.444278] pnp 00:0c: [mem 0x00000000-0x0009ffff]
[    0.444280] pnp 00:0c: [mem 0x00100000-0xcfeeffff]
[    0.444282] pnp 00:0c: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.444284] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
[    0.444286] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
[    0.444288] pnp 00:0c: [mem 0xfefff000-0xfeffffff]
[    0.444290] pnp 00:0c: [mem 0xfff80000-0xfff80fff]
[    0.444292] pnp 00:0c: [mem 0xfff90000-0xfffbffff]
[    0.444294] pnp 00:0c: [mem 0xfffed000-0xfffeffff]
[    0.444321] pnp 00:0c: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xe0000000-0xe00fffff]; adding more reservations
[    0.444362] system 00:0c: [mem 0x000f0000-0x000f3fff] could not be reserved
[    0.444365] system 00:0c: [mem 0x000f4000-0x000f7fff] could not be reserved
[    0.444367] system 00:0c: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.444370] system 00:0c: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.444373] system 00:0c: [mem 0xfefff000-0xfefff0ff] has been reserved
[    0.444375] system 00:0c: [mem 0xcfef0000-0xcfefffff] could not be reserved
[    0.444378] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
[    0.444380] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.444383] system 00:0c: [mem 0x00100000-0xcfeeffff] could not be reserved
[    0.444386] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.444388] system 00:0c: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.444391] system 00:0c: [mem 0xfefff000-0xfeffffff] could not be reserved
[    0.444394] system 00:0c: [mem 0xfff80000-0xfff80fff] has been reserved
[    0.444396] system 00:0c: [mem 0xfff90000-0xfffbffff] has been reserved
[    0.444399] system 00:0c: [mem 0xfffed000-0xfffeffff] has been reserved
[    0.444402] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.444410] pnp: PnP ACPI: found 13 devices
[    0.444411] ACPI: ACPI bus type pnp unregistered
[    0.452508] PCI: max bus depth: 1 pci_try_num: 2
[    0.452522] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.452524] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.452527] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.452530] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452534] pci 0000:00:10.0: PCI bridge to [bus 02-02]
[    0.452537] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.452543] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.452548] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.452559] pci 0000:00:04.0: setting latency timer to 64
[    0.452567] pci 0000:00:10.0: setting latency timer to 64
[    0.452571] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.452573] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.452575] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452577] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452579] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452581] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.452583] pci_bus 0000:01: resource 1 [mem 0xfdd00000-0xfddfffff]
[    0.452586] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452588] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.452590] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    0.452592] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
[    0.452594] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    0.452596] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    0.452598] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452600] pci_bus 0000:02: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452602] pci_bus 0000:02: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452745] NET: Registered protocol family 2
[    0.452939] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.454095] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.456745] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.457071] TCP: Hash tables configured (established 524288 bind 65536)
[    0.457073] TCP reno registered
[    0.457085] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.457144] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.457334] NET: Registered protocol family 1
[    0.457393] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.457712] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[    0.528317] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
[    0.528466] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528480] pci 0000:00:0e.0: Enabling HT MSI Mapping
[    0.528574] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528588] pci 0000:00:0f.0: Enabling HT MSI Mapping
[    0.528687] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528698] pci 0000:00:10.0: Enabling HT MSI Mapping
[    0.528801] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528815] pci 0000:00:10.1: Enabling HT MSI Mapping
[    0.528840] pci 0000:01:00.0: Boot video device
[    0.528848] PCI: CLS 32 bytes, default 64
[    0.528900] Unpacking initramfs...
[    0.594316] Freeing initrd memory: 3688k freed
[    0.595296] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.595299] Placing 64MB software IO TLB between ffff8800cbef0000 - ffff8800cfef0000
[    0.595302] software IO TLB at phys 0xcbef0000 - 0xcfef0000
[    0.595837] IBS: LVT offset 1 assigned
[    0.595864] perf: AMD IBS detected (0x0000001f)
[    0.596154] audit: initializing netlink socket (disabled)
[    0.596170] type=2000 audit(1405378233.592:1): initialized
[    0.609619] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.611071] VFS: Disk quotas dquot_6.5.2
[    0.611109] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.611179] msgmni has been set to 14494
[    0.611449] alg: No test for stdrng (krng)
[    0.611491] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.611494] io scheduler noop registered
[    0.611495] io scheduler deadline registered
[    0.611536] io scheduler cfq registered (default)
[    0.611650] pcieport 0000:00:04.0: setting latency timer to 64
[    0.611680] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.611770] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.611789] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.611790] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.612176] ERST: Table is not found!
[    0.612177] GHES: HEST is not enabled!
[    0.612257] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.632934] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.724717] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.821185] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.842063] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.842419] Linux agpgart interface v0.103
[    0.843538] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.844078] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.844085] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.844250] mousedev: PS/2 mouse device common for all mice
[    0.844320] rtc_cmos 00:05: RTC can wake from S4
[    0.844480] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.844540] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.844552] cpuidle: using governor ladder
[    0.844554] cpuidle: using governor menu
[    0.844736] TCP cubic registered
[    0.844860] NET: Registered protocol family 10
[    0.845291] Mobile IPv6
[    0.845293] NET: Registered protocol family 17
[    0.845296] Registering the dns_resolver key type
[    0.845478] PM: Hibernation image not present or could not be loaded.
[    0.845488] registered taskstats version 1
[    0.846307] rtc_cmos 00:05: setting system clock to 2014-07-14 22:50:34 UTC (1405378234)
[    0.846342] Initializing network drop monitor service
[    0.847438] Freeing unused kernel memory: 580k freed
[    0.847588] Write protecting the kernel read-only data: 6144k
[    0.849974] Freeing unused kernel memory: 648k freed
[    0.852666] Freeing unused kernel memory: 688k freed
[    0.863937] udevd[59]: starting version 175
[    0.897770] SCSI subsystem initialized
[    0.904371] libata version 3.00 loaded.
[    0.904837] sata_nv 0000:00:0e.0: version 3.5
[    0.905034] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
[    0.905060] sata_nv 0000:00:0e.0: Using SWNCQ mode
[    0.905121] sata_nv 0000:00:0e.0: setting latency timer to 64
[    0.908157] ACPI: Fan [FAN] (on)
[    0.908640] scsi0 : sata_nv
[    0.909711] ACPI Warning: For \_TZ_.THRM._PSL: Return Package has no elements (empty) (20110623/nspredef-463)
[    0.909718] ACPI: [Package] has zero elements (ffff8801f4cee880)
[    0.909763] ACPI: Invalid passive threshold
[    0.909892] scsi1 : sata_nv
[    0.909921] thermal LNXTHERM:00: registered as thermal_zone0
[    0.909923] ACPI: Thermal Zone [THRM] (40 C)
[    0.910032] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf800 irq 21
[    0.910036] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf808 irq 21
[    0.910289] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
[    0.910312] sata_nv 0000:00:0f.0: Using SWNCQ mode
[    0.910370] sata_nv 0000:00:0f.0: setting latency timer to 64
[    0.912344] scsi2 : sata_nv
[    0.912654] scsi3 : sata_nv
[    0.912759] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xf300 irq 20
[    0.912762] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xf308 irq 20
[    1.380537] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.380542] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.388741] ata1.00: FORCE: horkage modified (dump_id)
[    1.388746] ata3.00: FORCE: horkage modified (dump_id)
[    1.388975] ata3.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388978] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.388984] ata1.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388988] ata1.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.405387] ata1.00: dumping IDENTIFY data, class=1 may_fallback=1 tried_spinup=0
[    1.405393] 00000000: 045a 3fff c837 0010 0000 0000 003f 0000  Z..?7.......?...
[    1.405396] 00000010: 0000 0000 2020 2020 2020 2020 2020 2059  ....          Y 
[    1.405399] 00000020: 3336 5336 4d4e 5853 0003 b8c8 0038 4d53  636SNMSX....8.SM
[    1.405402] 00000030: 324f 4137 3530 544f 5348 4942 4120 4454  O27A05OTHSBI ATD
[    1.405405] 00000040: 3031 4143 4131 3030 2020 2020 2020 2020  10CA1A00        
[    1.405408] 00000050: 2020 2020 2020 2020 2020 2020 2020 8010                ..
[    1.405410] 00000060: 4000 2f00 4000 0200 0200 0007 3fff 0010  .@./.@.......?..
[    1.405413] 00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007  ?...............
[    1.405418] ata3.00: dumping IDENTIFY data, class=1 may_fallback=1 tried_spinup=0
[    1.405423] 00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
[    1.405426] 00000000: 045a 3fff c837 0010 0000 0000 003f 0000  Z..?7.......?...
[    1.405430] 00000010: 0000 0000 2020 2020 2020 2020 2020 205a  ....          Z 
[    1.405433] 00000090: 0000 0000 0000 001f 170e 0002 005e 0040  ............^.@.
[    1.405436] 000000a0: 01fc 0029 746b 7d69 4773 7469 bc41 4763  ..).kti}sGitA.cG
[    1.405439] 00000020: 3344 5539 3042 4b53 0003 b8c8 0038 4d53  D39UB0SK....8.SM
[    1.405443] 00000030: 324f 4137 3530 544f 5348 4942 4120 4454  O27A05OTHSBI ATD
[    1.405446] 000000b0: 407f 0058 0000 0000 fffe 0000 0000 0008  .@X.............
[    1.405449] 000000c0: 00ca 00f9 2710 0000 6db0 7470 0000 0000  .....'...mpt....
[    1.405452] 00000040: 3031 4143 4131 3030 2020 2020 2020 2020  10CA1A00        
[    1.405456] 00000050: 2020 2020 2020 2020 2020 2020 2020 8010                ..
[    1.405458] 000000d0: 00ca 0000 6003 5a87 5000 039f f7ca 8d70  .....`.Z.P....p.
[    1.405462] 000000e0: 0000 0000 0000 0000 0000 0000 0000 409c  ...............@
[    1.405465] 00000060: 4000 2f00 4000 0200 0200 0007 3fff 0010  .@./.@.......?..
[    1.405468] 00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007  ?...............
[    1.405471] 000000f0: 409c 0000 0000 0000 0000 0000 0000 0000  .@..............
[    1.405475] 00000100: 0001 000b 0000 0000 2180 0df1 fa20 0001  .........!.. ...
[    1.405477] 00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
[    1.405481] 00000090: 0000 0000 0000 001f 170e 0002 005e 0040  ............^.@.
[    1.405484] 00000110: 4000 0004 0121 0000 0000 0709 030b 0000  .@..!...........
[    1.405488] 00000120: 0000 0000 0000 0000 0000 0000 0000 0005  ................
[    1.405490] 000000a0: 01fc 0029 746b 7d69 4773 7469 bc41 4763  ..).kti}sGitA.cG
[    1.405494] 000000b0: 407f 0054 0000 0000 fffe 0000 0000 0008  .@T.............
[    1.405497] 00000130: 324e 4237 0000 6802 0000 5dbd 7bc8 8000  N27B...h...].{..
[    1.405500] 00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405503] 000000c0: 00ca 00f9 2710 0000 6db0 7470 0000 0000  .....'...mpt....
[    1.405507] 000000d0: 00ca 0000 6003 5a87 5000 039f f7cb 7f1b  .....`.Z.P......
[    1.405510] 00000150: 0002 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405513] 00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405516] 000000e0: 0000 0000 0000 0000 0000 0000 0000 409c  ...............@
[    1.405519] 000000f0: 409c 0000 0000 0000 0000 0000 0000 0000  .@..............
[    1.405522] 00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405526] 00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405529] 00000100: 0001 000b 0000 0000 2180 0df1 fa20 0001  .........!.. ...
[    1.405532] 00000110: 4000 0004 0121 0000 0000 0708 0609 0000  .@..!...........
[    1.405535] 00000190: 0000 0000 0000 0000 0000 0000 003d 0000  ............=...
[    1.405538] 000001a0: 0000 4000 0000 0000 0000 0000 0000 0000  ...@............
[    1.405541] 00000120: 0000 0000 0000 0000 0000 0000 0000 0005  ................
[    1.405545] 00000130: 324e 4237 0000 6802 0000 5dbd 7bc8 8000  N27B...h...].{..
[    1.405548] 000001b0: 0000 1c20 0000 0000 0000 0000 103f 0021  .. .........?.!.
[    1.405551] 000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405554] 00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405558] 00000150: 0002 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405561] 000001d0: 0000 0000 0001 03e0 0000 0000 0000 0000  ................
[    1.405564] 000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405567] 00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405571] 00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405573] 000001f0: 0000 0000 0000 0000 0000 0000 0000 80a5  ................
[    1.405577] 00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405580] 00000190: 0000 0000 0000 0000 0000 0000 003d 0000  ............=...
[    1.405583] 000001a0: 0000 4000 0000 0000 0000 0000 0000 0000  ...@............
[    1.405585] 000001b0: 0000 1c20 0000 0000 0000 0000 103f 0021  .. .........?.!.
[    1.405588] 000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405591] 000001d0: 0000 0000 0001 03e0 0000 0000 0000 0000  ................
[    1.405593] 000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.405596] 000001f0: 0000 0000 0000 0000 0000 0000 0000 08a5  ................
[    1.405775] ata1.00: configured for UDMA/133
[    1.405811] ata3.00: configured for UDMA/133
[    1.405949] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.592215] Refined TSC clocksource calibration: 2605.433 MHz.
[    1.592219] Switching to clocksource tsc
[    1.872361] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.880382] ata2.00: FORCE: horkage modified (dump_id)
[    1.880523] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    1.880526] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.888387] ata2.00: dumping IDENTIFY data, class=1 may_fallback=1 tried_spinup=0
[    1.888391] 00000000: 427a 3fff c837 0010 0000 0000 003f 0000  zB.?7.......?...
[    1.888394] 00000010: 0000 0000 2020 2020 2057 442d 5743 4334  ....    W -DCW4C
[    1.888396] 00000020: 4a32 3030 3136 3731 0000 0000 0000 3031  2J006117......10
[    1.888399] 00000030: 2e30 3141 3031 5744 4320 5744 3130 4546  0.A110DW CDW01FE
[    1.888402] 00000040: 5258 2d36 3850 4a43 4e30 2020 2020 2020  XR6-P8CJ0N      
[    1.888405] 00000050: 2020 2020 2020 2020 2020 2020 2020 8010                ..
[    1.888407] 00000060: 4000 2f00 4001 0000 0000 0007 3fff 0010  .@./.@.......?..
[    1.888410] 00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007  ?...............
[    1.888413] 00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
[    1.888416] 00000090: 0000 0000 0000 001f 9f0e 0004 004c 0040  ............L.@.
[    1.888418] 000000a0: 03fe 0000 746b 7d61 6733 7469 bc41 6723  ....kta}3gitA.#g
[    1.888421] 000000b0: 407f 0048 0048 0000 fffe 0000 0000 0008  .@H.H...........
[    1.888424] 000000c0: 0000 0000 86a0 0001 6db0 7470 0000 0000  .........mpt....
[    1.888427] 000000d0: 0000 0000 6003 0000 5001 4ee2 5f03 f57d  .....`...P.N._}.
[    1.888429] 000000e0: 0000 0000 0000 0000 0000 0000 0000 401c  ...............@
[    1.888432] 000000f0: 401c 0000 0000 0000 0000 0000 0000 0000  .@..............
[    1.888435] 00000100: 0021 0400 0001 0000 0000 0000 0000 0000  !...............
[    1.888437] 00000110: 0000 0000 0000 0000 0000 0000 0004 0000  ................
[    1.888440] 00000120: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888443] 00000130: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888445] 00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888448] 00000150: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888450] 00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888453] 00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888456] 00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888458] 00000190: 0000 0000 0000 0000 0000 0000 303d 0000  ............=0..
[    1.888461] 000001a0: 0000 4000 0000 0000 0000 0000 0000 0000  ...@............
[    1.888464] 000001b0: 0000 1518 0000 0000 0000 0000 103e 0000  ............>...
[    1.888467] 000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888469] 000001d0: 0000 0000 0001 1000 0000 0000 0000 0000  ................
[    1.888472] 000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    1.888475] 000001f0: 0000 0000 0000 0000 0000 0000 0000 7ea5  ...............~
[    1.888637] ata2.00: configured for UDMA/133
[    1.888756] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    1.888980] scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.890489] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.890492] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.890539] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.890544] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.890548] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    1.890552] sd 0:0:0:0: [sda] Write Protect is off
[    1.890555] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.890558] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[    1.890574] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.890594] sd 1:0:0:0: [sdb] Write Protect is off
[    1.890597] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.890603] sd 2:0:0:0: [sdc] Write Protect is off
[    1.890605] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    1.890635] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.890669] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.897361]  sda: sda1
[    1.897643] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.899132]  sdc: sdc1
[    1.899407] sd 2:0:0:0: [sdc] Attached SCSI disk
[    1.900693]  sdb:
[    1.900916] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.356179] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.364893] ata4.00: FORCE: horkage modified (dump_id)
[    2.365036] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    2.365038] ata4.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    2.372736] ata4.00: dumping IDENTIFY data, class=1 may_fallback=1 tried_spinup=0
[    2.372741] 00000000: 427a 3fff c837 0010 0000 0000 003f 0000  zB.?7.......?...
[    2.372744] 00000010: 0000 0000 2020 2020 2057 442d 5743 4334  ....    W -DCW4C
[    2.372746] 00000020: 4a34 3037 3239 3231 0000 0000 0000 3031  4J709212......10
[    2.372749] 00000030: 2e30 3141 3031 5744 4320 5744 3130 4546  0.A110DW CDW01FE
[    2.372752] 00000040: 5258 2d36 3850 4a43 4e30 2020 2020 2020  XR6-P8CJ0N      
[    2.372755] 00000050: 2020 2020 2020 2020 2020 2020 2020 8010                ..
[    2.372757] 00000060: 4000 2f00 4001 0000 0000 0007 3fff 0010  .@./.@.......?..
[    2.372760] 00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007  ?...............
[    2.372763] 00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
[    2.372766] 00000090: 0000 0000 0000 001f 9f0e 0004 004c 0040  ............L.@.
[    2.372768] 000000a0: 03fe 0000 746b 7d61 6733 7469 bc41 6723  ....kta}3gitA.#g
[    2.372771] 000000b0: 407f 0049 0049 0000 fffe 0000 0000 0008  .@I.I...........
[    2.372774] 000000c0: 0000 0000 86a0 0001 6db0 7470 0000 0000  .........mpt....
[    2.372777] 000000d0: 0000 0000 6003 0000 5001 4ee2 5f75 323f  .....`...P.Nu_?2
[    2.372779] 000000e0: 0000 0000 0000 0000 0000 0000 0000 401c  ...............@
[    2.372782] 000000f0: 401c 0000 0000 0000 0000 0000 0000 0000  .@..............
[    2.372785] 00000100: 0021 0400 0001 0000 0000 0000 0000 0000  !...............
[    2.372787] 00000110: 0000 0000 0000 0000 0000 0000 0004 0000  ................
[    2.372790] 00000120: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372793] 00000130: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372795] 00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372798] 00000150: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372801] 00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372803] 00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372806] 00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372809] 00000190: 0000 0000 0000 0000 0000 0000 303d 0000  ............=0..
[    2.372811] 000001a0: 0000 4000 0000 0000 0000 0000 0000 0000  ...@............
[    2.372814] 000001b0: 0000 1518 0000 0000 0000 0000 103e 0000  ............>...
[    2.372816] 000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372819] 000001d0: 0000 0000 0001 1000 0000 0000 0000 0000  ................
[    2.372822] 000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    2.372824] 000001f0: 0000 0000 0000 0000 0000 0000 0000 03a5  ................
[    2.372985] ata4.00: configured for UDMA/133
[    2.373095] scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    2.373229] sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.373232] sd 3:0:0:0: [sdd] 4096-byte physical blocks
[    2.373313] sd 3:0:0:0: [sdd] Write Protect is off
[    2.373316] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    2.373349] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.387902]  sdd:
[    2.388136] sd 3:0:0:0: [sdd] Attached SCSI disk
[    2.829897] md: md0 stopped.
[    2.830615] md: bind<sdc1>
[    2.830772] md: bind<sda1>
[    2.831890] md: raid1 personality registered for level 1
[    2.832085] bio: create slab <bio-1> at 1
[    2.832166] md/raid1:md0: active with 2 out of 2 mirrors
[    2.832186] md0: detected capacity change from 0 to 1000068677632
[    2.870734]  md0: unknown partition table
[    3.035549] device-mapper: uevent: version 1.0.3
[    3.035615] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    3.364154] PM: Starting manual resume from disk
[    3.364157] PM: Hibernation image partition 253:1 present
[    3.364159] PM: Looking for hibernation image.
[    3.364321] PM: Image not found (code -22)
[    3.364324] PM: Hibernation image not present or could not be loaded.
[    3.374005] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[    3.374284] SGI XFS Quota Management subsystem
[    3.375417] XFS (dm-0): Mounting Filesystem
[    3.526628] XFS (dm-0): Ending clean mount
[    4.784673] udevd[462]: starting version 175
[    4.876032] CE: hpet increased min_delta_ns to 11520 nsec
[    4.997077] ACPI: processor limited to max C-state 1
[    5.007888] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    5.007894] ACPI: Power Button [PWRB]
[    5.007964] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.007967] ACPI: Power Button [PWRF]
[    5.075905] asus_atk0110: Resources not safely usable due to acpi_enforce_resources kernel parameter
[    5.205252] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[    5.205428] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 23
[    5.205439] forcedeth 0000:00:14.0: setting latency timer to 64
[    5.230180] EDAC MC: Ver: 2.1.0
[    5.256880] MCE: In-kernel MCE decoding enabled.
[    5.261696] AMD64 EDAC driver v3.4.0
[    5.312875] usbcore: registered new interface driver usbfs
[    5.312896] usbcore: registered new interface driver hub
[    5.312941] usbcore: registered new device driver usb
[    5.413006] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    5.419257] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.460593] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.460770] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[    5.460821] r8169 0000:02:09.0: (unregistered net_device): not PCI Express
[    5.461212] r8169 0000:02:09.0: eth0: RTL8169sb/8110sb at 0xffffc9001179c000, 08:60:6e:cf:a2:0f, XID 10000000 IRQ 17
[    5.461215] r8169 0000:02:09.0: eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[    5.475589] powernow-k8: Found 1 AMD Phenom(tm) II X4 910e Processor (4 cpu cores) (version 2.20.00)
[    5.475624] powernow-k8:    0 : pstate 0 (2600 MHz)
[    5.475626] powernow-k8:    1 : pstate 1 (1900 MHz)
[    5.475628] powernow-k8:    2 : pstate 2 (1400 MHz)
[    5.475629] powernow-k8:    3 : pstate 3 (800 MHz)
[    5.625706] parport_pc 00:0a: reported by Plug and Play ACPI
[    5.625755] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[    5.682511] [drm] Initialized drm 1.1.0 20060810
[    5.729480] forcedeth 0000:00:14.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:18:f3:a8:01:be
[    5.729492] forcedeth 0000:00:14.0: highdma pwrctl gbit lnktim desc-v3
[    5.729611] EDAC amd64: DRAM ECC disabled.
[    5.729634] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[    5.729637]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[    5.729641]  (Note that use of the override may cause unknown side effects.)
[    5.730032] ehci_hcd 0000:00:0b.1: setting latency timer to 64
[    5.730041] ehci_hcd 0000:00:0b.1: EHCI Host Controller
[    5.730099] ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
[    5.730147] ehci_hcd 0000:00:0b.1: debug port 1
[    5.730166] ehci_hcd 0000:00:0b.1: cache line size of 32 is not supported
[    5.730214] ehci_hcd 0000:00:0b.1: irq 22, io mem 0xfe02e000
[    5.731381] [drm] radeon defaulting to kernel modesetting.
[    5.731388] [drm] radeon kernel modesetting enabled.
[    5.740056] ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00
[    5.740115] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    5.740123] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.740130] usb usb1: Product: EHCI Host Controller
[    5.740135] usb usb1: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd
[    5.740140] usb usb1: SerialNumber: 0000:00:0b.1
[    5.740454] hub 1-0:1.0: USB hub found
[    5.740470] hub 1-0:1.0: 8 ports detected
[    5.740799] ACPI: resource nForce2_smbus [io  0x4c00-0x4c3f] conflicts with ACPI region SM00 [io 0x4c00-0x4c05]
[    5.740812] ACPI: This conflict may cause random problems and system instability
[    5.740822] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.740931] i2c i2c-0: nForce2 SMBus adapter at 0x4c00
[    5.740998] i2c i2c-1: nForce2 SMBus adapter at 0x4c40
[    5.741793] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
[    5.741807] hda_intel: Disabling MSI
[    5.741867] snd_hda_intel 0000:00:10.1: setting latency timer to 64
[    5.746620] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.749138] ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
[    5.749578] radeon 0000:01:00.0: setting latency timer to 64
[    5.749596] [drm] initializing kernel modesetting (CEDAR 0x1002:0x68E1 0x1043:0x3000).
[    5.749677] [drm] register mmio base: 0xFDDC0000
[    5.749681] [drm] register mmio size: 131072
[    5.753472] ATOM BIOS: 68E1.12.20.0.62.AS04
[    5.753523] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    5.753531] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[    5.753546] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    5.753553] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    5.764148] [drm] Detected VRAM RAM=1024M, BAR=256M
[    5.764156] [drm] RAM width 64bits DDR
[    5.764496] [TTM] Zone  kernel: Available graphics memory: 3711540 kiB
[    5.764503] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    5.764508] [TTM] Initializing pool allocator
[    5.764521] [TTM] Initializing DMA pool allocator
[    5.764571] [drm] radeon: 1024M of VRAM memory ready
[    5.764577] [drm] radeon: 512M of GTT memory ready.
[    5.764620] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    5.766233] [drm] radeon: ib pool ready.
[    5.771315] NV_TCO: NV TCO WatchDog Timer Driver v0.01
[    5.771499] NV_TCO: Watchdog reboot not detected.
[    5.771656] NV_TCO: initialized (0x4440). heartbeat=30 sec (nowayout=0)
[    5.778852] [drm] Loading CEDAR Microcode
[    5.813008] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_pfp.bin into memory
[    5.825359] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_me.bin into memory
[    5.841417] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_rlc.bin into memory
[    5.843614] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[    5.843838] radeon 0000:01:00.0: WB enabled
[    5.843846] [drm] fence driver on ring 0 use gpu addr 0x40000c00 and cpu addr 0xffff8801f4eb2c00
[    5.843857] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    5.843862] [drm] Driver supports precise vblank timestamp query.
[    5.843923] radeon 0000:01:00.0: irq 41 for MSI/MSI-X
[    5.843944] radeon 0000:01:00.0: radeon: using MSI.
[    5.843993] [drm] radeon: irq initialized.
[    5.861010] [drm] ring test on 0 succeeded in 1 usecs
[    5.861810] [drm] ib test on ring 0 succeeded in 0 usecs
[    5.862577] [drm] Radeon Display Connectors
[    5.862582] [drm] Connector 0:
[    5.862586] [drm]   HDMI-A
[    5.862589] [drm]   HPD1
[    5.862595] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    5.862600] [drm]   Encoders:
[    5.862604] [drm]     DFP1: INTERNAL_UNIPHY1
[    5.862608] [drm] Connector 1:
[    5.862612] [drm]   DVI-I
[    5.862615] [drm]   HPD4
[    5.862621] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    5.862626] [drm]   Encoders:
[    5.862630] [drm]     DFP2: INTERNAL_UNIPHY
[    5.862635] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[    5.862639] [drm] Connector 2:
[    5.862642] [drm]   VGA
[    5.862648] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    5.862653] [drm]   Encoders:
[    5.862656] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    5.862725] [drm] Internal thermal controller without fan control
[    5.862820] [drm] radeon: power management initialized
[    5.919776] [drm] fb mappable at 0xD0142000
[    5.919782] [drm] vram apper at 0xD0000000
[    5.919787] [drm] size 7299072
[    5.919791] [drm] fb depth is 24
[    5.919795] [drm]    pitch is 6912
[    5.919979] fbcon: radeondrmfb (fb0) is primary device
[    6.374712] Console: switching to colour frame buffer device 210x65
[    6.395866] fb0: radeondrmfb frame buffer device
[    6.395871] drm: registered panic notifier
[    6.395893] [drm] Initialized radeon 2.16.0 20080528 for 0000:01:00.0 on minor 0
[    6.470965] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:10.1/input/input3
[    6.620670] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
[    6.620805] snd_hda_intel 0000:01:00.1: irq 42 for MSI/MSI-X
[    6.620855] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[    6.621045] pata_amd 0000:00:0d.0: version 0.4.1
[    6.621123] pata_amd 0000:00:0d.0: setting latency timer to 64
[    6.621956] scsi4 : pata_amd
[    6.622133] scsi5 : pata_amd
[    6.623251] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfd00 irq 14
[    6.623258] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfd08 irq 15
[    6.623432] ohci_hcd 0000:00:0b.0: setting latency timer to 64
[    6.623441] ohci_hcd 0000:00:0b.0: OHCI Host Controller
[    6.623474] ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
[    6.623534] ohci_hcd 0000:00:0b.0: irq 23, io mem 0xfe02f000
[    6.678188] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    6.678198] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.678205] usb usb2: Product: OHCI Host Controller
[    6.678211] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ohci_hcd
[    6.678216] usb usb2: SerialNumber: 0000:00:0b.0
[    6.678561] hub 2-0:1.0: USB hub found
[    6.678576] hub 2-0:1.0: 8 ports detected
[    6.784691] ata5.00: FORCE: horkage modified (dump_id)
[    6.784706] ata5.00: ATAPI: HL-DT-STDVD-RAM GSA-H22N, 1.00, max UDMA/66
[    6.784726] ata5: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13)
[    6.800620] ata5.00: dumping IDENTIFY data, class=3 may_fallback=1 tried_spinup=0
[    6.800634] 00000000: 85c0 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800645] 00000010: 0000 0000 2020 2020 2020 2020 2020 2020  ....            
[    6.800654] 00000020: 2020 2020 2020 2020 0000 0000 0000 312e          .......1
[    6.800663] 00000030: 3030 2020 2020 484c 2d44 542d 5354 4456  00    LHD--TTSVD
[    6.800672] 00000040: 442d 5241 4d20 4753 412d 4832 324e 2020  -DAR MSG-A2HN2  
[    6.800681] 00000050: 2020 2020 2020 2020 2020 2020 2020 0000                ..
[    6.800690] 00000060: 0000 0f00 0000 0200 0200 0006 0000 0000  ................
[    6.800699] 00000070: 0000 0000 0000 0000 0000 0000 0007 0007  ................
[    6.800708] 00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
[    6.800716] 00000090: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800725] 000000a0: 003c 0000 0000 0000 0000 0000 0000 0000  <...............
[    6.800734] 000000b0: 101f 0000 0000 0000 0000 614f 0000 0000  ..........Oa....
[    6.800742] 000000c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800751] 000000d0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800760] 000000e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800768] 000000f0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800777] 00000100: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800786] 00000110: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800795] 00000120: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800803] 00000130: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800812] 00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800820] 00000150: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800829] 00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800837] 00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800846] 00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800855] 00000190: 1018 0000 0000 0000 0000 0180 0180 0180  ................
[    6.800864] 000001a0: 0180 0180 0180 0000 0000 0000 0180 0180  ................
[    6.800873] 000001b0: 0000 0000 0000 0000 0000 0001 0000 0000  ................
[    6.800881] 000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800890] 000001d0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800898] 000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800907] 000001f0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
[    6.800930] ata5.00: configured for UDMA/66
[    6.804802] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GSA-H22N 1.00 PQ: 0 ANSI: 5
[    6.973094] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[    6.973418] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:04.0/0000:01:00.1/sound/card1/input4
[    7.010046] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    7.010056] cdrom: Uniform CD-ROM driver Revision: 3.20
[    7.010410] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    7.031239] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.031488] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    7.031600] sd 2:0:0:0: Attached scsi generic sg2 type 0
[    7.032563] sd 3:0:0:0: Attached scsi generic sg3 type 0
[    7.032707] sr 4:0:0:0: Attached scsi generic sg4 type 5
[    7.060366] usb 2-3: new low-speed USB device number 2 using ohci_hcd
[    7.279213] usb 2-3: New USB device found, idVendor=413c, idProduct=2005
[    7.279224] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.279232] usb 2-3: Product: DELL USB Keyboard
[    7.279238] usb 2-3: Manufacturer: DELL
[    7.339985] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:0b.0/usb2/2-3/2-3:1.0/input/input5
[    7.340286] generic-usb 0003:413C:2005.0001: input,hidraw0: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:0b.0-3/input0
[    7.340327] usbcore: registered new interface driver usbhid
[    7.340332] usbhid: USB HID core driver
[    8.322056] Adding 3903484k swap on /dev/mapper/lvm_lv_swap.  Priority:-1 extents:1 across:3903484k 
[    8.608533] loop: module loaded
[    8.643041] it87: Found IT8716F chip at 0x290, revision 1
[    8.643133] ACPI: resource it87 [io  0x0295-0x0296] conflicts with ACPI region HWRE [io 0x295-0x296]
[    8.643141] ACPI: This conflict may cause random problems and system instability
[    8.643147] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.642253] r8169 0000:02:09.0: eth0: link down
[   10.642266] r8169 0000:02:09.0: eth0: link down
[   10.645210] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   12.242071] r8169 0000:02:09.0: eth0: link up
[   12.244947] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   22.272717] eth0: no IPv6 routers present

[-- Attachment #5: dmesg4.nohrst --]
[-- Type: application/octet-stream, Size: 54738 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.60-1+deb7u1
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/lvm_lv_root ro iommu=noaperture acpi_enforce_resources=lax libata.force=nohrst quiet
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[    0.000000]  BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfef0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cfef3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfef3000 - 00000000cff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000200000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: System manufacturer System Product Name/M2NPV-VM, BIOS ASUS M2NPV-VM ACPI BIOS Revision 5005 06/02/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x200000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 base 000100000000 mask FFFF00000000 write-back
[    0.000000]   4 base 0000CFF00000 mask 00FFFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000200000000 aka 8192M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xcfef0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000f5aa0] f5aa0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfef0000
[    0.000000]  0000000000 - 00c0000000 page 1G
[    0.000000]  00c0000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfef0000 page 4k
[    0.000000] kernel direct mapping tables up to cfef0000 @ 1fffd000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-0000000200000000
[    0.000000]  0100000000 - 0200000000 page 1G
[    0.000000] kernel direct mapping tables up to 200000000 @ cfeef000-cfef0000
[    0.000000] RAMDISK: 378bc000 - 37c56000
[    0.000000] ACPI: RSDP 00000000000f7640 00024 (v02 Nvidia)
[    0.000000] ACPI: XSDT 00000000cfef3100 0004C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 00000000cfef9e00 000F4 (v03 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 00000000cfef3280 06B1B (v01 NVIDIA ASUSACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000cfef0000 00040
[    0.000000] ACPI: SSDT 00000000cfefa040 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 00000000cfefa940 00038 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000098)
[    0.000000] ACPI: MCFG 00000000cfefa9c0 0003C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 00000000cfef9f40 00098 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000200000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000200000000
[    0.000000]   NODE_DATA [00000001ffffb000 - 00000001ffffffff]
[    0.000000]  [ffffea0000000000-ffffea0006ffffff] PMD -> [ffff8801f8200000-ffff8801fe7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00200000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfef0
[    0.000000]     0: 0x00100000 -> 0x00200000
[    0.000000] On node 0 totalpages: 1900159
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3922 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833320 pages, LIFO batch:31
[    0.000000]   Normal zone: 14336 pages used for memmap
[    0.000000]   Normal zone: 1034240 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    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 17, 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] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    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] PM: Registered nosave memory: 00000000cfef0000 - 00000000cfef3000
[    0.000000] PM: Registered nosave memory: 00000000cfef3000 - 00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at cff00000 (gap: cff00000:10100000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff8801ffc00000 s82944 r8192 d23552 u524288
[    0.000000] pcpu-alloc: s82944 r8192 d23552 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1871482
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/lvm_lv_root ro iommu=noaperture acpi_enforce_resources=lax libata.force=nohrst quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 7417476k/8388608k available (3431k kernel code, 787972k absent, 183160k reserved, 3308k data, 580k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:33024 nr_irqs:712 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2605.468 MHz processor.
[    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5210.93 BogoMIPS (lpj=10421872)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004054] Security Framework initialized
[    0.004058] AppArmor: AppArmor disabled by boot time parameter
[    0.008042] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.010829] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.012052] Mount-cache hash table entries: 256
[    0.012161] Initializing cgroup subsys cpuacct
[    0.012166] Initializing cgroup subsys memory
[    0.012177] Initializing cgroup subsys devices
[    0.012181] Initializing cgroup subsys freezer
[    0.012183] Initializing cgroup subsys net_cls
[    0.012185] Initializing cgroup subsys blkio
[    0.012192] Initializing cgroup subsys perf_event
[    0.012219] tseg: 00cff00000
[    0.012221] CPU: Physical Processor ID: 0
[    0.012223] CPU: Processor Core ID: 0
[    0.012225] mce: CPU supports 6 MCE banks
[    0.012234] using AMD E400 aware idle routine
[    0.012537] ACPI: Core revision 20110623
[    0.017030] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.058648] CPU0: AMD Phenom(tm) II X4 910e Processor stepping 03
[    0.060003] Performance Events: AMD PMU driver.
[    0.060003] ... version:                0
[    0.060003] ... bit width:              48
[    0.060003] ... generic registers:      4
[    0.060003] ... value mask:             0000ffffffffffff
[    0.060003] ... max period:             00007fffffffffff
[    0.060003] ... fixed-purpose events:   0
[    0.060003] ... event mask:             000000000000000f
[    0.060003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.060003] Booting Node   0, Processors  #1
[    0.060003] smpboot cpu 1: start_ip = 9a000
[    0.148026] NMI watchdog enabled, takes one hw-pmu counter.
[    0.148045] System has AMD C1E enabled
[    0.148054] Switch to broadcast mode on CPU1
[    0.148119]  #2
[    0.148121] smpboot cpu 2: start_ip = 9a000
[    0.240035] NMI watchdog enabled, takes one hw-pmu counter.
[    0.240050] Switch to broadcast mode on CPU2
[    0.240123]  #3 Ok.
[    0.240125] smpboot cpu 3: start_ip = 9a000
[    0.332045] NMI watchdog enabled, takes one hw-pmu counter.
[    0.332064] Brought up 4 CPUs
[    0.332066] Total of 4 processors activated (20843.82 BogoMIPS).
[    0.332063] Switch to broadcast mode on CPU3
[    0.336150] Switch to broadcast mode on CPU0
[    0.336186] devtmpfs: initialized
[    0.340445] PM: Registering ACPI NVS region at cfef0000 (12288 bytes)
[    0.340445] print_constraints: dummy: 
[    0.340445] NET: Registered protocol family 16
[    0.340445] node 0 link 0: io port [d000, ffff]
[    0.340445] TOM: 00000000d0000000 aka 3328M
[    0.340445] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
[    0.340445] node 0 link 0: mmio [a0000, bffff]
[    0.340445] node 0 link 0: mmio [d0000000, dfffffff]
[    0.340445] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.340445] node 0 link 0: mmio [e0000000, e02fffff] ==> [e0100000, e02fffff]
[    0.340445] TOM2: 0000000200000000 aka 8192M
[    0.340445] bus: [00, 02] on node 0 link 0
[    0.340445] bus: 00 index 0 [io  0x0000-0xffff]
[    0.340445] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.340445] bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
[    0.340445] bus: 00 index 3 [mem 0xe0300000-0xffffffff]
[    0.340445] bus: 00 index 4 [mem 0xe0100000-0xe02fffff]
[    0.340445] bus: 00 index 5 [mem 0x200000000-0xfcffffffff]
[    0.340445] Extended Config Space enabled on 1 nodes
[    0.340445] ACPI: bus type pci registered
[    0.340445] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.340445] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.361447] PCI: Using configuration type 1 for base access
[    0.362154] bio: create slab <bio-0> at 0
[    0.362154] ACPI: Added _OSI(Module Device)
[    0.362154] ACPI: Added _OSI(Processor Device)
[    0.362154] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.362154] ACPI: Added _OSI(Processor Aggregator Device)
[    0.362154] ACPI: EC: Look up EC in DSDT
[    0.368411] ACPI: Interpreter enabled
[    0.368417] ACPI: (supports S0 S1 S3 S4 S5)
[    0.368437] ACPI: Using IOAPIC for interrupt routing
[    0.374248] ACPI: No dock devices found.
[    0.374250] HEST: Table not found.
[    0.374254] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.374300] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.374394] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.374396] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.374398] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.374401] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.374403] pci_root PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff]
[    0.374416] pci 0000:00:00.0: [10de:02f0] type 0 class 0x000500
[    0.374475] pci 0000:00:00.2: [10de:02fe] type 0 class 0x000500
[    0.374518] pci 0000:00:00.3: [10de:02f8] type 0 class 0x000500
[    0.374561] pci 0000:00:00.4: [10de:02f9] type 0 class 0x000500
[    0.374605] pci 0000:00:00.5: [10de:02ff] type 0 class 0x000500
[    0.374654] pci 0000:00:00.6: [10de:027f] type 0 class 0x000500
[    0.374690] pci 0000:00:00.7: [10de:027e] type 0 class 0x000500
[    0.374741] pci 0000:00:04.0: [10de:02fb] type 1 class 0x000604
[    0.374774] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.374818] pci 0000:00:09.0: [10de:0270] type 0 class 0x000500
[    0.375097] pci 0000:00:0a.0: [10de:0260] type 0 class 0x000601
[    0.375196] pci 0000:00:0a.1: [10de:0264] type 0 class 0x000c05
[    0.375262] pci 0000:00:0a.1: reg 20: [io  0x4c00-0x4c3f]
[    0.375274] pci 0000:00:0a.1: reg 24: [io  0x4c40-0x4c7f]
[    0.375331] pci 0000:00:0a.1: PME# supported from D3hot D3cold
[    0.375355] pci 0000:00:0a.2: [10de:0272] type 0 class 0x000500
[    0.375467] pci 0000:00:0b.0: [10de:026d] type 0 class 0x000c03
[    0.375487] pci 0000:00:0b.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
[    0.375578] pci 0000:00:0b.0: supports D1 D2
[    0.375580] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.375607] pci 0000:00:0b.1: [10de:026e] type 0 class 0x000c03
[    0.375629] pci 0000:00:0b.1: reg 10: [mem 0xfe02e000-0xfe02e0ff]
[    0.375729] pci 0000:00:0b.1: supports D1 D2
[    0.375731] pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.375768] pci 0000:00:0d.0: [10de:0265] type 0 class 0x000101
[    0.375822] pci 0000:00:0d.0: reg 20: [io  0xfd00-0xfd0f]
[    0.375895] pci 0000:00:0e.0: [10de:0266] type 0 class 0x000101
[    0.375920] pci 0000:00:0e.0: reg 10: [io  0x09f0-0x09f7]
[    0.375931] pci 0000:00:0e.0: reg 14: [io  0x0bf0-0x0bf3]
[    0.375942] pci 0000:00:0e.0: reg 18: [io  0x0970-0x0977]
[    0.375953] pci 0000:00:0e.0: reg 1c: [io  0x0b70-0x0b73]
[    0.375964] pci 0000:00:0e.0: reg 20: [io  0xf800-0xf80f]
[    0.375975] pci 0000:00:0e.0: reg 24: [mem 0xfe02d000-0xfe02dfff]
[    0.376081] pci 0000:00:0f.0: [10de:0267] type 0 class 0x000101
[    0.376106] pci 0000:00:0f.0: reg 10: [io  0x09e0-0x09e7]
[    0.376117] pci 0000:00:0f.0: reg 14: [io  0x0be0-0x0be3]
[    0.376127] pci 0000:00:0f.0: reg 18: [io  0x0960-0x0967]
[    0.376138] pci 0000:00:0f.0: reg 1c: [io  0x0b60-0x0b63]
[    0.376149] pci 0000:00:0f.0: reg 20: [io  0xf300-0xf30f]
[    0.376160] pci 0000:00:0f.0: reg 24: [mem 0xfe02c000-0xfe02cfff]
[    0.376246] pci 0000:00:10.0: [10de:026f] type 1 class 0x000604
[    0.376352] pci 0000:00:10.1: [10de:026c] type 0 class 0x000403
[    0.376377] pci 0000:00:10.1: reg 10: [mem 0xfe024000-0xfe027fff]
[    0.376489] pci 0000:00:10.1: PME# supported from D3hot D3cold
[    0.376532] pci 0000:00:14.0: [10de:0269] type 0 class 0x000680
[    0.376552] pci 0000:00:14.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.376563] pci 0000:00:14.0: reg 14: [io  0xf200-0xf207]
[    0.376640] pci 0000:00:14.0: supports D1 D2
[    0.376642] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.376661] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
[    0.376678] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
[    0.376691] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
[    0.376704] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
[    0.376720] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
[    0.376774] pci 0000:01:00.0: [1002:68e1] type 0 class 0x000300
[    0.376786] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.376795] pci 0000:01:00.0: reg 18: [mem 0xfddc0000-0xfdddffff 64bit]
[    0.376802] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.376813] pci 0000:01:00.0: reg 30: [mem 0xfdda0000-0xfddbffff pref]
[    0.376840] pci 0000:01:00.0: supports D1 D2
[    0.376858] pci 0000:01:00.1: [1002:aa68] type 0 class 0x000403
[    0.376870] pci 0000:01:00.1: reg 10: [mem 0xfddfc000-0xfddfffff 64bit]
[    0.376920] pci 0000:01:00.1: supports D1 D2
[    0.384042] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.384047] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.384050] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.384054] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.384127] pci 0000:02:09.0: [10ec:8169] type 0 class 0x000200
[    0.384151] pci 0000:02:09.0: reg 10: [io  0xec00-0xecff]
[    0.384164] pci 0000:02:09.0: reg 14: [mem 0xfdcff000-0xfdcff0ff]
[    0.384223] pci 0000:02:09.0: reg 30: [mem 0xfdce0000-0xfdceffff pref]
[    0.384263] pci 0000:02:09.0: supports D1 D2
[    0.384265] pci 0000:02:09.0: PME# supported from D1 D2 D3hot D3cold
[    0.384316] pci 0000:00:10.0: PCI bridge to [bus 02-02] (subtractive decode)
[    0.384320] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.384324] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.384329] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.384331] pci 0000:00:10.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.384333] pci 0000:00:10.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.384336] pci 0000:00:10.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.384338] pci 0000:00:10.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.384340] pci 0000:00:10.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
[    0.384354] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.384507] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.384612]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.384615]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.384616] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.409660] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409705] ACPI: PCI Interrupt Link [LNK2] (IRQs *5 7 9 10 11 14 15)
[    0.409745] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409785] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409825] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 *11 14 15)
[    0.409865] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 *10 11 14 15)
[    0.409908] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409948] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.409987] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410026] ACPI: PCI Interrupt Link [LUBB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410067] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 10 *11 14 15)
[    0.410105] ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410145] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[    0.410184] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410223] ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410263] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410302] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410341] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.410381] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[    0.410421] ACPI: PCI Interrupt Link [LFID] (IRQs *5 7 9 10 11 14 15)
[    0.410493] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[    0.410567] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
[    0.410634] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
[    0.410700] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[    0.410768] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0
[    0.410833] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
[    0.410899] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
[    0.410965] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[    0.411031] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
[    0.411097] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
[    0.411164] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[    0.411231] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
[    0.411298] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[    0.411365] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[    0.411432] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
[    0.411499] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
[    0.411566] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
[    0.411633] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[    0.411699] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[    0.411766] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[    0.411833] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[    0.411920] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.411920] vgaarb: loaded
[    0.411920] vgaarb: bridge control possible 0000:01:00.0
[    0.411920] PCI: Using ACPI for IRQ routing
[    0.424988] PCI: pci_cache_line_size set to 64 bytes
[    0.425074] reserve RAM buffer: 000000000009f000 - 000000000009ffff 
[    0.425076] reserve RAM buffer: 00000000cfef0000 - 00000000cfffffff 
[    0.425178] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.425187] hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
[    0.425190] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
[    0.440064] Switching to clocksource hpet
[    0.441628] pnp: PnP ACPI init
[    0.441642] ACPI: bus type pnp registered
[    0.441721] pnp 00:00: [bus 00-ff]
[    0.441723] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.441725] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.441727] pnp 00:00: [io  0x0d00-0xffff window]
[    0.441729] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.441731] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.441733] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
[    0.441781] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.441829] pnp 00:01: [io  0x4000-0x407f]
[    0.441831] pnp 00:01: [io  0x4080-0x40ff]
[    0.441832] pnp 00:01: [io  0x4400-0x447f]
[    0.441834] pnp 00:01: [io  0x4480-0x44ff]
[    0.441836] pnp 00:01: [io  0x4800-0x487f]
[    0.441838] pnp 00:01: [io  0x4880-0x48ff]
[    0.441840] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.441842] pnp 00:01: [io  0x2000-0x207f]
[    0.441844] pnp 00:01: [io  0x2080-0x20ff]
[    0.441892] system 00:01: [io  0x4000-0x407f] has been reserved
[    0.441895] system 00:01: [io  0x4080-0x40ff] has been reserved
[    0.441897] system 00:01: [io  0x4400-0x447f] has been reserved
[    0.441900] system 00:01: [io  0x4480-0x44ff] has been reserved
[    0.441902] system 00:01: [io  0x4800-0x487f] has been reserved
[    0.441904] system 00:01: [io  0x4880-0x48ff] has been reserved
[    0.441907] system 00:01: [io  0x2000-0x207f] has been reserved
[    0.441909] system 00:01: [io  0x2080-0x20ff] has been reserved
[    0.441912] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.441953] pnp 00:02: [io  0x0010-0x001f]
[    0.441954] pnp 00:02: [io  0x0022-0x003f]
[    0.441956] pnp 00:02: [io  0x0044-0x005f]
[    0.441958] pnp 00:02: [io  0x0062-0x0063]
[    0.441959] pnp 00:02: [io  0x0065-0x006f]
[    0.441961] pnp 00:02: [io  0x0074-0x007f]
[    0.441963] pnp 00:02: [io  0x0091-0x0093]
[    0.441965] pnp 00:02: [io  0x00a2-0x00bf]
[    0.441966] pnp 00:02: [io  0x00e0-0x00ef]
[    0.441968] pnp 00:02: [io  0x04d0-0x04d1]
[    0.441970] pnp 00:02: [io  0x0800-0x087f]
[    0.441972] pnp 00:02: [io  0x0290-0x0297]
[    0.442023] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.442025] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.442028] system 00:02: [io  0x0290-0x0297] has been reserved
[    0.442030] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.442040] pnp 00:03: [dma 4]
[    0.442043] pnp 00:03: [io  0x0000-0x000f]
[    0.442045] pnp 00:03: [io  0x0080-0x0090]
[    0.442047] pnp 00:03: [io  0x0094-0x009f]
[    0.442049] pnp 00:03: [io  0x00c0-0x00df]
[    0.442076] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.442117] pnp 00:04: [irq 0 disabled]
[    0.442133] pnp 00:04: [irq 8]
[    0.442134] pnp 00:04: [mem 0xfefff000-0xfefff3ff]
[    0.442161] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.442185] pnp 00:05: [io  0x0070-0x0073]
[    0.442211] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.442218] pnp 00:06: [io  0x0061]
[    0.442244] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.442252] pnp 00:07: [io  0x00f0-0x00ff]
[    0.442264] pnp 00:07: [irq 13]
[    0.442290] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.442586] pnp 00:08: [io  0x03f8-0x03ff]
[    0.442598] pnp 00:08: [irq 4]
[    0.442654] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.442874] pnp 00:09: [io  0x02f8-0x02ff]
[    0.442886] pnp 00:09: [irq 3]
[    0.442938] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.443158] pnp 00:0a: [io  0x0378-0x037f]
[    0.443170] pnp 00:0a: [irq 7]
[    0.443213] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.444117] pnp 00:0b: [mem 0xe0000000-0xefffffff]
[    0.444173] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
[    0.444176] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.444272] pnp 00:0c: [mem 0x000f0000-0x000f3fff]
[    0.444275] pnp 00:0c: [mem 0x000f4000-0x000f7fff]
[    0.444276] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
[    0.444278] pnp 00:0c: [mem 0x000fc000-0x000fffff]
[    0.444280] pnp 00:0c: [mem 0xfefff000-0xfefff0ff]
[    0.444282] pnp 00:0c: [mem 0xcfef0000-0xcfefffff]
[    0.444284] pnp 00:0c: [mem 0xffff0000-0xffffffff]
[    0.444286] pnp 00:0c: [mem 0x00000000-0x0009ffff]
[    0.444288] pnp 00:0c: [mem 0x00100000-0xcfeeffff]
[    0.444290] pnp 00:0c: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.444292] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
[    0.444294] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
[    0.444296] pnp 00:0c: [mem 0xfefff000-0xfeffffff]
[    0.444298] pnp 00:0c: [mem 0xfff80000-0xfff80fff]
[    0.444300] pnp 00:0c: [mem 0xfff90000-0xfffbffff]
[    0.444302] pnp 00:0c: [mem 0xfffed000-0xfffeffff]
[    0.444329] pnp 00:0c: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xe0000000-0xe00fffff]; adding more reservations
[    0.444370] system 00:0c: [mem 0x000f0000-0x000f3fff] could not be reserved
[    0.444373] system 00:0c: [mem 0x000f4000-0x000f7fff] could not be reserved
[    0.444375] system 00:0c: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.444378] system 00:0c: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.444381] system 00:0c: [mem 0xfefff000-0xfefff0ff] has been reserved
[    0.444383] system 00:0c: [mem 0xcfef0000-0xcfefffff] could not be reserved
[    0.444386] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
[    0.444389] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.444391] system 00:0c: [mem 0x00100000-0xcfeeffff] could not be reserved
[    0.444394] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.444397] system 00:0c: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.444399] system 00:0c: [mem 0xfefff000-0xfeffffff] could not be reserved
[    0.444402] system 00:0c: [mem 0xfff80000-0xfff80fff] has been reserved
[    0.444404] system 00:0c: [mem 0xfff90000-0xfffbffff] has been reserved
[    0.444407] system 00:0c: [mem 0xfffed000-0xfffeffff] has been reserved
[    0.444410] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.444418] pnp: PnP ACPI: found 13 devices
[    0.444419] ACPI: ACPI bus type pnp unregistered
[    0.452511] PCI: max bus depth: 1 pci_try_num: 2
[    0.452525] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.452528] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.452531] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.452533] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452537] pci 0000:00:10.0: PCI bridge to [bus 02-02]
[    0.452540] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.452546] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.452551] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.452562] pci 0000:00:04.0: setting latency timer to 64
[    0.452570] pci 0000:00:10.0: setting latency timer to 64
[    0.452574] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.452576] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.452578] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452580] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452582] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452584] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.452586] pci_bus 0000:01: resource 1 [mem 0xfdd00000-0xfddfffff]
[    0.452588] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452590] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.452592] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    0.452594] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
[    0.452596] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    0.452598] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    0.452600] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452602] pci_bus 0000:02: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452604] pci_bus 0000:02: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452747] NET: Registered protocol family 2
[    0.452940] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.454096] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.456764] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.457084] TCP: Hash tables configured (established 524288 bind 65536)
[    0.457086] TCP reno registered
[    0.457098] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.457157] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.457344] NET: Registered protocol family 1
[    0.457402] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.457723] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[    0.528322] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
[    0.528471] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528485] pci 0000:00:0e.0: Enabling HT MSI Mapping
[    0.528579] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528593] pci 0000:00:0f.0: Enabling HT MSI Mapping
[    0.528692] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528702] pci 0000:00:10.0: Enabling HT MSI Mapping
[    0.528805] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528819] pci 0000:00:10.1: Enabling HT MSI Mapping
[    0.528844] pci 0000:01:00.0: Boot video device
[    0.528852] PCI: CLS 32 bytes, default 64
[    0.528904] Unpacking initramfs...
[    0.594315] Freeing initrd memory: 3688k freed
[    0.595299] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.595303] Placing 64MB software IO TLB between ffff8800cbef0000 - ffff8800cfef0000
[    0.595305] software IO TLB at phys 0xcbef0000 - 0xcfef0000
[    0.595842] IBS: LVT offset 1 assigned
[    0.595869] perf: AMD IBS detected (0x0000001f)
[    0.596161] audit: initializing netlink socket (disabled)
[    0.596177] type=2000 audit(1405378376.592:1): initialized
[    0.609630] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.611132] VFS: Disk quotas dquot_6.5.2
[    0.611170] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.611240] msgmni has been set to 14494
[    0.611511] alg: No test for stdrng (krng)
[    0.611553] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.611556] io scheduler noop registered
[    0.611557] io scheduler deadline registered
[    0.611598] io scheduler cfq registered (default)
[    0.611712] pcieport 0000:00:04.0: setting latency timer to 64
[    0.611742] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.611832] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.611850] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.611852] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.612240] ERST: Table is not found!
[    0.612242] GHES: HEST is not enabled!
[    0.612320] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.632997] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.724724] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.821186] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.842065] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.842420] Linux agpgart interface v0.103
[    0.843538] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.844078] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.844085] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.844248] mousedev: PS/2 mouse device common for all mice
[    0.844317] rtc_cmos 00:05: RTC can wake from S4
[    0.844480] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.844539] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.844551] cpuidle: using governor ladder
[    0.844552] cpuidle: using governor menu
[    0.844734] TCP cubic registered
[    0.844859] NET: Registered protocol family 10
[    0.845299] Mobile IPv6
[    0.845301] NET: Registered protocol family 17
[    0.845305] Registering the dns_resolver key type
[    0.845485] PM: Hibernation image not present or could not be loaded.
[    0.845494] registered taskstats version 1
[    0.846324] rtc_cmos 00:05: setting system clock to 2014-07-14 22:52:57 UTC (1405378377)
[    0.846358] Initializing network drop monitor service
[    0.847454] Freeing unused kernel memory: 580k freed
[    0.847605] Write protecting the kernel read-only data: 6144k
[    0.849991] Freeing unused kernel memory: 648k freed
[    0.852684] Freeing unused kernel memory: 688k freed
[    0.863921] udevd[59]: starting version 175
[    0.897942] SCSI subsystem initialized
[    0.903411] libata version 3.00 loaded.
[    0.905449] sata_nv 0000:00:0e.0: version 3.5
[    0.905636] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
[    0.905664] sata_nv 0000:00:0e.0: Using SWNCQ mode
[    0.905731] sata_nv 0000:00:0e.0: setting latency timer to 64
[    0.906308] scsi0 : sata_nv
[    0.906969] scsi1 : sata_nv
[    0.907087] ata1: FORCE: link flag 0x2 forced -> 0x2
[    0.907090] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf800 irq 21
[    0.907094] ata2: FORCE: link flag 0x2 forced -> 0x2
[    0.907095] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf808 irq 21
[    0.907298] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
[    0.907321] sata_nv 0000:00:0f.0: Using SWNCQ mode
[    0.907369] sata_nv 0000:00:0f.0: setting latency timer to 64
[    0.908149] scsi2 : sata_nv
[    0.909475] scsi3 : sata_nv
[    0.909595] ata3: FORCE: link flag 0x2 forced -> 0x2
[    0.909597] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xf300 irq 20
[    0.909601] ata4: FORCE: link flag 0x2 forced -> 0x2
[    0.909603] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xf308 irq 20
[    0.913518] ACPI: Fan [FAN] (on)
[    1.120055] CE: hpet increased min_delta_ns to 11520 nsec
[    1.372640] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.380438] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.380648] ata1.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.380652] ata1.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.388688] ata3.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388691] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.396703] ata1.00: configured for UDMA/133
[    1.396886] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.404632] ata3.00: configured for UDMA/133
[    1.592416] Refined TSC clocksource calibration: 2605.433 MHz.
[    1.592421] Switching to clocksource tsc
[    1.864102] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.872974] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    1.872977] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.880942] ata2.00: configured for UDMA/133
[    1.881065] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    1.881276] scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.882776] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.882781] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.882849] sd 0:0:0:0: [sda] Write Protect is off
[    1.882854] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.882860] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.882865] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    1.882869] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[    1.882874] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.882902] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.882914] sd 2:0:0:0: [sdc] Write Protect is off
[    1.882917] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    1.882921] sd 1:0:0:0: [sdb] Write Protect is off
[    1.882924] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.882936] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.882949] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.884624]  sdc: sdc1
[    1.884905] sd 2:0:0:0: [sdc] Attached SCSI disk
[    1.889691]  sda: sda1
[    1.889970] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.894770]  sdb:
[    1.894998] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.348133] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.357023] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    2.357026] ata4.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    2.364862] ata4.00: configured for UDMA/133
[    2.364973] scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    2.365108] sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.365111] sd 3:0:0:0: [sdd] 4096-byte physical blocks
[    2.365179] sd 3:0:0:0: [sdd] Write Protect is off
[    2.365181] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    2.365212] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.381358]  sdd:
[    2.381589] sd 3:0:0:0: [sdd] Attached SCSI disk
[    2.382007] ACPI Warning: For \_TZ_.THRM._PSL: Return Package has no elements (empty) (20110623/nspredef-463)
[    2.382013] ACPI: [Package] has zero elements (ffff8801f61dea40)
[    2.382058] ACPI: Invalid passive threshold
[    2.382226] thermal LNXTHERM:00: registered as thermal_zone0
[    2.382228] ACPI: Thermal Zone [THRM] (40 C)
[    2.789624] md: md0 stopped.
[    2.790392] md: bind<sdc1>
[    2.790558] md: bind<sda1>
[    2.791603] md: raid1 personality registered for level 1
[    2.791784] bio: create slab <bio-1> at 1
[    2.791869] md/raid1:md0: active with 2 out of 2 mirrors
[    2.791889] md0: detected capacity change from 0 to 1000068677632
[    2.837761]  md0: unknown partition table
[    2.995631] device-mapper: uevent: version 1.0.3
[    2.995691] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    3.263405] PM: Starting manual resume from disk
[    3.263408] PM: Hibernation image partition 253:1 present
[    3.263410] PM: Looking for hibernation image.
[    3.263576] PM: Image not found (code -22)
[    3.263579] PM: Hibernation image not present or could not be loaded.
[    3.274280] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[    3.274560] SGI XFS Quota Management subsystem
[    3.275690] XFS (dm-0): Mounting Filesystem
[    3.426613] XFS (dm-0): Ending clean mount
[    4.593691] udevd[463]: starting version 175
[    4.832109] ACPI: processor limited to max C-state 1
[    4.867845] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    4.867851] ACPI: Power Button [PWRB]
[    4.867926] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    4.867928] ACPI: Power Button [PWRF]
[    4.915801] asus_atk0110: Resources not safely usable due to acpi_enforce_resources kernel parameter
[    5.032582] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[    5.032760] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 23
[    5.032772] forcedeth 0000:00:14.0: setting latency timer to 64
[    5.058899] EDAC MC: Ver: 2.1.0
[    5.075264] usbcore: registered new interface driver usbfs
[    5.075287] usbcore: registered new interface driver hub
[    5.075328] usbcore: registered new device driver usb
[    5.079643] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.089860] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    5.094825] powernow-k8: Found 1 AMD Phenom(tm) II X4 910e Processor (4 cpu cores) (version 2.20.00)
[    5.094863] powernow-k8:    0 : pstate 0 (2600 MHz)
[    5.094865] powernow-k8:    1 : pstate 1 (1900 MHz)
[    5.094867] powernow-k8:    2 : pstate 2 (1400 MHz)
[    5.094868] powernow-k8:    3 : pstate 3 (800 MHz)
[    5.110333] MCE: In-kernel MCE decoding enabled.
[    5.115636] AMD64 EDAC driver v3.4.0
[    5.133156] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.133612] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[    5.133717] r8169 0000:02:09.0: (unregistered net_device): not PCI Express
[    5.134806] r8169 0000:02:09.0: eth0: RTL8169sb/8110sb at 0xffffc90000c6c000, 08:60:6e:cf:a2:0f, XID 10000000 IRQ 17
[    5.134816] r8169 0000:02:09.0: eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[    5.148366] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.161433] parport_pc 00:0a: reported by Plug and Play ACPI
[    5.161482] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[    5.230992] [drm] Initialized drm 1.1.0 20060810
[    5.279687] [drm] radeon defaulting to kernel modesetting.
[    5.279694] [drm] radeon kernel modesetting enabled.
[    5.405372] ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
[    5.405823] radeon 0000:01:00.0: setting latency timer to 64
[    5.405842] [drm] initializing kernel modesetting (CEDAR 0x1002:0x68E1 0x1043:0x3000).
[    5.405936] [drm] register mmio base: 0xFDDC0000
[    5.405941] [drm] register mmio size: 131072
[    5.409696] ATOM BIOS: 68E1.12.20.0.62.AS04
[    5.409742] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    5.409750] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[    5.409765] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    5.409772] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    5.420317] [drm] Detected VRAM RAM=1024M, BAR=256M
[    5.420325] [drm] RAM width 64bits DDR
[    5.420478] [TTM] Zone  kernel: Available graphics memory: 3711540 kiB
[    5.420484] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    5.420489] [TTM] Initializing pool allocator
[    5.420503] [TTM] Initializing DMA pool allocator
[    5.420566] [drm] radeon: 1024M of VRAM memory ready
[    5.420572] [drm] radeon: 512M of GTT memory ready.
[    5.420621] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    5.422332] [drm] radeon: ib pool ready.
[    5.432405] [drm] Loading CEDAR Microcode
[    5.464990] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_pfp.bin into memory
[    5.497962] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_me.bin into memory
[    5.509919] platform radeon_cp.0: firmware: agent loaded radeon/CEDAR_rlc.bin into memory
[    5.512176] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[    5.512378] radeon 0000:01:00.0: WB enabled
[    5.512387] [drm] fence driver on ring 0 use gpu addr 0x40000c00 and cpu addr 0xffff8801f65f2c00
[    5.512397] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    5.512403] [drm] Driver supports precise vblank timestamp query.
[    5.512464] radeon 0000:01:00.0: irq 41 for MSI/MSI-X
[    5.512485] radeon 0000:01:00.0: radeon: using MSI.
[    5.512537] [drm] radeon: irq initialized.
[    5.529543] [drm] ring test on 0 succeeded in 1 usecs
[    5.530376] [drm] ib test on ring 0 succeeded in 0 usecs
[    5.531174] [drm] Radeon Display Connectors
[    5.531179] [drm] Connector 0:
[    5.531184] [drm]   HDMI-A
[    5.531187] [drm]   HPD1
[    5.531193] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    5.531198] [drm]   Encoders:
[    5.531202] [drm]     DFP1: INTERNAL_UNIPHY1
[    5.531206] [drm] Connector 1:
[    5.531210] [drm]   DVI-I
[    5.531213] [drm]   HPD4
[    5.531219] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    5.531223] [drm]   Encoders:
[    5.531227] [drm]     DFP2: INTERNAL_UNIPHY
[    5.531232] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[    5.531236] [drm] Connector 2:
[    5.531240] [drm]   VGA
[    5.531245] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    5.531250] [drm]   Encoders:
[    5.531253] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    5.531324] [drm] Internal thermal controller without fan control
[    5.531414] [drm] radeon: power management initialized
[    5.561432] forcedeth 0000:00:14.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:18:f3:a8:01:be
[    5.561442] forcedeth 0000:00:14.0: highdma pwrctl gbit lnktim desc-v3
[    5.567552] ehci_hcd 0000:00:0b.1: setting latency timer to 64
[    5.567561] ehci_hcd 0000:00:0b.1: EHCI Host Controller
[    5.567615] ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
[    5.567664] ehci_hcd 0000:00:0b.1: debug port 1
[    5.567682] ehci_hcd 0000:00:0b.1: cache line size of 32 is not supported
[    5.567728] ehci_hcd 0000:00:0b.1: irq 22, io mem 0xfe02e000
[    5.587803] [drm] fb mappable at 0xD0142000
[    5.587810] [drm] vram apper at 0xD0000000
[    5.587815] [drm] size 7299072
[    5.587819] [drm] fb depth is 24
[    5.587823] [drm]    pitch is 6912
[    5.587883] ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00
[    5.587948] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    5.587956] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.587962] usb usb1: Product: EHCI Host Controller
[    5.587967] usb usb1: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd
[    5.587972] usb usb1: SerialNumber: 0000:00:0b.1
[    5.588287] hub 1-0:1.0: USB hub found
[    5.588299] hub 1-0:1.0: 8 ports detected
[    5.588558] fbcon: radeondrmfb (fb0) is primary device
[    5.591927] EDAC amd64: DRAM ECC disabled.
[    5.591943] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[    5.591948]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[    5.591952]  (Note that use of the override may cause unknown side effects.)
[    5.592198] ohci_hcd 0000:00:0b.0: setting latency timer to 64
[    5.592206] ohci_hcd 0000:00:0b.0: OHCI Host Controller
[    5.592231] ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
[    5.592299] ohci_hcd 0000:00:0b.0: irq 23, io mem 0xfe02f000
[    5.650102] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    5.650110] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.650117] usb usb2: Product: OHCI Host Controller
[    5.650121] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ohci_hcd
[    5.650125] usb usb2: SerialNumber: 0000:00:0b.0
[    5.650454] hub 2-0:1.0: USB hub found
[    5.650467] hub 2-0:1.0: 8 ports detected
[    5.650724] pata_amd 0000:00:0d.0: version 0.4.1
[    5.650810] pata_amd 0000:00:0d.0: setting latency timer to 64
[    5.651686] scsi4 : pata_amd
[    5.651860] scsi5 : pata_amd
[    5.653037] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfd00 irq 14
[    5.653043] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfd08 irq 15
[    5.653252] ACPI: resource nForce2_smbus [io  0x4c00-0x4c3f] conflicts with ACPI region SM00 [io 0x4c00-0x4c05]
[    5.653259] ACPI: This conflict may cause random problems and system instability
[    5.653264] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.653346] i2c i2c-8: nForce2 SMBus adapter at 0x4c00
[    5.653416] i2c i2c-9: nForce2 SMBus adapter at 0x4c40
[    5.653858] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
[    5.653869] hda_intel: Disabling MSI
[    5.653939] snd_hda_intel 0000:00:10.1: setting latency timer to 64
[    5.816797] ata5.00: ATAPI: HL-DT-STDVD-RAM GSA-H22N, 1.00, max UDMA/66
[    5.816818] ata5: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13)
[    5.832739] ata5.00: configured for UDMA/66
[    5.836568] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GSA-H22N 1.00 PQ: 0 ANSI: 5
[    6.014720] NV_TCO: NV TCO WatchDog Timer Driver v0.01
[    6.014898] NV_TCO: Watchdog reboot not detected.
[    6.015030] NV_TCO: initialized (0x4440). heartbeat=30 sec (nowayout=0)
[    6.043080] Console: switching to colour frame buffer device 210x65
[    6.051353] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    6.051361] cdrom: Uniform CD-ROM driver Revision: 3.20
[    6.051714] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    6.064347] fb0: radeondrmfb frame buffer device
[    6.064352] drm: registered panic notifier
[    6.064374] [drm] Initialized radeon 2.16.0 20080528 for 0000:01:00.0 on minor 0
[    6.073093] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    6.073380] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    6.073499] sd 2:0:0:0: Attached scsi generic sg2 type 0
[    6.074425] sd 3:0:0:0: Attached scsi generic sg3 type 0
[    6.074570] sr 4:0:0:0: Attached scsi generic sg4 type 5
[    6.156091] usb 2-3: new low-speed USB device number 2 using ohci_hcd
[    6.351103] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:10.1/input/input3
[    6.367126] usb 2-3: New USB device found, idVendor=413c, idProduct=2005
[    6.367136] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.367143] usb 2-3: Product: DELL USB Keyboard
[    6.367148] usb 2-3: Manufacturer: DELL
[    6.423742] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:0b.0/usb2/2-3/2-3:1.0/input/input4
[    6.423973] generic-usb 0003:413C:2005.0001: input,hidraw0: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:0b.0-3/input0
[    6.424043] usbcore: registered new interface driver usbhid
[    6.424048] usbhid: USB HID core driver
[    6.500711] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
[    6.500853] snd_hda_intel 0000:01:00.1: irq 42 for MSI/MSI-X
[    6.500904] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[    6.521052] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[    6.521304] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:04.0/0000:01:00.1/sound/card1/input5
[    7.979869] Adding 3903484k swap on /dev/mapper/lvm_lv_swap.  Priority:-1 extents:1 across:3903484k 
[    8.251691] loop: module loaded
[    8.310059] it87: Found IT8716F chip at 0x290, revision 1
[    8.310146] ACPI: resource it87 [io  0x0295-0x0296] conflicts with ACPI region HWRE [io 0x295-0x296]
[    8.310154] ACPI: This conflict may cause random problems and system instability
[    8.310161] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.551896] r8169 0000:02:09.0: eth0: link down
[   10.551914] r8169 0000:02:09.0: eth0: link down
[   10.554844] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   12.391338] r8169 0000:02:09.0: eth0: link up
[   12.394218] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   23.392058] eth0: no IPv6 routers present

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-07-14 23:24   ` Nuno Magalhães
@ 2014-07-16 20:35     ` Nuno Magalhães
  2014-07-16 20:35       ` Nuno Magalhães
  2014-08-17 13:39     ` Tejun Heo
  1 sibling, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2014-07-16 20:35 UTC (permalink / raw)
  To: tj; +Cc: linux-ide

I've been fiddling with lm-sensors and noticed that loading it87 may
cause interference with the southbridge [2]. Can this be causing the
disks to drop or am i just adding noise (if so, sorry!)?

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-07-16 20:35     ` Nuno Magalhães
@ 2014-07-16 20:35       ` Nuno Magalhães
  0 siblings, 0 replies; 22+ messages in thread
From: Nuno Magalhães @ 2014-07-16 20:35 UTC (permalink / raw)
  To: tj; +Cc: linux-ide

[1] http://marc.info/?l=lm-sensors&m=140551586422421&w=2

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-07-14 23:24   ` Nuno Magalhães
  2014-07-16 20:35     ` Nuno Magalhães
@ 2014-08-17 13:39     ` Tejun Heo
  2014-08-21 22:40       ` Nuno Magalhães
  1 sibling, 1 reply; 22+ messages in thread
From: Tejun Heo @ 2014-08-17 13:39 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: linux-ide

Hello,

Sorry about the late reply.

On Tue, Jul 15, 2014 at 12:24:21AM +0100, Nuno Magalhães wrote:
> > Can you please try the followings?
> 
> This doesn't happen every-time i boot, only sometimes (about 50/50).
> Once i booted and the disk was disabled, i created dmesg1.nodisk
>
> > 1. After boot is complete, re-trigger device attach by doing
> >
> >    echo - - - > /sys/class/scsi_host/hostN/scan
> 
> Partial dmesg2.reset (i just wanted to see what this output to dmesg,
> i didn't reboot)

Does this always work?  ie. can you do it repeatedly and the device is
always detected correctly?  Or, if you issue rescanning after the
device fails detection during boot, does it always work?

> > 2. Boot with libata.force=dump_id and report full dmesg after boot.
> 
> dmesg3.dump_id
>
> > 3. Boot with libata.force=nohrst and see whether anything changes.
> 
> dmesg4.nohrst
> 
> > Thanks.
> 
> Thank you for your time.
> 
> Both dump_id and nohrst detected the drive the first time i used them.
> Should i keep trying one or the other until the disk is dropped again
> (or not)? Should i specify both boot options simultaneously?

dump_id shouldn't affect anything but should give us more data about
the failure.  Can you please try to reproduce the problem with dump_id
specified?  nohrst may make the problem go away.  Can you please try
to reproduce the issue with the parameter specified.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-08-17 13:39     ` Tejun Heo
@ 2014-08-21 22:40       ` Nuno Magalhães
  2014-08-21 22:43         ` Tejun Heo
       [not found]         ` <CADqA9uaj0MrpffnzE8xnhU57Hx9pv7O1sAhB+xS_4hi8z_dkMA@mail.gmail.com>
  0 siblings, 2 replies; 22+ messages in thread
From: Nuno Magalhães @ 2014-08-21 22:40 UTC (permalink / raw)
  To: Tejun Heo; +Cc: linux-ide

> dump_id shouldn't affect anything but should give us more data about
> the failure.  Can you please try to reproduce the problem with dump_id
> specified?  nohrst may make the problem go away.  Can you please try
> to reproduce the issue with the parameter specified.

I've been shifting the disks around,trying to find a pattern. So far
only the Reds fail, i haven't been able to fail a Toshiba. At first i
thought it was because the Toshibas were both on a RAID1 - i'm still
testing this theory. I.e., i've recently dropped the RAID; one Toshiba
now holds the OS @SATA1, all the others are empty.

I'll keep running more tests and document all combinations (SATA
ports, kernel parameters, etc) and results. I'll re-read on those
parameters and report back once i have something significant.

Could the PSU have an influence? It's a Nox Urano 500.

Thank you for your time.

Cheers,
Nuno

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-08-21 22:40       ` Nuno Magalhães
@ 2014-08-21 22:43         ` Tejun Heo
       [not found]         ` <CADqA9uaj0MrpffnzE8xnhU57Hx9pv7O1sAhB+xS_4hi8z_dkMA@mail.gmail.com>
  1 sibling, 0 replies; 22+ messages in thread
From: Tejun Heo @ 2014-08-21 22:43 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: linux-ide

On Thu, Aug 21, 2014 at 11:40:09PM +0100, Nuno Magalhães wrote:
> I've been shifting the disks around,trying to find a pattern. So far
> only the Reds fail, i haven't been able to fail a Toshiba. At first i
> thought it was because the Toshibas were both on a RAID1 - i'm still
> testing this theory. I.e., i've recently dropped the RAID; one Toshiba
> now holds the OS @SATA1, all the others are empty.
> 
> I'll keep running more tests and document all combinations (SATA
> ports, kernel parameters, etc) and results. I'll re-read on those
> parameters and report back once i have something significant.
> 
> Could the PSU have an influence? It's a Nox Urano 500.

PSU issues can lead to nasty unexpected issues, so it's theoretically
possible but I can't suggest one way or the other.  If you have spare
components lying around, be it PSU, motherboard or a different sata
controller, trying out different combinations usually is an often
effective way of determining which one is the culprit.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
       [not found]         ` <CADqA9uaj0MrpffnzE8xnhU57Hx9pv7O1sAhB+xS_4hi8z_dkMA@mail.gmail.com>
@ 2014-12-02 19:56           ` Tejun Heo
  2014-12-02 23:15             ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Tejun Heo @ 2014-12-02 19:56 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: linux-ide

Hello,

On Fri, Oct 17, 2014 at 11:02:43PM +0100, Nuno Magalhães wrote:
> The Toshibas would hold the OS in a RAID1 while the WDs would hold data in ZFS.
> At the moment T1 has the OS, T2 has a partition, the WDs are empty.
> 
> My next test will be to move T2 to the bottom of the BIOS boot
> priority, so it'll become T1, W1, W2, T2 to see if it fails.

If you're still working on it, can you please try to reproduce the
failure with the debug patch applied and report the dmesg?

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-12-02 19:56           ` Tejun Heo
@ 2014-12-02 23:15             ` Nuno Magalhães
  2014-12-04 17:48               ` Tejun Heo
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2014-12-02 23:15 UTC (permalink / raw)
  To: Tejun Heo; +Cc: linux-ide


[-- Attachment #1.1: Type: text/plain, Size: 1399 bytes --]

On 2014-12-02 19:56, Tejun Heo wrote:
> Hello,
> 
> On Fri, Oct 17, 2014 at 11:02:43PM +0100, Nuno Magalhães wrote:
>> The Toshibas would hold the OS in a RAID1 while the WDs would hold data in ZFS.
>> At the moment T1 has the OS, T2 has a partition, the WDs are empty.
>>
>> My next test will be to move T2 to the bottom of the BIOS boot
>> priority, so it'll become T1, W1, W2, T2 to see if it fails.

I've ran the above tests, the results are the same: every now and then
at least one WD fails (but is recovered if i reset it, although on
occasion i hade to issue the command more than once). Today i even had
the 2 of them fail. I attach the latest results, with the following
configuration:

T1 and T2 are Toshiba DT01ACA100
W1 and W2 are Western Digital"Red" WD10EFRX

physical SATA port , BIOS order , disk
1                  , 1          , T1
2                  , 2          , W1
3                  , 4          , T2
4                  , 3          , W2

kernel parameters: libata.force=dump_id,nohrst

Next will be to move the toshibas to physical ports 3 and 4 and try again.

> If you're still working on it, can you please try to reproduce the
> failure with the debug patch applied and report the dmesg?

What debug patch is that? I assume i'd have to get libata source from
somewhere first (end user here)? Any RTFM links i can use?

Thanks,
Nuno

[-- Attachment #1.2: 02.tar.gz --]
[-- Type: application/x-gzip, Size: 109568 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-12-02 23:15             ` Nuno Magalhães
@ 2014-12-04 17:48               ` Tejun Heo
  2014-12-04 23:59                 ` Phillip Susi
  0 siblings, 1 reply; 22+ messages in thread
From: Tejun Heo @ 2014-12-04 17:48 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: linux-ide

Hello,

On Tue, Dec 02, 2014 at 11:15:35PM +0000, Nuno Magalhães wrote:
> Next will be to move the toshibas to physical ports 3 and 4 and try again.

I don't think it will make any difference.

> > If you're still working on it, can you please try to reproduce the
> > failure with the debug patch applied and report the dmesg?
> 
> What debug patch is that? I assume i'd have to get libata source from
> somewhere first (end user here)? Any RTFM links i can use?

I meant dump_id.  Sorry about the confusion.  Occassionally the
problematic drives report zeroes for the latter half of IDENTIFY data.

This is how it should look.

  00000000: 427a 3fff c837 0010 0000 0000 003f 0000  zB.?7.......?...
  00000010: 0000 0000 2020 2020 2057 442d 5743 4334  ....    W -DCW4C
  00000020: 4a32 3030 3136 3731 0000 0000 0000 3031  2J006117......10
  00000030: 2e30 3141 3031 5744 4320 5744 3130 4546  0.A110DW CDW01FE
  00000040: 5258 2d36 3850 4a43 4e30 2020 2020 2020  XR6-P8CJ0N
  00000050: 2020 2020 2020 2020 2020 2020 2020 8010                ..
  00000060: 4000 2f00 4001 0000 0000 0007 3fff 0010  .@./.@.......?..
  00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007  ?...............
  00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
  00000090: 0000 0000 0000 001f 9f0e 0004 004c 0040  ............L.@.
  000000a0: 03fe 0000 746b 7d61 6733 7469 bc41 6723  ....kta}3gitA.#g
  000000b0: 407f 0048 0048 0000 fffe 0000 0000 0008  .@H.H...........
  000000c0: 0000 0000 86a0 0001 6db0 7470 0000 0000  .........mpt....
  000000d0: 0000 0000 6003 0000 5001 4ee2 5f03 f57d  .....`...P.N._}.
  000000e0: 0000 0000 0000 0000 0000 0000 0000 401c  ...............@
  000000f0: 401c 0000 0000 0000 0000 0000 0000 0000  .@..............
  00000100: 0021 0400 0001 0000 0000 0000 0000 0000  !...............
  00000110: 0000 0000 0000 0000 0000 0000 0004 0000  ................
  00000120: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000130: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000150: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000190: 0000 0000 0000 0000 303d 0000 0000 4000  ........=0.....@
  000001a0: 0000 0000 0000 0000 0000 0000 0000 1518  ................
  000001b0: 0000 0000 0000 0000 103e 0000 0000 0000  ........>.......
  000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001d0: 0001 1000 0000 0000 0000 0000 0000 0000  ................
  000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001f0: 0000 0000 0000 0000 0000 7ea5 0000 0000  ...........~....

But the drive sometimes reports the following.

  00000000: 427a 3fff c837 0010 0000 0000 003f 0000  zB.?7.......?...
  00000010: 0000 0000 2020 2020 2057 442d 5743 4334  ....    W -DCW4C
  00000020: 4a32 3030 3136 3731 0000 0000 0000 3031  2J006117......10
  00000030: 2e30 3141 3031 5744 4320 5744 3130 4546  0.A110DW CDW01FE
  00000040: 5258 2d36 3850 4a43 4e30 2020 2020 2020  XR6-P8CJ0N
  00000050: 2020 2020 2020 2020 2020 2020 2020 8010                ..
  00000060: 4000 2f00 4001 0000 0000 0007 3fff 0010  .@./.@.......?..
  00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007  ?...............
  00000080: 0003 0078 0078 0078 0078 0000 0000 0000  ..x.x.x.x.......
  00000090: 0000 0000 0000 001f 9f0e 0004 004c 0040  ............L.@.
  000000a0: 03fe 0000 746b 7d61 6733 7469 bc41 6723  ....kta}3gitA.#g
  000000b0: 407f 0048 0048 0000 fffe 0000 0000 0008  .@H.H...........
  000000c0: 0000 0000 86a0 0001 6db0 7470 0000 0000  .........mpt....
  000000d0: 0000 0000 6003 0000 5001 4ee2 5f03 f57d  .....`...P.N._}.
  000000e0: 0000 0000 0000 0000 0000 0000 0000 401c  ...............@
  000000f0: 401c 0000 0000 0000 0000 0000 0000 0000  .@..............
  00000100: 0021 0400 0001 0000 0000 0000 0000 0000  !...............
  00000110: 0000 0000 0000 0000 0000 0000 0004 0000  ................
  00000120: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000130: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000140: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000150: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000160: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000170: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000180: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  00000190: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001a0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001b0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001c0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001d0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001e0: 0000 0000 0000 0000 0000 0000 0000 0000  ................
  000001f0: 0000 0000 0000 0000 0000 0000 0000 0000  ................

I have no idea why it's doing that yet.  Weird... I'll ask around.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-12-04 17:48               ` Tejun Heo
@ 2014-12-04 23:59                 ` Phillip Susi
  2014-12-05 22:12                   ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Phillip Susi @ 2014-12-04 23:59 UTC (permalink / raw)
  To: Tejun Heo, Nuno Magalhães; +Cc: linux-ide

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Looks a lot like a drive that has Power Up In Standby enabled; on
power up they don't know what to report for many of the fields until
the media has been read.

On 12/04/2014 12:48 PM, Tejun Heo wrote:
> But the drive sometimes reports the following.
> 
> 00000000: 427a 3fff c837 0010 0000 0000 003f 0000
> zB.?7.......?... 00000010: 0000 0000 2020 2020 2057 442d 5743 4334
> ....    W -DCW4C 00000020: 4a32 3030 3136 3731 0000 0000 0000 3031
> 2J006117......10 00000030: 2e30 3141 3031 5744 4320 5744 3130 4546
> 0.A110DW CDW01FE 00000040: 5258 2d36 3850 4a43 4e30 2020 2020 2020
> XR6-P8CJ0N 00000050: 2020 2020 2020 2020 2020 2020 2020 8010
> .. 00000060: 4000 2f00 4001 0000 0000 0007 3fff 0010
> .@./.@.......?.. 00000070: 003f fc10 00fb 0101 ffff 0fff 0000 0007
> ?............... 00000080: 0003 0078 0078 0078 0078 0000 0000 0000
> ..x.x.x.x....... 00000090: 0000 0000 0000 001f 9f0e 0004 004c 0040
> ............L.@. 000000a0: 03fe 0000 746b 7d61 6733 7469 bc41 6723
> ....kta}3gitA.#g 000000b0: 407f 0048 0048 0000 fffe 0000 0000 0008
> .@H.H........... 000000c0: 0000 0000 86a0 0001 6db0 7470 0000 0000
> .........mpt.... 000000d0: 0000 0000 6003 0000 5001 4ee2 5f03 f57d
> .....`...P.N._}. 000000e0: 0000 0000 0000 0000 0000 0000 0000 401c
> ...............@ 000000f0: 401c 0000 0000 0000 0000 0000 0000 0000
> .@.............. 00000100: 0021 0400 0001 0000 0000 0000 0000 0000
> !............... 00000110: 0000 0000 0000 0000 0000 0000 0004 0000
> ................ 00000120: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000130: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000140: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000150: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000160: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000170: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000180: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 00000190: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 000001a0: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 000001b0: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 000001c0: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 000001d0: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 000001e0: 0000 0000 0000 0000 0000 0000 0000 0000
> ................ 000001f0: 0000 0000 0000 0000 0000 0000 0000 0000
> ................
> 
> I have no idea why it's doing that yet.  Weird... I'll ask around.
> 
> Thanks.
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBCgAGBQJUgPVLAAoJENRVrw2cjl5RPQkH/j0Yx2wJXUxVOaPHQPjcY/0D
UEaO0ebswzT+ytjxS7D5TBh18kG42HcRtLHrDLnPKGrTYfbHE2+e9Z7h+u4/nuNG
YkvmCANzQ0coHHC5IQNbhaeyUrRQ7KHHp6IwB+1IKW4Vfdbjf1GxGC9HPCmd4Ixb
Fb+d3/ev3AFN9tusiEv6wFiyq2knbYbnbh1rP7qXsXE7oxspeysOL3TKhH/trfMX
Xo0pBzCFOtt0rQjSj9v/3eYdDNsVx+4LlU45YQVTxXP8padbeCZDWE5D16Xd1KPt
3okRm8FvhWpqAu994I6Vgttt1ydYd9MiOCkX5VcTVe+9qr/RPH7SjhXecOdGEUw=
=CKYh
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-12-04 23:59                 ` Phillip Susi
@ 2014-12-05 22:12                   ` Nuno Magalhães
  2015-01-27 23:03                     ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2014-12-05 22:12 UTC (permalink / raw)
  To: Phillip Susi, Tejun Heo; +Cc: linux-ide

On 2014-12-04 23:59, Phillip Susi wrote:
> Looks a lot like a drive that has Power Up In Standby enabled; on 
> power up they don't know what to report for many of the fields 
> until the media has been read.

The problem is this only happens sometimes and only on WD drives, but
i'll look into that, thanks.

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2014-12-05 22:12                   ` Nuno Magalhães
@ 2015-01-27 23:03                     ` Nuno Magalhães
  2015-01-28 14:05                       ` Phillip Susi
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2015-01-27 23:03 UTC (permalink / raw)
  To: Phillip Susi, Tejun Heo; +Cc: linux-ide

[-- Attachment #1: Type: text/plain, Size: 3127 bytes --]

Hi,

On Fri, Dec 5, 2014 at 10:12 PM, Nuno Magalhães <nunomagalhaes@eu.ipp.pt> wrote:
> On 2014-12-04 23:59, Phillip Susi wrote:
>> Looks a lot like a drive that has Power Up In Standby enabled; on
>> power up they don't know what to report for many of the fields
>> until the media has been read.
>
> The problem is this only happens sometimes and only on WD drives, but
> i'll look into that, thanks.

The 2 WD disks do have PUIS, but it's disabled by default, so all 4
should power-up on boot (as they mostly do).

Since i've heard the problem could be the PSU, i did some research and
ended up (layman-ly) concluding that a 500W PSU is sufficient for all
4 disks. Still, i wanted to try and enable PUIS on the WDs, maybe it
could work (the PSU isn't new, wouldn't be as stressed on boot, etc).

As far as the Toshibas go, the only tweak they have is enabling TLER.
On rc.local i have:
smartctl -l scterc,70,70 /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL01
smartctl -l scterc,70,70 /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL02

(These 2 always boot and now hold a RAID1, although lshw says one has
a RAID partition and the other an ext4... but:
# cat /proc/mdstat
Personalities : [raid1]
md0 : active raid1 sda1[0] sdb1[1]
      976629568 blocks super 1.2 [2/2] [UU]

unused devices: <none>
...so i'm not (too) worried about lshw.)


As for the WDs...

I went and tried hdparm -s1 --yes-i-know-what-i-am-doing
/dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL02
It did enable the flag:
*    Power Management feature set
*    Power-Up In Standby feature set
*    SET_FEATURES required to spinup after power up
       Device-initiated interface power management
unlike its sibling:
*    Power Management feature set
       Power-Up In Standby feature set
*    SET_FEATURES required to spinup after power up
*    Host-initiated interface power management
       Device-initiated interface power management
 but it still came up on boot.

So i tried hdparm.conf:
    /dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL02 {
        poweron_standby = on
    }

Booted today and one failed as they usually do, the other hiccuped and
failed also (they don't usually fail simultaneously). I echoed - - -
and they both came up, although the non-PUIS took longer. The
PUIS-enabled one had this on boot:

[   12.824479] ata4.00: failed to IDENTIFY (SPINUP failed, err_mask=0x4)

which i took as a good sign since i didn't want it spinning up.

As i reinstalled a fresh debian i hadn't enabled ant kernel parameters yet. :(

I'd try another PSU but the ones i have laying around are older. I'd
try enabling PUIS via jumper but i'm not sure the PSU lacking power is
the issue. I guess i could partition and install something onto the
WDs and try and boot them isolated and go from there.

I'm beginning to consider a boot script to count disks as my option,
but i'd rather understand why this is happening rather than hammering
around it.

Attached is info on all drives and the last dmesg.

Any further hints are highly appreciated.

Regards,
Nuno

[-- Attachment #2: dmesg --]
[-- Type: application/octet-stream, Size: 54414 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.65-1+deb7u1
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/path-to-lvm-vg ro quiet
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[    0.000000]  BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfef0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cfef3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfef3000 - 00000000cff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000200000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: System manufacturer System Product Name/M2NPV-VM, BIOS ASUS M2NPV-VM ACPI BIOS Revision 5005 06/02/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x200000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 base 000100000000 mask FFFF00000000 write-back
[    0.000000]   4 base 0000CFF00000 mask 00FFFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000200000000 aka 8192M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xcfef0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000f5aa0] f5aa0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfef0000
[    0.000000]  0000000000 - 00c0000000 page 1G
[    0.000000]  00c0000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfef0000 page 4k
[    0.000000] kernel direct mapping tables up to cfef0000 @ 1fffd000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-0000000200000000
[    0.000000]  0100000000 - 0200000000 page 1G
[    0.000000] kernel direct mapping tables up to 200000000 @ cfeef000-cfef0000
[    0.000000] RAMDISK: 378d8000 - 37c64000
[    0.000000] ACPI: RSDP 00000000000f7640 00024 (v02 Nvidia)
[    0.000000] ACPI: XSDT 00000000cfef3100 0004C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 00000000cfef9e00 000F4 (v03 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 00000000cfef3280 06B1B (v01 NVIDIA ASUSACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000cfef0000 00040
[    0.000000] ACPI: SSDT 00000000cfefa040 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 00000000cfefa940 00038 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000098)
[    0.000000] ACPI: MCFG 00000000cfefa9c0 0003C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 00000000cfef9f40 00098 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000200000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000200000000
[    0.000000]   NODE_DATA [00000001ffffb000 - 00000001ffffffff]
[    0.000000]  [ffffea0000000000-ffffea0006ffffff] PMD -> [ffff8801f8200000-ffff8801fe7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00200000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfef0
[    0.000000]     0: 0x00100000 -> 0x00200000
[    0.000000] On node 0 totalpages: 1900159
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3922 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833320 pages, LIFO batch:31
[    0.000000]   Normal zone: 14336 pages used for memmap
[    0.000000]   Normal zone: 1034240 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    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 17, 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] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    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] PM: Registered nosave memory: 00000000cfef0000 - 00000000cfef3000
[    0.000000] PM: Registered nosave memory: 00000000cfef3000 - 00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at cff00000 (gap: cff00000:10100000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff8801ffc00000 s78848 r8192 d23552 u524288
[    0.000000] pcpu-alloc: s78848 r8192 d23552 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1871482
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/path-to-lvm-vg ro quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 864e000000 size 32 MB
[    0.000000] Aperture beyond 4GB. Ignoring.
[    0.000000] Your BIOS doesn't leave a aperture memory hole
[    0.000000] Please enable the IOMMU option in the BIOS setup
[    0.000000] This costs you 64 MB of RAM
[    0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
[    0.000000] PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
[    0.000000] Memory: 7352012k/8388608k available (3433k kernel code, 787972k absent, 248624k reserved, 3305k data, 576k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:33024 nr_irqs:712 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2605.409 MHz processor.
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5210.81 BogoMIPS (lpj=10421636)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004056] Security Framework initialized
[    0.004060] AppArmor: AppArmor disabled by boot time parameter
[    0.008036] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.010834] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.012079] Mount-cache hash table entries: 256
[    0.012193] Initializing cgroup subsys cpuacct
[    0.012197] Initializing cgroup subsys memory
[    0.012208] Initializing cgroup subsys devices
[    0.012211] Initializing cgroup subsys freezer
[    0.012213] Initializing cgroup subsys net_cls
[    0.012215] Initializing cgroup subsys blkio
[    0.012221] Initializing cgroup subsys perf_event
[    0.012248] tseg: 00cff00000
[    0.012250] CPU: Physical Processor ID: 0
[    0.012252] CPU: Processor Core ID: 0
[    0.012254] mce: CPU supports 6 MCE banks
[    0.012263] using AMD E400 aware idle routine
[    0.012571] ACPI: Core revision 20110623
[    0.017023] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.058628] CPU0: AMD Phenom(tm) II X4 910e Processor stepping 03
[    0.060003] Performance Events: AMD PMU driver.
[    0.060003] ... version:                0
[    0.060003] ... bit width:              48
[    0.060003] ... generic registers:      4
[    0.060003] ... value mask:             0000ffffffffffff
[    0.060003] ... max period:             00007fffffffffff
[    0.060003] ... fixed-purpose events:   0
[    0.060003] ... event mask:             000000000000000f
[    0.060003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.060003] Booting Node   0, Processors  #1
[    0.060003] smpboot cpu 1: start_ip = 9a000
[    0.148026] NMI watchdog enabled, takes one hw-pmu counter.
[    0.148045] System has AMD C1E enabled
[    0.148045] Switch to broadcast mode on CPU1
[    0.148118]  #2
[    0.148119] smpboot cpu 2: start_ip = 9a000
[    0.240034] NMI watchdog enabled, takes one hw-pmu counter.
[    0.240051] Switch to broadcast mode on CPU2
[    0.240125]  #3 Ok.
[    0.240127] smpboot cpu 3: start_ip = 9a000
[    0.332045] NMI watchdog enabled, takes one hw-pmu counter.
[    0.332064] Brought up 4 CPUs
[    0.332067] Total of 4 processors activated (20843.68 BogoMIPS).
[    0.332063] Switch to broadcast mode on CPU3
[    0.336149] Switch to broadcast mode on CPU0
[    0.336184] devtmpfs: initialized
[    0.341045] PM: Registering ACPI NVS region at cfef0000 (12288 bytes)
[    0.341045] print_constraints: dummy: 
[    0.341045] NET: Registered protocol family 16
[    0.341045] node 0 link 0: io port [d000, ffff]
[    0.341045] TOM: 00000000d0000000 aka 3328M
[    0.341045] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
[    0.341045] node 0 link 0: mmio [a0000, bffff]
[    0.341045] node 0 link 0: mmio [d0000000, dfffffff]
[    0.341045] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.341045] node 0 link 0: mmio [e0000000, e02fffff] ==> [e0100000, e02fffff]
[    0.341045] TOM2: 0000000200000000 aka 8192M
[    0.341045] bus: [00, 02] on node 0 link 0
[    0.341045] bus: 00 index 0 [io  0x0000-0xffff]
[    0.341045] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.341045] bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
[    0.341045] bus: 00 index 3 [mem 0xe0300000-0xffffffff]
[    0.341045] bus: 00 index 4 [mem 0xe0100000-0xe02fffff]
[    0.341045] bus: 00 index 5 [mem 0x200000000-0xfcffffffff]
[    0.341045] Extended Config Space enabled on 1 nodes
[    0.341045] ACPI: bus type pci registered
[    0.341045] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.341045] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.352239] PCI: Using configuration type 1 for base access
[    0.352938] bio: create slab <bio-0> at 0
[    0.352938] ACPI: Added _OSI(Module Device)
[    0.352938] ACPI: Added _OSI(Processor Device)
[    0.352938] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.352938] ACPI: Added _OSI(Processor Aggregator Device)
[    0.353077] ACPI: EC: Look up EC in DSDT
[    0.359585] ACPI: Interpreter enabled
[    0.359591] ACPI: (supports S0 S1 S3 S4 S5)
[    0.359611] ACPI: Using IOAPIC for interrupt routing
[    0.365345] ACPI: No dock devices found.
[    0.365347] HEST: Table not found.
[    0.365351] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.365397] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.365491] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.365493] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.365496] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.365498] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.365500] pci_root PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff]
[    0.365513] pci 0000:00:00.0: [10de:02f0] type 0 class 0x000500
[    0.365569] pci 0000:00:00.1: [10de:02fa] type 0 class 0x000500
[    0.365605] pci 0000:00:00.2: [10de:02fe] type 0 class 0x000500
[    0.365648] pci 0000:00:00.3: [10de:02f8] type 0 class 0x000500
[    0.365692] pci 0000:00:00.4: [10de:02f9] type 0 class 0x000500
[    0.365737] pci 0000:00:00.5: [10de:02ff] type 0 class 0x000500
[    0.365785] pci 0000:00:00.6: [10de:027f] type 0 class 0x000500
[    0.365822] pci 0000:00:00.7: [10de:027e] type 0 class 0x000500
[    0.365873] pci 0000:00:04.0: [10de:02fb] type 1 class 0x000604
[    0.365906] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.365951] pci 0000:00:09.0: [10de:0270] type 0 class 0x000500
[    0.366228] pci 0000:00:0a.0: [10de:0260] type 0 class 0x000601
[    0.366329] pci 0000:00:0a.1: [10de:0264] type 0 class 0x000c05
[    0.366394] pci 0000:00:0a.1: reg 20: [io  0x4c00-0x4c3f]
[    0.366407] pci 0000:00:0a.1: reg 24: [io  0x4c40-0x4c7f]
[    0.366463] pci 0000:00:0a.1: PME# supported from D3hot D3cold
[    0.366488] pci 0000:00:0a.2: [10de:0272] type 0 class 0x000500
[    0.366600] pci 0000:00:0b.0: [10de:026d] type 0 class 0x000c03
[    0.366620] pci 0000:00:0b.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
[    0.366711] pci 0000:00:0b.0: supports D1 D2
[    0.366713] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.366739] pci 0000:00:0b.1: [10de:026e] type 0 class 0x000c03
[    0.366761] pci 0000:00:0b.1: reg 10: [mem 0xfe02e000-0xfe02e0ff]
[    0.366861] pci 0000:00:0b.1: supports D1 D2
[    0.366863] pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.366899] pci 0000:00:0d.0: [10de:0265] type 0 class 0x000101
[    0.366953] pci 0000:00:0d.0: reg 20: [io  0xfd00-0xfd0f]
[    0.367026] pci 0000:00:0e.0: [10de:0266] type 0 class 0x000101
[    0.367050] pci 0000:00:0e.0: reg 10: [io  0x09f0-0x09f7]
[    0.367061] pci 0000:00:0e.0: reg 14: [io  0x0bf0-0x0bf3]
[    0.367072] pci 0000:00:0e.0: reg 18: [io  0x0970-0x0977]
[    0.367083] pci 0000:00:0e.0: reg 1c: [io  0x0b70-0x0b73]
[    0.367094] pci 0000:00:0e.0: reg 20: [io  0xf800-0xf80f]
[    0.367105] pci 0000:00:0e.0: reg 24: [mem 0xfe02d000-0xfe02dfff]
[    0.367194] pci 0000:00:0f.0: [10de:0267] type 0 class 0x000101
[    0.367218] pci 0000:00:0f.0: reg 10: [io  0x09e0-0x09e7]
[    0.367229] pci 0000:00:0f.0: reg 14: [io  0x0be0-0x0be3]
[    0.367240] pci 0000:00:0f.0: reg 18: [io  0x0960-0x0967]
[    0.367251] pci 0000:00:0f.0: reg 1c: [io  0x0b60-0x0b63]
[    0.367262] pci 0000:00:0f.0: reg 20: [io  0xf300-0xf30f]
[    0.367273] pci 0000:00:0f.0: reg 24: [mem 0xfe02c000-0xfe02cfff]
[    0.367358] pci 0000:00:10.0: [10de:026f] type 1 class 0x000604
[    0.367462] pci 0000:00:10.1: [10de:026c] type 0 class 0x000403
[    0.367488] pci 0000:00:10.1: reg 10: [mem 0xfe024000-0xfe027fff]
[    0.367600] pci 0000:00:10.1: PME# supported from D3hot D3cold
[    0.367644] pci 0000:00:14.0: [10de:0269] type 0 class 0x000680
[    0.367663] pci 0000:00:14.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.367674] pci 0000:00:14.0: reg 14: [io  0xf200-0xf207]
[    0.367751] pci 0000:00:14.0: supports D1 D2
[    0.367753] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.367772] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
[    0.367789] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
[    0.367802] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
[    0.367816] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
[    0.367832] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
[    0.367886] pci 0000:01:00.0: [1002:68e1] type 0 class 0x000300
[    0.367898] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.367908] pci 0000:01:00.0: reg 18: [mem 0xfddc0000-0xfdddffff 64bit]
[    0.367915] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.367926] pci 0000:01:00.0: reg 30: [mem 0xfdda0000-0xfddbffff pref]
[    0.367954] pci 0000:01:00.0: supports D1 D2
[    0.367972] pci 0000:01:00.1: [1002:aa68] type 0 class 0x000403
[    0.367984] pci 0000:01:00.1: reg 10: [mem 0xfddfc000-0xfddfffff 64bit]
[    0.368047] pci 0000:01:00.1: supports D1 D2
[    0.376042] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.376047] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.376050] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.376054] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.376126] pci 0000:02:09.0: [10ec:8169] type 0 class 0x000200
[    0.376150] pci 0000:02:09.0: reg 10: [io  0xec00-0xecff]
[    0.376163] pci 0000:02:09.0: reg 14: [mem 0xfdcff000-0xfdcff0ff]
[    0.376221] pci 0000:02:09.0: reg 30: [mem 0xfdce0000-0xfdceffff pref]
[    0.376260] pci 0000:02:09.0: supports D1 D2
[    0.376262] pci 0000:02:09.0: PME# supported from D1 D2 D3hot D3cold
[    0.376311] pci 0000:00:10.0: PCI bridge to [bus 02-02] (subtractive decode)
[    0.376316] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.376320] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.376325] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.376327] pci 0000:00:10.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.376329] pci 0000:00:10.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.376332] pci 0000:00:10.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.376334] pci 0000:00:10.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.376336] pci 0000:00:10.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
[    0.376350] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.376508] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.376616]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.376619]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.376621] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.403940] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.403986] ACPI: PCI Interrupt Link [LNK2] (IRQs *5 7 9 10 11 14 15)
[    0.404039] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404081] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404123] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 *11 14 15)
[    0.404165] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 *10 11 14 15)
[    0.404205] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404245] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404285] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404326] ACPI: PCI Interrupt Link [LUBB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404367] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 10 *11 14 15)
[    0.404407] ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404449] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[    0.404489] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404529] ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404570] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404610] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404650] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404693] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[    0.404734] ACPI: PCI Interrupt Link [LFID] (IRQs *5 7 9 10 11 14 15)
[    0.404808] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[    0.404883] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
[    0.404952] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
[    0.405020] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[    0.405087] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0
[    0.405155] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
[    0.405222] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
[    0.405290] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[    0.405357] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
[    0.405426] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
[    0.405495] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[    0.405563] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
[    0.405633] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[    0.405702] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[    0.405770] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
[    0.405839] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
[    0.405908] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
[    0.405977] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[    0.406046] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[    0.406115] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[    0.406183] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[    0.406275] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.406275] vgaarb: loaded
[    0.406275] vgaarb: bridge control possible 0000:01:00.0
[    0.406275] PCI: Using ACPI for IRQ routing
[    0.419335] PCI: pci_cache_line_size set to 64 bytes
[    0.419423] reserve RAM buffer: 000000000009f000 - 000000000009ffff 
[    0.419425] reserve RAM buffer: 00000000cfef0000 - 00000000cfffffff 
[    0.419527] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.419536] hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
[    0.419540] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
[    0.440066] Switching to clocksource hpet
[    0.441633] pnp: PnP ACPI init
[    0.441647] ACPI: bus type pnp registered
[    0.441725] pnp 00:00: [bus 00-ff]
[    0.441728] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.441730] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.441732] pnp 00:00: [io  0x0d00-0xffff window]
[    0.441734] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.441737] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.441739] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
[    0.441789] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.441837] pnp 00:01: [io  0x4000-0x407f]
[    0.441839] pnp 00:01: [io  0x4080-0x40ff]
[    0.441841] pnp 00:01: [io  0x4400-0x447f]
[    0.441843] pnp 00:01: [io  0x4480-0x44ff]
[    0.441844] pnp 00:01: [io  0x4800-0x487f]
[    0.441846] pnp 00:01: [io  0x4880-0x48ff]
[    0.441848] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.441850] pnp 00:01: [io  0x2000-0x207f]
[    0.441852] pnp 00:01: [io  0x2080-0x20ff]
[    0.441902] system 00:01: [io  0x4000-0x407f] has been reserved
[    0.441905] system 00:01: [io  0x4080-0x40ff] has been reserved
[    0.441907] system 00:01: [io  0x4400-0x447f] has been reserved
[    0.441910] system 00:01: [io  0x4480-0x44ff] has been reserved
[    0.441912] system 00:01: [io  0x4800-0x487f] has been reserved
[    0.441914] system 00:01: [io  0x4880-0x48ff] has been reserved
[    0.441918] system 00:01: [io  0x2000-0x207f] has been reserved
[    0.441920] system 00:01: [io  0x2080-0x20ff] has been reserved
[    0.441923] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.441965] pnp 00:02: [io  0x0010-0x001f]
[    0.441967] pnp 00:02: [io  0x0022-0x003f]
[    0.441968] pnp 00:02: [io  0x0044-0x005f]
[    0.441970] pnp 00:02: [io  0x0062-0x0063]
[    0.441972] pnp 00:02: [io  0x0065-0x006f]
[    0.441974] pnp 00:02: [io  0x0074-0x007f]
[    0.441975] pnp 00:02: [io  0x0091-0x0093]
[    0.441977] pnp 00:02: [io  0x00a2-0x00bf]
[    0.441979] pnp 00:02: [io  0x00e0-0x00ef]
[    0.441981] pnp 00:02: [io  0x04d0-0x04d1]
[    0.441982] pnp 00:02: [io  0x0800-0x087f]
[    0.441984] pnp 00:02: [io  0x0290-0x0297]
[    0.442035] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.442037] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.442040] system 00:02: [io  0x0290-0x0297] has been reserved
[    0.442042] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.442054] pnp 00:03: [dma 4]
[    0.442056] pnp 00:03: [io  0x0000-0x000f]
[    0.442058] pnp 00:03: [io  0x0080-0x0090]
[    0.442060] pnp 00:03: [io  0x0094-0x009f]
[    0.442062] pnp 00:03: [io  0x00c0-0x00df]
[    0.442087] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.442130] pnp 00:04: [irq 0 disabled]
[    0.442145] pnp 00:04: [irq 8]
[    0.442147] pnp 00:04: [mem 0xfefff000-0xfefff3ff]
[    0.442174] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.442197] pnp 00:05: [io  0x0070-0x0073]
[    0.442224] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.442232] pnp 00:06: [io  0x0061]
[    0.442257] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.442264] pnp 00:07: [io  0x00f0-0x00ff]
[    0.442276] pnp 00:07: [irq 13]
[    0.442302] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.442599] pnp 00:08: [io  0x03f8-0x03ff]
[    0.442610] pnp 00:08: [irq 4]
[    0.442666] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.442884] pnp 00:09: [io  0x02f8-0x02ff]
[    0.442896] pnp 00:09: [irq 3]
[    0.442946] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.443165] pnp 00:0a: [io  0x0378-0x037f]
[    0.443177] pnp 00:0a: [irq 7]
[    0.443220] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.444092] pnp 00:0b: [mem 0xe0000000-0xefffffff]
[    0.444147] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
[    0.444150] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.444244] pnp 00:0c: [mem 0x000f0000-0x000f3fff]
[    0.444246] pnp 00:0c: [mem 0x000f4000-0x000f7fff]
[    0.444248] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
[    0.444250] pnp 00:0c: [mem 0x000fc000-0x000fffff]
[    0.444252] pnp 00:0c: [mem 0xfefff000-0xfefff0ff]
[    0.444254] pnp 00:0c: [mem 0xcfef0000-0xcfefffff]
[    0.444256] pnp 00:0c: [mem 0xffff0000-0xffffffff]
[    0.444258] pnp 00:0c: [mem 0x00000000-0x0009ffff]
[    0.444260] pnp 00:0c: [mem 0x00100000-0xcfeeffff]
[    0.444262] pnp 00:0c: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.444264] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
[    0.444266] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
[    0.444268] pnp 00:0c: [mem 0xfefff000-0xfeffffff]
[    0.444270] pnp 00:0c: [mem 0xfff80000-0xfff80fff]
[    0.444272] pnp 00:0c: [mem 0xfff90000-0xfffbffff]
[    0.444274] pnp 00:0c: [mem 0xfffed000-0xfffeffff]
[    0.444302] pnp 00:0c: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xe0000000-0xe00fffff]; adding more reservations
[    0.444343] system 00:0c: [mem 0x000f0000-0x000f3fff] could not be reserved
[    0.444346] system 00:0c: [mem 0x000f4000-0x000f7fff] could not be reserved
[    0.444348] system 00:0c: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.444351] system 00:0c: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.444353] system 00:0c: [mem 0xfefff000-0xfefff0ff] has been reserved
[    0.444356] system 00:0c: [mem 0xcfef0000-0xcfefffff] could not be reserved
[    0.444358] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
[    0.444361] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.444363] system 00:0c: [mem 0x00100000-0xcfeeffff] could not be reserved
[    0.444366] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.444369] system 00:0c: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.444371] system 00:0c: [mem 0xfefff000-0xfeffffff] could not be reserved
[    0.444374] system 00:0c: [mem 0xfff80000-0xfff80fff] has been reserved
[    0.444376] system 00:0c: [mem 0xfff90000-0xfffbffff] has been reserved
[    0.444379] system 00:0c: [mem 0xfffed000-0xfffeffff] has been reserved
[    0.444382] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.444391] pnp: PnP ACPI: found 13 devices
[    0.444392] ACPI: ACPI bus type pnp unregistered
[    0.452482] PCI: max bus depth: 1 pci_try_num: 2
[    0.452496] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.452498] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.452502] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.452505] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452509] pci 0000:00:10.0: PCI bridge to [bus 02-02]
[    0.452512] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.452518] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.452522] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.452534] pci 0000:00:04.0: setting latency timer to 64
[    0.452542] pci 0000:00:10.0: setting latency timer to 64
[    0.452546] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.452548] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.452550] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452552] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452554] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452556] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.452558] pci_bus 0000:01: resource 1 [mem 0xfdd00000-0xfddfffff]
[    0.452560] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.452562] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.452564] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    0.452567] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
[    0.452569] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    0.452571] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    0.452572] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    0.452574] pci_bus 0000:02: resource 7 [mem 0x000c0000-0x000dffff]
[    0.452576] pci_bus 0000:02: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.452724] NET: Registered protocol family 2
[    0.454378] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.455560] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.458199] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.458520] TCP: Hash tables configured (established 524288 bind 65536)
[    0.458523] TCP reno registered
[    0.458537] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.458595] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.458791] NET: Registered protocol family 1
[    0.458821] pci 0000:00:00.0: Found disabled HT MSI Mapping
[    0.458826] pci 0000:00:00.0: Enabling HT MSI Mapping
[    0.458871] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.459191] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[    0.528231] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
[    0.528380] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528394] pci 0000:00:0e.0: Enabling HT MSI Mapping
[    0.528488] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528502] pci 0000:00:0f.0: Enabling HT MSI Mapping
[    0.528601] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528612] pci 0000:00:10.0: Enabling HT MSI Mapping
[    0.528715] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.528729] pci 0000:00:10.1: Enabling HT MSI Mapping
[    0.528755] pci 0000:01:00.0: Boot video device
[    0.528763] PCI: CLS 32 bytes, default 64
[    0.528816] Unpacking initramfs...
[    0.593015] Freeing initrd memory: 3632k freed
[    0.594319] PCI-DMA: Disabling AGP.
[    0.597829] PCI-DMA: aperture base @ c4000000 size 65536 KB
[    0.597831] PCI-DMA: using GART IOMMU.
[    0.597833] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
[    0.602199] IBS: LVT offset 1 assigned
[    0.602222] perf: AMD IBS detected (0x0000001f)
[    0.602513] audit: initializing netlink socket (disabled)
[    0.602530] type=2000 audit(1422392645.596:1): initialized
[    0.615087] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.616555] VFS: Disk quotas dquot_6.5.2
[    0.616594] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.616665] msgmni has been set to 14495
[    0.616939] alg: No test for stdrng (krng)
[    0.616981] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.616984] io scheduler noop registered
[    0.616986] io scheduler deadline registered
[    0.617027] io scheduler cfq registered (default)
[    0.617140] pcieport 0000:00:04.0: setting latency timer to 64
[    0.617170] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.617260] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.617279] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.617281] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.617637] ERST: Table is not found!
[    0.617638] GHES: HEST is not enabled!
[    0.617730] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.638409] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.700750] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.833032] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.853923] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.854292] Linux agpgart interface v0.103
[    0.854402] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.854920] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.854927] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.855108] mousedev: PS/2 mouse device common for all mice
[    0.855169] rtc_cmos 00:05: RTC can wake from S4
[    0.855331] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.855388] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.855398] cpuidle: using governor ladder
[    0.855399] cpuidle: using governor menu
[    0.855582] TCP cubic registered
[    0.855705] NET: Registered protocol family 10
[    0.856162] Mobile IPv6
[    0.856164] NET: Registered protocol family 17
[    0.856168] Registering the dns_resolver key type
[    0.856345] PM: Hibernation image not present or could not be loaded.
[    0.856355] registered taskstats version 1
[    0.857191] rtc_cmos 00:05: setting system clock to 2015-01-27 21:04:06 UTC (1422392646)
[    0.857228] Initializing network drop monitor service
[    0.858289] Freeing unused kernel memory: 576k freed
[    0.858420] Write protecting the kernel read-only data: 6144k
[    0.860759] Freeing unused kernel memory: 644k freed
[    0.863250] Freeing unused kernel memory: 688k freed
[    0.874398] udevd[59]: starting version 175
[    0.894516] ACPI Warning: For \_TZ_.THRM._PSL: Return Package has no elements (empty) (20110623/nspredef-463)
[    0.894523] ACPI: [Package] has zero elements (ffff8801f6323e40)
[    0.894569] ACPI: Invalid passive threshold
[    0.894729] thermal LNXTHERM:00: registered as thermal_zone0
[    0.894731] ACPI: Thermal Zone [THRM] (40 C)
[    0.897159] ACPI: Fan [FAN] (on)
[    0.898813] SCSI subsystem initialized
[    0.904173] libata version 3.00 loaded.
[    0.904532] sata_nv 0000:00:0e.0: version 3.5
[    0.904719] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
[    0.904743] sata_nv 0000:00:0e.0: Using SWNCQ mode
[    0.904801] sata_nv 0000:00:0e.0: setting latency timer to 64
[    0.908920] scsi0 : sata_nv
[    0.909454] scsi1 : sata_nv
[    0.909607] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf800 irq 21
[    0.909611] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf808 irq 21
[    0.909826] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
[    0.909853] sata_nv 0000:00:0f.0: Using SWNCQ mode
[    0.909919] sata_nv 0000:00:0f.0: setting latency timer to 64
[    0.913608] scsi2 : sata_nv
[    0.914953] scsi3 : sata_nv
[    0.915087] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xf300 irq 20
[    0.915091] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xf308 irq 20
[    1.380700] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.380706] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.388953] ata1.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388958] ata3.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388962] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.388966] ata1.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.405654] ata1.00: configured for UDMA/133
[    1.405658] ata3.00: configured for UDMA/133
[    1.405837] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.600209] Refined TSC clocksource calibration: 2605.433 MHz.
[    1.600214] Switching to clocksource tsc
[    1.872399] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.880536] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    1.880539] ata2.00: 268435455 sectors, multi 1: LBA NCQ (depth 31/32)
[    1.888545] ata2.00: n_sectors mismatch 268435455 != 1953525168
[    1.888548] ata2.00: revalidation failed (errno=-19)
[    1.888594] ata2: limiting SATA link speed to 1.5 Gbps
[    1.888596] ata2.00: limiting speed to UDMA/133:PIO3
[    7.340436] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    7.348534] ata2.00: n_sectors mismatch 268435455 != 1953525168
[    7.348537] ata2.00: revalidation failed (errno=-19)
[    7.348580] ata2.00: disabled
[    7.348712] scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    7.816430] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   12.824475] ata4.00: qc timeout (cmd 0xef)
[   12.824479] ata4.00: failed to IDENTIFY (SPINUP failed, err_mask=0x4)
[   15.532460] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   15.540634] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[   15.540637] ata4.00: 268435455 sectors, multi 0: LBA NCQ (depth 31/32)
[   15.548636] ata4.00: n_sectors mismatch 268435455 != 1953525168
[   15.548639] ata4.00: revalidation failed (errno=-19)
[   15.548683] ata4: limiting SATA link speed to 1.5 Gbps
[   15.548685] ata4.00: limiting speed to UDMA/133:PIO3
[   21.000487] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   21.008642] ata4.00: n_sectors mismatch 268435455 != 1953525168
[   21.008644] ata4.00: revalidation failed (errno=-19)
[   21.008687] ata4.00: disabled
[   21.009448] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   21.009451] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   21.009491] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[   21.009494] sd 0:0:0:0: [sda] Write Protect is off
[   21.009498] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   21.009501] sd 2:0:0:0: [sdb] 4096-byte physical blocks
[   21.009516] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   21.009541] sd 2:0:0:0: [sdb] Write Protect is off
[   21.009544] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   21.009560] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   21.031654]  sda: sda1
[   21.031947] sd 0:0:0:0: [sda] Attached SCSI disk
[   21.035407]  sdb: sdb1
[   21.035773] sd 2:0:0:0: [sdb] Attached SCSI disk
[   21.357855] md: md0 stopped.
[   21.358556] md: bind<sdb1>
[   21.358721] md: bind<sda1>
[   21.359774] md: raid1 personality registered for level 1
[   21.359948] bio: create slab <bio-1> at 1
[   21.360031] md/raid1:md0: active with 2 out of 2 mirrors
[   21.360055] md0: detected capacity change from 0 to 1000068677632
[   21.395978]  md0: unknown partition table
[   21.563121] device-mapper: uevent: version 1.0.3
[   21.563186] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[   21.787426] PM: Starting manual resume from disk
[   21.787430] PM: Hibernation image partition 253:1 present
[   21.787431] PM: Looking for hibernation image.
[   21.787596] PM: Image not found (code -22)
[   21.787599] PM: Hibernation image not present or could not be loaded.
[   21.797190] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[   21.797478] SGI XFS Quota Management subsystem
[   21.798612] XFS (dm-0): Mounting Filesystem
[   22.253190] XFS (dm-0): Ending clean mount
[   22.804020] CE: hpet increased min_delta_ns to 11520 nsec
[   23.581284] udevd[420]: starting version 175
[   23.771396] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   23.771402] ACPI: Power Button [PWRB]
[   23.771486] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   23.771489] ACPI: Power Button [PWRF]
[   23.807577] ACPI: processor limited to max C-state 1
[   23.838297] EDAC MC: Ver: 2.1.0
[   23.856566] MCE: In-kernel MCE decoding enabled.
[   23.882036] usbcore: registered new interface driver usbfs
[   23.882057] usbcore: registered new interface driver hub
[   23.882108] usbcore: registered new device driver usb
[   23.892710] powernow-k8: Found 1 AMD Phenom(tm) II X4 910e Processor (4 cpu cores) (version 2.20.00)
[   23.892747] powernow-k8:    0 : pstate 0 (2600 MHz)
[   23.892749] powernow-k8:    1 : pstate 1 (1900 MHz)
[   23.892751] powernow-k8:    2 : pstate 2 (1400 MHz)
[   23.892752] powernow-k8:    3 : pstate 3 (800 MHz)
[   23.893651] AMD64 EDAC driver v3.4.0
[   23.893682] EDAC amd64: DRAM ECC disabled.
[   23.893690] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[   23.893692]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[   23.893693]  (Note that use of the override may cause unknown side effects.)
[   23.913922] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   23.914062] ehci_hcd 0000:00:0b.1: setting latency timer to 64
[   23.914072] ehci_hcd 0000:00:0b.1: EHCI Host Controller
[   23.914141] ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
[   23.914193] ehci_hcd 0000:00:0b.1: debug port 1
[   23.914213] ehci_hcd 0000:00:0b.1: cache line size of 32 is not supported
[   23.914265] ehci_hcd 0000:00:0b.1: irq 22, io mem 0xfe02e000
[   23.924113] ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00
[   23.924169] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   23.924178] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   23.924185] usb usb1: Product: EHCI Host Controller
[   23.924191] usb usb1: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd
[   23.924196] usb usb1: SerialNumber: 0000:00:0b.1
[   23.924506] hub 1-0:1.0: USB hub found
[   23.924517] hub 1-0:1.0: 8 ports detected
[   23.924747] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[   23.925213] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 23
[   23.925231] forcedeth 0000:00:14.0: setting latency timer to 64
[   23.929025] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   23.929462] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[   23.929564] r8169 0000:02:09.0: (unregistered net_device): not PCI Express
[   23.930654] r8169 0000:02:09.0: eth0: RTL8169sb/8110sb at 0xffffc900117a2000, 08:60:6e:cf:a2:0f, XID 10000000 IRQ 17
[   23.930664] r8169 0000:02:09.0: eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[   23.937987] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   23.966383] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   23.999124] parport_pc 00:0a: reported by Plug and Play ACPI
[   23.999173] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[   24.076937] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
[   24.076947] Disabling lock debugging due to kernel taint
[   24.194960] [fglrx] Maximum main memory to use for locked dma buffers: 7029 MBytes.
[   24.195608] [fglrx]   vendor: 1002 device: 68e1 count: 1
[   24.196653] [fglrx] ioport: bar 4, base 0xdc00, size: 0x100
[   24.197108] ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
[   24.197150] pci 0000:01:00.0: setting latency timer to 64
[   24.197674] [fglrx] Kernel PAT support is enabled
[   24.197721] [fglrx] module loaded - fglrx 8.98.2 [Jul 19 2012] with 1 minors
[   24.449470] forcedeth 0000:00:14.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:18:f3:a8:01:be
[   24.449482] forcedeth 0000:00:14.0: highdma pwrctl gbit lnktim desc-v3
[   24.449691] ohci_hcd 0000:00:0b.0: setting latency timer to 64
[   24.449700] ohci_hcd 0000:00:0b.0: OHCI Host Controller
[   24.449730] ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
[   24.449801] ohci_hcd 0000:00:0b.0: irq 23, io mem 0xfe02f000
[   24.506248] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[   24.506258] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   24.506265] usb usb2: Product: OHCI Host Controller
[   24.506271] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ohci_hcd
[   24.506276] usb usb2: SerialNumber: 0000:00:0b.0
[   24.506615] hub 2-0:1.0: USB hub found
[   24.506629] hub 2-0:1.0: 8 ports detected
[   24.506879] ACPI: resource nForce2_smbus [io  0x4c00-0x4c3f] conflicts with ACPI region SM00 [io 0x4c00-0x4c05]
[   24.506887] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   24.506995] i2c i2c-0: nForce2 SMBus adapter at 0x4c40
[   24.507819] pata_amd 0000:00:0d.0: version 0.4.1
[   24.507895] pata_amd 0000:00:0d.0: setting latency timer to 64
[   24.508808] scsi4 : pata_amd
[   24.508983] scsi5 : pata_amd
[   24.510150] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfd00 irq 14
[   24.510158] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfd08 irq 15
[   24.510630] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
[   24.510644] hda_intel: Disabling MSI
[   24.510710] snd_hda_intel 0000:00:10.1: setting latency timer to 64
[   24.530814] NV_TCO: NV TCO WatchDog Timer Driver v0.01
[   24.530996] NV_TCO: Watchdog reboot not detected.
[   24.531126] NV_TCO: initialized (0x4440). heartbeat=30 sec (nowayout=0)
[   24.672867] ata5.00: ATAPI: HL-DT-STDVD-RAM GSA-H22N, 1.00, max UDMA/66
[   24.672889] ata5: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13)
[   24.688755] ata5.00: configured for UDMA/66
[   24.692644] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GSA-H22N 1.00 PQ: 0 ANSI: 5
[   24.877979] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[   24.877989] cdrom: Uniform CD-ROM driver Revision: 3.20
[   24.878345] sr 4:0:0:0: Attached scsi CD-ROM sr0
[   24.880111] usb 2-1: new low-speed USB device number 2 using ohci_hcd
[   24.883561] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   24.883844] sd 2:0:0:0: Attached scsi generic sg1 type 0
[   24.883961] sr 4:0:0:0: Attached scsi generic sg2 type 5
[   25.098271] usb 2-1: New USB device found, idVendor=413c, idProduct=2005
[   25.098281] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   25.098288] usb 2-1: Product: DELL USB Keyboard
[   25.098293] usb 2-1: Manufacturer: DELL
[   25.150042] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:0b.0/usb2/2-1/2-1:1.0/input/input3
[   25.150279] generic-usb 0003:413C:2005.0001: input,hidraw0: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:0b.0-1/input0
[   25.150318] usbcore: registered new interface driver usbhid
[   25.150323] usbhid: USB HID core driver
[   25.173567] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:10.1/input/input4
[   25.237211] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
[   25.237337] snd_hda_intel 0000:01:00.1: irq 41 for MSI/MSI-X
[   25.237388] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[   25.257552] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[   25.257808] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:04.0/0000:01:00.1/sound/card1/input5
[   25.268073] usb 2-2: new low-speed USB device number 3 using ohci_hcd
[   25.473251] usb 2-2: New USB device found, idVendor=093a, idProduct=2510
[   25.473261] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   25.473268] usb 2-2: Product: USB Optical Mouse
[   25.473274] usb 2-2: Manufacturer: PixArt
[   25.483709] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:0b.0/usb2/2-2/2-2:1.0/input/input6
[   25.484060] generic-usb 0003:093A:2510.0002: input,hidraw1: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:0b.0-2/input0
[   27.197428] loop: module loaded
[   27.795743] Adding 7811068k swap on /dev/mapper/path-to-lvm-vglv4swap.  Priority:-1 extents:1 across:7811068k 
[   29.298446] r8169 0000:02:09.0: eth0: link down
[   29.298463] r8169 0000:02:09.0: eth0: link down
[   29.301719] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   30.973288] r8169 0000:02:09.0: eth0: link up
[   30.976482] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   31.455231] fglrx_pci 0000:01:00.0: irq 42 for MSI/MSI-X
[   31.456714] [fglrx] Firegl kernel thread PID: 2360
[   31.456865] [fglrx] Firegl kernel thread PID: 2361
[   31.457013] [fglrx] Firegl kernel thread PID: 2362
[   31.457211] [fglrx] IRQ 42 Enabled
[   31.727812] mtrr: your BIOS has configured an incorrect mask, fixing it.
[   31.729098] [fglrx] Gart USWC size:1280 M.
[   31.729106] [fglrx] Gart cacheable size:508 M.
[   31.729119] [fglrx] Reserved FB block: Shared offset:0, size:1000000 
[   31.729127] [fglrx] Reserved FB block: Unshared offset:f8fd000, size:403000 
[   31.729135] [fglrx] Reserved FB block: Unshared offset:3fff4000, size:c000 
[   41.840072] eth0: no IPv6 routers present
[ 1805.889816] ata2: hard resetting link
[ 1806.768131] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1806.776781] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[ 1806.776785] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[ 1806.784760] ata2.00: n_sectors mismatch 1953525168 != 268435455
[ 1806.784768] ata2.00: revalidation failed (errno=-19)
[ 1806.784780] ata2: limiting SATA link speed to 1.5 Gbps
[ 1806.784787] ata2.00: limiting speed to UDMA/133:PIO3
[ 1811.768094] ata2: hard resetting link
[ 1811.768103] ata2: nv: skipping hardreset on occupied port
[ 1812.236126] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1812.253091] ata2.00: configured for UDMA/133
[ 1812.253111] ata2: EH complete
[ 1812.253343] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[ 1812.253751] sd 1:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 1812.253759] sd 1:0:0:0: [sdc] 4096-byte physical blocks
[ 1812.253853] sd 1:0:0:0: Attached scsi generic sg3 type 0
[ 1812.253957] sd 1:0:0:0: [sdc] Write Protect is off
[ 1812.253967] sd 1:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 1812.254045] sd 1:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1812.754486]  sdc:
[ 1812.754964] sd 1:0:0:0: [sdc] Attached SCSI disk
[ 1828.322109] ata4: hard resetting link
[ 1829.200102] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1829.208686] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[ 1829.208697] ata4.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[ 1829.216856] ata4.00: configured for UDMA/133
[ 1829.216874] ata4: EH complete
[ 1829.217145] scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[ 1829.217571] sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 1829.217578] sd 3:0:0:0: [sdd] 4096-byte physical blocks
[ 1829.217679] sd 3:0:0:0: Attached scsi generic sg4 type 0
[ 1829.217859] sd 3:0:0:0: [sdd] Write Protect is off
[ 1829.217867] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 1829.217943] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1829.700078]  sdd:
[ 1829.700663] sd 3:0:0:0: [sdd] Attached SCSI disk

[-- Attachment #3: SATA01-T1 --]
[-- Type: application/octet-stream, Size: 17263 bytes --]


--------------------------------------------------------------------------------
lshw info:
--------------------------------------------------------------------------------

     *-ide:1
          description: IDE interface
          product: MCP51 Serial ATA Controller
          vendor: NVIDIA Corporation
          physical id: e
          bus info: pci@0000:00:0e.0
          logical name: scsi0
          logical name: scsi1
          version: a1
          width: 32 bits
          clock: 66MHz
          capabilities: ide pm msi ht bus_master cap_list emulated
          configuration: driver=sata_nv latency=0 maxlatency=1 mingnt=3
          resources: irq:21 ioport:9f0(size=8) ioport:bf0(size=4) ioport:970(size=8) ioport:b70(size=4) ioport:f800(size=16) memory:fe02d000-fe02dfff
        *-disk:0
             description: ATA Disk
             product: TOSHIBA DT01ACA1
             vendor: Toshiba
             physical id: 0
             bus info: scsi@0:0.0.0
             logical name: /dev/sda
             version: MS2O
             size: 931GiB (1TB)
             capabilities: partitioned partitioned:dos
             configuration: ansiversion=5 sectorsize=4096 signature=0000cc69
           *-volume
                description: EXT4 volume
                vendor: Linux
                physical id: 1
                bus info: scsi@0:0.0.0,1
                logical name: /dev/sda1
                version: 1.0
                size: 9536MiB
                capacity: 931GiB
                capabilities: primary bootable multi journaled extended_attributes large_files huge_files dir_nlink extents ext4 ext2 initialized
                configuration: created=2014-08-16 14:26:45 filesystem=ext4 lastmountpoint=/ modified=2015-01-14 21:36:14 mounted=2015-01-14 21:36:14 state=clean

--------------------------------------------------------------------------------
hdparm -I /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL01
--------------------------------------------------------------------------------

/dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL01:

ATA device, with non-removable media
	Model Number:       TOSHIBA DT01ACA100                      
	Serial Number:      SERIAL01
	Firmware Revision:  MS2OA750
	Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0; Revision: ATA8-AST T13 Project D1697 Revision 0b
Standards:
	Used: unknown (minor revision code 0x0029) 
	Supported: 8 7 6 5 
	Likely used: 8
Configuration:
	Logical		max	current
	cylinders	16383	16383
	heads		16	16
	sectors/track	63	63
	--
	CHS current addressable sectors:   16514064
	LBA    user addressable sectors:  268435455
	LBA48  user addressable sectors: 1953525168
	Logical  Sector size:                   512 bytes
	Physical Sector size:                  4096 bytes
	Logical Sector-0 offset:                  0 bytes
	device size with M = 1024*1024:      953869 MBytes
	device size with M = 1000*1000:     1000204 MBytes (1000 GB)
	cache/buffer size  = 23652 KBytes (type=DualPortCache)
	Form Factor: 3.5 inch
	Nominal Media Rotation Rate: 7200
Capabilities:
	LBA, IORDY(can be disabled)
	Queue depth: 32
	Standby timer values: spec'd by Standard, no device specific minimum
	R/W multiple sector transfer: Max = 16	Current = 1
	Advanced power management level: disabled
	DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 udma5 *udma6 
	     Cycle time: min=120ns recommended=120ns
	PIO: pio0 pio1 pio2 pio3 pio4 
	     Cycle time: no flow control=120ns  IORDY flow control=120ns
Commands/features:
	Enabled	Supported:
	   *	SMART feature set
	    	Security Mode feature set
	   *	Power Management feature set
	   *	Write cache
	   *	Look-ahead
	   *	Host Protected Area feature set
	   *	WRITE_BUFFER command
	   *	READ_BUFFER command
	   *	NOP cmd
	   *	DOWNLOAD_MICROCODE
	    	Advanced Power Management feature set
	    	Power-Up In Standby feature set
	   *	SET_FEATURES required to spinup after power up
	    	SET_MAX security extension
	   *	48-bit Address feature set
	   *	Device Configuration Overlay feature set
	   *	Mandatory FLUSH_CACHE
	   *	FLUSH_CACHE_EXT
	   *	SMART error logging
	   *	SMART self-test
	    	Media Card Pass-Through
	   *	General Purpose Logging feature set
	   *	WRITE_{DMA|MULTIPLE}_FUA_EXT
	   *	64-bit World wide name
	   *	URG for READ_STREAM[_DMA]_EXT
	   *	URG for WRITE_STREAM[_DMA]_EXT
	   *	WRITE_UNCORRECTABLE_EXT command
	   *	{READ,WRITE}_DMA_EXT_GPL commands
	   *	Segmented DOWNLOAD_MICROCODE
	   *	unknown 119[7]
	   *	Gen1 signaling speed (1.5Gb/s)
	   *	Gen2 signaling speed (3.0Gb/s)
	   *	Gen3 signaling speed (6.0Gb/s)
	   *	Native Command Queueing (NCQ)
	   *	Host-initiated interface power management
	   *	Phy event counters
	   *	NCQ priority information
	    	Non-Zero buffer offsets in DMA Setup FIS
	    	DMA Setup Auto-Activate optimization
	    	Device-initiated interface power management
	    	In-order data delivery
	   *	Software settings preservation
	   *	SMART Command Transport (SCT) feature set
	   *	SCT LBA Segment Access (AC2)
	   *	SCT Error Recovery Control (AC3)
	   *	SCT Features Control (AC4)
	   *	SCT Data Tables (AC5)
Security: 
	Master password revision code = 65534
		supported
	not	enabled
	not	locked
	not	frozen
	not	expired: security count
	not	supported: enhanced erase
	176min for SECURITY ERASE UNIT. 
Logical Unit WWN Device Identifier: 5000039ff7ca8d70
	NAA		: 5
	IEEE OUI	: 000039

Checksum: correct

--------------------------------------------------------------------------------
smartctl -xall /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL01
--------------------------------------------------------------------------------

smartctl 5.41 2011-06-09 r3365 [x86_64-linux-3.2.0-4-amd64] (local build)
Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net

=== START OF INFORMATION SECTION ===
Device Model:     TOSHIBA DT01ACA100
Serial Number:    SERIAL01
LU WWN Device Id: 5 000039 ff7ca8d70
Firmware Version: MS2OA750
User Capacity:    1,000,204,886,016 bytes [1.00 TB]
Sector Sizes:     512 bytes logical, 4096 bytes physical
Device is:        Not in smartctl database [for details use: -P showall]
ATA Version is:   8
ATA Standard is:  ATA-8-ACS revision 4
Local Time is:    Tue Jan 27 21:57:14 2015 WET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x80)	Offline data collection activity
					was never started.
					Auto Offline Data Collection: Enabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		( 7992) seconds.
Offline data collection
capabilities: 			 (0x5b) SMART execute Offline immediate.
					Auto Offline data collection on/off support.
					Suspend Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					No Conveyance Self-test supported.
					Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x01)	Error logging supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   1) minutes.
Extended self-test routine
recommended polling time: 	 ( 134) minutes.
SCT capabilities: 	       (0x003d)	SCT Status supported.
					SCT Error Recovery Control supported.
					SCT Feature Control supported.
					SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAGS    VALUE WORST THRESH FAIL RAW_VALUE
  1 Raw_Read_Error_Rate     PO-R--   100   100   016    -    0
  2 Throughput_Performance  P-S---   141   141   054    -    74
  3 Spin_Up_Time            POS---   122   122   024    -    186 (Average 188)
  4 Start_Stop_Count        -O--C-   100   100   000    -    179
  5 Reallocated_Sector_Ct   PO--CK   100   100   005    -    0
  7 Seek_Error_Rate         PO-R--   100   100   067    -    0
  8 Seek_Time_Performance   P-S---   113   113   020    -    35
  9 Power_On_Hours          -O--C-   100   100   000    -    709
 10 Spin_Retry_Count        PO--C-   100   100   060    -    0
 12 Power_Cycle_Count       -O--CK   100   100   000    -    179
192 Power-Off_Retract_Count -O--CK   100   100   000    -    197
193 Load_Cycle_Count        -O--C-   100   100   000    -    197
194 Temperature_Celsius     -O----   230   230   000    -    26 (Min/Max 12/39)
196 Reallocated_Event_Count -O--CK   100   100   000    -    0
197 Current_Pending_Sector  -O---K   100   100   000    -    0
198 Offline_Uncorrectable   ---R--   100   100   000    -    0
199 UDMA_CRC_Error_Count    -O-R--   200   200   000    -    0
                            ||||||_ K auto-keep
                            |||||__ C event count
                            ||||___ R error rate
                            |||____ S speed/performance
                            ||_____ O updated online
                            |______ P prefailure warning

General Purpose Log Directory Version 1
SMART           Log Directory Version 1 [multi-sector log support]
GP/S  Log at address 0x00 has    1 sectors [Log Directory]
SMART Log at address 0x01 has    1 sectors [Summary SMART error log]
GP    Log at address 0x03 has    1 sectors [Ext. Comprehensive SMART error log]
GP    Log at address 0x04 has    7 sectors [Device Statistics]
SMART Log at address 0x06 has    1 sectors [SMART self-test log]
GP    Log at address 0x07 has    1 sectors [Extended self-test log]
GP    Log at address 0x08 has    2 sectors [Power Conditions]
SMART Log at address 0x09 has    1 sectors [Selective self-test log]
GP    Log at address 0x10 has    1 sectors [NCQ Command Error]
GP    Log at address 0x11 has    1 sectors [SATA Phy Event Counters]
GP    Log at address 0x20 has    1 sectors [Streaming performance log]
GP    Log at address 0x21 has    1 sectors [Write stream error log]
GP    Log at address 0x22 has    1 sectors [Read stream error log]
GP/S  Log at address 0x80 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x81 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x82 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x83 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x84 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x85 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x86 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x87 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x88 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x89 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x90 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x91 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x92 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x93 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x94 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x95 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x96 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x97 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x98 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x99 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0xe0 has    1 sectors [SCT Command/Status]
GP/S  Log at address 0xe1 has    1 sectors [SCT Data Transfer]

SMART Extended Comprehensive Error Log Version: 1 (1 sectors)
No Errors Logged

SMART Extended Self-test Log Version: 1 (1 sectors)
No self-tests have been logged.  [To run self-tests, use: smartctl -t]

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

SCT Status Version:                  3
SCT Version (vendor specific):       256 (0x0100)
SCT Support Level:                   1
Device State:                        Active (0)
Current Temperature:                    26 Celsius
Power Cycle Min/Max Temperature:     13/27 Celsius
Lifetime    Min/Max Temperature:     12/39 Celsius
Under/Over Temperature Limit Count:   0/0
SCT Temperature History Version:     2
Temperature Sampling Period:         1 minute
Temperature Logging Interval:        1 minute
Min/Max recommended Temperature:      0/60 Celsius
Min/Max Temperature Limit:           -40/70 Celsius
Temperature History Size (Index):    128 (20)

Index    Estimated Time   Temperature Celsius
  21    2015-01-27 19:50    24  *****
 ...    ..(  3 skipped).    ..  *****
  25    2015-01-27 19:54    24  *****
  26    2015-01-27 19:55    25  ******
 ...    ..( 19 skipped).    ..  ******
  46    2015-01-27 20:15    25  ******
  47    2015-01-27 20:16    24  *****
  48    2015-01-27 20:17    24  *****
  49    2015-01-27 20:18    25  ******
 ...    ..(  2 skipped).    ..  ******
  52    2015-01-27 20:21    25  ******
  53    2015-01-27 20:22    24  *****
  54    2015-01-27 20:23    24  *****
  55    2015-01-27 20:24    25  ******
  56    2015-01-27 20:25    24  *****
  57    2015-01-27 20:26    25  ******
 ...    ..( 20 skipped).    ..  ******
  78    2015-01-27 20:47    25  ******
  79    2015-01-27 20:48    26  *******
  80    2015-01-27 20:49    26  *******
  81    2015-01-27 20:50    25  ******
 ...    ..( 12 skipped).    ..  ******
  94    2015-01-27 21:03    25  ******
  95    2015-01-27 21:04     ?  -
  96    2015-01-27 21:05    14  -
  97    2015-01-27 21:06    15  -
  98    2015-01-27 21:07    16  -
  99    2015-01-27 21:08    17  -
 100    2015-01-27 21:09    17  -
 101    2015-01-27 21:10    18  -
 102    2015-01-27 21:11    18  -
 103    2015-01-27 21:12    19  -
 104    2015-01-27 21:13    19  -
 105    2015-01-27 21:14    19  -
 106    2015-01-27 21:15    20  *
 107    2015-01-27 21:16    20  *
 108    2015-01-27 21:17    21  **
 109    2015-01-27 21:18    21  **
 110    2015-01-27 21:19    21  **
 111    2015-01-27 21:20    22  ***
 112    2015-01-27 21:21    22  ***
 113    2015-01-27 21:22    22  ***
 114    2015-01-27 21:23    23  ****
 ...    ..(  3 skipped).    ..  ****
 118    2015-01-27 21:27    23  ****
 119    2015-01-27 21:28    24  *****
 120    2015-01-27 21:29    24  *****
 121    2015-01-27 21:30    25  ******
 122    2015-01-27 21:31    25  ******
 123    2015-01-27 21:32    24  *****
 124    2015-01-27 21:33    25  ******
 ...    ..(  6 skipped).    ..  ******
   3    2015-01-27 21:40    25  ******
   4    2015-01-27 21:41    26  *******
   5    2015-01-27 21:42    25  ******
   6    2015-01-27 21:43    26  *******
 ...    ..(  9 skipped).    ..  *******
  16    2015-01-27 21:53    26  *******
  17    2015-01-27 21:54    27  ********
  18    2015-01-27 21:55    26  *******
  19    2015-01-27 21:56    26  *******
  20    2015-01-27 21:57    26  *******

SCT Error Recovery Control:
           Read:     70 (7.0 seconds)
          Write:     70 (7.0 seconds)

SATA Phy Event Counters (GP Log 0x11)
ID      Size     Value  Description
0x0001  2            0  Command failed due to ICRC error
0x0002  2            0  R_ERR response for data FIS
0x0003  2            0  R_ERR response for device-to-host data FIS
0x0004  2            0  R_ERR response for host-to-device data FIS
0x0005  2            0  R_ERR response for non-data FIS
0x0006  2            0  R_ERR response for device-to-host non-data FIS
0x0007  2            0  R_ERR response for host-to-device non-data FIS
0x0009  2            0  Transition from drive PhyRdy to drive PhyNRdy
0x000a  2            1  Device-to-host register FISes sent due to a COMRESET
0x000b  2            0  CRC errors within host-to-device FIS
0x000d  2            0  Non-CRC errors within host-to-device FIS

[-- Attachment #4: SATA02-W1 --]
[-- Type: application/octet-stream, Size: 20296 bytes --]


--------------------------------------------------------------------------------
lshw info:
--------------------------------------------------------------------------------

     *-ide:1
	...
        *-disk:0
	...
           *-volume
		...
        *-disk:1
             description: ATA Disk
             product: WDC WD10EFRX-68P
             vendor: Western Digital
             physical id: 1
             bus info: scsi@1:0.0.0
             logical name: /dev/sdc
             version: 01.0
             serial: WD-SERIAL01
             size: 931GiB (1TB)
             configuration: ansiversion=5 sectorsize=4096 signature=0005f4ac

--------------------------------------------------------------------------------
hdparm -I /dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL01
--------------------------------------------------------------------------------

/dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL01:

ATA device, with non-removable media
	Model Number:       WDC WD10EFRX-68PJCN0                    
	Serial Number:      WD-SERIAL01
	Firmware Revision:  01.01A01
	Transport:          Serial, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0
Standards:
	Supported: 9 8 7 6 5 
	Likely used: 9
Configuration:
	Logical		max	current
	cylinders	16383	16383
	heads		16	16
	sectors/track	63	63
	--
	CHS current addressable sectors:   16514064
	LBA    user addressable sectors:  268435455
	LBA48  user addressable sectors: 1953525168
	Logical  Sector size:                   512 bytes
	Physical Sector size:                  4096 bytes
	Logical Sector-0 offset:                  0 bytes
	device size with M = 1024*1024:      953869 MBytes
	device size with M = 1000*1000:     1000204 MBytes (1000 GB)
	cache/buffer size  = unknown
	Nominal Media Rotation Rate: 5400
Capabilities:
	LBA, IORDY(can be disabled)
	Queue depth: 32
	Standby timer values: spec'd by Standard, with device specific minimum
	R/W multiple sector transfer: Max = 16	Current = 1
	DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 udma5 *udma6 
	     Cycle time: min=120ns recommended=120ns
	PIO: pio0 pio1 pio2 pio3 pio4 
	     Cycle time: no flow control=120ns  IORDY flow control=120ns
Commands/features:
	Enabled	Supported:
	   *	SMART feature set
	    	Security Mode feature set
	   *	Power Management feature set
	   *	Write cache
	   *	Look-ahead
	   *	Host Protected Area feature set
	   *	WRITE_BUFFER command
	   *	READ_BUFFER command
	   *	NOP cmd
	   *	DOWNLOAD_MICROCODE
	    	Power-Up In Standby feature set
	   *	SET_FEATURES required to spinup after power up
	    	SET_MAX security extension
	   *	48-bit Address feature set
	   *	Device Configuration Overlay feature set
	   *	Mandatory FLUSH_CACHE
	   *	FLUSH_CACHE_EXT
	   *	SMART error logging
	   *	SMART self-test
	    	Media Card Pass-Through
	   *	General Purpose Logging feature set
	   *	64-bit World wide name
	   *	URG for READ_STREAM[_DMA]_EXT
	   *	URG for WRITE_STREAM[_DMA]_EXT
	   *	IDLE_IMMEDIATE with UNLOAD
	   *	WRITE_UNCORRECTABLE_EXT command
	   *	{READ,WRITE}_DMA_EXT_GPL commands
	   *	Segmented DOWNLOAD_MICROCODE
	   *	Gen1 signaling speed (1.5Gb/s)
	   *	Gen2 signaling speed (3.0Gb/s)
	   *	Gen3 signaling speed (6.0Gb/s)
	   *	Native Command Queueing (NCQ)
	   *	Host-initiated interface power management
	   *	Phy event counters
	   *	Idle-Unload when NCQ is active
	   *	NCQ priority information
	   *	unknown 76[15]
	    	DMA Setup Auto-Activate optimization
	    	Device-initiated interface power management
	   *	Software settings preservation
	   *	SMART Command Transport (SCT) feature set
	   *	SCT LBA Segment Access (AC2)
	   *	SCT Error Recovery Control (AC3)
	   *	SCT Features Control (AC4)
	   *	SCT Data Tables (AC5)
	    	unknown 206[12] (vendor specific)
	    	unknown 206[13] (vendor specific)
Security: 
	Master password revision code = 65534
		supported
	not	enabled
	not	locked
	not	frozen
	not	expired: security count
		supported: enhanced erase
	144min for SECURITY ERASE UNIT. 144min for ENHANCED SECURITY ERASE UNIT. 
Logical Unit WWN Device Identifier: 50014ee25f03f57d
	NAA		: 5
	IEEE OUI	: 0014ee
	
Checksum: correct

--------------------------------------------------------------------------------
smartctl --xall /dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL01
--------------------------------------------------------------------------------

smartctl 5.41 2011-06-09 r3365 [x86_64-linux-3.2.0-4-amd64] (local build)
Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net

=== START OF INFORMATION SECTION ===
Device Model:     WDC WD10EFRX-68PJCN0
Serial Number:    WD-SERIAL01
LU WWN Device Id: 5 0014ee 25f03f57d
Firmware Version: 01.01A01
User Capacity:    1,000,204,886,016 bytes [1.00 TB]
Sector Sizes:     512 bytes logical, 4096 bytes physical
Device is:        Not in smartctl database [for details use: -P showall]
ATA Version is:   9
ATA Standard is:  Exact ATA specification draft version not indicated
Local Time is:    Tue Jan 27 22:21:09 2015 WET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x00)	Offline data collection activity
					was never started.
					Auto Offline Data Collection: Disabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		(13500) seconds.
Offline data collection
capabilities: 			 (0x7b) SMART execute Offline immediate.
					Auto Offline data collection on/off support.
					Suspend Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					Conveyance Self-test supported.
					Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x01)	Error logging supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   2) minutes.
Extended self-test routine
recommended polling time: 	 ( 154) minutes.
Conveyance self-test routine
recommended polling time: 	 (   5) minutes.
SCT capabilities: 	       (0x303d)	SCT Status supported.
					SCT Error Recovery Control supported.
					SCT Feature Control supported.
					SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAGS    VALUE WORST THRESH FAIL RAW_VALUE
  1 Raw_Read_Error_Rate     POSR-K   200   200   051    -    0
  3 Spin_Up_Time            POS--K   130   128   021    -    4491
  4 Start_Stop_Count        -O--CK   100   100   000    -    182
  5 Reallocated_Sector_Ct   PO--CK   200   200   140    -    0
  7 Seek_Error_Rate         -OSR-K   200   200   000    -    0
  9 Power_On_Hours          -O--CK   100   100   000    -    683
 10 Spin_Retry_Count        -O--CK   100   100   000    -    0
 11 Calibration_Retry_Count -O--CK   100   100   000    -    0
 12 Power_Cycle_Count       -O--CK   100   100   000    -    182
192 Power-Off_Retract_Count -O--CK   200   200   000    -    25
193 Load_Cycle_Count        -O--CK   200   200   000    -    278
194 Temperature_Celsius     -O---K   120   104   000    -    23
196 Reallocated_Event_Count -O--CK   200   200   000    -    0
197 Current_Pending_Sector  -O--CK   200   200   000    -    0
198 Offline_Uncorrectable   ----CK   100   253   000    -    0
199 UDMA_CRC_Error_Count    -O--CK   200   199   000    -    2
200 Multi_Zone_Error_Rate   ---R--   100   253   000    -    0
                            ||||||_ K auto-keep
                            |||||__ C event count
                            ||||___ R error rate
                            |||____ S speed/performance
                            ||_____ O updated online
                            |______ P prefailure warning

General Purpose Log Directory Version 1
SMART           Log Directory Version 1 [multi-sector log support]
GP/S  Log at address 0x00 has    1 sectors [Log Directory]
SMART Log at address 0x01 has    1 sectors [Summary SMART error log]
SMART Log at address 0x02 has    5 sectors [Comprehensive SMART error log]
GP    Log at address 0x03 has    6 sectors [Ext. Comprehensive SMART error log]
SMART Log at address 0x06 has    1 sectors [SMART self-test log]
GP    Log at address 0x07 has    1 sectors [Extended self-test log]
SMART Log at address 0x09 has    1 sectors [Selective self-test log]
GP    Log at address 0x10 has    1 sectors [NCQ Command Error]
GP    Log at address 0x11 has    1 sectors [SATA Phy Event Counters]
GP    Log at address 0x21 has    1 sectors [Write stream error log]
GP    Log at address 0x22 has    1 sectors [Read stream error log]
GP/S  Log at address 0x80 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x81 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x82 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x83 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x84 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x85 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x86 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x87 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x88 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x89 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x90 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x91 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x92 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x93 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x94 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x95 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x96 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x97 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x98 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x99 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0xa0 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa1 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa2 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa3 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa4 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa5 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa6 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa7 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa8 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xa9 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xaa has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xab has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xac has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xad has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xae has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xaf has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb0 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb1 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb2 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb3 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb4 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb5 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb6 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb7 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xbd has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xc0 has    1 sectors [Device vendor specific log]
GP    Log at address 0xc1 has   93 sectors [Device vendor specific log]
GP/S  Log at address 0xe0 has    1 sectors [SCT Command/Status]
GP/S  Log at address 0xe1 has    1 sectors [SCT Data Transfer]

SMART Extended Comprehensive Error Log Version: 1 (6 sectors)
No Errors Logged

SMART Extended Self-test Log Version: 1 (1 sectors)
No self-tests have been logged.  [To run self-tests, use: smartctl -t]

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

SCT Status Version:                  3
SCT Version (vendor specific):       258 (0x0102)
SCT Support Level:                   1
Device State:                        Active (0)
Current Temperature:                    23 Celsius
Power Cycle Min/Max Temperature:     12/23 Celsius
Lifetime    Min/Max Temperature:     11/40 Celsius
Under/Over Temperature Limit Count:   0/0
SCT Temperature History Version:     2
Temperature Sampling Period:         1 minute
Temperature Logging Interval:        1 minute
Min/Max recommended Temperature:      0/60 Celsius
Min/Max Temperature Limit:           -41/85 Celsius
Temperature History Size (Index):    478 (449)

Index    Estimated Time   Temperature Celsius
 450    2015-01-27 14:24    24  *****
 451    2015-01-27 14:25     ?  -
 452    2015-01-27 14:26    25  ******
 453    2015-01-27 14:27    24  *****
 ...    ..(  6 skipped).    ..  *****
 460    2015-01-27 14:34    24  *****
 461    2015-01-27 14:35     ?  -
 462    2015-01-27 14:36    12  -
 463    2015-01-27 14:37    12  -
 464    2015-01-27 14:38    13  -
 465    2015-01-27 14:39    14  -
 ...    ..(  2 skipped).    ..  -
 468    2015-01-27 14:42    14  -
 469    2015-01-27 14:43    15  -
 470    2015-01-27 14:44    15  -
 471    2015-01-27 14:45    16  -
 472    2015-01-27 14:46    16  -
 473    2015-01-27 14:47    17  -
 ...    ..(  3 skipped).    ..  -
 477    2015-01-27 14:51    17  -
   0    2015-01-27 14:52    18  -
 ...    ..(  5 skipped).    ..  -
   6    2015-01-27 14:58    18  -
   7    2015-01-27 14:59    19  -
 ...    ..(  2 skipped).    ..  -
  10    2015-01-27 15:02    19  -
  11    2015-01-27 15:03    20  *
 ...    ..(  2 skipped).    ..  *
  14    2015-01-27 15:06    20  *
  15    2015-01-27 15:07    21  **
 ...    ..( 14 skipped).    ..  **
  30    2015-01-27 15:22    21  **
  31    2015-01-27 15:23    22  ***
  32    2015-01-27 15:24    22  ***
  33    2015-01-27 15:25     ?  -
  34    2015-01-27 15:26    12  -
  35    2015-01-27 15:27    12  -
  36    2015-01-27 15:28    13  -
  37    2015-01-27 15:29    14  -
 ...    ..(  2 skipped).    ..  -
  40    2015-01-27 15:32    14  -
  41    2015-01-27 15:33    15  -
  42    2015-01-27 15:34    15  -
  43    2015-01-27 15:35    16  -
  44    2015-01-27 15:36    16  -
  45    2015-01-27 15:37    17  -
 ...    ..(  3 skipped).    ..  -
  49    2015-01-27 15:41    17  -
  50    2015-01-27 15:42    18  -
 ...    ..(  4 skipped).    ..  -
  55    2015-01-27 15:47    18  -
  56    2015-01-27 15:48    19  -
  57    2015-01-27 15:49    19  -
  58    2015-01-27 15:50    19  -
  59    2015-01-27 15:51    20  *
 ...    ..(  2 skipped).    ..  *
  62    2015-01-27 15:54    20  *
  63    2015-01-27 15:55    21  **
 ...    ..(  8 skipped).    ..  **
  72    2015-01-27 16:04    21  **
  73    2015-01-27 16:05    22  ***
 ...    ..(  5 skipped).    ..  ***
  79    2015-01-27 16:11    22  ***
  80    2015-01-27 16:12    23  ****
 ...    ..( 78 skipped).    ..  ****
 159    2015-01-27 17:31    23  ****
 160    2015-01-27 17:32    22  ***
 ...    ..( 74 skipped).    ..  ***
 235    2015-01-27 18:47    22  ***
 236    2015-01-27 18:48     ?  -
 237    2015-01-27 18:49    12  -
 238    2015-01-27 18:50    13  -
 239    2015-01-27 18:51    13  -
 240    2015-01-27 18:52    14  -
 241    2015-01-27 18:53    14  -
 242    2015-01-27 18:54    15  -
 243    2015-01-27 18:55    15  -
 244    2015-01-27 18:56    15  -
 245    2015-01-27 18:57    16  -
 246    2015-01-27 18:58    16  -
 247    2015-01-27 18:59    17  -
 ...    ..(  4 skipped).    ..  -
 252    2015-01-27 19:04    17  -
 253    2015-01-27 19:05    18  -
 ...    ..(  4 skipped).    ..  -
 258    2015-01-27 19:10    18  -
 259    2015-01-27 19:11    19  -
 260    2015-01-27 19:12    20  *
 261    2015-01-27 19:13    20  *
 262    2015-01-27 19:14    21  **
 ...    ..( 39 skipped).    ..  **
 302    2015-01-27 19:54    21  **
 303    2015-01-27 19:55    22  ***
 ...    ..( 34 skipped).    ..  ***
 338    2015-01-27 20:30    22  ***
 339    2015-01-27 20:31    23  ****
 ...    ..( 12 skipped).    ..  ****
 352    2015-01-27 20:44    23  ****
 353    2015-01-27 20:45    22  ***
 ...    ..( 18 skipped).    ..  ***
 372    2015-01-27 21:04    22  ***
 373    2015-01-27 21:05     ?  -
 374    2015-01-27 21:06    12  -
 375    2015-01-27 21:07    13  -
 376    2015-01-27 21:08    14  -
 377    2015-01-27 21:09    14  -
 378    2015-01-27 21:10    14  -
 379    2015-01-27 21:11    15  -
 380    2015-01-27 21:12    15  -
 381    2015-01-27 21:13    15  -
 382    2015-01-27 21:14    16  -
 383    2015-01-27 21:15    16  -
 384    2015-01-27 21:16    17  -
 ...    ..(  3 skipped).    ..  -
 388    2015-01-27 21:20    17  -
 389    2015-01-27 21:21    18  -
 ...    ..(  4 skipped).    ..  -
 394    2015-01-27 21:26    18  -
 395    2015-01-27 21:27    19  -
 ...    ..(  2 skipped).    ..  -
 398    2015-01-27 21:30    19  -
 399    2015-01-27 21:31    20  *
 400    2015-01-27 21:32    20  *
 401    2015-01-27 21:33    20  *
 402    2015-01-27 21:34    21  **
 403    2015-01-27 21:35    21  **
 404    2015-01-27 21:36    22  ***
 ...    ..( 14 skipped).    ..  ***
 419    2015-01-27 21:51    22  ***
 420    2015-01-27 21:52    23  ****
 ...    ..( 28 skipped).    ..  ****
 449    2015-01-27 22:21    23  ****

SCT Error Recovery Control:
           Read:     70 (7.0 seconds)
          Write:     70 (7.0 seconds)

SATA Phy Event Counters (GP Log 0x11)
ID      Size     Value  Description
0x0001  2            0  Command failed due to ICRC error
0x0002  2            3  R_ERR response for data FIS
0x0003  2            3  R_ERR response for device-to-host data FIS
0x0004  2            0  R_ERR response for host-to-device data FIS
0x0005  2            6  R_ERR response for non-data FIS
0x0006  2            6  R_ERR response for device-to-host non-data FIS
0x0007  2            0  R_ERR response for host-to-device non-data FIS
0x0008  2            0  Device-to-host non-data FIS retries
0x0009  2            1  Transition from drive PhyRdy to drive PhyNRdy
0x000a  2            1  Device-to-host register FISes sent due to a COMRESET
0x000b  2            0  CRC errors within host-to-device FIS
0x000f  2            0  R_ERR response for host-to-device data FIS, CRC
0x0012  2            0  R_ERR response for host-to-device non-data FIS, CRC
0x8000  4         4665  Vendor specific


[-- Attachment #5: SATA03-T2 --]
[-- Type: application/octet-stream, Size: 16603 bytes --]


--------------------------------------------------------------------------------
lshw info:
--------------------------------------------------------------------------------

     *-ide:2
          description: IDE interface
          product: MCP51 Serial ATA Controller
          vendor: NVIDIA Corporation
          physical id: f
          bus info: pci@0000:00:0f.0
          logical name: scsi2
          logical name: scsi3
          version: a1
          width: 32 bits
          clock: 66MHz
          capabilities: ide pm msi ht bus_master cap_list emulated
          configuration: driver=sata_nv latency=0 maxlatency=1 mingnt=3
          resources: irq:20 ioport:9e0(size=8) ioport:be0(size=4) ioport:960(size=8) ioport:b60(size=4) ioport:f300(size=16) memory:fe02c000-fe02cfff
        *-disk:0
             description: ATA Disk
             product: TOSHIBA DT01ACA1
             vendor: Toshiba
             physical id: 0
             bus info: scsi@2:0.0.0
             logical name: /dev/sdb
             version: MS2O
             size: 931GiB (1TB)
             capabilities: partitioned partitioned:dos
             configuration: ansiversion=5 sectorsize=4096 signature=000b6d73
           *-volume
                description: Linux raid autodetect partition
                physical id: 1
                bus info: scsi@2:0.0.0,1
                logical name: /dev/sdb1
                capacity: 931GiB
                capabilities: primary bootable multi

--------------------------------------------------------------------------------
hdparm -I /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL02
--------------------------------------------------------------------------------

/dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL02:

ATA device, with non-removable media
	Model Number:       TOSHIBA DT01ACA100                      
	Serial Number:      SERIAL02
	Firmware Revision:  MS2OA750
	Transport:          Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0; Revision: ATA8-AST T13 Project D1697 Revision 0b
Standards:
	Used: unknown (minor revision code 0x0029) 
	Supported: 8 7 6 5 
	Likely used: 8
Configuration:
	Logical		max	current
	cylinders	16383	16383
	heads		16	16
	sectors/track	63	63
	--
	CHS current addressable sectors:   16514064
	LBA    user addressable sectors:  268435455
	LBA48  user addressable sectors: 1953525168
	Logical  Sector size:                   512 bytes
	Physical Sector size:                  4096 bytes
	Logical Sector-0 offset:                  0 bytes
	device size with M = 1024*1024:      953869 MBytes
	device size with M = 1000*1000:     1000204 MBytes (1000 GB)
	cache/buffer size  = 23652 KBytes (type=DualPortCache)
	Form Factor: 3.5 inch
	Nominal Media Rotation Rate: 7200
Capabilities:
	LBA, IORDY(can be disabled)
	Queue depth: 32
	Standby timer values: spec'd by Standard, no device specific minimum
	R/W multiple sector transfer: Max = 16	Current = 1
	Advanced power management level: disabled
	DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 udma5 *udma6 
	     Cycle time: min=120ns recommended=120ns
	PIO: pio0 pio1 pio2 pio3 pio4 
	     Cycle time: no flow control=120ns  IORDY flow control=120ns
Commands/features:
	Enabled	Supported:
	   *	SMART feature set
	    	Security Mode feature set
	   *	Power Management feature set
	   *	Write cache
	   *	Look-ahead
	   *	Host Protected Area feature set
	   *	WRITE_BUFFER command
	   *	READ_BUFFER command
	   *	NOP cmd
	   *	DOWNLOAD_MICROCODE
	    	Advanced Power Management feature set
	    	Power-Up In Standby feature set
	   *	SET_FEATURES required to spinup after power up
	    	SET_MAX security extension
	   *	48-bit Address feature set
	   *	Device Configuration Overlay feature set
	   *	Mandatory FLUSH_CACHE
	   *	FLUSH_CACHE_EXT
	   *	SMART error logging
	   *	SMART self-test
	    	Media Card Pass-Through
	   *	General Purpose Logging feature set
	   *	WRITE_{DMA|MULTIPLE}_FUA_EXT
	   *	64-bit World wide name
	   *	URG for READ_STREAM[_DMA]_EXT
	   *	URG for WRITE_STREAM[_DMA]_EXT
	   *	WRITE_UNCORRECTABLE_EXT command
	   *	{READ,WRITE}_DMA_EXT_GPL commands
	   *	Segmented DOWNLOAD_MICROCODE
	   *	unknown 119[7]
	   *	Gen1 signaling speed (1.5Gb/s)
	   *	Gen2 signaling speed (3.0Gb/s)
	   *	Gen3 signaling speed (6.0Gb/s)
	   *	Native Command Queueing (NCQ)
	   *	Host-initiated interface power management
	   *	Phy event counters
	   *	NCQ priority information
	    	Non-Zero buffer offsets in DMA Setup FIS
	    	DMA Setup Auto-Activate optimization
	    	Device-initiated interface power management
	    	In-order data delivery
	   *	Software settings preservation
	   *	SMART Command Transport (SCT) feature set
	   *	SCT LBA Segment Access (AC2)
	   *	SCT Error Recovery Control (AC3)
	   *	SCT Features Control (AC4)
	   *	SCT Data Tables (AC5)
Security: 
	Master password revision code = 65534
		supported
	not	enabled
	not	locked
	not	frozen
	not	expired: security count
	not	supported: enhanced erase
	168min for SECURITY ERASE UNIT. 
Logical Unit WWN Device Identifier: 5000039ff7cb7f1b
	NAA		: 5
	IEEE OUI	: 000039
	
Checksum: correct

--------------------------------------------------------------------------------
 smartctl --xall /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_SERIAL02
--------------------------------------------------------------------------------

smartctl 5.41 2011-06-09 r3365 [x86_64-linux-3.2.0-4-amd64] (local build)
Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net

=== START OF INFORMATION SECTION ===
Device Model:     TOSHIBA DT01ACA100
Serial Number:    SERIAL02
LU WWN Device Id: 5 000039 ff7cb7f1b
Firmware Version: MS2OA750
User Capacity:    1,000,204,886,016 bytes [1.00 TB]
Sector Sizes:     512 bytes logical, 4096 bytes physical
Device is:        Not in smartctl database [for details use: -P showall]
ATA Version is:   8
ATA Standard is:  ATA-8-ACS revision 4
Local Time is:    Tue Jan 27 22:12:29 2015 WET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x80)	Offline data collection activity
					was never started.
					Auto Offline Data Collection: Enabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		( 7556) seconds.
Offline data collection
capabilities: 			 (0x5b) SMART execute Offline immediate.
					Auto Offline data collection on/off support.
					Suspend Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					No Conveyance Self-test supported.
					Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x01)	Error logging supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   1) minutes.
Extended self-test routine
recommended polling time: 	 ( 126) minutes.
SCT capabilities: 	       (0x003d)	SCT Status supported.
					SCT Error Recovery Control supported.
					SCT Feature Control supported.
					SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAGS    VALUE WORST THRESH FAIL RAW_VALUE
  1 Raw_Read_Error_Rate     PO-R--   100   100   016    -    65536
  2 Throughput_Performance  P-S---   142   142   054    -    71
  3 Spin_Up_Time            POS---   123   123   024    -    185 (Average 186)
  4 Start_Stop_Count        -O--C-   100   100   000    -    192
  5 Reallocated_Sector_Ct   PO--CK   100   100   005    -    0
  7 Seek_Error_Rate         PO-R--   100   100   067    -    0
  8 Seek_Time_Performance   P-S---   115   115   020    -    34
  9 Power_On_Hours          -O--C-   100   100   000    -    958
 10 Spin_Retry_Count        PO--C-   100   100   060    -    0
 12 Power_Cycle_Count       -O--CK   100   100   000    -    192
192 Power-Off_Retract_Count -O--CK   100   100   000    -    210
193 Load_Cycle_Count        -O--C-   100   100   000    -    210
194 Temperature_Celsius     -O----   206   206   000    -    29 (Min/Max 12/47)
196 Reallocated_Event_Count -O--CK   100   100   000    -    0
197 Current_Pending_Sector  -O---K   100   100   000    -    0
198 Offline_Uncorrectable   ---R--   100   100   000    -    0
199 UDMA_CRC_Error_Count    -O-R--   200   200   000    -    0
                            ||||||_ K auto-keep
                            |||||__ C event count
                            ||||___ R error rate
                            |||____ S speed/performance
                            ||_____ O updated online
                            |______ P prefailure warning

General Purpose Log Directory Version 1
SMART           Log Directory Version 1 [multi-sector log support]
GP/S  Log at address 0x00 has    1 sectors [Log Directory]
SMART Log at address 0x01 has    1 sectors [Summary SMART error log]
GP    Log at address 0x03 has    1 sectors [Ext. Comprehensive SMART error log]
GP    Log at address 0x04 has    7 sectors [Device Statistics]
SMART Log at address 0x06 has    1 sectors [SMART self-test log]
GP    Log at address 0x07 has    1 sectors [Extended self-test log]
GP    Log at address 0x08 has    2 sectors [Power Conditions]
SMART Log at address 0x09 has    1 sectors [Selective self-test log]
GP    Log at address 0x10 has    1 sectors [NCQ Command Error]
GP    Log at address 0x11 has    1 sectors [SATA Phy Event Counters]
GP    Log at address 0x20 has    1 sectors [Streaming performance log]
GP    Log at address 0x21 has    1 sectors [Write stream error log]
GP    Log at address 0x22 has    1 sectors [Read stream error log]
GP/S  Log at address 0x80 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x81 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x82 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x83 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x84 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x85 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x86 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x87 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x88 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x89 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x90 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x91 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x92 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x93 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x94 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x95 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x96 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x97 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x98 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x99 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0xe0 has    1 sectors [SCT Command/Status]
GP/S  Log at address 0xe1 has    1 sectors [SCT Data Transfer]

SMART Extended Comprehensive Error Log Version: 1 (1 sectors)
No Errors Logged

SMART Extended Self-test Log Version: 1 (1 sectors)
No self-tests have been logged.  [To run self-tests, use: smartctl -t]

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

SCT Status Version:                  3
SCT Version (vendor specific):       256 (0x0100)
SCT Support Level:                   1
Device State:                        Active (0)
Current Temperature:                    29 Celsius
Power Cycle Min/Max Temperature:     13/29 Celsius
Lifetime    Min/Max Temperature:     12/47 Celsius
Under/Over Temperature Limit Count:   0/0
SCT Temperature History Version:     2
Temperature Sampling Period:         1 minute
Temperature Logging Interval:        1 minute
Min/Max recommended Temperature:      0/60 Celsius
Min/Max Temperature Limit:           -40/70 Celsius
Temperature History Size (Index):    128 (112)

Index    Estimated Time   Temperature Celsius
 113    2015-01-27 20:05    27  ********
 ...    ..(  4 skipped).    ..  ********
 118    2015-01-27 20:10    27  ********
 119    2015-01-27 20:11    28  *********
 120    2015-01-27 20:12    27  ********
 ...    ..( 25 skipped).    ..  ********
  18    2015-01-27 20:38    27  ********
  19    2015-01-27 20:39    28  *********
 ...    ..(  6 skipped).    ..  *********
  26    2015-01-27 20:46    28  *********
  27    2015-01-27 20:47    29  **********
  28    2015-01-27 20:48    28  *********
 ...    ..( 11 skipped).    ..  *********
  40    2015-01-27 21:00    28  *********
  41    2015-01-27 21:01    27  ********
  42    2015-01-27 21:02    27  ********
  43    2015-01-27 21:03     ?  -
  44    2015-01-27 21:04    14  -
  45    2015-01-27 21:05    15  -
  46    2015-01-27 21:06    16  -
  47    2015-01-27 21:07    17  -
  48    2015-01-27 21:08    17  -
  49    2015-01-27 21:09    18  -
  50    2015-01-27 21:10    18  -
  51    2015-01-27 21:11    19  -
  52    2015-01-27 21:12    19  -
  53    2015-01-27 21:13    20  *
  54    2015-01-27 21:14    20  *
  55    2015-01-27 21:15    21  **
  56    2015-01-27 21:16    21  **
  57    2015-01-27 21:17    22  ***
  58    2015-01-27 21:18    22  ***
  59    2015-01-27 21:19    23  ****
  60    2015-01-27 21:20    23  ****
  61    2015-01-27 21:21    24  *****
  62    2015-01-27 21:22    24  *****
  63    2015-01-27 21:23    25  ******
 ...    ..(  3 skipped).    ..  ******
  67    2015-01-27 21:27    25  ******
  68    2015-01-27 21:28    26  *******
 ...    ..(  3 skipped).    ..  *******
  72    2015-01-27 21:32    26  *******
  73    2015-01-27 21:33    27  ********
 ...    ..(  2 skipped).    ..  ********
  76    2015-01-27 21:36    27  ********
  77    2015-01-27 21:37    28  *********
 ...    ..( 11 skipped).    ..  *********
  89    2015-01-27 21:49    28  *********
  90    2015-01-27 21:50    29  **********
 ...    ..( 21 skipped).    ..  **********
 112    2015-01-27 22:12    29  **********

SCT Error Recovery Control:
           Read:     70 (7.0 seconds)
          Write:     70 (7.0 seconds)

SATA Phy Event Counters (GP Log 0x11)
ID      Size     Value  Description
0x0001  2            0  Command failed due to ICRC error
0x0002  2            0  R_ERR response for data FIS
0x0003  2            0  R_ERR response for device-to-host data FIS
0x0004  2            0  R_ERR response for host-to-device data FIS
0x0005  2            0  R_ERR response for non-data FIS
0x0006  2            0  R_ERR response for device-to-host non-data FIS
0x0007  2            0  R_ERR response for host-to-device non-data FIS
0x0009  2            0  Transition from drive PhyRdy to drive PhyNRdy
0x000a  2            1  Device-to-host register FISes sent due to a COMRESET
0x000b  2            0  CRC errors within host-to-device FIS
0x000d  2            0  Non-CRC errors within host-to-device FIS


[-- Attachment #6: SATA04-W2 --]
[-- Type: application/octet-stream, Size: 19842 bytes --]


--------------------------------------------------------------------------------
lshw info:
--------------------------------------------------------------------------------

     *-ide:2
	...
        *-disk:0
	...
           *-volume
		...
        *-disk:1
             description: ATA Disk
             product: WDC WD10EFRX-68P
             vendor: Western Digital
             physical id: 1
             bus info: scsi@3:0.0.0
             logical name: /dev/sdd
             version: 01.0
             serial: WD-SERIAL02
             size: 931GiB (1TB)
             configuration: ansiversion=5 sectorsize=4096 signature=0003ccee

--------------------------------------------------------------------------------
hdparm -I /dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL02
--------------------------------------------------------------------------------

/dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL02:

ATA device, with non-removable media
powers-up in standby; SET FEATURES subcmd spins-up.
	Model Number:       WDC WD10EFRX-68PJCN0                    
	Serial Number:      WD-SERIAL02
	Firmware Revision:  01.01A01
	Transport:          Serial, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6, SATA Rev 3.0
Standards:
	Supported: 9 8 7 6 5 
	Likely used: 9
Configuration:
	Logical		max	current
	cylinders	16383	16383
	heads		16	16
	sectors/track	63	63
	--
	CHS current addressable sectors:   16514064
	LBA    user addressable sectors:  268435455
	LBA48  user addressable sectors: 1953525168
	Logical  Sector size:                   512 bytes
	Physical Sector size:                  4096 bytes
	Logical Sector-0 offset:                  0 bytes
	device size with M = 1024*1024:      953869 MBytes
	device size with M = 1000*1000:     1000204 MBytes (1000 GB)
	cache/buffer size  = unknown
	Nominal Media Rotation Rate: 5400
Capabilities:
	LBA, IORDY(can be disabled)
	Queue depth: 32
	Standby timer values: spec'd by Standard, with device specific minimum
	R/W multiple sector transfer: Max = 16	Current = 0
	DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 udma5 *udma6 
	     Cycle time: min=120ns recommended=120ns
	PIO: pio0 pio1 pio2 pio3 pio4 
	     Cycle time: no flow control=120ns  IORDY flow control=120ns
Commands/features:
	Enabled	Supported:
	   *	SMART feature set
	    	Security Mode feature set
	   *	Power Management feature set
	   *	Write cache
	   *	Look-ahead
	   *	Host Protected Area feature set
	   *	WRITE_BUFFER command
	   *	READ_BUFFER command
	   *	NOP cmd
	   *	DOWNLOAD_MICROCODE
	   *	Power-Up In Standby feature set
	   *	SET_FEATURES required to spinup after power up
	    	SET_MAX security extension
	   *	48-bit Address feature set
	   *	Device Configuration Overlay feature set
	   *	Mandatory FLUSH_CACHE
	   *	FLUSH_CACHE_EXT
	   *	SMART error logging
	   *	SMART self-test
	    	Media Card Pass-Through
	   *	General Purpose Logging feature set
	   *	64-bit World wide name
	   *	URG for READ_STREAM[_DMA]_EXT
	   *	URG for WRITE_STREAM[_DMA]_EXT
	   *	IDLE_IMMEDIATE with UNLOAD
	   *	WRITE_UNCORRECTABLE_EXT command
	   *	{READ,WRITE}_DMA_EXT_GPL commands
	   *	Segmented DOWNLOAD_MICROCODE
	   *	Gen1 signaling speed (1.5Gb/s)
	   *	Gen2 signaling speed (3.0Gb/s)
	   *	Gen3 signaling speed (6.0Gb/s)
	   *	Native Command Queueing (NCQ)
	   *	Host-initiated interface power management
	   *	Phy event counters
	   *	Idle-Unload when NCQ is active
	   *	NCQ priority information
	   *	unknown 76[15]
	    	DMA Setup Auto-Activate optimization
	    	Device-initiated interface power management
	   *	Software settings preservation
	   *	SMART Command Transport (SCT) feature set
	   *	SCT LBA Segment Access (AC2)
	   *	SCT Error Recovery Control (AC3)
	   *	SCT Features Control (AC4)
	   *	SCT Data Tables (AC5)
	    	unknown 206[12] (vendor specific)
	    	unknown 206[13] (vendor specific)
Security: 
	Master password revision code = 65534
		supported
	not	enabled
	not	locked
	not	frozen
	not	expired: security count
		supported: enhanced erase
	146min for SECURITY ERASE UNIT. 146min for ENHANCED SECURITY ERASE UNIT. 
Logical Unit WWN Device Identifier: 50014ee25f75323f
	NAA		: 5
	IEEE OUI	: 0014ee
	
Checksum: correct

--------------------------------------------------------------------------------
smartctl --xall /dev/disk/by-id/ata-WDC_WD10EFRX-68PJCN0_WD-SERIAL02
--------------------------------------------------------------------------------

smartctl 5.41 2011-06-09 r3365 [x86_64-linux-3.2.0-4-amd64] (local build)
Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.net

=== START OF INFORMATION SECTION ===
Device Model:     WDC WD10EFRX-68PJCN0
Serial Number:    WD-SERIAL02
LU WWN Device Id: 5 0014ee 25f75323f
Firmware Version: 01.01A01
User Capacity:    1,000,204,886,016 bytes [1.00 TB]
Sector Sizes:     512 bytes logical, 4096 bytes physical
Device is:        Not in smartctl database [for details use: -P showall]
ATA Version is:   9
ATA Standard is:  Exact ATA specification draft version not indicated
Local Time is:    Tue Jan 27 22:23:53 2015 WET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled

=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

General SMART Values:
Offline data collection status:  (0x00)	Offline data collection activity
					was never started.
					Auto Offline Data Collection: Disabled.
Self-test execution status:      (   0)	The previous self-test routine completed
					without error or no self-test has ever 
					been run.
Total time to complete Offline 
data collection: 		(13680) seconds.
Offline data collection
capabilities: 			 (0x7b) SMART execute Offline immediate.
					Auto Offline data collection on/off support.
					Suspend Offline collection upon new
					command.
					Offline surface scan supported.
					Self-test supported.
					Conveyance Self-test supported.
					Selective Self-test supported.
SMART capabilities:            (0x0003)	Saves SMART data before entering
					power-saving mode.
					Supports SMART auto save timer.
Error logging capability:        (0x01)	Error logging supported.
					General Purpose Logging supported.
Short self-test routine 
recommended polling time: 	 (   2) minutes.
Extended self-test routine
recommended polling time: 	 ( 156) minutes.
Conveyance self-test routine
recommended polling time: 	 (   5) minutes.
SCT capabilities: 	       (0x303d)	SCT Status supported.
					SCT Error Recovery Control supported.
					SCT Feature Control supported.
					SCT Data Table supported.

SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAGS    VALUE WORST THRESH FAIL RAW_VALUE
  1 Raw_Read_Error_Rate     POSR-K   100   253   051    -    0
  3 Spin_Up_Time            POS--K   122   121   021    -    4866
  4 Start_Stop_Count        -O--CK   100   100   000    -    184
  5 Reallocated_Sector_Ct   PO--CK   200   200   140    -    0
  7 Seek_Error_Rate         -OSR-K   200   200   000    -    0
  9 Power_On_Hours          -O--CK   100   100   000    -    683
 10 Spin_Retry_Count        -O--CK   100   100   000    -    0
 11 Calibration_Retry_Count -O--CK   100   100   000    -    0
 12 Power_Cycle_Count       -O--CK   100   100   000    -    184
192 Power-Off_Retract_Count -O--CK   200   200   000    -    29
193 Load_Cycle_Count        -O--CK   200   200   000    -    271
194 Temperature_Celsius     -O---K   122   102   000    -    21
196 Reallocated_Event_Count -O--CK   200   200   000    -    0
197 Current_Pending_Sector  -O--CK   200   200   000    -    0
198 Offline_Uncorrectable   ----CK   100   253   000    -    0
199 UDMA_CRC_Error_Count    -O--CK   200   200   000    -    1
200 Multi_Zone_Error_Rate   ---R--   100   253   000    -    0
                            ||||||_ K auto-keep
                            |||||__ C event count
                            ||||___ R error rate
                            |||____ S speed/performance
                            ||_____ O updated online
                            |______ P prefailure warning

General Purpose Log Directory Version 1
SMART           Log Directory Version 1 [multi-sector log support]
GP/S  Log at address 0x00 has    1 sectors [Log Directory]
SMART Log at address 0x01 has    1 sectors [Summary SMART error log]
SMART Log at address 0x02 has    5 sectors [Comprehensive SMART error log]
GP    Log at address 0x03 has    6 sectors [Ext. Comprehensive SMART error log]
SMART Log at address 0x06 has    1 sectors [SMART self-test log]
GP    Log at address 0x07 has    1 sectors [Extended self-test log]
SMART Log at address 0x09 has    1 sectors [Selective self-test log]
GP    Log at address 0x10 has    1 sectors [NCQ Command Error]
GP    Log at address 0x11 has    1 sectors [SATA Phy Event Counters]
GP    Log at address 0x21 has    1 sectors [Write stream error log]
GP    Log at address 0x22 has    1 sectors [Read stream error log]
GP/S  Log at address 0x80 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x81 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x82 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x83 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x84 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x85 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x86 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x87 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x88 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x89 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x8f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x90 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x91 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x92 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x93 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x94 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x95 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x96 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x97 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x98 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x99 has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9a has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9b has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9c has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9d has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9e has   16 sectors [Host vendor specific log]
GP/S  Log at address 0x9f has   16 sectors [Host vendor specific log]
GP/S  Log at address 0xa0 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa1 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa2 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa3 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa4 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa5 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa6 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa7 has   16 sectors [Device vendor specific log]
GP/S  Log at address 0xa8 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xa9 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xaa has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xab has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xac has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xad has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xae has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xaf has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb0 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb1 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb2 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb3 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb4 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb5 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb6 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xb7 has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xbd has    1 sectors [Device vendor specific log]
GP/S  Log at address 0xc0 has    1 sectors [Device vendor specific log]
GP    Log at address 0xc1 has   93 sectors [Device vendor specific log]
GP/S  Log at address 0xe0 has    1 sectors [SCT Command/Status]
GP/S  Log at address 0xe1 has    1 sectors [SCT Data Transfer]

SMART Extended Comprehensive Error Log Version: 1 (6 sectors)
No Errors Logged

SMART Extended Self-test Log Version: 1 (1 sectors)
Num  Test_Description    Status                  Remaining  LifeTime(hours)  LBA_of_first_error
# 1  Short offline       Completed without error       00%       117         -

SMART Selective self-test log data structure revision number 1
 SPAN  MIN_LBA  MAX_LBA  CURRENT_TEST_STATUS
    1        0        0  Not_testing
    2        0        0  Not_testing
    3        0        0  Not_testing
    4        0        0  Not_testing
    5        0        0  Not_testing
Selective self-test flags (0x0):
  After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

SCT Status Version:                  3
SCT Version (vendor specific):       258 (0x0102)
SCT Support Level:                   1
Device State:                        Active (0)
Current Temperature:                    21 Celsius
Power Cycle Min/Max Temperature:     12/21 Celsius
Lifetime    Min/Max Temperature:     11/41 Celsius
Under/Over Temperature Limit Count:   0/0
SCT Temperature History Version:     2
Temperature Sampling Period:         1 minute
Temperature Logging Interval:        1 minute
Min/Max recommended Temperature:      0/60 Celsius
Min/Max Temperature Limit:           -41/85 Celsius
Temperature History Size (Index):    478 (422)

Index    Estimated Time   Temperature Celsius
 423    2015-01-27 14:26    22  ***
 ...    ..(  5 skipped).    ..  ***
 429    2015-01-27 14:32    22  ***
 430    2015-01-27 14:33     ?  -
 431    2015-01-27 14:34    12  -
 432    2015-01-27 14:35    12  -
 433    2015-01-27 14:36    13  -
 434    2015-01-27 14:37    14  -
 435    2015-01-27 14:38    14  -
 436    2015-01-27 14:39    14  -
 437    2015-01-27 14:40    15  -
 438    2015-01-27 14:41    15  -
 439    2015-01-27 14:42    15  -
 440    2015-01-27 14:43    16  -
 441    2015-01-27 14:44    16  -
 442    2015-01-27 14:45    17  -
 ...    ..(  5 skipped).    ..  -
 448    2015-01-27 14:51    17  -
 449    2015-01-27 14:52    18  -
 ...    ..(  7 skipped).    ..  -
 457    2015-01-27 15:00    18  -
 458    2015-01-27 15:01    19  -
 ...    ..(  5 skipped).    ..  -
 464    2015-01-27 15:07    19  -
 465    2015-01-27 15:08    20  *
 ...    ..(  8 skipped).    ..  *
 474    2015-01-27 15:17    20  *
 475    2015-01-27 15:18    21  **
 ...    ..(  3 skipped).    ..  **
   1    2015-01-27 15:22    21  **
   2    2015-01-27 15:23     ?  -
   3    2015-01-27 15:24    12  -
   4    2015-01-27 15:25    12  -
   5    2015-01-27 15:26    13  -
   6    2015-01-27 15:27    14  -
 ...    ..(  2 skipped).    ..  -
   9    2015-01-27 15:30    14  -
  10    2015-01-27 15:31    15  -
  11    2015-01-27 15:32    15  -
  12    2015-01-27 15:33    16  -
  13    2015-01-27 15:34    16  -
  14    2015-01-27 15:35    16  -
  15    2015-01-27 15:36    17  -
 ...    ..(  3 skipped).    ..  -
  19    2015-01-27 15:40    17  -
  20    2015-01-27 15:41    18  -
 ...    ..(  6 skipped).    ..  -
  27    2015-01-27 15:48    18  -
  28    2015-01-27 15:49    19  -
 ...    ..(  3 skipped).    ..  -
  32    2015-01-27 15:53    19  -
  33    2015-01-27 15:54    20  *
 ...    ..(  4 skipped).    ..  *
  38    2015-01-27 15:59    20  *
  39    2015-01-27 16:00    21  **
 ...    ..(164 skipped).    ..  **
 204    2015-01-27 18:45    21  **
 205    2015-01-27 18:46     ?  -
 206    2015-01-27 18:47    12  -
 207    2015-01-27 18:48    13  -
 208    2015-01-27 18:49    14  -
 209    2015-01-27 18:50    14  -
 210    2015-01-27 18:51    14  -
 211    2015-01-27 18:52    15  -
 212    2015-01-27 18:53    15  -
 213    2015-01-27 18:54    15  -
 214    2015-01-27 18:55    16  -
 215    2015-01-27 18:56    16  -
 216    2015-01-27 18:57    16  -
 217    2015-01-27 18:58    17  -
 ...    ..(  4 skipped).    ..  -
 222    2015-01-27 19:03    17  -
 223    2015-01-27 19:04    18  -
 ...    ..(  3 skipped).    ..  -
 227    2015-01-27 19:08    18  -
 228    2015-01-27 19:09    19  -
 ...    ..(  7 skipped).    ..  -
 236    2015-01-27 19:17    19  -
 237    2015-01-27 19:18    20  *
 ...    ..( 24 skipped).    ..  *
 262    2015-01-27 19:43    20  *
 263    2015-01-27 19:44    21  **
 ...    ..( 43 skipped).    ..  **
 307    2015-01-27 20:28    21  **
 308    2015-01-27 20:29    22  ***
 ...    ..( 25 skipped).    ..  ***
 334    2015-01-27 20:55    22  ***
 335    2015-01-27 20:56    21  **
 ...    ..(  5 skipped).    ..  **
 341    2015-01-27 21:02    21  **
 342    2015-01-27 21:03     ?  -
 343    2015-01-27 21:04    12  -
 344    2015-01-27 21:05    13  -
 345    2015-01-27 21:06    13  -
 346    2015-01-27 21:07    14  -
 347    2015-01-27 21:08    14  -
 348    2015-01-27 21:09    15  -
 349    2015-01-27 21:10    15  -
 350    2015-01-27 21:11    15  -
 351    2015-01-27 21:12    16  -
 352    2015-01-27 21:13    16  -
 353    2015-01-27 21:14    16  -
 354    2015-01-27 21:15    17  -
 ...    ..(  4 skipped).    ..  -
 359    2015-01-27 21:20    17  -
 360    2015-01-27 21:21    18  -
 ...    ..(  6 skipped).    ..  -
 367    2015-01-27 21:28    18  -
 368    2015-01-27 21:29    19  -
 ...    ..(  3 skipped).    ..  -
 372    2015-01-27 21:33    19  -
 373    2015-01-27 21:34    20  *
 374    2015-01-27 21:35    20  *
 375    2015-01-27 21:36    21  **
 ...    ..( 46 skipped).    ..  **
 422    2015-01-27 22:23    21  **

SCT Error Recovery Control:
           Read:     70 (7.0 seconds)
          Write:     70 (7.0 seconds)

SATA Phy Event Counters (GP Log 0x11)
ID      Size     Value  Description
0x0001  2            0  Command failed due to ICRC error
0x0002  2            1  R_ERR response for data FIS
0x0003  2            1  R_ERR response for device-to-host data FIS
0x0004  2            0  R_ERR response for host-to-device data FIS
0x0005  2            2  R_ERR response for non-data FIS
0x0006  2            2  R_ERR response for device-to-host non-data FIS
0x0007  2            0  R_ERR response for host-to-device non-data FIS
0x0008  2            0  Device-to-host non-data FIS retries
0x0009  2            1  Transition from drive PhyRdy to drive PhyNRdy
0x000a  2            0  Device-to-host register FISes sent due to a COMRESET
0x000b  2            0  CRC errors within host-to-device FIS
0x000f  2            0  R_ERR response for host-to-device data FIS, CRC
0x0012  2            0  R_ERR response for host-to-device non-data FIS, CRC
0x8000  4         4769  Vendor specific


^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-01-27 23:03                     ` Nuno Magalhães
@ 2015-01-28 14:05                       ` Phillip Susi
  2015-01-29 22:04                         ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Phillip Susi @ 2015-01-28 14:05 UTC (permalink / raw)
  To: Nuno Magalhães, Tejun Heo; +Cc: linux-ide

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 1/27/2015 6:03 PM, Nuno Magalhães wrote:
> Since i've heard the problem could be the PSU, i did some research
> and ended up (layman-ly) concluding that a 500W PSU is sufficient
> for all 4 disks. Still, i wanted to try and enable PUIS on the WDs,
> maybe it could work (the PSU isn't new, wouldn't be as stressed on
> boot, etc).

Yea, a power supply issue is extremely unlikely.  Also if the PSU is
overloaded, it simply shuts down.  It is easy enough to verify the
output voltage with a $10 radio shack multimeter.


> As for the WDs...
> 
> I went and tried hdparm -s1 --yes-i-know-what-i-am-doing

Yes, WDs require a hardware jumper to enable PUiS, though doing so
isn't going to help you; I mentioned it because when it already IS
enabled, the results of the IDENTIFY_DEVICE command look like swiss
cheese until the drive is forced to spin up by a specific command,
that the kernel knows to issue on boot or resume.

> [   12.824479] ata4.00: failed to IDENTIFY (SPINUP failed,
> err_mask=0x4)
> 
> which i took as a good sign since i didn't want it spinning up.

Well, you *do* want it spinning up of course, so you can access it.

Looking at your dmesg, I noticed this:

[ 1806.776781] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max
UDMA/133
[ 1806.776785] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth
31/32)
[ 1806.784760] ata2.00: n_sectors mismatch 1953525168 != 268435455
[ 1806.784768] ata2.00: revalidation failed (errno=-19)
[ 1806.784780] ata2: limiting SATA link speed to 1.5 Gbps
[ 1806.784787] ata2.00: limiting speed to UDMA/133:PIO3
[ 1811.768094] ata2: hard resetting link
[ 1811.768103] ata2: nv: skipping hardreset on occupied port
[ 1812.236126] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)


THIS appears to be your problem.  It looks like the drive is changing
its mind on its size, indicating some spectacularly broken firmware.
I also notice that it fails to reset the link and lower the speed...
is this controller set to IDE mode in the bios?  If so you might have
better luck in proper AHCI mode.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (MingW32)

iQEcBAEBAgAGBQJUyOyiAAoJENRVrw2cjl5ROpUIAJ9eHjTUDhBhKjcBVQHIKhP9
hIi00ySdjy/+0ZcPak7FCb/iXVmBlxfDvlvRo2/XCjrdMgWn6z6NhoYtoO4zC8uT
BoENSznq+jFfhk6eN2/uCWVRY4jwwd6VlpCIXOOl/dDoA+7QLRzIMB+vqzZ0WEmj
qc6ucL1b7zP8Rj36tBQATV+K9sO4J6wqO0i3RiTnBe93h1hjsyFVn6Y0CnI5sQM/
VwzSILac4yQaFKgTCtJiSN5Zuaq8kDgaBCbloOiuu5TLiwvEduBoQE6NOVUl73bh
tbErHPwrkA7jWjdMektfH9Tzja1tbTWxH1pCUmLQRvOM4IOxD2qKkWDJSkJFP2g=
=uOZ9
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-01-28 14:05                       ` Phillip Susi
@ 2015-01-29 22:04                         ` Nuno Magalhães
  2015-01-30 13:53                           ` Phillip Susi
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2015-01-29 22:04 UTC (permalink / raw)
  To: Phillip Susi; +Cc: Tejun Heo, linux-ide

[-- Attachment #1: Type: text/plain, Size: 3037 bytes --]

Greetings

On Wed, Jan 28, 2015 at 2:05 PM, Phillip Susi <psusi@ubuntu.com> wrote:

>> [   12.824479] ata4.00: failed to IDENTIFY (SPINUP failed,
>> err_mask=0x4)
>>
>> which i took as a good sign since i didn't want it spinning up.
>
> Well, you *do* want it spinning up of course, so you can access it.

Yup, but not right at boot, just a bit later.

> Looking at your dmesg, I noticed this:
>
> [ 1806.776781] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max
> UDMA/133
> [ 1806.776785] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth
> 31/32)
> [ 1806.784760] ata2.00: n_sectors mismatch 1953525168 != 268435455
> [ 1806.784768] ata2.00: revalidation failed (errno=-19)
> [ 1806.784780] ata2: limiting SATA link speed to 1.5 Gbps
> [ 1806.784787] ata2.00: limiting speed to UDMA/133:PIO3
> [ 1811.768094] ata2: hard resetting link
> [ 1811.768103] ata2: nv: skipping hardreset on occupied port
> [ 1812.236126] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
>
>
> THIS appears to be your problem.  It looks like the drive is changing
> its mind on its size, indicating some spectacularly broken firmware.
> I also notice that it fails to reset the link and lower the speed...
> is this controller set to IDE mode in the bios?  If so you might have
> better luck in proper AHCI mode.

The "n_sectors mismatch" thing was the red flag that got me starting
this thread in the first place (that and the fact the disks were
"disappearing").
As far as the BIOS goes, it's consistent on the Toshibas as far as
SATA information goes:
Extended IDE drive: auto, Access mode: auto
Cylinder: 65535, Head: 16, Landing Zone: 65534, Sector 255
for both.

With the WDs, not so much. For WD1:
Extended IDE drive: auto, Access mode: large (this one i changed from
the "auto" default to see if it would change anything)
Cylinder: 4095, Head: 240, Landing Zone: 65534, Sector 255

WD2 has no data, it's all 0 (since this is the drive where i recently
enabled PUIS, is this expected? Anyway i'm going to disable it)

I was expecting all drives to have the same values for these fields.
They all do report 1000GB (except WD2) and i believe they all emulate
512K even though they're 4KB. It's kinda weird the landing zone value
is greater than the cylinder but that's just me guessing. Isn't the
landing zone the MBR?

The general SATA values are:
SATA spread spectrum: enabled (this isn't a factory floor or anything
- but it is connected to a low end UPS)
SATA Controller 1, 2: enabled, SATA DMA Transfer: enabled
SATA Port 3, 4: enabled, SATA2 DMA Transfer: enabled (yes, incoherent wording)
IDE prefetch mode: enabled
HDD down on suspend: disabled (not that it would influence boot)

I saw some "sdd failed" message on boot but i can't find it in any
recent file in /var/log (actually dmesg, kern.log and syslog are
pretty much the same). I attibuted that to the PUIS. Anyway on this
boot (attached) all HDDs were detected the first time.

With this information, do you think AHCI mode could help? How can i enable that?

Thanks,
Nuno

[-- Attachment #2: 2015-01-29.dmesg --]
[-- Type: application/octet-stream, Size: 52476 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.2.65-1+deb7u1
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/path/to/root/LVM-lv ro quiet
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[    0.000000]  BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfef0000 (usable)
[    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cfef3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000cfef3000 - 00000000cff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000200000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: System manufacturer System Product Name/M2NPV-VM, BIOS ASUS M2NPV-VM ACPI BIOS Revision 5005 06/02/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x200000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
[    0.000000]   3 base 000100000000 mask FFFF00000000 write-back
[    0.000000]   4 base 0000CFF00000 mask 00FFFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000200000000 aka 8192M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] mtrr: your BIOS has configured an incorrect mask, fixing it.
[    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xcfef0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000f5aa0] f5aa0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000cfef0000
[    0.000000]  0000000000 - 00c0000000 page 1G
[    0.000000]  00c0000000 - 00cfe00000 page 2M
[    0.000000]  00cfe00000 - 00cfef0000 page 4k
[    0.000000] kernel direct mapping tables up to cfef0000 @ 1fffd000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-0000000200000000
[    0.000000]  0100000000 - 0200000000 page 1G
[    0.000000] kernel direct mapping tables up to 200000000 @ cfeef000-cfef0000
[    0.000000] RAMDISK: 378d8000 - 37c64000
[    0.000000] ACPI: RSDP 00000000000f7640 00024 (v02 Nvidia)
[    0.000000] ACPI: XSDT 00000000cfef3100 0004C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 00000000cfef9e00 000F4 (v03 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 00000000cfef3280 06B1B (v01 NVIDIA ASUSACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000cfef0000 00040
[    0.000000] ACPI: SSDT 00000000cfefa040 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 00000000cfefa940 00038 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000098)
[    0.000000] ACPI: MCFG 00000000cfefa9c0 0003C (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 00000000cfef9f40 00098 (v01 Nvidia ASUSACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000200000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000200000000
[    0.000000]   NODE_DATA [00000001ffffb000 - 00000001ffffffff]
[    0.000000]  [ffffea0000000000-ffffea0006ffffff] PMD -> [ffff8801f8200000-ffff8801fe7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00200000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000cfef0
[    0.000000]     0: 0x00100000 -> 0x00200000
[    0.000000] On node 0 totalpages: 1900159
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3922 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 833320 pages, LIFO batch:31
[    0.000000]   Normal zone: 14336 pages used for memmap
[    0.000000]   Normal zone: 1034240 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    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 17, 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] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfefff000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    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] PM: Registered nosave memory: 00000000cfef0000 - 00000000cfef3000
[    0.000000] PM: Registered nosave memory: 00000000cfef3000 - 00000000cff00000
[    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at cff00000 (gap: cff00000:10100000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff8801ffc00000 s78848 r8192 d23552 u524288
[    0.000000] pcpu-alloc: s78848 r8192 d23552 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1871482
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/path/to/root/LVM-lv ro quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 860a000000 size 32 MB
[    0.000000] Aperture beyond 4GB. Ignoring.
[    0.000000] Your BIOS doesn't leave a aperture memory hole
[    0.000000] Please enable the IOMMU option in the BIOS setup
[    0.000000] This costs you 64 MB of RAM
[    0.000000] Mapping aperture over 65536 KB of RAM @ c4000000
[    0.000000] PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
[    0.000000] Memory: 7352012k/8388608k available (3433k kernel code, 787972k absent, 248624k reserved, 3305k data, 576k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:33024 nr_irqs:712 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2605.404 MHz processor.
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5210.80 BogoMIPS (lpj=10421616)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004056] Security Framework initialized
[    0.004061] AppArmor: AppArmor disabled by boot time parameter
[    0.008034] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.010837] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.012068] Mount-cache hash table entries: 256
[    0.012178] Initializing cgroup subsys cpuacct
[    0.012183] Initializing cgroup subsys memory
[    0.012194] Initializing cgroup subsys devices
[    0.012197] Initializing cgroup subsys freezer
[    0.012199] Initializing cgroup subsys net_cls
[    0.012202] Initializing cgroup subsys blkio
[    0.012208] Initializing cgroup subsys perf_event
[    0.012235] tseg: 00cff00000
[    0.012237] CPU: Physical Processor ID: 0
[    0.012239] CPU: Processor Core ID: 0
[    0.012241] mce: CPU supports 6 MCE banks
[    0.012250] using AMD E400 aware idle routine
[    0.012558] ACPI: Core revision 20110623
[    0.017033] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.058636] CPU0: AMD Phenom(tm) II X4 910e Processor stepping 03
[    0.060003] Performance Events: AMD PMU driver.
[    0.060003] ... version:                0
[    0.060003] ... bit width:              48
[    0.060003] ... generic registers:      4
[    0.060003] ... value mask:             0000ffffffffffff
[    0.060003] ... max period:             00007fffffffffff
[    0.060003] ... fixed-purpose events:   0
[    0.060003] ... event mask:             000000000000000f
[    0.060003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.060003] Booting Node   0, Processors  #1
[    0.060003] smpboot cpu 1: start_ip = 9a000
[    0.148025] NMI watchdog enabled, takes one hw-pmu counter.
[    0.148046] System has AMD C1E enabled
[    0.148046] Switch to broadcast mode on CPU1
[    0.148119]  #2
[    0.148120] smpboot cpu 2: start_ip = 9a000
[    0.240035] NMI watchdog enabled, takes one hw-pmu counter.
[    0.240051] Switch to broadcast mode on CPU2
[    0.240125]  #3 Ok.
[    0.240127] smpboot cpu 3: start_ip = 9a000
[    0.332045] NMI watchdog enabled, takes one hw-pmu counter.
[    0.332064] Brought up 4 CPUs
[    0.332066] Total of 4 processors activated (20843.49 BogoMIPS).
[    0.332063] Switch to broadcast mode on CPU3
[    0.336147] Switch to broadcast mode on CPU0
[    0.336182] devtmpfs: initialized
[    0.341048] PM: Registering ACPI NVS region at cfef0000 (12288 bytes)
[    0.341048] print_constraints: dummy: 
[    0.341048] NET: Registered protocol family 16
[    0.341048] node 0 link 0: io port [d000, ffff]
[    0.341048] TOM: 00000000d0000000 aka 3328M
[    0.341048] Fam 10h mmconf [mem 0xe0000000-0xe00fffff]
[    0.341048] node 0 link 0: mmio [a0000, bffff]
[    0.341048] node 0 link 0: mmio [d0000000, dfffffff]
[    0.341048] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.341048] node 0 link 0: mmio [e0000000, e02fffff] ==> [e0100000, e02fffff]
[    0.341048] TOM2: 0000000200000000 aka 8192M
[    0.341048] bus: [00, 02] on node 0 link 0
[    0.341048] bus: 00 index 0 [io  0x0000-0xffff]
[    0.341048] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.341048] bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
[    0.341048] bus: 00 index 3 [mem 0xe0300000-0xffffffff]
[    0.341048] bus: 00 index 4 [mem 0xe0100000-0xe02fffff]
[    0.341048] bus: 00 index 5 [mem 0x200000000-0xfcffffffff]
[    0.341048] Extended Config Space enabled on 1 nodes
[    0.341048] ACPI: bus type pci registered
[    0.341048] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.341048] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.352327] PCI: Using configuration type 1 for base access
[    0.353030] bio: create slab <bio-0> at 0
[    0.353030] ACPI: Added _OSI(Module Device)
[    0.353030] ACPI: Added _OSI(Processor Device)
[    0.353030] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.353030] ACPI: Added _OSI(Processor Aggregator Device)
[    0.353030] ACPI: EC: Look up EC in DSDT
[    0.359637] ACPI: Interpreter enabled
[    0.359643] ACPI: (supports S0 S1 S3 S4 S5)
[    0.359664] ACPI: Using IOAPIC for interrupt routing
[    0.365411] ACPI: No dock devices found.
[    0.365413] HEST: Table not found.
[    0.365417] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.365463] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.365557] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.365559] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.365562] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.365564] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.365566] pci_root PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff]
[    0.365579] pci 0000:00:00.0: [10de:02f0] type 0 class 0x000500
[    0.365635] pci 0000:00:00.1: [10de:02fa] type 0 class 0x000500
[    0.365671] pci 0000:00:00.2: [10de:02fe] type 0 class 0x000500
[    0.365714] pci 0000:00:00.3: [10de:02f8] type 0 class 0x000500
[    0.365758] pci 0000:00:00.4: [10de:02f9] type 0 class 0x000500
[    0.365802] pci 0000:00:00.5: [10de:02ff] type 0 class 0x000500
[    0.365851] pci 0000:00:00.6: [10de:027f] type 0 class 0x000500
[    0.365887] pci 0000:00:00.7: [10de:027e] type 0 class 0x000500
[    0.365939] pci 0000:00:04.0: [10de:02fb] type 1 class 0x000604
[    0.365971] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.366016] pci 0000:00:09.0: [10de:0270] type 0 class 0x000500
[    0.366294] pci 0000:00:0a.0: [10de:0260] type 0 class 0x000601
[    0.366395] pci 0000:00:0a.1: [10de:0264] type 0 class 0x000c05
[    0.366460] pci 0000:00:0a.1: reg 20: [io  0x4c00-0x4c3f]
[    0.366473] pci 0000:00:0a.1: reg 24: [io  0x4c40-0x4c7f]
[    0.366529] pci 0000:00:0a.1: PME# supported from D3hot D3cold
[    0.366554] pci 0000:00:0a.2: [10de:0272] type 0 class 0x000500
[    0.366666] pci 0000:00:0b.0: [10de:026d] type 0 class 0x000c03
[    0.366686] pci 0000:00:0b.0: reg 10: [mem 0xfe02f000-0xfe02ffff]
[    0.366777] pci 0000:00:0b.0: supports D1 D2
[    0.366778] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.366804] pci 0000:00:0b.1: [10de:026e] type 0 class 0x000c03
[    0.366826] pci 0000:00:0b.1: reg 10: [mem 0xfe02e000-0xfe02e0ff]
[    0.366927] pci 0000:00:0b.1: supports D1 D2
[    0.366928] pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.366965] pci 0000:00:0d.0: [10de:0265] type 0 class 0x000101
[    0.367019] pci 0000:00:0d.0: reg 20: [io  0xfd00-0xfd0f]
[    0.367092] pci 0000:00:0e.0: [10de:0266] type 0 class 0x000101
[    0.367116] pci 0000:00:0e.0: reg 10: [io  0x09f0-0x09f7]
[    0.367127] pci 0000:00:0e.0: reg 14: [io  0x0bf0-0x0bf3]
[    0.367138] pci 0000:00:0e.0: reg 18: [io  0x0970-0x0977]
[    0.367149] pci 0000:00:0e.0: reg 1c: [io  0x0b70-0x0b73]
[    0.367160] pci 0000:00:0e.0: reg 20: [io  0xf800-0xf80f]
[    0.367171] pci 0000:00:0e.0: reg 24: [mem 0xfe02d000-0xfe02dfff]
[    0.367260] pci 0000:00:0f.0: [10de:0267] type 0 class 0x000101
[    0.367285] pci 0000:00:0f.0: reg 10: [io  0x09e0-0x09e7]
[    0.367295] pci 0000:00:0f.0: reg 14: [io  0x0be0-0x0be3]
[    0.367306] pci 0000:00:0f.0: reg 18: [io  0x0960-0x0967]
[    0.367317] pci 0000:00:0f.0: reg 1c: [io  0x0b60-0x0b63]
[    0.367328] pci 0000:00:0f.0: reg 20: [io  0xf300-0xf30f]
[    0.367339] pci 0000:00:0f.0: reg 24: [mem 0xfe02c000-0xfe02cfff]
[    0.367425] pci 0000:00:10.0: [10de:026f] type 1 class 0x000604
[    0.367530] pci 0000:00:10.1: [10de:026c] type 0 class 0x000403
[    0.367556] pci 0000:00:10.1: reg 10: [mem 0xfe024000-0xfe027fff]
[    0.367667] pci 0000:00:10.1: PME# supported from D3hot D3cold
[    0.367712] pci 0000:00:14.0: [10de:0269] type 0 class 0x000680
[    0.367731] pci 0000:00:14.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.367742] pci 0000:00:14.0: reg 14: [io  0xf200-0xf207]
[    0.367819] pci 0000:00:14.0: supports D1 D2
[    0.367821] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.367841] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
[    0.367857] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
[    0.367870] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
[    0.367884] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
[    0.367900] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
[    0.367953] pci 0000:01:00.0: [1002:68e1] type 0 class 0x000300
[    0.367966] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.367975] pci 0000:01:00.0: reg 18: [mem 0xfddc0000-0xfdddffff 64bit]
[    0.367982] pci 0000:01:00.0: reg 20: [io  0xdc00-0xdcff]
[    0.367993] pci 0000:01:00.0: reg 30: [mem 0xfdda0000-0xfddbffff pref]
[    0.368033] pci 0000:01:00.0: supports D1 D2
[    0.368051] pci 0000:01:00.1: [1002:aa68] type 0 class 0x000403
[    0.368063] pci 0000:01:00.1: reg 10: [mem 0xfddfc000-0xfddfffff 64bit]
[    0.368113] pci 0000:01:00.1: supports D1 D2
[    0.376042] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.376047] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.376050] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.376054] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.376127] pci 0000:02:09.0: [10ec:8169] type 0 class 0x000200
[    0.376151] pci 0000:02:09.0: reg 10: [io  0xec00-0xecff]
[    0.376164] pci 0000:02:09.0: reg 14: [mem 0xfdcff000-0xfdcff0ff]
[    0.376223] pci 0000:02:09.0: reg 30: [mem 0xfdce0000-0xfdceffff pref]
[    0.376262] pci 0000:02:09.0: supports D1 D2
[    0.376264] pci 0000:02:09.0: PME# supported from D1 D2 D3hot D3cold
[    0.376314] pci 0000:00:10.0: PCI bridge to [bus 02-02] (subtractive decode)
[    0.376319] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.376323] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.376327] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.376330] pci 0000:00:10.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.376332] pci 0000:00:10.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.376334] pci 0000:00:10.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.376337] pci 0000:00:10.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.376339] pci 0000:00:10.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
[    0.376353] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.376512] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.376618]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.376621]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.376623] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.404103] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404148] ACPI: PCI Interrupt Link [LNK2] (IRQs *5 7 9 10 11 14 15)
[    0.404190] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404231] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404273] ACPI: PCI Interrupt Link [LNK5] (IRQs 5 7 9 10 *11 14 15)
[    0.404315] ACPI: PCI Interrupt Link [LNK6] (IRQs 5 7 9 *10 11 14 15)
[    0.404354] ACPI: PCI Interrupt Link [LNK7] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404395] ACPI: PCI Interrupt Link [LNK8] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404435] ACPI: PCI Interrupt Link [LUBA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404476] ACPI: PCI Interrupt Link [LUBB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404517] ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 10 *11 14 15)
[    0.404557] ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404598] ACPI: PCI Interrupt Link [LAZA] (IRQs *5 7 9 10 11 14 15)
[    0.404638] ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404679] ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404720] ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404760] ACPI: PCI Interrupt Link [LUB2] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404800] ACPI: PCI Interrupt Link [LIDE] (IRQs 5 7 9 10 11 14 15) *0, disabled.
[    0.404843] ACPI: PCI Interrupt Link [LSID] (IRQs *5 7 9 10 11 14 15)
[    0.404884] ACPI: PCI Interrupt Link [LFID] (IRQs *5 7 9 10 11 14 15)
[    0.404958] ACPI: PCI Interrupt Link [APC1] (IRQs 16) *0, disabled.
[    0.405032] ACPI: PCI Interrupt Link [APC2] (IRQs 17) *0
[    0.405100] ACPI: PCI Interrupt Link [APC3] (IRQs 18) *0, disabled.
[    0.405168] ACPI: PCI Interrupt Link [APC4] (IRQs 19) *0, disabled.
[    0.405235] ACPI: PCI Interrupt Link [APC5] (IRQs 16) *0
[    0.405302] ACPI: PCI Interrupt Link [APC6] (IRQs 16) *0
[    0.405369] ACPI: PCI Interrupt Link [APC7] (IRQs 16) *0, disabled.
[    0.405437] ACPI: PCI Interrupt Link [APC8] (IRQs 16) *0, disabled.
[    0.405504] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22 23) *0, disabled.
[    0.405573] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22 23) *0, disabled.
[    0.405641] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22 23) *0
[    0.405709] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22 23) *0, disabled.
[    0.405779] ACPI: PCI Interrupt Link [APMU] (IRQs 20 21 22 23) *0, disabled.
[    0.405847] ACPI: PCI Interrupt Link [AAZA] (IRQs 20 21 22 23) *0
[    0.405915] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22 23) *0, disabled.
[    0.405983] ACPI: PCI Interrupt Link [APCS] (IRQs 20 21 22 23) *0, disabled.
[    0.406052] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22 23) *0, disabled.
[    0.406121] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22 23) *0, disabled.
[    0.406189] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22 23) *0, disabled.
[    0.406257] ACPI: PCI Interrupt Link [APSI] (IRQs 20 21 22 23) *0
[    0.406325] ACPI: PCI Interrupt Link [APSJ] (IRQs 20 21 22 23) *0
[    0.406418] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.406418] vgaarb: loaded
[    0.406418] vgaarb: bridge control possible 0000:01:00.0
[    0.406418] PCI: Using ACPI for IRQ routing
[    0.419480] PCI: pci_cache_line_size set to 64 bytes
[    0.419568] reserve RAM buffer: 000000000009f000 - 000000000009ffff 
[    0.419570] reserve RAM buffer: 00000000cfef0000 - 00000000cfffffff 
[    0.419672] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.419680] hpet0: at MMIO 0xfefff000, IRQs 2, 8, 31
[    0.419684] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
[    0.436066] Switching to clocksource hpet
[    0.437629] pnp: PnP ACPI init
[    0.437643] ACPI: bus type pnp registered
[    0.437722] pnp 00:00: [bus 00-ff]
[    0.437724] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.437727] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.437729] pnp 00:00: [io  0x0d00-0xffff window]
[    0.437731] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.437733] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.437735] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
[    0.437785] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.437834] pnp 00:01: [io  0x4000-0x407f]
[    0.437835] pnp 00:01: [io  0x4080-0x40ff]
[    0.437837] pnp 00:01: [io  0x4400-0x447f]
[    0.437839] pnp 00:01: [io  0x4480-0x44ff]
[    0.437841] pnp 00:01: [io  0x4800-0x487f]
[    0.437843] pnp 00:01: [io  0x4880-0x48ff]
[    0.437845] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.437847] pnp 00:01: [io  0x2000-0x207f]
[    0.437849] pnp 00:01: [io  0x2080-0x20ff]
[    0.437899] system 00:01: [io  0x4000-0x407f] has been reserved
[    0.437901] system 00:01: [io  0x4080-0x40ff] has been reserved
[    0.437903] system 00:01: [io  0x4400-0x447f] has been reserved
[    0.437906] system 00:01: [io  0x4480-0x44ff] has been reserved
[    0.437908] system 00:01: [io  0x4800-0x487f] has been reserved
[    0.437910] system 00:01: [io  0x4880-0x48ff] has been reserved
[    0.437914] system 00:01: [io  0x2000-0x207f] has been reserved
[    0.437916] system 00:01: [io  0x2080-0x20ff] has been reserved
[    0.437919] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.437961] pnp 00:02: [io  0x0010-0x001f]
[    0.437963] pnp 00:02: [io  0x0022-0x003f]
[    0.437965] pnp 00:02: [io  0x0044-0x005f]
[    0.437966] pnp 00:02: [io  0x0062-0x0063]
[    0.437968] pnp 00:02: [io  0x0065-0x006f]
[    0.437970] pnp 00:02: [io  0x0074-0x007f]
[    0.437971] pnp 00:02: [io  0x0091-0x0093]
[    0.437973] pnp 00:02: [io  0x00a2-0x00bf]
[    0.437975] pnp 00:02: [io  0x00e0-0x00ef]
[    0.437977] pnp 00:02: [io  0x04d0-0x04d1]
[    0.437978] pnp 00:02: [io  0x0800-0x087f]
[    0.437980] pnp 00:02: [io  0x0290-0x0297]
[    0.438030] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.438033] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.438035] system 00:02: [io  0x0290-0x0297] has been reserved
[    0.438038] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.438048] pnp 00:03: [dma 4]
[    0.438051] pnp 00:03: [io  0x0000-0x000f]
[    0.438053] pnp 00:03: [io  0x0080-0x0090]
[    0.438055] pnp 00:03: [io  0x0094-0x009f]
[    0.438056] pnp 00:03: [io  0x00c0-0x00df]
[    0.438082] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.438125] pnp 00:04: [irq 0 disabled]
[    0.438140] pnp 00:04: [irq 8]
[    0.438142] pnp 00:04: [mem 0xfefff000-0xfefff3ff]
[    0.438169] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.438192] pnp 00:05: [io  0x0070-0x0073]
[    0.438219] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.438227] pnp 00:06: [io  0x0061]
[    0.438252] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.438260] pnp 00:07: [io  0x00f0-0x00ff]
[    0.438272] pnp 00:07: [irq 13]
[    0.438298] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.438594] pnp 00:08: [io  0x03f8-0x03ff]
[    0.438606] pnp 00:08: [irq 4]
[    0.438662] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.438881] pnp 00:09: [io  0x02f8-0x02ff]
[    0.438893] pnp 00:09: [irq 3]
[    0.438944] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.439163] pnp 00:0a: [io  0x0378-0x037f]
[    0.439175] pnp 00:0a: [irq 7]
[    0.439218] pnp 00:0a: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.440118] pnp 00:0b: [mem 0xe0000000-0xefffffff]
[    0.440173] system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
[    0.440176] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.440272] pnp 00:0c: [mem 0x000f0000-0x000f3fff]
[    0.440274] pnp 00:0c: [mem 0x000f4000-0x000f7fff]
[    0.440276] pnp 00:0c: [mem 0x000f8000-0x000fbfff]
[    0.440278] pnp 00:0c: [mem 0x000fc000-0x000fffff]
[    0.440280] pnp 00:0c: [mem 0xfefff000-0xfefff0ff]
[    0.440282] pnp 00:0c: [mem 0xcfef0000-0xcfefffff]
[    0.440283] pnp 00:0c: [mem 0xffff0000-0xffffffff]
[    0.440285] pnp 00:0c: [mem 0x00000000-0x0009ffff]
[    0.440287] pnp 00:0c: [mem 0x00100000-0xcfeeffff]
[    0.440289] pnp 00:0c: [mem 0x00000000-0xffffffffffffffff disabled]
[    0.440291] pnp 00:0c: [mem 0xfec00000-0xfec00fff]
[    0.440293] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
[    0.440295] pnp 00:0c: [mem 0xfefff000-0xfeffffff]
[    0.440297] pnp 00:0c: [mem 0xfff80000-0xfff80fff]
[    0.440299] pnp 00:0c: [mem 0xfff90000-0xfffbffff]
[    0.440301] pnp 00:0c: [mem 0xfffed000-0xfffeffff]
[    0.440329] pnp 00:0c: [Firmware Bug]: [mem 0x00000000-0xffffffffffffffff disabled] covers only part of AMD MMCONFIG area [mem 0xe0000000-0xe00fffff]; adding more reservations
[    0.440370] system 00:0c: [mem 0x000f0000-0x000f3fff] could not be reserved
[    0.440373] system 00:0c: [mem 0x000f4000-0x000f7fff] could not be reserved
[    0.440376] system 00:0c: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.440378] system 00:0c: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.440381] system 00:0c: [mem 0xfefff000-0xfefff0ff] has been reserved
[    0.440383] system 00:0c: [mem 0xcfef0000-0xcfefffff] could not be reserved
[    0.440386] system 00:0c: [mem 0xffff0000-0xffffffff] has been reserved
[    0.440388] system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.440391] system 00:0c: [mem 0x00100000-0xcfeeffff] could not be reserved
[    0.440394] system 00:0c: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.440396] system 00:0c: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.440399] system 00:0c: [mem 0xfefff000-0xfeffffff] could not be reserved
[    0.440401] system 00:0c: [mem 0xfff80000-0xfff80fff] has been reserved
[    0.440404] system 00:0c: [mem 0xfff90000-0xfffbffff] has been reserved
[    0.440407] system 00:0c: [mem 0xfffed000-0xfffeffff] has been reserved
[    0.440409] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.440419] pnp: PnP ACPI: found 13 devices
[    0.440420] ACPI: ACPI bus type pnp unregistered
[    0.448507] PCI: max bus depth: 1 pci_try_num: 2
[    0.448521] pci 0000:00:04.0: PCI bridge to [bus 01-01]
[    0.448524] pci 0000:00:04.0:   bridge window [io  0xd000-0xdfff]
[    0.448527] pci 0000:00:04.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.448530] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.448534] pci 0000:00:10.0: PCI bridge to [bus 02-02]
[    0.448537] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.448543] pci 0000:00:10.0:   bridge window [mem 0xfdc00000-0xfdcfffff]
[    0.448548] pci 0000:00:10.0:   bridge window [mem 0xfde00000-0xfdefffff pref]
[    0.448560] pci 0000:00:04.0: setting latency timer to 64
[    0.448568] pci 0000:00:10.0: setting latency timer to 64
[    0.448571] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.448573] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.448575] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.448577] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    0.448579] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.448582] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.448584] pci_bus 0000:01: resource 1 [mem 0xfdd00000-0xfddfffff]
[    0.448586] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.448588] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.448590] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
[    0.448592] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff pref]
[    0.448594] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    0.448596] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    0.448598] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    0.448600] pci_bus 0000:02: resource 7 [mem 0x000c0000-0x000dffff]
[    0.448602] pci_bus 0000:02: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.448752] NET: Registered protocol family 2
[    0.450409] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.451599] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.454256] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.454579] TCP: Hash tables configured (established 524288 bind 65536)
[    0.454582] TCP reno registered
[    0.454596] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.454655] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.454850] NET: Registered protocol family 1
[    0.454879] pci 0000:00:00.0: Found disabled HT MSI Mapping
[    0.454885] pci 0000:00:00.0: Enabling HT MSI Mapping
[    0.454930] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.455250] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 23
[    0.524268] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 22
[    0.524417] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.524431] pci 0000:00:0e.0: Enabling HT MSI Mapping
[    0.524525] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.524539] pci 0000:00:0f.0: Enabling HT MSI Mapping
[    0.524638] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.524649] pci 0000:00:10.0: Enabling HT MSI Mapping
[    0.524751] pci 0000:00:09.0: Found disabled HT MSI Mapping
[    0.524766] pci 0000:00:10.1: Enabling HT MSI Mapping
[    0.524793] pci 0000:01:00.0: Boot video device
[    0.524800] PCI: CLS 32 bytes, default 64
[    0.524854] Unpacking initramfs...
[    0.589044] Freeing initrd memory: 3632k freed
[    0.590347] PCI-DMA: Disabling AGP.
[    0.593863] PCI-DMA: aperture base @ c4000000 size 65536 KB
[    0.593865] PCI-DMA: using GART IOMMU.
[    0.593868] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
[    0.598228] IBS: LVT offset 1 assigned
[    0.598251] perf: AMD IBS detected (0x0000001f)
[    0.598539] audit: initializing netlink socket (disabled)
[    0.598556] type=2000 audit(1422566994.592:1): initialized
[    0.611113] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.612584] VFS: Disk quotas dquot_6.5.2
[    0.612623] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.612694] msgmni has been set to 14495
[    0.612965] alg: No test for stdrng (krng)
[    0.613006] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.613009] io scheduler noop registered
[    0.613011] io scheduler deadline registered
[    0.613052] io scheduler cfq registered (default)
[    0.613165] pcieport 0000:00:04.0: setting latency timer to 64
[    0.613195] pcieport 0000:00:04.0: irq 40 for MSI/MSI-X
[    0.613285] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.613304] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.613306] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.613663] ERST: Table is not found!
[    0.613665] GHES: HEST is not enabled!
[    0.613757] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.634436] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.696748] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.829031] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.849918] 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    0.850285] Linux agpgart interface v0.103
[    0.850396] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.850917] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.850924] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.851105] mousedev: PS/2 mouse device common for all mice
[    0.851166] rtc_cmos 00:05: RTC can wake from S4
[    0.851328] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    0.851384] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.851394] cpuidle: using governor ladder
[    0.851395] cpuidle: using governor menu
[    0.851577] TCP cubic registered
[    0.851700] NET: Registered protocol family 10
[    0.852156] Mobile IPv6
[    0.852158] NET: Registered protocol family 17
[    0.852162] Registering the dns_resolver key type
[    0.852337] PM: Hibernation image not present or could not be loaded.
[    0.852347] registered taskstats version 1
[    0.853185] rtc_cmos 00:05: setting system clock to 2015-01-29 21:29:55 UTC (1422566995)
[    0.853222] Initializing network drop monitor service
[    0.854283] Freeing unused kernel memory: 576k freed
[    0.854415] Write protecting the kernel read-only data: 6144k
[    0.856753] Freeing unused kernel memory: 644k freed
[    0.859244] Freeing unused kernel memory: 688k freed
[    0.870387] udevd[59]: starting version 175
[    0.891972] ACPI: Fan [FAN] (on)
[    0.892645] SCSI subsystem initialized
[    0.892684] ACPI Warning: For \_TZ_.THRM._PSL: Return Package has no elements (empty) (20110623/nspredef-463)
[    0.892691] ACPI: [Package] has zero elements (ffff8801f61f26c0)
[    0.892737] ACPI: Invalid passive threshold
[    0.892896] thermal LNXTHERM:00: registered as thermal_zone0
[    0.892898] ACPI: Thermal Zone [THRM] (40 C)
[    0.899318] libata version 3.00 loaded.
[    0.899683] sata_nv 0000:00:0e.0: version 3.5
[    0.899877] ACPI: PCI Interrupt Link [APSI] enabled at IRQ 21
[    0.899901] sata_nv 0000:00:0e.0: Using SWNCQ mode
[    0.899956] sata_nv 0000:00:0e.0: setting latency timer to 64
[    0.902249] scsi0 : sata_nv
[    0.902515] scsi1 : sata_nv
[    0.902631] ata1: SATA max UDMA/133 cmd 0x9f0 ctl 0xbf0 bmdma 0xf800 irq 21
[    0.902635] ata2: SATA max UDMA/133 cmd 0x970 ctl 0xb70 bmdma 0xf808 irq 21
[    0.902813] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 20
[    0.902835] sata_nv 0000:00:0f.0: Using SWNCQ mode
[    0.902884] sata_nv 0000:00:0f.0: setting latency timer to 64
[    0.908267] scsi2 : sata_nv
[    0.915416] scsi3 : sata_nv
[    0.915565] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xf300 irq 20
[    0.915569] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xf308 irq 20
[    1.376098] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.380086] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.384609] ata1.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.384613] ata1.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.388895] ata3.00: ATA-8: TOSHIBA DT01ACA100, MS2OA750, max UDMA/133
[    1.388899] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.400760] ata1.00: configured for UDMA/133
[    1.400944] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    1.405319] ata3.00: configured for UDMA/133
[    1.596064] Refined TSC clocksource calibration: 2605.433 MHz.
[    1.596069] Switching to clocksource tsc
[    1.868072] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.876946] ata2.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    1.876949] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.884942] ata2.00: configured for UDMA/133
[    1.885063] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    1.885247] scsi 2:0:0:0: Direct-Access     ATA      TOSHIBA DT01ACA1 MS2O PQ: 0 ANSI: 5
[    2.352059] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.600322] CE: hpet increased min_delta_ns to 11520 nsec
[    7.360046] ata4.00: qc timeout (cmd 0xef)
[    7.360049] ata4.00: failed to IDENTIFY (SPINUP failed, err_mask=0x4)
[    9.900067] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    9.909057] ata4.00: ATA-9: WDC WD10EFRX-68PJCN0, 01.01A01, max UDMA/133
[    9.909060] ata4.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    9.917004] ata4.00: configured for UDMA/133
[    9.917124] scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EFRX-68P 01.0 PQ: 0 ANSI: 5
[    9.918253] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    9.918256] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    9.918324] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    9.918327] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    9.918365] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    9.918368] sd 1:0:0:0: [sdb] Write Protect is off
[    9.918371] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    9.918374] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[    9.918389] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.918413] sd 2:0:0:0: [sdc] Write Protect is off
[    9.918416] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    9.918433] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.918453] sd 0:0:0:0: [sda] Write Protect is off
[    9.918456] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    9.918472] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.918875] sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    9.918878] sd 3:0:0:0: [sdd] 4096-byte physical blocks
[    9.918911] sd 3:0:0:0: [sdd] Write Protect is off
[    9.918914] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    9.918929] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.930856]  sdd: sdd1
[    9.931147] sd 3:0:0:0: [sdd] Attached SCSI disk
[    9.931265]  sdb: sdb1
[    9.931468] sd 1:0:0:0: [sdb] Attached SCSI disk
[    9.937499]  sdc: sdc1
[    9.937788] sd 2:0:0:0: [sdc] Attached SCSI disk
[    9.941799]  sda: sda1
[    9.942394] sd 0:0:0:0: [sda] Attached SCSI disk
[   10.485990] md: md0 stopped.
[   10.486688] md: bind<sdc1>
[   10.486852] md: bind<sda1>
[   10.487924] md: raid1 personality registered for level 1
[   10.488132] bio: create slab <bio-1> at 1
[   10.488215] md/raid1:md0: active with 2 out of 2 mirrors
[   10.488239] md0: detected capacity change from 0 to 1000068677632
[   10.531432]  md0: unknown partition table
[   10.691321] device-mapper: uevent: version 1.0.3
[   10.691386] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[   10.919594] PM: Starting manual resume from disk
[   10.919598] PM: Hibernation image partition 253:1 present
[   10.919599] PM: Looking for hibernation image.
[   10.919765] PM: Image not found (code -22)
[   10.919768] PM: Hibernation image not present or could not be loaded.
[   10.929269] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[   10.929553] SGI XFS Quota Management subsystem
[   10.930694] XFS (dm-0): Mounting Filesystem
[   11.289056] XFS (dm-0): Ending clean mount
[   12.541040] udevd[430]: starting version 175
[   12.742627] ACPI: processor limited to max C-state 1
[   12.748131] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   12.748137] ACPI: Power Button [PWRB]
[   12.748212] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   12.748214] ACPI: Power Button [PWRF]
[   12.893645] parport_pc 00:0a: reported by Plug and Play ACPI
[   12.893686] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP]
[   12.899607] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
[   12.899610] Disabling lock debugging due to kernel taint
[   12.905842] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[   12.906027] ACPI: PCI Interrupt Link [APCH] enabled at IRQ 23
[   12.906039] forcedeth 0000:00:14.0: setting latency timer to 64
[   12.935623] [fglrx] Maximum main memory to use for locked dma buffers: 7029 MBytes.
[   12.935817] [fglrx]   vendor: 1002 device: 68e1 count: 1
[   12.936142] [fglrx] ioport: bar 4, base 0xdc00, size: 0x100
[   12.936290] ACPI: PCI Interrupt Link [APC5] enabled at IRQ 16
[   12.936312] pci 0000:01:00.0: setting latency timer to 64
[   12.936464] [fglrx] Kernel PAT support is enabled
[   12.936485] [fglrx] module loaded - fglrx 8.98.2 [Jul 19 2012] with 1 minors
[   12.979028] EDAC MC: Ver: 2.1.0
[   12.981042] MCE: In-kernel MCE decoding enabled.
[   12.981766] AMD64 EDAC driver v3.4.0
[   12.990749] usbcore: registered new interface driver usbfs
[   12.990772] usbcore: registered new interface driver hub
[   12.990821] usbcore: registered new device driver usb
[   13.022792] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   13.022968] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[   13.023017] r8169 0000:02:09.0: (unregistered net_device): not PCI Express
[   13.023408] r8169 0000:02:09.0: eth0: RTL8169sb/8110sb at 0xffffc90000c6e000, 08:60:6e:cf:a2:0f, XID 10000000 IRQ 17
[   13.023412] r8169 0000:02:09.0: eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[   13.211631] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   13.252295] powernow-k8: Found 1 AMD Phenom(tm) II X4 910e Processor (4 cpu cores) (version 2.20.00)
[   13.252337] powernow-k8:    0 : pstate 0 (2600 MHz)
[   13.252339] powernow-k8:    1 : pstate 1 (1900 MHz)
[   13.252341] powernow-k8:    2 : pstate 2 (1400 MHz)
[   13.252342] powernow-k8:    3 : pstate 3 (800 MHz)
[   13.262905] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   13.429473] forcedeth 0000:00:14.0: ifname eth1, PHY OUI 0x5043 @ 1, addr 00:18:f3:a8:01:be
[   13.429485] forcedeth 0000:00:14.0: highdma pwrctl gbit lnktim desc-v3
[   13.430066] ACPI: PCI Interrupt Link [AAZA] enabled at IRQ 22
[   13.430081] hda_intel: Disabling MSI
[   13.430195] snd_hda_intel 0000:00:10.1: setting latency timer to 64
[   14.079082] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:10.1/input/input3
[   14.144788] EDAC amd64: DRAM ECC disabled.
[   14.144807] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[   14.144811]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[   14.144814]  (Note that use of the override may cause unknown side effects.)
[   14.145269] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16
[   14.145390] snd_hda_intel 0000:01:00.1: irq 41 for MSI/MSI-X
[   14.145446] snd_hda_intel 0000:01:00.1: setting latency timer to 64
[   14.146021] ACPI: resource nForce2_smbus [io  0x4c00-0x4c3f] conflicts with ACPI region SM00 [io 0x4c00-0x4c05]
[   14.146030] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   14.146128] i2c i2c-0: nForce2 SMBus adapter at 0x4c40
[   14.146551] ehci_hcd 0000:00:0b.1: setting latency timer to 64
[   14.146561] ehci_hcd 0000:00:0b.1: EHCI Host Controller
[   14.146621] ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
[   14.146669] ehci_hcd 0000:00:0b.1: debug port 1
[   14.146688] ehci_hcd 0000:00:0b.1: cache line size of 32 is not supported
[   14.146706] ehci_hcd 0000:00:0b.1: irq 22, io mem 0xfe02e000
[   14.156136] ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00
[   14.156196] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   14.156204] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.156211] usb usb1: Product: EHCI Host Controller
[   14.156216] usb usb1: Manufacturer: Linux 3.2.0-4-amd64 ehci_hcd
[   14.156222] usb usb1: SerialNumber: 0000:00:0b.1
[   14.156539] hub 1-0:1.0: USB hub found
[   14.156550] hub 1-0:1.0: 8 ports detected
[   14.156817] pata_amd 0000:00:0d.0: version 0.4.1
[   14.156911] pata_amd 0000:00:0d.0: setting latency timer to 64
[   14.157808] scsi4 : pata_amd
[   14.158146] scsi5 : pata_amd
[   14.159304] ata5: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfd00 irq 14
[   14.159312] ata6: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfd08 irq 15
[   14.167337] NV_TCO: NV TCO WatchDog Timer Driver v0.01
[   14.167520] NV_TCO: Watchdog reboot not detected.
[   14.167637] NV_TCO: initialized (0x4440). heartbeat=30 sec (nowayout=0)
[   14.177166] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   14.177303] ohci_hcd 0000:00:0b.0: setting latency timer to 64
[   14.177313] ohci_hcd 0000:00:0b.0: OHCI Host Controller
[   14.177351] ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
[   14.177423] ohci_hcd 0000:00:0b.0: irq 23, io mem 0xfe02f000
[   14.234577] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[   14.234586] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.234592] usb usb2: Product: OHCI Host Controller
[   14.234597] usb usb2: Manufacturer: Linux 3.2.0-4-amd64 ohci_hcd
[   14.234602] usb usb2: SerialNumber: 0000:00:0b.0
[   14.234938] hub 2-0:1.0: USB hub found
[   14.234951] hub 2-0:1.0: 8 ports detected
[   14.320665] ata5.00: ATAPI: HL-DT-STDVD-RAM GSA-H22N, 1.00, max UDMA/66
[   14.320686] ata5: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:600:0x13)
[   14.336638] ata5.00: configured for UDMA/66
[   14.339829] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GSA-H22N 1.00 PQ: 0 ANSI: 5
[   14.509050] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[   14.509348] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:04.0/0000:01:00.1/sound/card1/input4
[   14.539234] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[   14.539244] cdrom: Uniform CD-ROM driver Revision: 3.20
[   14.539592] sr 4:0:0:0: Attached scsi CD-ROM sr0
[   14.544764] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   14.545050] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   14.545169] sd 2:0:0:0: Attached scsi generic sg2 type 0
[   14.545289] sd 3:0:0:0: Attached scsi generic sg3 type 0
[   14.546301] sr 4:0:0:0: Attached scsi generic sg4 type 5
[   14.784226] usb 2-1: new low-speed USB device number 2 using ohci_hcd
[   15.002607] usb 2-1: New USB device found, idVendor=413c, idProduct=2005
[   15.002616] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   15.002623] usb 2-1: Product: DELL USB Keyboard
[   15.002628] usb 2-1: Manufacturer: DELL
[   15.308848] usb 2-2: new low-speed USB device number 3 using ohci_hcd
[   15.520595] usb 2-2: New USB device found, idVendor=093a, idProduct=2510
[   15.520604] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   15.520611] usb 2-2: Product: USB Optical Mouse
[   15.520616] usb 2-2: Manufacturer: PixArt
[   15.603512] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:0b.0/usb2/2-1/2-1:1.0/input/input5
[   15.603760] generic-usb 0003:413C:2005.0001: input,hidraw0: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:0b.0-1/input0
[   15.610359] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:0b.0/usb2/2-2/2-2:1.0/input/input6
[   15.610661] generic-usb 0003:093A:2510.0002: input,hidraw1: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:0b.0-2/input0
[   15.610704] usbcore: registered new interface driver usbhid
[   15.610709] usbhid: USB HID core driver
[   16.975292] loop: module loaded
[   17.575128] Adding 7811068k swap on /path/to/swap/LVM-lv.  Priority:-1 extents:1 across:7811068k 
[   19.355049] r8169 0000:02:09.0: eth0: link down
[   19.355066] r8169 0000:02:09.0: eth0: link down
[   19.358342] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   21.010623] r8169 0000:02:09.0: eth0: link up
[   21.011678] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   21.229253] fglrx_pci 0000:01:00.0: irq 42 for MSI/MSI-X
[   21.230632] [fglrx] Firegl kernel thread PID: 2394
[   21.230768] [fglrx] Firegl kernel thread PID: 2395
[   21.230904] [fglrx] Firegl kernel thread PID: 2396
[   21.231108] [fglrx] IRQ 42 Enabled
[   21.454760] mtrr: your BIOS has configured an incorrect mask, fixing it.
[   21.455223] [fglrx] Gart USWC size:1280 M.
[   21.455226] [fglrx] Gart cacheable size:508 M.
[   21.455230] [fglrx] Reserved FB block: Shared offset:0, size:1000000 
[   21.455233] [fglrx] Reserved FB block: Unshared offset:f8fd000, size:403000 
[   21.455235] [fglrx] Reserved FB block: Unshared offset:3fff4000, size:c000 
[   31.068474] eth0: no IPv6 routers present

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-01-29 22:04                         ` Nuno Magalhães
@ 2015-01-30 13:53                           ` Phillip Susi
  2015-02-03 19:32                             ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Phillip Susi @ 2015-01-30 13:53 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: Tejun Heo, linux-ide

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 1/29/2015 5:04 PM, Nuno Magalhães wrote:
> As far as the BIOS goes, it's consistent on the Toshibas as far as 
> SATA information goes: Extended IDE drive: auto, Access mode: auto 
> Cylinder: 65535, Head: 16, Landing Zone: 65534, Sector 255 for
> both.
> 
> With the WDs, not so much. For WD1: Extended IDE drive: auto,
> Access mode: large (this one i changed from the "auto" default to
> see if it would change anything) Cylinder: 4095, Head: 240, Landing
> Zone: 65534, Sector 255

That information went obsolete in the late 1990s and doesn't really
exist any more.  I am very surprised to be hearing of it again nearly
20 years later.  I don't recall seeing even bogus information of this
type displayed in a bios made after the year 2000 or so.

> WD2 has no data, it's all 0 (since this is the drive where i
> recently enabled PUIS, is this expected? Anyway i'm going to
> disable it)

Likely, yes.  Until it is spun up most of the information in the
IDENTIFY_DEVICE page is blank, except for a bit that says this drive
has powerd up in standby, most of the information here is incomplete
until spun up, and if you want me to spin up, issue a SET_FEATURES
command ( some drives will auto spin up on attempted access, my WDs
require the explicit command ).  An older, dumber bios wouldn't
recognize this and issue the command to start the drive.

> I was expecting all drives to have the same values for these
> fields. They all do report 1000GB (except WD2) and i believe they
> all emulate 512K even though they're 4KB. It's kinda weird the
> landing zone value is greater than the cylinder but that's just me
> guessing. Isn't the landing zone the MBR?

Again, it doesn't really matter since C/H/S, LZ, and precomp all
stopped having any meaning nearly 20 years ago.

> With this information, do you think AHCI mode could help? How can i
> enable that?

Most BIOS with integrated SATA chips have an option somewhere to
toggle it between legacy IDE mode, AHCI mode, and often RAID mode.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (MingW32)

iQEcBAEBAgAGBQJUy4zGAAoJENRVrw2cjl5RtLgH/3yDtgK+Umyw+yVx0BEqpQ23
/ZiCRBVPc5Hd+zBvgY8KbgBiEVaaKnpM0nLaOszY9p8e86/UjPK8BUoX4JZZD2dJ
FvuiXZyHDUARbGcN37O8kFISj2Wu7FIlvmbyBj86t49HQHW+9zesDd297GQ5Vq9f
f5wCRl2lmr4p9zh93NIikze7TtSum2JK2XsaUaIuz1qQ3V4B/qSYz/71Gcvn4PHx
/9cMVIvnymVDhfZKkA5KzAGjwsO2xPLqg/8BfI8Un6tPIu14IMBuoFXrxSkdH6dL
FVpZM53hTp6YzWMTUGNbSvotWU4NPlT8He6z8qv1d5f7PaehmjJruxS/yBvZmS4=
=d1fJ
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-01-30 13:53                           ` Phillip Susi
@ 2015-02-03 19:32                             ` Nuno Magalhães
  2015-02-03 19:45                               ` Phillip Susi
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2015-02-03 19:32 UTC (permalink / raw)
  To: Phillip Susi; +Cc: Tejun Heo, linux-ide

Hi,

On Fri, Jan 30, 2015 at 1:53 PM, Phillip Susi <psusi@ubuntu.com> wrote:
> On 1/29/2015 5:04 PM, Nuno Magalhães wrote:
>
>> With this information, do you think AHCI mode could help? How can i
>> enable that?
>
> Most BIOS with integrated SATA chips have an option somewhere to
> toggle it between legacy IDE mode, AHCI mode, and often RAID mode.

Not the case. This is a Phoenix-Award BIOS, v6.00PG, Revision 5005
(the last to come out for this motherboard and the only one supporting
its current CPU).

The BIOS shows the regular Primary/Secondary IDE Master/Slave (to
which only the CDROM is attached) alongside SATA. It doesn't seem like
SATA is the option, bu rather that both IDE and SATA are seen as
current usable interfaces (at the time the BIOS was released: 2010).
It does have NVRAID, which is disabled (i use mdadm).

There is no mention of AHCI that i could find.

Regardless, as long as linux sees the HDDs on boot (which it does even
with PUIS), does the BIOS have any influence in this issue?


Thanks for your time,
Nuno

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-02-03 19:32                             ` Nuno Magalhães
@ 2015-02-03 19:45                               ` Phillip Susi
  2015-02-09 13:02                                 ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Phillip Susi @ 2015-02-03 19:45 UTC (permalink / raw)
  To: Nuno Magalhães; +Cc: Tejun Heo, linux-ide

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 2/3/2015 2:32 PM, Nuno Magalhães wrote:
> The BIOS shows the regular Primary/Secondary IDE Master/Slave (to 
> which only the CDROM is attached) alongside SATA. It doesn't seem
> like SATA is the option, bu rather that both IDE and SATA are seen
> as current usable interfaces (at the time the BIOS was released:
> 2010). It does have NVRAID, which is disabled (i use mdadm).

Typically there is a knob that toggles between three states: IDE,
AHCI, and RAID.  RAID really is AHCI just with a different PCI
identifier that causes windows to load their proprietary driver that
does the software raid.  If you only have an on/off switch for the
raid, then try switching it on.

> There is no mention of AHCI that i could find.
> 
> Regardless, as long as linux sees the HDDs on boot (which it does
> even with PUIS), does the BIOS have any influence in this issue?

Only in that it is configuring the controller to behave like a legacy
IDE controller instead of a proper SATA one, and that does cause some
differences in how the kernel handles the drives.  It *shouldn't*
cause the problem you are seeing, but it does prevent the system from
issuing a hard reset to the drives, which *may* cause them to come around.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (MingW32)

iQEcBAEBAgAGBQJU0SVYAAoJENRVrw2cjl5R984H/Rr/xSVa7x8az1kq0v+bUp1D
tIU1gWBRumBMcTGgkHYiePLdr9OFRK867N23UrxG14PbbmiJymr4hi4DbaCqWUYc
MzatgvehwK4Y3Lm2Wi3uO27On1O6nior8yPr4i7d/bWWAYC7csX9y522Pbv0hJvx
gpZTHarFeU0bXhqKKm9NGvaJuFmwvZosw7dF3pVK01S8crNtYoxX/iLLown2H8PJ
OTiIfnZKQwlxwh4DM6v17QQRzesQH8nwZ3PoWysE0WVdcH7bbDRQTn+kIByk4ihD
UdtYE1OybaTpIhdzQFTEw6pDS+BVIcu3yqLqrMFzUyiZU9jwwtTpMC4/g2zY31I=
=bxbp
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-02-03 19:45                               ` Phillip Susi
@ 2015-02-09 13:02                                 ` Nuno Magalhães
  2015-02-09 13:43                                   ` Phillip Susi
  0 siblings, 1 reply; 22+ messages in thread
From: Nuno Magalhães @ 2015-02-09 13:02 UTC (permalink / raw)
  To: linux-ide; +Cc: Tejun Heo, Phillip Susi

On Tue, Feb 3, 2015 at 7:45 PM, Phillip Susi <psusi@ubuntu.com> wrote:
> On 2/3/2015 2:32 PM, Nuno Magalhães wrote:
>> The BIOS shows the regular Primary/Secondary IDE Master/Slave (to
>> which only the CDROM is attached) alongside SATA. It doesn't seem
>> like SATA is the option, bu rather that both IDE and SATA are seen
>> as current usable interfaces (at the time the BIOS was released:
>> 2010). It does have NVRAID, which is disabled (i use mdadm).
>
> Typically there is a knob that toggles between three states: IDE,
> AHCI, and RAID.  RAID really is AHCI just with a different PCI
> identifier that causes windows to load their proprietary driver that
> does the software raid.  If you only have an on/off switch for the
> raid, then try switching it on.

A knob? You mean a knob on the motherboard? No such thing (that i can
see). A jumper perhaps? I'll check the manual.
As for BIOS RAID, every howto and tutorial i read about software
RAID/mdadm advices aggainst using the BIOS RAID implementation as it's
usually quite lacking in terms of quality.

>> There is no mention of AHCI that i could find.

Maybe it never got to this BIOS. Maybe there is something AHCI-related
in NVRAID, i never poked into that.

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-02-09 13:02                                 ` Nuno Magalhães
@ 2015-02-09 13:43                                   ` Phillip Susi
  2015-02-09 23:52                                     ` Nuno Magalhães
  0 siblings, 1 reply; 22+ messages in thread
From: Phillip Susi @ 2015-02-09 13:43 UTC (permalink / raw)
  To: Nuno Magalhães, linux-ide; +Cc: Tejun Heo

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 2/9/2015 8:02 AM, Nuno Magalhães wrote:
> A knob? You mean a knob on the motherboard? No such thing (that i
> can see). A jumper perhaps? I'll check the manual.

No, I meant a setting in the bios.

> As for BIOS RAID, every howto and tutorial i read about software 
> RAID/mdadm advices aggainst using the BIOS RAID implementation as
> it's usually quite lacking in terms of quality.

Putting the controller into raid mode != *using* the fakeraid
capability.  In other words, just don't create a raid array in the
bios utility and the disks will be used normally, while still
operating in AHCI mode.


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (MingW32)

iQEcBAEBAgAGBQJU2LlsAAoJENRVrw2cjl5RqDkH/1fxcXmySKCvE0hW8HjK6QSb
8NwgAiqy/3VeqFEihKu+L3OPCjDjoFwxgMTffK/XrdTijmAoshifAuTOtmX2NaQw
6jFPZmjEtU9VLVnQHpUBDX09vJ2ikbktxXoV4KKGf7hWiRKZZUx+qkQfX4bkFTbA
weGiMv5gnqxxEjozrotWIm/grrFR5xd4T98TXT0ZKkMKkMILaiKv9IUzV+jMbcIv
O7iniqZEgUBQBHhBo8HhiovCRvIvK2s4ljdWORKbwNl3uSkfvPZv+Hg7A5/AGubY
AZgW/5xAn12xdflvMoxTWjlgcox4J8Ji7B4ZV6yHOmDth4Okvq9Bi8VK20596Y4=
=6fry
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: SATA disks disabled on boot
  2015-02-09 13:43                                   ` Phillip Susi
@ 2015-02-09 23:52                                     ` Nuno Magalhães
  0 siblings, 0 replies; 22+ messages in thread
From: Nuno Magalhães @ 2015-02-09 23:52 UTC (permalink / raw)
  To: Phillip Susi; +Cc: linux-ide, Tejun Heo

On Mon, Feb 9, 2015 at 1:43 PM, Phillip Susi <psusi@ubuntu.com> wrote:
> Putting the controller into raid mode != *using* the fakeraid
> capability.  In other words, just don't create a raid array in the
> bios utility and the disks will be used normally, while still
> operating in AHCI mode.

Ah, gotcha. Same effect though. Had to reset them.

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2015-02-09 23:53 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-11 21:06 SATA disks disabled on boot Nuno Magalhães
2014-07-14 16:36 ` Tejun Heo
2014-07-14 23:24   ` Nuno Magalhães
2014-07-16 20:35     ` Nuno Magalhães
2014-07-16 20:35       ` Nuno Magalhães
2014-08-17 13:39     ` Tejun Heo
2014-08-21 22:40       ` Nuno Magalhães
2014-08-21 22:43         ` Tejun Heo
     [not found]         ` <CADqA9uaj0MrpffnzE8xnhU57Hx9pv7O1sAhB+xS_4hi8z_dkMA@mail.gmail.com>
2014-12-02 19:56           ` Tejun Heo
2014-12-02 23:15             ` Nuno Magalhães
2014-12-04 17:48               ` Tejun Heo
2014-12-04 23:59                 ` Phillip Susi
2014-12-05 22:12                   ` Nuno Magalhães
2015-01-27 23:03                     ` Nuno Magalhães
2015-01-28 14:05                       ` Phillip Susi
2015-01-29 22:04                         ` Nuno Magalhães
2015-01-30 13:53                           ` Phillip Susi
2015-02-03 19:32                             ` Nuno Magalhães
2015-02-03 19:45                               ` Phillip Susi
2015-02-09 13:02                                 ` Nuno Magalhães
2015-02-09 13:43                                   ` Phillip Susi
2015-02-09 23:52                                     ` Nuno Magalhães

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.