rendered paste body#!/bin/sh -e
# upstart-job
#
# Symlink target for initscripts that have been converted to Upstart.
set -e
INITSCRIPT="$(basename "$0")"
JOB="${INITSCRIPT%.sh}"
if [ "$JOB" = "upstart-job" ]; then
if [ -z "$1" ]; then
echo "Usage: upstart-job JOB COMMAND" 1>&2
exit 1
fi
JOB="$1"
INITSCRIPT="$1"
shift
else
if [ -z "$1" ]; then
echo "Usage: $0 COMMAND" 1>&2
exit 1
fi
fi
COMMAND="$1"
shift
if [ -z "$DPKG_MAINTSCRIPT_PACKAGE" ]; then
ECHO=echo
else
ECHO=:
fi
$ECHO "Rather than invoking init scripts through /etc/init.d, use the service(8)"
$ECHO "utility, e.g. service $INITSCRIPT $COMMAND"
case $COMMAND in
status)
$ECHO
$ECHO "Since the script you are attempting to invoke has been converted to an"
$ECHO "Upstart job, you may also use the $COMMAND(8) utility, e.g. $COMMAND $JOB"
$COMMAND "$JOB"
;;
start|stop|restart)
$ECHO
$ECHO "Since the script you are attempting to invoke has been converted to an"
$ECHO "Upstart job, you may also use the $COMMAND(8) utility, e.g. $COMMAND $JOB"
PID=$(status "$JOB" 2>/dev/null | awk '/[0-9]$/ { print $NF }')
if [ -z "$PID" ] && [ "$COMMAND" = "stop" ]; then
exit 0
elif [ -n "$PID" ] && [ "$COMMAND" = "start" ]; then
exit 0
elif [ -z "$PID" ] && [ "$COMMAND" = "restart" ]; then
start "$JOB"
exit 0
fi
$COMMAND "$JOB"
;;
reload|force-reload)
$ECHO
$ECHO "Since the script you are attempting to invoke has been converted to an"
$ECHO "Upstart job, you may also use the $COMMAND(8) utility, e.g. $COMMAND $JOB"
reload "$JOB"
;;
*)
$ECHO
$ECHO "The script you are attempting to invoke has been converted to an Upstart" 1>&2
$ECHO "job, but $COMMAND is not supported for Upstart jobs." 1>&2
exit 1
esac
----------------------aqui se acaba el dmesg, ahora pongo el fstab y a continuacion el mtab-----
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda6 during installation
UUID=632bed41-f8f3-4aa8-ada9-7c2a53995293 / ext4 errors=remount-ro 0 1
# /home was on /dev/sda8 during installation
UUID=46757464-30a9-4080-9940-1127e742ad11 /home ext4 defaults 0 2
/dev/sda7 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
------------------------------a continuacion el mtab-----------------------------
/dev/sda6 / ext4 rw,errors=remount-ro 0 0
proc /proc proc rw 0 0
none /sys sysfs rw,noexec,nosuid,nodev 0 0
none /sys/fs/fuse/connections fusectl rw 0 0
none /sys/kernel/debug debugfs rw 0 0
none /sys/kernel/security securityfs rw 0 0
udev /dev tmpfs rw,mode=0755 0 0
none /dev/pts devpts rw,noexec,nosuid,gid=5,mode=0620 0 0
none /dev/shm tmpfs rw,nosuid,nodev 0 0
none /var/run tmpfs rw,nosuid,mode=0755 0 0
none /var/lock tmpfs rw,noexec,nosuid,nodev 0 0
none /lib/init/rw tmpfs rw,nosuid,mode=0755 0 0
/dev/sda8 /home ext4 rw 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,noexec,nosuid,nodev 0 0
gvfs-fuse-daemon /home/camilo/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,user=camilo 0 0
/dev/sde1 /media/CAMILO vfat rw,nosuid,nodev,uhelper=devkit,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,flush 0 0
/dev/sda1 /media/9A6421E56421C53B fuseblk rw,nosuid,nodev,allow_other,default_permissions,blksize=4096 0 0
/dev/sda5 /media/KIEV fuseblk rw,nosuid,nodev,allow_other,default_permissions,blksize=4096 0 0
----------------------------------------------------------------
--------------ahora el dmesg.conf-----------------------------
# dmesg - save kernel messages
#
# This task saves the initial kernel message log.
description "save kernel messages"
start on runlevel [2345]
task
script
savelog -q -p -c 5 /var/log/dmesg
dmesg -s 524288 > /var/log/dmesg
chgrp adm /var/log/dmesg
end script
------------------------------------------------------------------
----------------------------ahora dmesg var/lo---------------------------
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.31-14-generic (buildd@crested) (gcc version 4.4.1 (Ubuntu 4.4.1-4ubuntu8) ) #48-Ubuntu SMP Fri Oct 16 14:05:01 UTC 2009 (Ubuntu 2.6.31-14.48-generic)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic root=UUID=632bed41-f8f3-4aa8-ada9-7c2a53995293 ro quiet splash
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007ff80000 (usable)
[ 0.000000] BIOS-e820: 000000007ff80000 - 000000007ff8e000 (ACPI data)
[ 0.000000] BIOS-e820: 000000007ff8e000 - 000000007ffe0000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007ffe0000 - 0000000080000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[ 0.000000] DMI 2.4 present.
[ 0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] last_pfn = 0x7ff80 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-DFFFF write-protect
[ 0.000000] E0000-EFFFF write-through
[ 0.000000] F0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 disabled
[ 0.000000] 2 disabled
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] Scanning 0 areas for low memory corruption
[ 0.000000] modified physical RAM map:
[ 0.000000] modified: 0000000000000000 - 0000000000010000 (reserved)
[ 0.000000] modified: 0000000000010000 - 000000000009fc00 (usable)
[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved)
[ 0.000000] modified: 00000000000e4000 - 0000000000100000 (reserved)
[ 0.000000] modified: 0000000000100000 - 000000007ff80000 (usable)
[ 0.000000] modified: 000000007ff80000 - 000000007ff8e000 (ACPI data)
[ 0.000000] modified: 000000007ff8e000 - 000000007ffe0000 (ACPI NVS)
[ 0.000000] modified: 000000007ffe0000 - 0000000080000000 (reserved)
[ 0.000000] modified: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] modified: 00000000fff00000 - 0000000100000000 (reserved)
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] init_memory_mapping: 0000000000000000-000000007ff80000
[ 0.000000] Using x86 segment limits to approximate NX protection
[ 0.000000] 0000000000 - 007fe00000 page 2M
[ 0.000000] 007fe00000 - 007ff80000 page 4k
[ 0.000000] kernel direct mapping tables up to 7ff80000 @ 10000-14000
[ 0.000000] RAMDISK: 3786e000 - 37fef8d5
[ 0.000000] ACPI: RSDP 00000000000fbc60 00014 (v00 ACPIAM)
[ 0.000000] ACPI: RSDT 000000007ff80000 0003C (v01 A_M_I_ OEMRSDT 06000825 MSFT 00000097)
[ 0.000000] ACPI: FACP 000000007ff80200 00084 (v02 A_M_I_ OEMFACP 06000825 MSFT 00000097)
[ 0.000000] ACPI: DSDT 000000007ff805c0 09104 (v01 A0753 A0753001 00000001 INTL 20060113)
[ 0.000000] ACPI: FACS 000000007ff8e000 00040
[ 0.000000] ACPI: APIC 000000007ff80390 0006C (v01 A_M_I_ OEMAPIC 06000825 MSFT 00000097)
[ 0.000000] ACPI: MCFG 000000007ff80400 0003C (v01 A_M_I_ OEMMCFG 06000825 MSFT 00000097)
[ 0.000000] ACPI: OEMB 000000007ff8e040 00081 (v01 A_M_I_ AMI_OEM 06000825 MSFT 00000097)
[ 0.000000] ACPI: HPET 000000007ff896d0 00038 (v01 A_M_I_ OEMHPET 06000825 MSFT 00000097)
[ 0.000000] ACPI: OSFR 000000007ff89710 000B0 (v01 A_M_I_ OEMOSFR 06000825 MSFT 00000097)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-000000007ff80000
[ 0.000000] Bootmem setup node 0 0000000000000000-000000007ff80000
[ 0.000000] NODE_DATA [0000000000012000 - 0000000000016fff]
[ 0.000000] bootmap [0000000000017000 - 0000000000026fef] pages 10
[ 0.000000] (7 early reservations) ==> bootmem [0000000000 - 007ff80000]
[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
[ 0.000000] #1 [0000006000 - 0000008000] TRAMPOLINE ==> [0000006000 - 0000008000]
[ 0.000000] #2 [0001000000 - 00019e2ccc] TEXT DATA BSS ==> [0001000000 - 00019e2ccc]
[ 0.000000] #3 [003786e000 - 0037fef8d5] RAMDISK ==> [003786e000 - 0037fef8d5]
[ 0.000000] #4 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
[ 0.000000] #5 [00019e3000 - 00019e3278] BRK ==> [00019e3000 - 00019e3278]
[ 0.000000] #6 [0000010000 - 0000012000] PGTABLE ==> [0000010000 - 0000012000]
[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
[ 0.000000] [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff880001e00000-ffff8800039fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00100000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0007ff80
[ 0.000000] On node 0 totalpages: 524047
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 101 pages reserved
[ 0.000000] DMA zone: 3826 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 7111 pages used for memmap
[ 0.000000] DMA32 zone: 512953 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, 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: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
[ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 24
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000
[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7ee00000)
[ 0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 30 pages at ffff8800019f4000, static data 90720 bytes
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 516779
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.31-14-generic root=UUID=632bed41-f8f3-4aa8-ada9-7c2a53995293 ro quiet splash
[ 0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 2049064k/2096640k available (5313k kernel code, 452k absent, 47124k reserved, 3011k data, 660k init)
[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] NR_IRQS:4352 nr_irqs:440
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 3172.528 MHz processor.
[ 0.000545] Console: colour VGA+ 80x25
[ 0.000547] console [tty0] enabled
[ 0.009093] allocated 20971520 bytes of page_cgroup
[ 0.009095] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.009212] hpet clockevent registered
[ 0.009216] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[ 0.009222] Calibrating delay loop (skipped), value calculated using timer frequency.. 6345.05 BogoMIPS (lpj=31725280)
[ 0.009243] Security Framework initialized
[ 0.009260] AppArmor: AppArmor initialized
[ 0.009380] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.010000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.010000] Mount-cache hash table entries: 256
[ 0.010000] Initializing cgroup subsys ns
[ 0.010000] Initializing cgroup subsys cpuacct
[ 0.010000] Initializing cgroup subsys memory
[ 0.010000] Initializing cgroup subsys freezer
[ 0.010000] Initializing cgroup subsys net_cls
[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010000] CPU: L2 cache: 6144K
[ 0.010000] CPU 0/0x0 -> Node 0
[ 0.010000] CPU: Physical Processor ID: 0
[ 0.010000] CPU: Processor Core ID: 0
[ 0.010000] mce: CPU supports 6 MCE banks
[ 0.010000] CPU0: Thermal monitoring enabled (TM2)
[ 0.010000] using mwait in idle threads.
[ 0.010000] Performance Counters: Core2 events, Intel PMU driver.
[ 0.010000] ... version: 2
[ 0.010000] ... bit width: 40
[ 0.010000] ... generic counters: 2
[ 0.010000] ... value mask: 000000ffffffffff
[ 0.010000] ... max period: 000000007fffffff
[ 0.010000] ... fixed-purpose counters: 3
[ 0.010000] ... counter mask: 0000000700000003
[ 0.010000] ACPI: Core revision 20090521
[ 0.020040] Setting APIC routing to flat
[ 0.020336] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.138297] CPU0: Intel(R) Core(TM)2 Duo CPU E8500 @ 3.16GHz stepping 0a
[ 0.140000] Booting processor 1 APIC 0x1 ip 0x6000
[ 0.010000] Initializing CPU#1
[ 0.010000] Calibrating delay using timer specific routine.. 6319.12 BogoMIPS (lpj=31595620)
[ 0.010000] CPU: L1 I cache: 32K, L1 D cache: 32K
[ 0.010000] CPU: L2 cache: 6144K
[ 0.010000] CPU 1/0x1 -> Node 0
[ 0.010000] CPU: Physical Processor ID: 0
[ 0.010000] CPU: Processor Core ID: 1
[ 0.010000] mce: CPU supports 6 MCE banks
[ 0.010000] CPU1: Thermal monitoring enabled (TM2)
[ 0.010000] x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
[ 0.291453] CPU1: Intel(R) Core(TM)2 Duo CPU E8500 @ 3.16GHz stepping 0a
[ 0.291460] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[ 0.300018] Brought up 2 CPUs
[ 0.300020] Total of 2 processors activated (12664.18 BogoMIPS).
[ 0.300063] CPU0 attaching sched-domain:
[ 0.300065] domain 0: span 0-1 level MC
[ 0.300066] groups: 0 1
[ 0.300070] CPU1 attaching sched-domain:
[ 0.300071] domain 0: span 0-1 level MC
[ 0.300073] groups: 1 0
[ 0.300122] Booting paravirtualized kernel on bare hardware
[ 0.300122] regulator: core version 0.5
[ 0.300122] Time: 16:08:42 Date: 03/08/10
[ 0.300122] NET: Registered protocol family 16
[ 0.300142] ACPI: bus type pci registered
[ 0.300186] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[ 0.300187] PCI: Not using MMCONFIG.
[ 0.300189] PCI: Using configuration type 1 for base access
[ 0.300715] bio: create slab <bio-0> at 0
[ 0.300715] ACPI: EC: Look up EC in DSDT
[ 0.311243] ACPI: Interpreter enabled
[ 0.311245] ACPI: (supports S0 S1 S3 S4 S5)
[ 0.311259] ACPI: Using IOAPIC for interrupt routing
[ 0.311294] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[ 0.312781] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[ 0.314543] PCI: Using MMCONFIG at e0000000 - efffffff
[ 0.319708] ACPI Warning: Incorrect checksum in table [OEMB] - BB, should be B2 20090521 tbutils-246
[ 0.319806] ACPI: No dock devices found.
[ 0.319882] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.319946] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.319949] pci 0000:00:01.0: PME# disabled
[ 0.320032] pci 0000:00:1a.0: reg 20 io port: [0xb800-0xb81f]
[ 0.320084] pci 0000:00:1a.1: reg 20 io port: [0xb880-0xb89f]
[ 0.320136] pci 0000:00:1a.2: reg 20 io port: [0xbc00-0xbc1f]
[ 0.320192] pci 0000:00:1a.7: reg 10 32bit mmio: [0xfe7ffc00-0xfe7fffff]
[ 0.320234] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.320237] pci 0000:00:1a.7: PME# disabled
[ 0.320269] pci 0000:00:1b.0: reg 10 64bit mmio: [0xfe7f8000-0xfe7fbfff]
[ 0.320300] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.320303] pci 0000:00:1b.0: PME# disabled
[ 0.320345] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.320348] pci 0000:00:1c.0: PME# disabled
[ 0.320393] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.320396] pci 0000:00:1c.4: PME# disabled
[ 0.320439] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[ 0.320441] pci 0000:00:1c.5: PME# disabled
[ 0.320482] pci 0000:00:1d.0: reg 20 io port: [0xb080-0xb09f]
[ 0.320536] pci 0000:00:1d.1: reg 20 io port: [0xb400-0xb41f]
[ 0.320588] pci 0000:00:1d.2: reg 20 io port: [0xb480-0xb49f]
[ 0.320644] pci 0000:00:1d.7: reg 10 32bit mmio: [0xfe7ff800-0xfe7ffbff]
[ 0.320686] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.320689] pci 0000:00:1d.7: PME# disabled
[ 0.320781] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
[ 0.320784] pci 0000:00:1f.0: quirk: region 0480-04bf claimed by ICH6 GPIO
[ 0.320787] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0294 (mask 0003)
[ 0.320829] pci 0000:00:1f.2: reg 10 io port: [0xa000-0xa007]
[ 0.320833] pci 0000:00:1f.2: reg 14 io port: [0x9c00-0x9c03]
[ 0.320837] pci 0000:00:1f.2: reg 18 io port: [0x9880-0x9887]
[ 0.320841] pci 0000:00:1f.2: reg 1c io port: [0x9800-0x9803]
[ 0.320845] pci 0000:00:1f.2: reg 20 io port: [0x9480-0x948f]
[ 0.320849] pci 0000:00:1f.2: reg 24 io port: [0x9400-0x940f]
[ 0.320882] pci 0000:00:1f.3: reg 10 64bit mmio: [0xfe7ff400-0xfe7ff4ff]
[ 0.320892] pci 0000:00:1f.3: reg 20 io port: [0x400-0x41f]
[ 0.320924] pci 0000:00:1f.5: reg 10 io port: [0xb000-0xb007]
[ 0.320928] pci 0000:00:1f.5: reg 14 io port: [0xac00-0xac03]
[ 0.320932] pci 0000:00:1f.5: reg 18 io port: [0xa880-0xa887]
[ 0.320936] pci 0000:00:1f.5: reg 1c io port: [0xa800-0xa803]
[ 0.320940] pci 0000:00:1f.5: reg 20 io port: [0xa480-0xa48f]
[ 0.320944] pci 0000:00:1f.5: reg 24 io port: [0xa400-0xa40f]
[ 0.320985] pci 0000:01:00.0: reg 10 64bit mmio: [0xd0000000-0xdfffffff]
[ 0.320991] pci 0000:01:00.0: reg 18 64bit mmio: [0xfe8e0000-0xfe8effff]
[ 0.320995] pci 0000:01:00.0: reg 20 io port: [0xc000-0xc0ff]
[ 0.321001] pci 0000:01:00.0: reg 30 32bit mmio: [0xfe8c0000-0xfe8dffff]
[ 0.321014] pci 0000:01:00.0: supports D1 D2
[ 0.321036] pci 0000:01:00.1: reg 10 64bit mmio: [0xfe8f0000-0xfe8fffff]
[ 0.321059] pci 0000:01:00.1: supports D1 D2
[ 0.321092] pci 0000:00:01.0: bridge io port: [0xc000-0xcfff]
[ 0.321094] pci 0000:00:01.0: bridge 32bit mmio: [0xfe800000-0xfe8fffff]
[ 0.321096] pci 0000:00:01.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff]
[ 0.321130] pci 0000:00:1c.0: bridge 64bit mmio pref: [0xfdf00000-0xfdffffff]
[ 0.321206] pci 0000:03:00.0: reg 24 32bit mmio: [0xfeafe000-0xfeafffff]
[ 0.321213] pci 0000:03:00.0: reg 30 32bit mmio: [0xfeae0000-0xfeaeffff]
[ 0.321240] pci 0000:03:00.0: PME# supported from D3hot
[ 0.321245] pci 0000:03:00.0: PME# disabled
[ 0.321291] pci 0000:03:00.1: reg 10 io port: [0xdc00-0xdc07]
[ 0.321298] pci 0000:03:00.1: reg 14 io port: [0xd880-0xd883]
[ 0.321305] pci 0000:03:00.1: reg 18 io port: [0xd800-0xd807]
[ 0.321313] pci 0000:03:00.1: reg 1c io port: [0xd480-0xd483]
[ 0.321320] pci 0000:03:00.1: reg 20 io port: [0xd400-0xd40f]
[ 0.321395] pci 0000:00:1c.4: bridge io port: [0xd000-0xdfff]
[ 0.321398] pci 0000:00:1c.4: bridge 32bit mmio: [0xfea00000-0xfeafffff]
[ 0.321443] pci 0000:02:00.0: reg 10 64bit mmio: [0xfe9c0000-0xfe9fffff]
[ 0.321469] pci 0000:02:00.0: reg 30 32bit mmio: [0xfe9a0000-0xfe9bffff]
[ 0.321497] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.321501] pci 0000:02:00.0: PME# disabled
[ 0.321539] pci 0000:00:1c.5: bridge 32bit mmio: [0xfe900000-0xfe9fffff]
[ 0.321570] pci 0000:05:01.0: reg 10 32bit mmio: [0xfebff800-0xfebfffff]
[ 0.321607] pci 0000:05:01.0: supports D1 D2
[ 0.321634] pci 0000:05:03.0: reg 10 32bit mmio: [0xfebff000-0xfebff7ff]
[ 0.321640] pci 0000:05:03.0: reg 14 io port: [0xec00-0xec7f]
[ 0.321674] pci 0000:05:03.0: supports D2
[ 0.321676] pci 0000:05:03.0: PME# supported from D2 D3hot D3cold
[ 0.321679] pci 0000:05:03.0: PME# disabled
[ 0.321713] pci 0000:00:1e.0: transparent bridge
[ 0.321716] pci 0000:00:1e.0: bridge io port: [0xe000-0xefff]
[ 0.321719] pci 0000:00:1e.0: bridge 32bit mmio: [0xfeb00000-0xfebfffff]
[ 0.321738] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.321818] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
[ 0.321852] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[ 0.321925] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P8._PRT]
[ 0.321968] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[ 0.322019] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
[ 0.332570] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[ 0.332646] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[ 0.332722] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[ 0.332795] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 *14 15)
[ 0.332869] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 0.332943] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 4 5 6 7 10 11 12 14 15)
[ 0.333016] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 *15)
[ 0.333090] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[ 0.333191] SCSI subsystem initialized
[ 0.333203] libata version 3.00 loaded.
[ 0.333203] usbcore: registered new interface driver usbfs
[ 0.333203] usbcore: registered new interface driver hub
[ 0.333203] usbcore: registered new device driver usb
[ 0.333203] ACPI: WMI: Mapper loaded
[ 0.333203] PCI: Using ACPI for IRQ routing
[ 0.360006] Bluetooth: Core ver 2.15
[ 0.360019] NET: Registered protocol family 31
[ 0.360019] Bluetooth: HCI device and connection manager initialized
[ 0.360019] Bluetooth: HCI socket layer initialized
[ 0.360019] NetLabel: Initializing
[ 0.360019] NetLabel: domain hash size = 128
[ 0.360019] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.360031] NetLabel: unlabeled traffic allowed by default
[ 0.360076] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.360081] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 0.399987] pnp: PnP ACPI init
[ 0.399995] ACPI: bus type pnp registered
[ 0.402034] pnp: PnP ACPI: found 15 devices
[ 0.402036] ACPI: ACPI bus type pnp unregistered
[ 0.402042] system 00:01: iomem range 0xfed14000-0xfed19fff has been reserved
[ 0.402046] system 00:07: ioport range 0x290-0x297 has been reserved
[ 0.402050] system 00:08: ioport range 0x4d0-0x4d1 has been reserved
[ 0.402051] system 00:08: ioport range 0x800-0x87f has been reserved
[ 0.402053] system 00:08: ioport range 0x480-0x4bf has been reserved
[ 0.402055] system 00:08: iomem range 0xfed1c000-0xfed1ffff has been reserved
[ 0.402057] system 00:08: iomem range 0xfed20000-0xfed3ffff has been reserved
[ 0.402059] system 00:08: iomem range 0xfed50000-0xfed8ffff has been reserved
[ 0.402061] system 00:08: iomem range 0xffa00000-0xffafffff has been reserved
[ 0.402062] system 00:08: iomem range 0xffb00000-0xffbfffff has been reserved
[ 0.402064] system 00:08: iomem range 0xffe00000-0xffefffff has been reserved
[ 0.402066] system 00:08: iomem range 0xfff00000-0xfffffffe has been reserved
[ 0.402070] system 00:0b: iomem range 0xfec00000-0xfec00fff could not be reserved
[ 0.402071] system 00:0b: iomem range 0xfee00000-0xfee00fff has been reserved
[ 0.402075] system 00:0d: iomem range 0xe0000000-0xefffffff has been reserved
[ 0.402078] system 00:0e: iomem range 0x0-0x9ffff could not be reserved
[ 0.402080] system 00:0e: iomem range 0xc0000-0xcffff has been reserved
[ 0.402082] system 00:0e: iomem range 0xe0000-0xfffff could not be reserved
[ 0.402084] system 00:0e: iomem range 0x100000-0x7fffffff could not be reserved
[ 0.406681] AppArmor: AppArmor Filesystem Enabled
[ 0.406716] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[ 0.406718] pci 0000:00:01.0: IO window: 0xc000-0xcfff
[ 0.406720] pci 0000:00:01.0: MEM window: 0xfe800000-0xfe8fffff
[ 0.406722] pci 0000:00:01.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff
[ 0.406725] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:04
[ 0.406726] pci 0000:00:1c.0: IO window: disabled
[ 0.406729] pci 0000:00:1c.0: MEM window: disabled
[ 0.406732] pci 0000:00:1c.0: PREFETCH window: 0x000000fdf00000-0x000000fdffffff
[ 0.406736] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:03
[ 0.406738] pci 0000:00:1c.4: IO window: 0xd000-0xdfff
[ 0.406742] pci 0000:00:1c.4: MEM window: 0xfea00000-0xfeafffff
[ 0.406744] pci 0000:00:1c.4: PREFETCH window: disabled
[ 0.406747] pci 0000:00:1c.5: PCI bridge, secondary bus 0000:02
[ 0.406748] pci 0000:00:1c.5: IO window: disabled
[ 0.406751] pci 0000:00:1c.5: MEM window: 0xfe900000-0xfe9fffff
[ 0.406754] pci 0000:00:1c.5: PREFETCH window: disabled
[ 0.406756] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[ 0.406758] pci 0000:00:1e.0: IO window: 0xe000-0xefff
[ 0.406761] pci 0000:00:1e.0: MEM window: 0xfeb00000-0xfebfffff
[ 0.406764] pci 0000:00:1e.0: PREFETCH window: disabled
[ 0.406770] alloc irq_desc for 16 on node 0
[ 0.406771] alloc kstat_irqs on node 0
[ 0.406774] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.406777] pci 0000:00:01.0: setting latency timer to 64
[ 0.406781] alloc irq_desc for 17 on node 0
[ 0.406782] alloc kstat_irqs on node 0
[ 0.406784] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.406786] pci 0000:00:1c.0: setting latency timer to 64
[ 0.406791] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.406794] pci 0000:00:1c.4: setting latency timer to 64
[ 0.406798] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.406801] pci 0000:00:1c.5: setting latency timer to 64
[ 0.406805] pci 0000:00:1e.0: setting latency timer to 64
[ 0.406807] pci_bus 0000:00: resource 0 io: [0x00-0xffff]
[ 0.406809] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[ 0.406811] pci_bus 0000:01: resource 0 io: [0xc000-0xcfff]
[ 0.406812] pci_bus 0000:01: resource 1 mem: [0xfe800000-0xfe8fffff]
[ 0.406814] pci_bus 0000:01: resource 2 pref mem [0xd0000000-0xdfffffff]
[ 0.406815] pci_bus 0000:04: resource 2 pref mem [0xfdf00000-0xfdffffff]
[ 0.406817] pci_bus 0000:03: resource 0 io: [0xd000-0xdfff]
[ 0.406818] pci_bus 0000:03: resource 1 mem: [0xfea00000-0xfeafffff]
[ 0.406820] pci_bus 0000:02: resource 1 mem: [0xfe900000-0xfe9fffff]
[ 0.406821] pci_bus 0000:05: resource 0 io: [0xe000-0xefff]
[ 0.406822] pci_bus 0000:05: resource 1 mem: [0xfeb00000-0xfebfffff]
[ 0.406824] pci_bus 0000:05: resource 3 io: [0x00-0xffff]
[ 0.406825] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffffffffffff]
[ 0.406843] NET: Registered protocol family 2
[ 0.406923] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.407362] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 0.408430] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.408761] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.408763] TCP reno registered
[ 0.408829] NET: Registered protocol family 1
[ 0.408873] Trying to unpack rootfs image as initramfs...
[ 0.501459] Switched to high resolution mode on CPU 1
[ 0.509977] Switched to high resolution mode on CPU 0
[ 0.524976] Freeing initrd memory: 7686k freed
[ 0.527148] Scanning for low memory corruption every 60 seconds
[ 0.527246] audit: initializing netlink socket (disabled)
[ 0.527258] type=2000 audit(1268064521.520:1): initialized
[ 0.533564] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.534488] VFS: Disk quotas dquot_6.5.2
[ 0.534524] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.534884] fuse init (API version 7.12)
[ 0.534936] msgmni has been set to 4017
[ 0.535074] alg: No test for stdrng (krng)
[ 0.535082] io scheduler noop registered
[ 0.535084] io scheduler anticipatory registered
[ 0.535085] io scheduler deadline registered
[ 0.535110] io scheduler cfq registered (default)
[ 0.535219] pci 0000:01:00.0: Boot video device
[ 0.535313] alloc irq_desc for 24 on node 0
[ 0.535315] alloc kstat_irqs on node 0
[ 0.535321] pcieport-driver 0000:00:01.0: irq 24 for MSI/MSI-X
[ 0.535325] pcieport-driver 0000:00:01.0: setting latency timer to 64
[ 0.535403] alloc irq_desc for 25 on node 0
[ 0.535404] alloc kstat_irqs on node 0
[ 0.535409] pcieport-driver 0000:00:1c.0: irq 25 for MSI/MSI-X
[ 0.535415] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[ 0.535508] alloc irq_desc for 26 on node 0
[ 0.535509] alloc kstat_irqs on node 0
[ 0.535514] pcieport-driver 0000:00:1c.4: irq 26 for MSI/MSI-X
[ 0.535520] pcieport-driver 0000:00:1c.4: setting latency timer to 64
[ 0.535617] alloc irq_desc for 27 on node 0
[ 0.535618] alloc kstat_irqs on node 0
[ 0.535623] pcieport-driver 0000:00:1c.5: irq 27 for MSI/MSI-X
[ 0.535628] pcieport-driver 0000:00:1c.5: setting latency timer to 64
[ 0.535691] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.535759] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.535846] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.535849] ACPI: Power Button [PWRF]
[ 0.535889] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[ 0.535891] ACPI: Power Button [PWRB]
[ 0.536290] ACPI: SSDT 000000007ff8e0d0 001D2 (v01 AMI CPU1PM 00000001 INTL 20060113)
[ 0.536471] processor LNXCPU:00: registered as cooling_device0
[ 0.536671] ACPI: SSDT 000000007ff8e2b0 00143 (v01 AMI CPU2PM 00000001 INTL 20060113)
[ 0.536843] processor LNXCPU:01: registered as cooling_device1
[ 0.539072] Linux agpgart interface v0.103
[ 0.539078] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.539158] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 0.539386] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 0.540047] brd: module loaded
[ 0.540318] loop: module loaded
[ 0.540364] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[ 0.540424] ahci 0000:03:00.0: version 3.0
[ 0.540436] ahci 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.560030] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[ 0.560033] ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[ 0.560039] ahci 0000:03:00.0: setting latency timer to 64
[ 0.560174] scsi0 : ahci
[ 0.560218] scsi1 : ahci
[ 0.560263] ata1: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe100 irq 16
[ 0.560265] ata2: SATA max UDMA/133 abar m8192@0xfeafe000 port 0xfeafe180 irq 16
[ 0.560312] ata_piix 0000:00:1f.2: version 2.13
[ 0.560320] alloc irq_desc for 22 on node 0
[ 0.560321] alloc kstat_irqs on node 0
[ 0.560324] ata_piix 0000:00:1f.2: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[ 0.560328] ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ]
[ 0.560352] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 0.560386] scsi2 : ata_piix
[ 0.560418] scsi3 : ata_piix
[ 0.561255] ata3: SATA max UDMA/133 cmd 0xa000 ctl 0x9c00 bmdma 0x9480 irq 22
[ 0.561258] ata4: SATA max UDMA/133 cmd 0x9880 ctl 0x9800 bmdma 0x9488 irq 22
[ 0.561294] ata_piix 0000:00:1f.5: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[ 0.561297] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[ 0.561320] ata_piix 0000:00:1f.5: setting latency timer to 64
[ 0.561346] scsi4 : ata_piix
[ 0.561380] scsi5 : ata_piix
[ 0.562211] ata5: SATA max UDMA/133 cmd 0xb000 ctl 0xac00 bmdma 0xa480 irq 22
[ 0.562214] ata6: SATA max UDMA/133 cmd 0xa880 ctl 0xa800 bmdma 0xa488 irq 22
[ 0.562441] pata_jmicron 0000:03:00.1: enabling device (0000 -> 0001)
[ 0.562445] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 0.562466] pata_jmicron 0000:03:00.1: setting latency timer to 64
[ 0.562519] scsi6 : pata_jmicron
[ 0.562556] scsi7 : pata_jmicron
[ 0.563024] ata7: PATA max UDMA/100 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 17
[ 0.563026] ata8: PATA max UDMA/100 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 17
[ 0.563346] Fixed MDIO Bus: probed
[ 0.563365] PPP generic driver version 2.4.2
[ 0.563424] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.563451] alloc irq_desc for 18 on node 0
[ 0.563452] alloc kstat_irqs on node 0
[ 0.563455] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.563461] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 0.563463] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 0.563493] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 0.567384] ehci_hcd 0000:00:1a.7: debug port 1
[ 0.567388] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[ 0.567396] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfe7ffc00
[ 0.590008] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 0.590078] usb usb1: configuration #1 chosen from 1 choice
[ 0.590106] hub 1-0:1.0: USB hub found
[ 0.590112] hub 1-0:1.0: 6 ports detected
[ 0.590183] alloc irq_desc for 23 on node 0
[ 0.590185] alloc kstat_irqs on node 0
[ 0.590188] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 0.590195] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 0.590197] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 0.590216] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 0.594089] ehci_hcd 0000:00:1d.7: debug port 1
[ 0.594093] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 0.594101] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfe7ff800
[ 0.610008] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 0.610062] usb usb2: configuration #1 chosen from 1 choice
[ 0.610086] hub 2-0:1.0: USB hub found
[ 0.610092] hub 2-0:1.0: 6 ports detected
[ 0.610152] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.610169] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.610210] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.610214] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 0.610216] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 0.610238] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 0.610256] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000b800
[ 0.610306] usb usb3: configuration #1 chosen from 1 choice
[ 0.610321] hub 3-0:1.0: USB hub found
[ 0.610325] hub 3-0:1.0: 2 ports detected
[ 0.610368] alloc irq_desc for 21 on node 0
[ 0.610369] alloc kstat_irqs on node 0
[ 0.610372] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 0.610376] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[ 0.610378] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 0.610395] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 0.610419] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000b880
[ 0.610467] usb usb4: configuration #1 chosen from 1 choice
[ 0.610482] hub 4-0:1.0: USB hub found
[ 0.610486] hub 4-0:1.0: 2 ports detected
[ 0.610529] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.610533] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[ 0.610535] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 0.610552] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[ 0.610570] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000bc00
[ 0.610618] usb usb5: configuration #1 chosen from 1 choice
[ 0.610633] hub 5-0:1.0: USB hub found
[ 0.610636] hub 5-0:1.0: 2 ports detected
[ 0.610685] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 0.610689] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 0.610691] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 0.610710] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 0.610729] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000b080
[ 0.610774] usb usb6: configuration #1 chosen from 1 choice
[ 0.610790] hub 6-0:1.0: USB hub found
[ 0.610794] hub 6-0:1.0: 2 ports detected
[ 0.610838] alloc irq_desc for 19 on node 0
[ 0.610839] alloc kstat_irqs on node 0
[ 0.610841] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 0.610845] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 0.610847] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 0.610865] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[ 0.610887] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000b400
[ 0.610934] usb usb7: configuration #1 chosen from 1 choice
[ 0.610949] hub 7-0:1.0: USB hub found
[ 0.610953] hub 7-0:1.0: 2 ports detected
[ 0.610996] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 0.611000] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 0.611002] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 0.611021] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[ 0.611038] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000b480
[ 0.611088] usb usb8: configuration #1 chosen from 1 choice
[ 0.611103] hub 8-0:1.0: USB hub found
[ 0.611108] hub 8-0:1.0: 2 ports detected
[ 0.611172] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[ 0.611173] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[ 0.611628] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.611664] mice: PS/2 mouse device common for all mice
[ 0.611719] rtc_cmos 00:03: RTC can wake from S4
[ 0.611737] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[ 0.611757] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 0.611813] device-mapper: uevent: version 1.0.3
[ 0.611861] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[ 0.611899] device-mapper: multipath: version 1.1.0 loaded
[ 0.611902] device-mapper: multipath round-robin: version 1.0.0 loaded
[ 0.611993] cpuidle: using governor ladder
[ 0.611994] cpuidle: using governor menu
[ 0.612233] TCP cubic registered
[ 0.612311] NET: Registered protocol family 10
[ 0.612596] lo: Disabled Privacy Extensions
[ 0.612771] NET: Registered protocol family 17
[ 0.612781] Bluetooth: L2CAP ver 2.13
[ 0.612783] Bluetooth: L2CAP socket layer initialized
[ 0.612785] Bluetooth: SCO (Voice Link) ver 0.6
[ 0.612786] Bluetooth: SCO socket layer initialized
[ 0.612803] Bluetooth: RFCOMM TTY layer initialized
[ 0.612805] Bluetooth: RFCOMM socket layer initialized
[ 0.612806] Bluetooth: RFCOMM ver 1.11
[ 0.613091] PM: Resume from disk failed.
[ 0.613098] registered taskstats version 1
[ 0.613183] Magic number: 2:343:135
[ 0.613190] block ram0: hash matches
[ 0.613232] rtc_cmos 00:03: setting system clock to 2010-03-08 16:08:42 UTC (1268064522)
[ 0.613234] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 0.613235] EDD information not available.
[ 0.632984] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.920023] ata2: SATA link down (SStatus 0 SControl 300)
[ 0.920050] ata1: SATA link down (SStatus 0 SControl 300)
[ 0.920594] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.930637] ata6: SATA link down (SStatus 0 SControl 300)
[ 0.950495] ata7.00: ATAPI: _NEC CD-RW NR-9500B, NS00, max UDMA/33
[ 0.950508] ata7.01: ATAPI: HP DVD Writer 940d, 3H23, max UDMA/66
[ 0.970500] ata7.00: configured for UDMA/33
[ 0.980008] usb 1-6: new high speed USB device using ehci_hcd and address 3
[ 1.010501] ata7.01: configured for UDMA/66
[ 1.070037] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.080037] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.091129] ata5.00: ATA-8: WDC WD1600AAJS-55B4A0, 01.03A01, max UDMA/133
[ 1.091131] ata5.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 1.111162] ata5.00: configured for UDMA/133
[ 1.135627] usb 1-6: configuration #1 chosen from 1 choice
[ 1.136417] ata3.00: ATA-7: ST3120811AS, 3.AAE, max UDMA/133
[ 1.136420] ata3.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 1.219723] ata3.00: configured for UDMA/133
[ 1.219811] scsi 2:0:0:0: Direct-Access ATA ST3120811AS 3.AA PQ: 0 ANSI: 5
[ 1.219900] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 1.219922] sd 2:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
[ 1.219950] sd 2:0:0:0: [sda] Write Protect is off
[ 1.219951] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.219966] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.220047] sda:
[ 1.220152] scsi 4:0:0:0: Direct-Access ATA WDC WD1600AAJS-5 01.0 PQ: 0 ANSI: 5
[ 1.220212] sd 4:0:0:0: [sdb] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[ 1.220212] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 1.220240] sd 4:0:0:0: [sdb] Write Protect is off
[ 1.220242] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.220256] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.220321] sdb:
[ 1.221568] scsi 6:0:0:0: CD-ROM _NEC CD-RW NR-9500B NS00 PQ: 0 ANSI: 5
[ 1.225406] sr0: scsi3-mmc drive: 52x/52x writer cd/rw xa/form2 cdda tray
[ 1.225409] Uniform CD-ROM driver Revision: 3.20
[ 1.225474] sr 6:0:0:0: Attached scsi CD-ROM sr0
[ 1.225509] sr 6:0:0:0: Attached scsi generic sg2 type 5
[ 1.226526] scsi 6:0:1:0: CD-ROM HP DVD Writer 940d 3H23 PQ: 0 ANSI: 5
[ 1.231690] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.231753] sr 6:0:1:0: Attached scsi CD-ROM sr1
[ 1.231790] sr 6:0:1:0: Attached scsi generic sg3 type 5
[ 1.267718] sda1 sda2 < sda5 sda6 sda7 sda8 >
[ 1.338499] sd 2:0:0:0: [sda] Attached SCSI disk
[ 1.411256] usb 3-1: new low speed USB device using uhci_hcd and address 2
[ 1.591332] usb 3-1: configuration #1 chosen from 1 choice
[ 3.552654] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 3.552657] ata5.00: BMDMA stat 0x24
[ 3.552663] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 3.552664] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 3.552666] ata5.00: status: { DRDY ERR }
[ 3.552668] ata5.00: error: { UNC }
[ 3.610618] ata5.00: configured for UDMA/133
[ 3.610623] ata5: EH complete
[ 5.977057] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 5.977060] ata5.00: BMDMA stat 0x24
[ 5.977066] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 5.977067] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 5.977070] ata5.00: status: { DRDY ERR }
[ 5.977072] ata5.00: error: { UNC }
[ 6.031014] ata5.00: configured for UDMA/133
[ 6.031019] ata5: EH complete
[ 8.235305] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 8.235307] ata5.00: BMDMA stat 0x24
[ 8.235313] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 8.235314] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 8.235316] ata5.00: status: { DRDY ERR }
[ 8.235318] ata5.00: error: { UNC }
[ 8.271239] ata5.00: configured for UDMA/133
[ 8.271244] ata5: EH complete
[ 10.635679] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 10.635681] ata5.00: BMDMA stat 0x24
[ 10.635686] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 10.635688] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 10.635690] ata5.00: status: { DRDY ERR }
[ 10.635692] ata5.00: error: { UNC }
[ 10.670642] ata5.00: configured for UDMA/133
[ 10.670647] ata5: EH complete
[ 12.876900] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 12.876902] ata5.00: BMDMA stat 0x24
[ 12.876908] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 12.876909] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 12.876911] ata5.00: status: { DRDY ERR }
[ 12.876913] ata5.00: error: { UNC }
[ 12.910835] ata5.00: configured for UDMA/133
[ 12.910839] ata5: EH complete
[ 15.437416] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 15.437418] ata5.00: BMDMA stat 0x24
[ 15.437424] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 15.437425] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 15.437428] ata5.00: status: { DRDY ERR }
[ 15.437429] ata5.00: error: { UNC }
[ 15.470360] ata5.00: configured for UDMA/133
[ 15.470365] sd 4:0:0:0: [sdb] Unhandled sense code
[ 15.470367] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 15.470370] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 15.470374] Descriptor sense data with sense descriptors (in hex):
[ 15.470377] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 15.470385] 00 00 00 03
[ 15.470389] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 15.470393] end_request: I/O error, dev sdb, sector 3
[ 15.470396] Buffer I/O error on device sdb, logical block 0
[ 15.470403] ata5: EH complete
[ 17.676648] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 17.676650] ata5.00: BMDMA stat 0x24
[ 17.676656] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 17.676657] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 17.676659] ata5.00: status: { DRDY ERR }
[ 17.676661] ata5.00: error: { UNC }
[ 17.710579] ata5.00: configured for UDMA/133
[ 17.710584] ata5: EH complete
[ 20.398349] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 20.398352] ata5.00: BMDMA stat 0x24
[ 20.398357] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 20.398358] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 20.398361] ata5.00: status: { DRDY ERR }
[ 20.398362] ata5.00: error: { UNC }
[ 20.431272] ata5.00: configured for UDMA/133
[ 20.431277] ata5: EH complete
[ 22.953878] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 22.953881] ata5.00: BMDMA stat 0x24
[ 22.953886] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 22.953887] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 22.953890] ata5.00: status: { DRDY ERR }
[ 22.953891] ata5.00: error: { UNC }
[ 23.010827] ata5.00: configured for UDMA/133
[ 23.010831] ata5: EH complete
[ 25.218114] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 25.218117] ata5.00: BMDMA stat 0x24
[ 25.218122] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 25.218123] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 25.218126] ata5.00: status: { DRDY ERR }
[ 25.218128] ata5.00: error: { UNC }
[ 25.251048] ata5.00: configured for UDMA/133
[ 25.251053] ata5: EH complete
[ 27.460336] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 27.460339] ata5.00: BMDMA stat 0x24
[ 27.460344] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 27.460345] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 27.460348] ata5.00: status: { DRDY ERR }
[ 27.460349] ata5.00: error: { UNC }
[ 27.501280] ata5.00: configured for UDMA/133
[ 27.501285] ata5: EH complete
[ 29.709565] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 29.709567] ata5.00: BMDMA stat 0x24
[ 29.709572] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 29.709573] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 29.709576] ata5.00: status: { DRDY ERR }
[ 29.709578] ata5.00: error: { UNC }
[ 29.760529] ata5.00: configured for UDMA/133
[ 29.760534] sd 4:0:0:0: [sdb] Unhandled sense code
[ 29.760536] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 29.760539] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 29.760543] Descriptor sense data with sense descriptors (in hex):
[ 29.760544] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 29.760553] 00 00 00 03
[ 29.760557] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 29.760560] end_request: I/O error, dev sdb, sector 3
[ 29.760563] Buffer I/O error on device sdb, logical block 0
[ 29.760570] ata5: EH complete
[ 32.126961] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 32.126964] ata5.00: BMDMA stat 0x24
[ 32.126969] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 32.126970] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 32.126973] ata5.00: status: { DRDY ERR }
[ 32.126975] ata5.00: error: { UNC }
[ 32.160893] ata5.00: configured for UDMA/133
[ 32.160898] ata5: EH complete
[ 34.526337] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 34.526339] ata5.00: BMDMA stat 0x24
[ 34.526345] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 34.526346] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 34.526349] ata5.00: status: { DRDY ERR }
[ 34.526350] ata5.00: error: { UNC }
[ 34.561298] ata5.00: configured for UDMA/133
[ 34.561303] ata5: EH complete
[ 36.767539] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 36.767541] ata5.00: BMDMA stat 0x24
[ 36.767546] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 36.767547] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 36.767550] ata5.00: status: { DRDY ERR }
[ 36.767552] ata5.00: error: { UNC }
[ 36.800483] ata5.00: configured for UDMA/133
[ 36.800488] ata5: EH complete
[ 39.167934] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 39.167936] ata5.00: BMDMA stat 0x24
[ 39.167941] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 39.167942] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 39.167945] ata5.00: status: { DRDY ERR }
[ 39.167947] ata5.00: error: { UNC }
[ 39.200868] ata5.00: configured for UDMA/133
[ 39.200873] ata5: EH complete
[ 41.570344] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 41.570346] ata5.00: BMDMA stat 0x24
[ 41.570351] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 41.570353] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 41.570355] ata5.00: status: { DRDY ERR }
[ 41.570357] ata5.00: error: { UNC }
[ 41.611269] ata5.00: configured for UDMA/133
[ 41.611273] ata5: EH complete
[ 43.817558] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 43.817561] ata5.00: BMDMA stat 0x24
[ 43.817566] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 43.817567] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 43.817569] ata5.00: status: { DRDY ERR }
[ 43.817571] ata5.00: error: { UNC }
[ 43.850466] ata5.00: configured for UDMA/133
[ 43.850471] sd 4:0:0:0: [sdb] Unhandled sense code
[ 43.850473] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 43.850476] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 43.850479] Descriptor sense data with sense descriptors (in hex):
[ 43.850481] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 43.850490] 00 00 00 03
[ 43.850493] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 43.850497] end_request: I/O error, dev sdb, sector 3
[ 43.850500] Buffer I/O error on device sdb, logical block 0
[ 43.850506] ata5: EH complete
[ 46.381090] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 46.381092] ata5.00: BMDMA stat 0x24
[ 46.381098] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 46.381099] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 46.381101] ata5.00: status: { DRDY ERR }
[ 46.381103] ata5.00: error: { UNC }
[ 46.441063] ata5.00: configured for UDMA/133
[ 46.441068] ata5: EH complete
[ 48.800482] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 48.800484] ata5.00: BMDMA stat 0x24
[ 48.800490] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 48.800491] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 48.800493] ata5.00: status: { DRDY ERR }
[ 48.800495] ata5.00: error: { UNC }
[ 48.860470] ata5.00: configured for UDMA/133
[ 48.860475] ata5: EH complete
[ 51.384054] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 51.384057] ata5.00: BMDMA stat 0x24
[ 51.384062] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 51.384063] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 51.384066] ata5.00: status: { DRDY ERR }
[ 51.384067] ata5.00: error: { UNC }
[ 51.440979] ata5.00: configured for UDMA/133
[ 51.440983] ata5: EH complete
[ 53.642281] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 53.642283] ata5.00: BMDMA stat 0x24
[ 53.642288] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 53.642289] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 53.642292] ata5.00: status: { DRDY ERR }
[ 53.642294] ata5.00: error: { UNC }
[ 53.681196] ata5.00: configured for UDMA/133
[ 53.681201] ata5: EH complete
[ 55.883506] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 55.883508] ata5.00: BMDMA stat 0x24
[ 55.883514] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 55.883515] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 55.883518] ata5.00: status: { DRDY ERR }
[ 55.883519] ata5.00: error: { UNC }
[ 55.920413] ata5.00: configured for UDMA/133
[ 55.920418] ata5: EH complete
[ 58.283876] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 58.283878] ata5.00: BMDMA stat 0x24
[ 58.283883] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 58.283885] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 58.283887] ata5.00: status: { DRDY ERR }
[ 58.283889] ata5.00: error: { UNC }
[ 58.320799] ata5.00: configured for UDMA/133
[ 58.320804] sd 4:0:0:0: [sdb] Unhandled sense code
[ 58.320805] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 58.320808] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 58.320812] Descriptor sense data with sense descriptors (in hex):
[ 58.320814] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 58.320822] 00 00 00 03
[ 58.320826] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 58.320830] end_request: I/O error, dev sdb, sector 3
[ 58.320832] Buffer I/O error on device sdb, logical block 0
[ 58.320839] ata5: EH complete
[ 60.686273] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 60.686275] ata5.00: BMDMA stat 0x24
[ 60.686281] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 60.686282] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 60.686285] ata5.00: status: { DRDY ERR }
[ 60.686286] ata5.00: error: { UNC }
[ 60.721204] ata5.00: configured for UDMA/133
[ 60.721208] ata5: EH complete
[ 62.925474] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 62.925476] ata5.00: BMDMA stat 0x24
[ 62.925481] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 62.925482] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 62.925485] ata5.00: status: { DRDY ERR }
[ 62.925487] ata5.00: error: { UNC }
[ 62.980438] ata5.00: configured for UDMA/133
[ 62.980443] ata5: EH complete
[ 65.183701] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 65.183703] ata5.00: BMDMA stat 0x24
[ 65.183708] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 65.183709] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 65.183712] ata5.00: status: { DRDY ERR }
[ 65.183714] ata5.00: error: { UNC }
[ 65.220621] ata5.00: configured for UDMA/133
[ 65.220625] ata5: EH complete
[ 67.424926] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 67.424929] ata5.00: BMDMA stat 0x24
[ 67.424934] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 67.424935] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 67.424938] ata5.00: status: { DRDY ERR }
[ 67.424940] ata5.00: error: { UNC }
[ 67.460857] ata5.00: configured for UDMA/133
[ 67.460862] ata5: EH complete
[ 69.667147] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 69.667149] ata5.00: BMDMA stat 0x24
[ 69.667154] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 69.667155] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 69.667158] ata5.00: status: { DRDY ERR }
[ 69.667160] ata5.00: error: { UNC }
[ 69.721077] ata5.00: configured for UDMA/133
[ 69.721081] ata5: EH complete
[ 72.083549] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 72.083551] ata5.00: BMDMA stat 0x24
[ 72.083556] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 72.083557] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 72.083560] ata5.00: status: { DRDY ERR }
[ 72.083562] ata5.00: error: { UNC }
[ 72.140472] ata5.00: configured for UDMA/133
[ 72.140477] sd 4:0:0:0: [sdb] Unhandled sense code
[ 72.140479] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 72.140482] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 72.140485] Descriptor sense data with sense descriptors (in hex):
[ 72.140487] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 72.140496] 00 00 00 03
[ 72.140499] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 72.140503] end_request: I/O error, dev sdb, sector 3
[ 72.140505] Buffer I/O error on device sdb, logical block 0
[ 72.140511] ata5: EH complete
[ 72.140515] ldm_validate_partition_table(): Disk read failed.
[ 74.510942] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 74.510945] ata5.00: BMDMA stat 0x24
[ 74.510950] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 74.510951] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 74.510953] ata5.00: status: { DRDY ERR }
[ 74.510955] ata5.00: error: { UNC }
[ 74.550894] ata5.00: configured for UDMA/133
[ 74.550898] ata5: EH complete
[ 77.396803] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 77.396805] ata5.00: BMDMA stat 0x24
[ 77.396810] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 77.396811] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 77.396814] ata5.00: status: { DRDY ERR }
[ 77.396816] ata5.00: error: { UNC }
[ 77.430709] ata5.00: configured for UDMA/133
[ 77.430714] ata5: EH complete
[ 79.641020] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 79.641022] ata5.00: BMDMA stat 0x24
[ 79.641027] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 79.641029] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 79.641031] ata5.00: status: { DRDY ERR }
[ 79.641033] ata5.00: error: { UNC }
[ 79.700992] ata5.00: configured for UDMA/133
[ 79.700996] ata5: EH complete
[ 82.066419] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 82.066421] ata5.00: BMDMA stat 0x24
[ 82.066426] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 82.066427] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 82.066430] ata5.00: status: { DRDY ERR }
[ 82.066432] ata5.00: error: { UNC }
[ 82.100336] ata5.00: configured for UDMA/133
[ 82.100341] ata5: EH complete
[ 84.307642] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 84.307644] ata5.00: BMDMA stat 0x24
[ 84.307650] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 84.307651] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 84.307653] ata5.00: status: { DRDY ERR }
[ 84.307655] ata5.00: error: { UNC }
[ 84.340550] ata5.00: configured for UDMA/133
[ 84.340555] ata5: EH complete
[ 86.866185] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 86.866187] ata5.00: BMDMA stat 0x24
[ 86.866193] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 86.866194] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 86.866197] ata5.00: status: { DRDY ERR }
[ 86.866198] ata5.00: error: { UNC }
[ 86.901123] ata5.00: configured for UDMA/133
[ 86.901127] sd 4:0:0:0: [sdb] Unhandled sense code
[ 86.901129] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 86.901132] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 86.901136] Descriptor sense data with sense descriptors (in hex):
[ 86.901138] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 86.901146] 00 00 00 03
[ 86.901150] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 86.901153] end_request: I/O error, dev sdb, sector 3
[ 86.901156] Buffer I/O error on device sdb, logical block 0
[ 86.901161] ata5: EH complete
[ 89.587865] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 89.587868] ata5.00: BMDMA stat 0x24
[ 89.587873] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 89.587874] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 89.587877] ata5.00: status: { DRDY ERR }
[ 89.587878] ata5.00: error: { UNC }
[ 89.640798] ata5.00: configured for UDMA/133
[ 89.640802] ata5: EH complete
[ 92.171438] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 92.171441] ata5.00: BMDMA stat 0x24
[ 92.171446] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 92.171447] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 92.171450] ata5.00: status: { DRDY ERR }
[ 92.171452] ata5.00: error: { UNC }
[ 92.210342] ata5.00: configured for UDMA/133
[ 92.210347] ata5: EH complete
[ 94.576825] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 94.576828] ata5.00: BMDMA stat 0x24
[ 94.576833] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 94.576834] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 94.576837] ata5.00: status: { DRDY ERR }
[ 94.576839] ata5.00: error: { UNC }
[ 94.610725] ata5.00: configured for UDMA/133
[ 94.610729] ata5: EH complete
[ 97.135340] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 97.135342] ata5.00: BMDMA stat 0x24
[ 97.135348] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 97.135349] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 97.135351] ata5.00: status: { DRDY ERR }
[ 97.135353] ata5.00: error: { UNC }
[ 97.191269] ata5.00: configured for UDMA/133
[ 97.191274] ata5: EH complete
[ 99.557748] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 99.557750] ata5.00: BMDMA stat 0x24
[ 99.557756] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 99.557757] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 99.557759] ata5.00: status: { DRDY ERR }
[ 99.557761] ata5.00: error: { UNC }
[ 99.590655] ata5.00: configured for UDMA/133
[ 99.590660] ata5: EH complete
[ 101.957122] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 101.957124] ata5.00: BMDMA stat 0x24
[ 101.957129] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 101.957130] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 101.957133] ata5.00: status: { DRDY ERR }
[ 101.957135] ata5.00: error: { UNC }
[ 101.991025] ata5.00: configured for UDMA/133
[ 101.991029] sd 4:0:0:0: [sdb] Unhandled sense code
[ 101.991031] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 101.991034] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 101.991038] Descriptor sense data with sense descriptors (in hex):
[ 101.991040] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 101.991048] 00 00 00 03
[ 101.991052] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 101.991056] end_request: I/O error, dev sdb, sector 3
[ 101.991058] Buffer I/O error on device sdb, logical block 0
[ 101.991064] ata5: EH complete
[ 104.681816] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 104.681819] ata5.00: BMDMA stat 0x24
[ 104.681824] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 104.681825] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 104.681828] ata5.00: status: { DRDY ERR }
[ 104.681829] ata5.00: error: { UNC }
[ 104.720731] ata5.00: configured for UDMA/133
[ 104.720736] ata5: EH complete
[ 106.924039] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 106.924041] ata5.00: BMDMA stat 0x24
[ 106.924047] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 106.924048] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 106.924050] ata5.00: status: { DRDY ERR }
[ 106.924052] ata5.00: error: { UNC }
[ 106.960945] ata5.00: configured for UDMA/133
[ 106.960950] ata5: EH complete
[ 109.326427] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 109.326430] ata5.00: BMDMA stat 0x24
[ 109.326435] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 109.326436] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 109.326439] ata5.00: status: { DRDY ERR }
[ 109.326441] ata5.00: error: { UNC }
[ 109.380353] ata5.00: configured for UDMA/133
[ 109.380357] ata5: EH complete
[ 111.740810] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 111.740812] ata5.00: BMDMA stat 0x24
[ 111.740818] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 111.740819] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 111.740821] ata5.00: status: { DRDY ERR }
[ 111.740823] ata5.00: error: { UNC }
[ 111.780757] ata5.00: configured for UDMA/133
[ 111.780762] ata5: EH complete
[ 114.151206] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 114.151208] ata5.00: BMDMA stat 0x24
[ 114.151213] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 114.151214] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 114.151217] ata5.00: status: { DRDY ERR }
[ 114.151219] ata5.00: error: { UNC }
[ 114.191151] ata5.00: configured for UDMA/133
[ 114.191155] ata5: EH complete
[ 116.398412] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 116.398414] ata5.00: BMDMA stat 0x24
[ 116.398419] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 116.398420] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 116.398423] ata5.00: status: { DRDY ERR }
[ 116.398425] ata5.00: error: { UNC }
[ 116.450341] ata5.00: configured for UDMA/133
[ 116.450345] sd 4:0:0:0: [sdb] Unhandled sense code
[ 116.450347] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 116.450350] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 116.450354] Descriptor sense data with sense descriptors (in hex):
[ 116.450356] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 116.450364] 00 00 00 03
[ 116.450368] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 116.450371] end_request: I/O error, dev sdb, sector 3
[ 116.450374] Buffer I/O error on device sdb, logical block 0
[ 116.450380] ata5: EH complete
[ 118.817802] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 118.817804] ata5.00: BMDMA stat 0x24
[ 118.817810] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 118.817811] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 118.817813] ata5.00: status: { DRDY ERR }
[ 118.817815] ata5.00: error: { UNC }
[ 118.870736] ata5.00: configured for UDMA/133
[ 118.870741] ata5: EH complete
[ 121.073038] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 121.073041] ata5.00: BMDMA stat 0x24
[ 121.073046] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 121.073047] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 121.073050] ata5.00: status: { DRDY ERR }
[ 121.073052] ata5.00: error: { UNC }
[ 121.110954] ata5.00: configured for UDMA/133
[ 121.110959] ata5: EH complete
[ 123.315259] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 123.315261] ata5.00: BMDMA stat 0x24
[ 123.315267] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 123.315268] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 123.315270] ata5.00: status: { DRDY ERR }
[ 123.315272] ata5.00: error: { UNC }
[ 123.351191] ata5.00: configured for UDMA/133
[ 123.351196] ata5: EH complete
[ 125.556484] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 125.556487] ata5.00: BMDMA stat 0x24
[ 125.556492] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 125.556493] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 125.556496] ata5.00: status: { DRDY ERR }
[ 125.556498] ata5.00: error: { UNC }
[ 125.670504] ata5.00: configured for UDMA/133
[ 125.670508] ata5: EH complete
[ 128.201108] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 128.201111] ata5.00: BMDMA stat 0x24
[ 128.201116] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 128.201117] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 128.201120] ata5.00: status: { DRDY ERR }
[ 128.201122] ata5.00: error: { UNC }
[ 128.241092] ata5.00: configured for UDMA/133
[ 128.241097] ata5: EH complete
[ 130.764637] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 130.764639] ata5.00: BMDMA stat 0x24
[ 130.764645] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 130.764646] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 130.764648] ata5.00: status: { DRDY ERR }
[ 130.764650] ata5.00: error: { UNC }
[ 130.801573] ata5.00: configured for UDMA/133
[ 130.801578] sd 4:0:0:0: [sdb] Unhandled sense code
[ 130.801580] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 130.801582] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 130.801586] Descriptor sense data with sense descriptors (in hex):
[ 130.801588] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 130.801597] 00 00 00 03
[ 130.801600] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 130.801604] end_request: I/O error, dev sdb, sector 3
[ 130.801606] Buffer I/O error on device sdb, logical block 0
[ 130.801612] ata5: EH complete
[ 130.801617] Dev sdb: unable to read RDB block 0
[ 133.005863] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 133.005866] ata5.00: BMDMA stat 0x24
[ 133.005871] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 133.005872] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 133.005875] ata5.00: status: { DRDY ERR }
[ 133.005876] ata5.00: error: { UNC }
[ 133.040799] ata5.00: configured for UDMA/133
[ 133.040804] ata5: EH complete
[ 135.248085] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 135.248087] ata5.00: BMDMA stat 0x24
[ 135.248093] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 135.248094] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 135.248097] ata5.00: status: { DRDY ERR }
[ 135.248098] ata5.00: error: { UNC }
[ 135.280994] ata5.00: configured for UDMA/133
[ 135.280999] ata5: EH complete
[ 137.650451] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 137.650454] ata5.00: BMDMA stat 0x24
[ 137.650459] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 137.650460] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 137.650463] ata5.00: status: { DRDY ERR }
[ 137.650465] ata5.00: error: { UNC }
[ 137.690403] ata5.00: configured for UDMA/133
[ 137.690408] ata5: EH complete
[ 140.055832] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 140.055835] ata5.00: BMDMA stat 0x24
[ 140.055840] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 140.055841] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 140.055844] ata5.00: status: { DRDY ERR }
[ 140.055845] ata5.00: error: { UNC }
[ 140.110811] ata5.00: configured for UDMA/133
[ 140.110815] ata5: EH complete
[ 142.314080] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 142.314082] ata5.00: BMDMA stat 0x24
[ 142.314088] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 142.314089] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 142.314091] ata5.00: status: { DRDY ERR }
[ 142.314093] ata5.00: error: { UNC }
[ 142.371002] ata5.00: configured for UDMA/133
[ 142.371006] ata5: EH complete
[ 144.730459] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 144.730461] ata5.00: BMDMA stat 0x24
[ 144.730467] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 144.730468] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 144.730470] ata5.00: status: { DRDY ERR }
[ 144.730472] ata5.00: error: { UNC }
[ 144.790432] ata5.00: configured for UDMA/133
[ 144.790436] sd 4:0:0:0: [sdb] Unhandled sense code
[ 144.790438] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 144.790441] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 144.790445] Descriptor sense data with sense descriptors (in hex):
[ 144.790447] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 144.790455] 00 00 00 03
[ 144.790459] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 144.790462] end_request: I/O error, dev sdb, sector 3
[ 144.790465] Buffer I/O error on device sdb, logical block 0
[ 144.790471] ata5: EH complete
[ 146.997708] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 146.997710] ata5.00: BMDMA stat 0x24
[ 146.997716] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 146.997717] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 146.997719] ata5.00: status: { DRDY ERR }
[ 146.997721] ata5.00: error: { UNC }
[ 147.030616] ata5.00: configured for UDMA/133
[ 147.030621] ata5: EH complete
[ 149.397081] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 149.397084] ata5.00: BMDMA stat 0x24
[ 149.397089] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 149.397090] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 149.397093] ata5.00: status: { DRDY ERR }
[ 149.397095] ata5.00: error: { UNC }
[ 149.451011] ata5.00: configured for UDMA/133
[ 149.451016] ata5: EH complete
[ 151.977638] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 151.977641] ata5.00: BMDMA stat 0x24
[ 151.977646] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 151.977647] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 151.977650] ata5.00: status: { DRDY ERR }
[ 151.977652] ata5.00: error: { UNC }
[ 152.010547] ata5.00: configured for UDMA/133
[ 152.010551] ata5: EH complete
[ 154.213853] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 154.213855] ata5.00: BMDMA stat 0x24
[ 154.213860] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 154.213862] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 154.213864] ata5.00: status: { DRDY ERR }
[ 154.213866] ata5.00: error: { UNC }
[ 154.250763] ata5.00: configured for UDMA/133
[ 154.250767] ata5: EH complete
[ 156.455079] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 156.455082] ata5.00: BMDMA stat 0x24
[ 156.455087] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 156.455088] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 156.455091] ata5.00: status: { DRDY ERR }
[ 156.455092] ata5.00: error: { UNC }
[ 156.511007] ata5.00: configured for UDMA/133
[ 156.511011] ata5: EH complete
[ 158.713305] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 158.713307] ata5.00: BMDMA stat 0x24
[ 158.713313] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 158.713314] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 158.713316] ata5.00: status: { DRDY ERR }
[ 158.713318] ata5.00: error: { UNC }
[ 158.751225] ata5.00: configured for UDMA/133
[ 158.751230] sd 4:0:0:0: [sdb] Unhandled sense code
[ 158.751232] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 158.751234] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 158.751238] Descriptor sense data with sense descriptors (in hex):
[ 158.751240] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 158.751249] 00 00 00 03
[ 158.751253] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 158.751256] end_request: I/O error, dev sdb, sector 3
[ 158.751259] Buffer I/O error on device sdb, logical block 0
[ 158.751264] ata5: EH complete
[ 161.122704] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 161.122706] ata5.00: BMDMA stat 0x24
[ 161.122711] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 161.122713] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 161.122715] ata5.00: status: { DRDY ERR }
[ 161.122717] ata5.00: error: { UNC }
[ 161.160604] ata5.00: configured for UDMA/133
[ 161.160609] ata5: EH complete
[ 163.530080] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 163.530082] ata5.00: BMDMA stat 0x24
[ 163.530088] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 163.530089] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 163.530091] ata5.00: status: { DRDY ERR }
[ 163.530093] ata5.00: error: { UNC }
[ 163.570997] ata5.00: configured for UDMA/133
[ 163.571002] ata5: EH complete
[ 165.947478] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 165.947481] ata5.00: BMDMA stat 0x24
[ 165.947486] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 165.947487] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 165.947490] ata5.00: status: { DRDY ERR }
[ 165.947491] ata5.00: error: { UNC }
[ 165.980383] ata5.00: configured for UDMA/133
[ 165.980387] ata5: EH complete
[ 168.196705] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 168.196708] ata5.00: BMDMA stat 0x24
[ 168.196713] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 168.196714] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 168.196717] ata5.00: status: { DRDY ERR }
[ 168.196718] ata5.00: error: { UNC }
[ 168.230607] ata5.00: configured for UDMA/133
[ 168.230611] ata5: EH complete
[ 170.446929] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 170.446931] ata5.00: BMDMA stat 0x24
[ 170.446936] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 170.446937] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 170.446940] ata5.00: status: { DRDY ERR }
[ 170.446942] ata5.00: error: { UNC }
[ 170.480868] ata5.00: configured for UDMA/133
[ 170.480873] ata5: EH complete
[ 173.455913] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 173.455916] ata5.00: BMDMA stat 0x24
[ 173.455921] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 173.455922] res 51/40:00:1a:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 173.455925] ata5.00: status: { DRDY ERR }
[ 173.455927] ata5.00: error: { UNC }
[ 173.490846] ata5.00: configured for UDMA/133
[ 173.490851] sd 4:0:0:0: [sdb] Unhandled sense code
[ 173.490852] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 173.490855] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 173.490859] Descriptor sense data with sense descriptors (in hex):
[ 173.490861] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 173.490869] 00 00 00 1a
[ 173.490873] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 173.490877] end_request: I/O error, dev sdb, sector 26
[ 173.490879] Buffer I/O error on device sdb, logical block 3
[ 173.490885] ata5: EH complete
[ 175.863287] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 175.863289] ata5.00: BMDMA stat 0x24
[ 175.863295] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 175.863296] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 175.863298] ata5.00: status: { DRDY ERR }
[ 175.863300] ata5.00: error: { UNC }
[ 175.901204] ata5.00: configured for UDMA/133
[ 175.901208] ata5: EH complete
[ 178.271681] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 178.271684] ata5.00: BMDMA stat 0x24
[ 178.271689] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 178.271690] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 178.271693] ata5.00: status: { DRDY ERR }
[ 178.271694] ata5.00: error: { UNC }
[ 178.310582] ata5.00: configured for UDMA/133
[ 178.310587] ata5: EH complete
[ 180.521908] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 180.521911] ata5.00: BMDMA stat 0x24
[ 180.521916] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 180.521917] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 180.521920] ata5.00: status: { DRDY ERR }
[ 180.521921] ata5.00: error: { UNC }
[ 180.560810] ata5.00: configured for UDMA/133
[ 180.560814] ata5: EH complete
[ 182.771135] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 182.771138] ata5.00: BMDMA stat 0x24
[ 182.771143] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 182.771144] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 182.771147] ata5.00: status: { DRDY ERR }
[ 182.771148] ata5.00: error: { UNC }
[ 182.811083] ata5.00: configured for UDMA/133
[ 182.811087] ata5: EH complete
[ 185.340675] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 185.340677] ata5.00: BMDMA stat 0x24
[ 185.340682] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 185.340683] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 185.340686] ata5.00: status: { DRDY ERR }
[ 185.340688] ata5.00: error: { UNC }
[ 185.380619] ata5.00: configured for UDMA/133
[ 185.380624] ata5: EH complete
[ 187.595911] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 187.595913] ata5.00: BMDMA stat 0x24
[ 187.595919] ata5.00: cmd c8/00:08:18:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 187.595920] res 51/40:00:19:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 187.595923] ata5.00: status: { DRDY ERR }
[ 187.595924] ata5.00: error: { UNC }
[ 187.630843] ata5.00: configured for UDMA/133
[ 187.630847] sd 4:0:0:0: [sdb] Unhandled sense code
[ 187.630849] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 187.630852] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 187.630856] Descriptor sense data with sense descriptors (in hex):
[ 187.630857] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 187.630866] 00 00 00 19
[ 187.630869] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 187.630873] end_request: I/O error, dev sdb, sector 25
[ 187.630876] Buffer I/O error on device sdb, logical block 3
[ 187.630881] ata5: EH complete
[ 189.838128] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 189.838130] ata5.00: BMDMA stat 0x24
[ 189.838136] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 189.838137] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 189.838139] ata5.00: status: { DRDY ERR }
[ 189.838141] ata5.00: error: { UNC }
[ 189.871039] ata5.00: configured for UDMA/133
[ 189.871043] ata5: EH complete
[ 192.400664] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 192.400666] ata5.00: BMDMA stat 0x24
[ 192.400672] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 192.400673] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 192.400675] ata5.00: status: { DRDY ERR }
[ 192.400677] ata5.00: error: { UNC }
[ 192.440610] ata5.00: configured for UDMA/133
[ 192.440614] ata5: EH complete
[ 194.807040] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 194.807043] ata5.00: BMDMA stat 0x24
[ 194.807048] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 194.807049] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 194.807052] ata5.00: status: { DRDY ERR }
[ 194.807054] ata5.00: error: { UNC }
[ 194.840947] ata5.00: configured for UDMA/133
[ 194.840951] ata5: EH complete
[ 197.367580] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 197.367582] ata5.00: BMDMA stat 0x24
[ 197.367588] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 197.367589] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 197.367591] ata5.00: status: { DRDY ERR }
[ 197.367593] ata5.00: error: { UNC }
[ 197.400487] ata5.00: configured for UDMA/133
[ 197.400492] ata5: EH complete
[ 199.764957] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 199.764959] ata5.00: BMDMA stat 0x24
[ 199.764964] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 199.764965] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 199.764968] ata5.00: status: { DRDY ERR }
[ 199.764970] ata5.00: error: { UNC }
[ 199.800864] ata5.00: configured for UDMA/133
[ 199.800869] ata5: EH complete
[ 202.165329] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 202.165332] ata5.00: BMDMA stat 0x24
[ 202.165337] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 202.165338] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 202.165341] ata5.00: status: { DRDY ERR }
[ 202.165343] ata5.00: error: { UNC }
[ 202.221288] ata5.00: configured for UDMA/133
[ 202.221292] sd 4:0:0:0: [sdb] Unhandled sense code
[ 202.221294] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 202.221297] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 202.221301] Descriptor sense data with sense descriptors (in hex):
[ 202.221303] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 202.221312] 00 00 00 03
[ 202.221315] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 202.221319] end_request: I/O error, dev sdb, sector 3
[ 202.221321] Buffer I/O error on device sdb, logical block 0
[ 202.221327] ata5: EH complete
[ 204.428566] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 204.428568] ata5.00: BMDMA stat 0x24
[ 204.428574] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 204.428575] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 204.428577] ata5.00: status: { DRDY ERR }
[ 204.428579] ata5.00: error: { UNC }
[ 204.460478] ata5.00: configured for UDMA/133
[ 204.460482] ata5: EH complete
[ 206.661765] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 206.661767] ata5.00: BMDMA stat 0x24
[ 206.661773] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 206.661774] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 206.661776] ata5.00: status: { DRDY ERR }
[ 206.661778] ata5.00: error: { UNC }
[ 206.720708] ata5.00: configured for UDMA/133
[ 206.720713] ata5: EH complete
[ 209.089183] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 209.089185] ata5.00: BMDMA stat 0x24
[ 209.089191] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 209.089192] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 209.089194] ata5.00: status: { DRDY ERR }
[ 209.089196] ata5.00: error: { UNC }
[ 209.121096] ata5.00: configured for UDMA/133
[ 209.121100] ata5: EH complete
[ 211.486560] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 211.486563] ata5.00: BMDMA stat 0x24
[ 211.486568] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 211.486569] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 211.486572] ata5.00: status: { DRDY ERR }
[ 211.486573] ata5.00: error: { UNC }
[ 211.520468] ata5.00: configured for UDMA/133
[ 211.520473] ata5: EH complete
[ 213.888927] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 213.888929] ata5.00: BMDMA stat 0x24
[ 213.888934] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 213.888935] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 213.888938] ata5.00: status: { DRDY ERR }
[ 213.888939] ata5.00: error: { UNC }
[ 213.920838] ata5.00: configured for UDMA/133
[ 213.920843] ata5: EH complete
[ 216.447471] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 216.447473] ata5.00: BMDMA stat 0x24
[ 216.447479] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 216.447480] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 216.447482] ata5.00: status: { DRDY ERR }
[ 216.447484] ata5.00: error: { UNC }
[ 216.480381] ata5.00: configured for UDMA/133
[ 216.480385] sd 4:0:0:0: [sdb] Unhandled sense code
[ 216.480387] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 216.480390] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 216.480393] Descriptor sense data with sense descriptors (in hex):
[ 216.480395] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 216.480404] 00 00 00 03
[ 216.480407] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 216.480411] end_request: I/O error, dev sdb, sector 3
[ 216.480414] Buffer I/O error on device sdb, logical block 0
[ 216.480419] ata5: EH complete
[ 216.480423] unable to read partition table
[ 216.480537] sdb: detected capacity change from 0 to 160041885696
[ 216.480575] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 216.480588] Freeing unused kernel memory: 660k freed
[ 216.480732] Write protecting the kernel read-only data: 7580k
[ 216.549720] Floppy drive(s): fd0 is 1.44M
[ 216.581278] FDC 0 is a post-1991 82077
[ 216.589216] [drm] Initialized drm 1.1.0 20060810
[ 216.591056] atl1 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 216.591064] atl1 0000:02:00.0: setting latency timer to 64
[ 216.591079] atl1 0000:02:00.0: version 2.1.3
[ 216.599578] [drm] radeon default to kernel modesetting DISABLED.
[ 216.599850] pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 216.599853] pci 0000:01:00.0: setting latency timer to 64
[ 216.599934] [drm] Initialized radeon 1.31.0 20080528 for 0000:01:00.0 on minor 0
[ 216.601078] ohci1394 0000:05:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 216.606682] Initializing USB Mass Storage driver...
[ 216.606745] scsi8 : SCSI emulation for USB Mass Storage devices
[ 216.606802] usbcore: registered new interface driver usb-storage
[ 216.606806] USB Mass Storage support registered.
[ 216.609820] usb-storage: device found at 3
[ 216.609821] usb-storage: waiting for device to settle before scanning
[ 216.613853] usbcore: registered new interface driver hiddev
[ 216.628615] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.0/input/input4
[ 216.628666] generic-usb 0003:046D:C51B.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1/input0
[ 216.642489] generic-usb 0003:046D:C51B.0002: hiddev96,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1a.0-1/input1
[ 216.642503] usbcore: registered new interface driver usbhid
[ 216.642505] usbhid: v2.6:USB HID core driver
[ 216.672023] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[16] MMIO=[febff000-febff7ff] Max Packet=[2048] IR/IT contexts=[4/8]
[ 217.991356] ieee1394: Host added: ID:BUS[0-00:1023] GUID[001e8c00012c477f]
[ 219.081084] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 219.081087] ata5.00: BMDMA stat 0x24
[ 219.081093] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 219.081094] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 219.081097] ata5.00: status: { DRDY ERR }
[ 219.081099] ata5.00: error: { UNC }
[ 219.121994] ata5.00: configured for UDMA/133
[ 219.122001] ata5: EH complete
[ 221.328286] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 221.328289] ata5.00: BMDMA stat 0x24
[ 221.328295] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 221.328296] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 221.328299] ata5.00: status: { DRDY ERR }
[ 221.328301] ata5.00: error: { UNC }
[ 221.361202] ata5.00: configured for UDMA/133
[ 221.361207] ata5: EH complete
[ 221.600380] usb-storage: device scan complete
[ 221.601127] scsi 8:0:0:0: Direct-Access Generic STORAGE DEVICE 9325 PQ: 0 ANSI: 0
[ 221.601875] scsi 8:0:0:1: Direct-Access Generic STORAGE DEVICE 9325 PQ: 0 ANSI: 0
[ 221.602113] sd 8:0:0:0: Attached scsi generic sg4 type 0
[ 221.602169] sd 8:0:0:1: Attached scsi generic sg5 type 0
[ 221.605207] sd 8:0:0:0: [sdc] Attached SCSI removable disk
[ 221.605738] sd 8:0:0:1: [sdd] Attached SCSI removable disk
[ 223.569514] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 223.569517] ata5.00: BMDMA stat 0x24
[ 223.569523] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 223.569524] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 223.569527] ata5.00: status: { DRDY ERR }
[ 223.569528] ata5.00: error: { UNC }
[ 223.630468] ata5.00: configured for UDMA/133
[ 223.630474] ata5: EH complete
[ 225.836763] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 225.836766] ata5.00: BMDMA stat 0x24
[ 225.836772] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 225.836773] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 225.836775] ata5.00: status: { DRDY ERR }
[ 225.836777] ata5.00: error: { UNC }
[ 225.901738] ata5.00: configured for UDMA/133
[ 225.901743] ata5: EH complete
[ 228.261164] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 228.261167] ata5.00: BMDMA stat 0x24
[ 228.261173] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 228.261174] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 228.261176] ata5.00: status: { DRDY ERR }
[ 228.261178] ata5.00: error: { UNC }
[ 228.301112] ata5.00: configured for UDMA/133
[ 228.301116] ata5: EH complete
[ 230.503386] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 230.503389] ata5.00: BMDMA stat 0x24
[ 230.503394] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 230.503396] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 230.503398] ata5.00: status: { DRDY ERR }
[ 230.503400] ata5.00: error: { UNC }
[ 230.552301] ata5.00: configured for UDMA/133
[ 230.552306] sd 4:0:0:0: [sdb] Unhandled sense code
[ 230.552308] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 230.552311] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 230.552316] Descriptor sense data with sense descriptors (in hex):
[ 230.552318] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 230.552326] 00 00 00 03
[ 230.552330] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 230.552335] end_request: I/O error, dev sdb, sector 3
[ 230.552338] Buffer I/O error on device sdb, logical block 0
[ 230.552346] ata5: EH complete
[ 232.770042] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 232.770044] ata5.00: BMDMA stat 0x24
[ 232.770050] ata5.00: cmd c8/00:f8:08:00:00/00:00:00:00:00/e0 tag 0 dma 126976 in
[ 232.770051] res 51/40:00:08:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 232.770054] ata5.00: status: { DRDY ERR }
[ 232.770055] ata5.00: error: { UNC }
[ 232.830577] ata5.00: configured for UDMA/133
[ 232.830582] ata5: EH complete
[ 235.205464] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 235.205466] ata5.00: BMDMA stat 0x24
[ 235.205472] ata5.00: cmd c8/00:f8:08:00:00/00:00:00:00:00/e0 tag 0 dma 126976 in
[ 235.205473] res 51/40:00:08:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 235.205475] ata5.00: status: { DRDY ERR }
[ 235.205477] ata5.00: error: { UNC }
[ 235.261975] ata5.00: configured for UDMA/133
[ 235.261980] ata5: EH complete
[ 237.627872] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 237.627874] ata5.00: BMDMA stat 0x24
[ 237.627880] ata5.00: cmd c8/00:f8:08:00:00/00:00:00:00:00/e0 tag 0 dma 126976 in
[ 237.627881] res 51/40:00:08:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 237.627884] ata5.00: status: { DRDY ERR }
[ 237.627885] ata5.00: error: { UNC }
[ 237.660359] ata5.00: configured for UDMA/133
[ 237.660364] ata5: EH complete
[ 239.878096] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 239.878098] ata5.00: BMDMA stat 0x24
[ 239.878104] ata5.00: cmd c8/00:f8:08:00:00/00:00:00:00:00/e0 tag 0 dma 126976 in
[ 239.878105] res 51/40:00:08:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 239.878107] ata5.00: status: { DRDY ERR }
[ 239.878109] ata5.00: error: { UNC }
[ 239.920574] ata5.00: configured for UDMA/133
[ 239.920579] ata5: EH complete
[ 242.297487] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 242.297489] ata5.00: BMDMA stat 0x24
[ 242.297495] ata5.00: cmd c8/00:f8:08:00:00/00:00:00:00:00/e0 tag 0 dma 126976 in
[ 242.297496] res 51/40:00:08:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 242.297499] ata5.00: status: { DRDY ERR }
[ 242.297501] ata5.00: error: { UNC }
[ 242.330973] ata5.00: configured for UDMA/133
[ 242.330978] ata5: EH complete
[ 244.544707] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 244.544709] ata5.00: BMDMA stat 0x24
[ 244.544715] ata5.00: cmd c8/00:f8:08:00:00/00:00:00:00:00/e0 tag 0 dma 126976 in
[ 244.544716] res 51/40:00:08:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 244.544719] ata5.00: status: { DRDY ERR }
[ 244.544720] ata5.00: error: { UNC }
[ 244.592207] ata5.00: configured for UDMA/133
[ 244.592214] sd 4:0:0:0: [sdb] Unhandled sense code
[ 244.592216] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 244.592219] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 244.592223] Descriptor sense data with sense descriptors (in hex):
[ 244.592225] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 244.592234] 00 00 00 08
[ 244.592237] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 244.592241] end_request: I/O error, dev sdb, sector 8
[ 244.592244] Buffer I/O error on device sdb, logical block 1
[ 244.592247] Buffer I/O error on device sdb, logical block 2
[ 244.592249] Buffer I/O error on device sdb, logical block 3
[ 244.592251] Buffer I/O error on device sdb, logical block 4
[ 244.592254] Buffer I/O error on device sdb, logical block 5
[ 244.592256] Buffer I/O error on device sdb, logical block 6
[ 244.592258] Buffer I/O error on device sdb, logical block 7
[ 244.592260] Buffer I/O error on device sdb, logical block 8
[ 244.592263] Buffer I/O error on device sdb, logical block 9
[ 244.592265] Buffer I/O error on device sdb, logical block 10
[ 244.592283] ata5: EH complete
[ 246.794514] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 246.794516] ata5.00: BMDMA stat 0x24
[ 246.794522] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 246.794523] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 246.794526] ata5.00: status: { DRDY ERR }
[ 246.794528] ata5.00: error: { UNC }
[ 246.850443] ata5.00: configured for UDMA/133
[ 246.850447] ata5: EH complete
[ 249.052742] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 249.052744] ata5.00: BMDMA stat 0x24
[ 249.052750] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 249.052751] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 249.052754] ata5.00: status: { DRDY ERR }
[ 249.052755] ata5.00: error: { UNC }
[ 249.151748] ata5.00: configured for UDMA/133
[ 249.151753] ata5: EH complete
[ 251.361026] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 251.361028] ata5.00: BMDMA stat 0x24
[ 251.361034] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 251.361035] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 251.361038] ata5.00: status: { DRDY ERR }
[ 251.361040] ata5.00: error: { UNC }
[ 251.390976] ata5.00: configured for UDMA/133
[ 251.390981] ata5: EH complete
[ 253.912560] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 253.912562] ata5.00: BMDMA stat 0x24
[ 253.912568] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 253.912569] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 253.912571] ata5.00: status: { DRDY ERR }
[ 253.912573] ata5.00: error: { UNC }
[ 253.960479] ata5.00: configured for UDMA/133
[ 253.960484] ata5: EH complete
[ 256.168794] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 256.168796] ata5.00: BMDMA stat 0x24
[ 256.168802] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 256.168803] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 256.168806] ata5.00: status: { DRDY ERR }
[ 256.168807] ata5.00: error: { UNC }
[ 256.200691] ata5.00: configured for UDMA/133
[ 256.200696] ata5: EH complete
[ 258.560144] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 258.560146] ata5.00: BMDMA stat 0x24
[ 258.560151] ata5.00: cmd c8/00:08:00:00:00/00:00:00:00:00/e0 tag 0 dma 4096 in
[ 258.560152] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 258.560155] ata5.00: status: { DRDY ERR }
[ 258.560157] ata5.00: error: { UNC }
[ 258.602075] ata5.00: configured for UDMA/133
[ 258.602080] sd 4:0:0:0: [sdb] Unhandled sense code
[ 258.602082] sd 4:0:0:0: [sdb] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 258.602085] sd 4:0:0:0: [sdb] Sense Key : Medium Error [current] [descriptor]
[ 258.602089] Descriptor sense data with sense descriptors (in hex):
[ 258.602091] 72 03 11 04 00 00 00 0c 00 0a 80 00 00 00 00 00
[ 258.602099] 00 00 00 03
[ 258.602103] sd 4:0:0:0: [sdb] Add. Sense: Unrecovered read error - auto reallocate failed
[ 258.602107] end_request: I/O error, dev sdb, sector 3
[ 258.602109] __ratelimit: 21 callbacks suppressed
[ 258.602111] Buffer I/O error on device sdb, logical block 0
[ 258.602118] ata5: EH complete
[ 259.084221] PM: Starting manual resume from disk
[ 259.084223] PM: Resume from partition 8:7
[ 259.084224] PM: Checking hibernation image.
[ 259.084330] PM: Resume from disk failed.
[ 259.104374] EXT4-fs (sda6): barriers enabled
[ 259.120499] kjournald2 starting: pid 455, dev sda6:8, commit interval 5 seconds
[ 259.120510] EXT4-fs (sda6): delayed allocation enabled
[ 259.120513] EXT4-fs: file extents enabled
[ 259.120901] EXT4-fs: mballoc enabled
[ 259.120909] EXT4-fs (sda6): mounted filesystem with ordered data mode
[ 259.669287] type=1505 audit(1268064781.546:2): operation="profile_load" pid=478 name=/usr/share/gdm/guest-session/Xsession
[ 259.670828] type=1505 audit(1268064781.556:3): operation="profile_load" pid=479 name=/sbin/dhclient3
[ 259.671368] type=1505 audit(1268064781.556:4): operation="profile_load" pid=479 name=/usr/lib/NetworkManager/nm-dhcp-client.action
[ 259.671612] type=1505 audit(1268064781.556:5): operation="profile_load" pid=479 name=/usr/lib/connman/scripts/dhclient-script
[ 259.696796] type=1505 audit(1268064781.576:6): operation="profile_load" pid=480 name=/usr/bin/evince
[ 259.703755] type=1505 audit(1268064781.586:7): operation="profile_load" pid=480 name=/usr/bin/evince-previewer
[ 259.707872] type=1505 audit(1268064781.586:8): operation="profile_load" pid=480 name=/usr/bin/evince-thumbnailer
[ 259.739624] type=1505 audit(1268064781.616:9): operation="profile_load" pid=482 name=/usr/lib/cups/backend/cups-pdf
[ 259.740184] type=1505 audit(1268064781.626:10): operation="profile_load" pid=482 name=/usr/sbin/cupsd
[ 260.727211] Adding 2104472k swap on /dev/sda7. Priority:-1 extents:1 across:2104472k
[ 260.765083] udev: starting version 147
[ 261.039282] EXT4-fs (sda6): internal journal on sda6:8
[ 261.273955] EXT4-fs (sda8): barriers enabled
[ 261.296320] kjournald2 starting: pid 729, dev sda8:8, commit interval 5 seconds
[ 261.296478] EXT4-fs (sda8): internal journal on sda8:8
[ 261.296480] EXT4-fs (sda8): delayed allocation enabled
[ 261.296482] EXT4-fs: file extents enabled
[ 261.296823] EXT4-fs: mballoc enabled
[ 261.296832] EXT4-fs (sda8): mounted filesystem with ordered data mode
[ 263.460103] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 263.460107] ata5.00: BMDMA stat 0x24
[ 263.460114] ata5.00: cmd c8/00:40:00:00:00/00:00:00:00:00/e0 tag 0 dma 32768 in
[ 263.460115] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 263.460118] ata5.00: status: { DRDY ERR }
[ 263.460119] ata5.00: error: { UNC }
[ 263.510943] ata5.00: configured for UDMA/133
[ 263.510949] ata5: EH complete
[ 264.654646] lp: driver loaded but no devices found
[ 264.986997] Linux video capture interface: v2.00
[ 265.718330] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 265.718335] ata5.00: BMDMA stat 0x24
[ 265.718341] ata5.00: cmd c8/00:40:00:00:00/00:00:00:00:00/e0 tag 0 dma 32768 in
[ 265.718343] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 265.718345] ata5.00: status: { DRDY ERR }
[ 265.718347] ata5.00: error: { UNC }
[ 265.771187] ata5.00: configured for UDMA/133
[ 265.771196] ata5: EH complete
[ 265.851501] saa7130/34: v4l2 driver version 0.2.15 loaded
[ 265.851770] saa7134 0000:05:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 265.851775] saa7133[0]: found at 0000:05:01.0, rev: 209, irq: 17, latency: 64, mmio: 0xfebff800
[ 265.851779] saa7133[0]: subsystem: 1461:a11a, board: UNKNOWN/GENERIC [card=0,autodetected]
[ 265.851789] saa7133[0]: board init: gpio is 7d8
[ 265.851793] IRQ 17/saa7133[0]: IRQF_DISABLED is not guaranteed on shared IRQs
[ 265.898454] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 266.050016] saa7133[0]: i2c eeprom 00: 61 14 1a a1 ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050026] saa7133[0]: i2c eeprom 10: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050035] saa7133[0]: i2c eeprom 20: ff f1 ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050044] saa7133[0]: i2c eeprom 30: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050053] saa7133[0]: i2c eeprom 40: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050061] saa7133[0]: i2c eeprom 50: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050070] saa7133[0]: i2c eeprom 60: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050079] saa7133[0]: i2c eeprom 70: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050087] saa7133[0]: i2c eeprom 80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050096] saa7133[0]: i2c eeprom 90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050105] saa7133[0]: i2c eeprom a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050114] saa7133[0]: i2c eeprom b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050122] saa7133[0]: i2c eeprom c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050131] saa7133[0]: i2c eeprom d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050140] saa7133[0]: i2c eeprom e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050148] saa7133[0]: i2c eeprom f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[ 266.050163] i2c-adapter i2c-0: Invalid 7-bit address 0x7a
[ 266.050991] saa7133[0]: registered device video0 [v4l2]
[ 266.051005] saa7133[0]: registered device vbi0
[ 266.244145] saa7134 ALSA driver for DMA sound loaded
[ 266.244152] IRQ 17/saa7133[0]: IRQF_DISABLED is not guaranteed on shared IRQs
[ 266.244166] saa7133[0]/alsa: saa7133[0] at 0xfebff800 irq 17 registered as card -2
[ 267.889153] __ratelimit: 3 callbacks suppressed
[ 267.889155] type=1505 audit(1268082789.771:12): operation="profile_replace" pid=1018 name=/usr/share/gdm/guest-session/Xsession
[ 267.890122] type=1505 audit(1268082789.776:13): operation="profile_replace" pid=1019 name=/sbin/dhclient3
[ 267.890566] type=1505 audit(1268082789.776:14): operation="profile_replace" pid=1019 name=/usr/lib/NetworkManager/nm-dhcp-client.action
[ 267.890812] type=1505 audit(1268082789.776:15): operation="profile_replace" pid=1019 name=/usr/lib/connman/scripts/dhclient-script
[ 267.892729] type=1505 audit(1268082789.776:16): operation="profile_replace" pid=1020 name=/usr/bin/evince
[ 267.899631] type=1505 audit(1268082789.776:17): operation="profile_replace" pid=1020 name=/usr/bin/evince-previewer
[ 267.903912] type=1505 audit(1268082789.786:18): operation="profile_replace" pid=1020 name=/usr/bin/evince-thumbnailer
[ 267.909379] type=1505 audit(1268082789.786:19): operation="profile_replace" pid=1022 name=/usr/lib/cups/backend/cups-pdf
[ 267.909898] type=1505 audit(1268082789.786:20): operation="profile_replace" pid=1022 name=/usr/sbin/cupsd
[ 267.911345] type=1505 audit(1268082789.796:21): operation="profile_replace" pid=1023 name=/usr/sbin/tcpdump
[ 267.976584] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 267.976588] ata5.00: BMDMA stat 0x24
[ 267.976595] ata5.00: cmd c8/00:40:00:00:00/00:00:00:00:00/e0 tag 0 dma 32768 in
[ 267.976596] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 267.976599] ata5.00: status: { DRDY ERR }
[ 267.976600] ata5.00: error: { UNC }
[ 268.005200] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 268.005215] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 268.032414] ata5.00: configured for UDMA/133
[ 268.032422] ata5: EH complete
[ 268.134636] hda_codec: Unknown model for ALC883, trying auto-probe from BIOS...
[ 268.134794] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input5
[ 268.165222] alloc irq_desc for 28 on node 0
[ 268.165224] alloc kstat_irqs on node 0
[ 268.165234] atl1 0000:02:00.0: irq 28 for MSI/MSI-X
[ 268.165437] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 270.097865] ppdev: user-space parallel port driver
[ 270.242811] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
[ 270.242815] ata5.00: BMDMA stat 0x24
[ 270.242822] ata5.00: cmd c8/00:40:00:00:00/00:00:00:00:00/e0 tag 0 dma 32768 in
[ 270.242823] res 51/40:00:03:00:00/00:00:00:00:00/e0 Emask 0x9 (media error)
[ 270.242826] ata5.00: status: { DRDY ERR }
[ 270.242828] ata5.00: error: { UNC }
[ 270.301643] ata5.00: configured for UDMA/133
[ 270.301649] ata5: EH complete
---------------------------------------------------------------------
Ya, esto es todo