You are not logged in.
Hello, I've been running arch for a while without issues. Some days ago I decided to encrypt my system fully (including /boot). After doing so everything seemed fine.
Then obviously I tried to hibernate my machine and that's when a problems became apparent. It only works sometimes. Sometimes it works and sometimes it doesn't.
When it fails I'm left with a black screen and there is no hdd activity, the system doesn't shut down, I have to hold down the power button to force a shutdown. Hibernation image does not get saved in swap.
I usually initiate hibernation by running systemctl hibernate
Here is my configuration:
[ugjka@ArchT ~]$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 55,9G 0 disk
└─sda1 8:1 0 55,9G 0 part
└─lvm 254:0 0 55,9G 0 crypt
├─vg-boot 254:1 0 200M 0 lvm /boot
├─vg-swap 254:2 0 3G 0 lvm [SWAP]
└─vg-root 254:3 0 52,7G 0 lvm /
[ugjka@ArchT ~]$ cat /etc/fstab
#
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/mapper/vg-root
UUID=a12165de-b177-4b77-af64-a605c897fa74 / btrfs rw,relatime,ssd,compress-force=lzo,commit=120,thread_pool=2 0 0
# /dev/mapper/vg-boot
UUID=7edf6c48-8219-45e9-bb28-44a39a863142 /boot ext4 rw,relatime,data=ordered 0 2
# /dev/mapper/vg-swap LABEL=swap
UUID=a9718be8-1901-4168-9438-7945af4be163 none swap defaults 0 0
[ugjka@ArchT ~]$ cat /etc/mkinitcpio.conf
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES="i915 dm-crypt"
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=""
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
FILES="/crypto_keyfile.bin"
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No raid, lvm2, or encrypted root is needed.
# HOOKS="base"
#
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS="base udev autodetect block filesystems"
#
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS="base udev block filesystems"
#
## This setup assembles a pata mdadm array with an encrypted root FS.
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
# HOOKS="base udev block mdadm encrypt filesystems"
#
## This setup loads an lvm2 volume group on a usb device.
# HOOKS="base udev block lvm2 filesystems"
#
## NOTE: If you have /usr on a separate partition, you MUST include the
# usr, fsck and shutdown hooks.
HOOKS="base systemd sd-vconsole sd-encrypt autodetect modconf block sd-lvm2 filesystems keyboard fsck"
# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"
#COMPRESSION="lzop"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""
[ugjka@ArchT ~]$ cat /etc/default/grub
GRUB_DEFAULT=0
GRUB_TIMEOUT=1
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="quiet luks.uuid=973a30b4-90db-40ce-a8da-d1f10ddb56d5 luks.name=973a30b4-90db-40ce-a8da-d1f10ddb56d5=lvm resume=UUID=a9718be8-1901-4168-9438-7945af4be163 luks.key=/crypto_keyfile.bin scsi_mod.use_blk_mq=y dm_mod.use_blk_mq=y ipv6.disable=1 net.ifnames=0"
GRUB_CMDLINE_LINUX=""
GRUB_ENABLE_CRYPTODISK=y
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos cryptodisk luks keylayouts"
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT=5
#GRUB_HIDDEN_TIMEOUT_QUIET=true
# Uncomment to use basic console
GRUB_TERMINAL_INPUT="console at_keyboard"
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
#GRUB_SAVEDEFAULT="true"
Journal doesn't show anything useful
dec 29 11:51:13 ArchT sudo[1271]: pam_unix(sudo:session): session closed for user root
dec 29 11:53:05 ArchT plasmashell[738]: trying to show an empty dialog
dec 29 11:53:06 ArchT kwin_x11[720]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 41717, resource id: 62914560, major code: 18 (ChangeProperty), minor code: 0
dec 29 11:53:06 ArchT kwin_x11[720]: QXcbConnection: XCB error: 3 (BadWindow), sequence: 41721, resource id: 62914561, major code: 18 (ChangeProperty), minor code: 0
dec 29 11:53:06 ArchT plasmashell[738]: file:///usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml:178: ReferenceError: index is not defined
dec 29 11:53:46 ArchT systemd[1]: Starting Cleanup of Temporary Directories...
dec 29 11:53:46 ArchT systemd[1]: Started Cleanup of Temporary Directories.
dec 29 11:54:18 ArchT polkitd[717]: Registered Authentication Agent for unix-process:1421:120654 (system bus name :1.52 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8)
dec 29 11:54:18 ArchT systemd[1]: Reached target Sleep.
dec 29 11:54:18 ArchT polkitd[717]: Unregistered Authentication Agent for unix-process:1421:120654 (system bus name :1.52, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_GB.UTF-8) (disconnected from bus)
dec 29 11:54:18 ArchT systemd[1]: Starting Hibernate...
dec 29 11:54:18 ArchT systemd-sleep[1426]: Suspending system...
Any ideas? Thanks!
Last edited by ugjka (2017-01-13 07:48:59)
Offline
Note: Laptop is Dell Vostro 1015
Dmesg:
[ugjka@ArchT ~]$ cat dmesg_dump
[ 0.000000] Linux version 4.8.13-1-ARCH (builduser@tobias) (gcc version 6.2.1 20160830 (GCC) ) #1 SMP PREEMPT Fri Dec 9 07:24:34 CET 2016
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg-root rw quiet luks.uuid=973a30b4-90db-40ce-a8da-d1f10ddb56d5 luks.name=973a30b4-90db-40ce-a8da-d1f10ddb56d5=lvm resume=UUID=a9718be8-1901-4168-9438-7945af4be163 luks.key=/crypto_keyfile.bin scsi_mod.use_blk_mq=y dm_mod.use_blk_mq=y ipv6.disable=1 net.ifnames=0
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format.
[ 0.000000] x86/fpu: Using 'eager' FPU context switches.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ddcbf3ff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ddcbf400-0x00000000ddcc13ff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000ddcc1400-0x00000000dfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed1bfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feda0000-0x00000000feda5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Dell Inc. Vostro 1015 /047MWF, BIOS A06 11/26/2010
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x120000 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-CFFFF write-protect
[ 0.000000] D0000-EFFFF uncachable
[ 0.000000] F0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask C00000000 write-back
[ 0.000000] 1 base 0E0000000 mask FE0000000 uncachable
[ 0.000000] 2 base 0DDE00000 mask FFFE00000 uncachable
[ 0.000000] 3 base 0DE000000 mask FFE000000 uncachable
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] e820: update [mem 0xdde00000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xddcbf max_arch_pfn = 0x400000000
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[ 0.000000] BRK [0x01d4d000, 0x01d4dfff] PGTABLE
[ 0.000000] BRK [0x01d4e000, 0x01d4efff] PGTABLE
[ 0.000000] BRK [0x01d4f000, 0x01d4ffff] PGTABLE
[ 0.000000] BRK [0x01d50000, 0x01d50fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x3644f000-0x3721efff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000FBE30 000024 (v02 DELL )
[ 0.000000] ACPI: XSDT 0x00000000DDCC3E00 00005C (v01 DELL QA09 27DA0B1A ASL 00000061)
[ 0.000000] ACPI: FACP 0x00000000DDCC3C9C 0000F4 (v04 DELL QA09 27DA0B1A ASL 00000061)
[ 0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/64 (20160422/tbfadt-624)
[ 0.000000] ACPI: DSDT 0x00000000DDCC4400 00528D (v02 INT430 SYSFexxx 00001001 INTL 20050624)
[ 0.000000] ACPI: FACS 0x00000000DDCD2C00 000040
[ 0.000000] ACPI: FACS 0x00000000DDCD2C00 000040
[ 0.000000] ACPI: HPET 0x00000000DDCC3F00 000038 (v01 DELL QA09 00000001 ASL 00000061)
[ 0.000000] ACPI: APIC 0x00000000DDCC4000 000068 (v01 DELL QA09 27DA0B1A ASL 00000047)
[ 0.000000] ACPI: MCFG 0x00000000DDCC3FC0 00003E (v16 DELL QA09 27DA0B1A ASL 00000061)
[ 0.000000] ACPI: SLIC 0x00000000DDCC409C 000176 (v01 DELL QA09 27DA0B1A ASL 00000061)
[ 0.000000] ACPI: BOOT 0x00000000DDCC3BC0 000028 (v01 DELL QA09 27DA0B1A ASL 00000061)
[ 0.000000] ACPI: SSDT 0x00000000DDCC2306 00066C (v01 PmRef CpuPm 00003000 INTL 20050624)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x11fff7000-0x11fffbfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000011fffffff]
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000ddcbefff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000011fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000011fffffff]
[ 0.000000] On node 0 totalpages: 1039453
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 14131 pages used for memmap
[ 0.000000] DMA32 zone: 904383 pages, LIFO batch:31
[ 0.000000] Normal zone: 2048 pages used for memmap
[ 0.000000] Normal zone: 131072 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics memory at 0x00000000de000000-0x00000000dfffffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] 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: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xddcbf000-0xddcbffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xddcc0000-0xddcc0fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xddcc1000-0xddcc1fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xddcc2000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfed17fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfed8ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfed9ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfeda0000-0xfeda5fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfeda6000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee0ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee10000-0xffdfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
[ 0.000000] e820: [mem 0xe0000000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] percpu: Embedded 35 pages/cpu @ffff88011fc00000 s103128 r8192 d32040 u1048576
[ 0.000000] pcpu-alloc: s103128 r8192 d32040 u1048576 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1023189
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg-root rw quiet luks.uuid=973a30b4-90db-40ce-a8da-d1f10ddb56d5 luks.name=973a30b4-90db-40ce-a8da-d1f10ddb56d5=lvm resume=UUID=a9718be8-1901-4168-9438-7945af4be163 luks.key=/crypto_keyfile.bin scsi_mod.use_blk_mq=y dm_mod.use_blk_mq=y ipv6.disable=1 net.ifnames=0
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 3997784K/4157812K available (6131K kernel code, 1051K rwdata, 1912K rodata, 1256K init, 1036K bss, 160028K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Build-time adjustment of leaf fanout to 64.
[ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=2
[ 0.000000] NR_IRQS:8448 nr_irqs:440 16
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration failed
[ 0.000000] tsc: PIT calibration matches HPET. 1 loops
[ 0.000000] tsc: Detected 2094.747 MHz processor
[ 0.006680] Calibrating delay loop (skipped), value calculated using timer frequency.. 4191.05 BogoMIPS (lpj=6982490)
[ 0.006684] pid_max: default: 32768 minimum: 301
[ 0.006702] ACPI: Core revision 20160422
[ 0.014260] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.014301] Security Framework initialized
[ 0.014303] Yama: becoming mindful.
[ 0.014634] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.016785] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.017884] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.017891] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.018353] CPU: Physical Processor ID: 0
[ 0.018355] CPU: Processor Core ID: 0
[ 0.018357] mce: CPU supports 6 MCE banks
[ 0.018366] CPU0: Thermal monitoring enabled (TM2)
[ 0.018371] process: using mwait in idle threads
[ 0.018377] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[ 0.018378] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[ 0.018841] Freeing SMP alternatives memory: 24K (ffffffff81c42000 - ffffffff81c48000)
[ 0.023341] ftrace: allocating 24335 entries in 96 pages
[ 0.033479] smpboot: APIC(0) Converting physical 0 to logical package 0
[ 0.033480] smpboot: Max logical packages: 1
[ 0.033926] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.069999] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T6570 @ 2.10GHz (family: 0x6, model: 0x17, stepping: 0xa)
[ 0.069999] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
[ 0.069999] ... version: 2
[ 0.069999] ... bit width: 40
[ 0.069999] ... generic registers: 2
[ 0.069999] ... value mask: 000000ffffffffff
[ 0.069999] ... max period: 000000007fffffff
[ 0.069999] ... fixed-purpose events: 3
[ 0.069999] ... event mask: 0000000700000003
[ 0.090085] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.106684] x86: Booting SMP configuration:
[ 0.106686] .... node #0, CPUs: #1
[ 0.192029] x86: Booted up 1 node, 2 CPUs
[ 0.192029] smpboot: Total of 2 processors activated (8382.12 BogoMIPS)
[ 0.193625] devtmpfs: initialized
[ 0.193625] x86/mm: Memory block size: 128MB
[ 0.196678] PM: Registering ACPI NVS region [mem 0xddcbf400-0xddcc13ff] (8192 bytes)
[ 0.196678] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.196678] pinctrl core: initialized pinctrl subsystem
[ 0.196678] RTC time: 9:55:25, date: 12/29/16
[ 0.196678] NET: Registered protocol family 16
[ 0.206671] cpuidle: using governor ladder
[ 0.220004] cpuidle: using governor menu
[ 0.220056] Simple Boot Flag at 0x79 set to 0x1
[ 0.220067] ACPI: bus type PCI registered
[ 0.220069] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.220156] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.220159] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.220162] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[ 0.220283] PCI: Using configuration type 1 for base access
[ 0.220290] dmi type 0xB1 record - unknown flag
[ 0.233375] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.233409] ACPI: Added _OSI(Module Device)
[ 0.233411] ACPI: Added _OSI(Processor Device)
[ 0.233412] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.233413] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.246733] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.258499] ACPI: Dynamic OEM Table Load:
[ 0.258505] ACPI: SSDT 0xFFFF88011B035000 000043 (v01 LMPWR DELLLOM 00001001 INTL 20050624)
[ 0.259030] ACPI: Dynamic OEM Table Load:
[ 0.259036] ACPI: SSDT 0xFFFF88011A5A3000 000281 (v01 PmRef BspIst 00003000 INTL 20050624)
[ 0.259425] ACPI: Dynamic OEM Table Load:
[ 0.259432] ACPI: SSDT 0xFFFF88011A59C800 0005E5 (v01 PmRef BspCst 00003001 INTL 20050624)
[ 0.260037] ACPI: Dynamic OEM Table Load:
[ 0.260042] ACPI: SSDT 0xFFFF88011ABD2200 0001D7 (v01 PmRef ApIst 00003000 INTL 20050624)
[ 0.260396] ACPI: Dynamic OEM Table Load:
[ 0.260402] ACPI: SSDT 0xFFFF88011AB94840 00008D (v01 PmRef ApCst 00003000 INTL 20050624)
[ 0.260971] ACPI: Interpreter enabled
[ 0.260989] ACPI: (supports S0 S3 S4 S5)
[ 0.260991] ACPI: Using IOAPIC for interrupt routing
[ 0.261021] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.361425] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.361432] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.361437] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[ 0.361446] acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 0.377853] PCI host bridge to bus 0000:00
[ 0.377856] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.377858] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.377860] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.377862] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[ 0.377864] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff window]
[ 0.377865] pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfebfffff window]
[ 0.377867] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfecfffff window]
[ 0.377869] pci_bus 0000:00: root bus resource [mem 0xfed1c000-0xfed1ffff window]
[ 0.377871] pci_bus 0000:00: root bus resource [mem 0xfed90000-0xfed9ffff window]
[ 0.377872] pci_bus 0000:00: root bus resource [mem 0xfeda7000-0xfedfffff window]
[ 0.377874] pci_bus 0000:00: root bus resource [mem 0xfee10000-0xff9fffff window]
[ 0.377876] pci_bus 0000:00: root bus resource [mem 0xffc00000-0xffdfffff window]
[ 0.377877] pci_bus 0000:00: root bus resource [mem 0x120000000-0x317ffffff window]
[ 0.377880] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.377890] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
[ 0.377919] DMAR: Forcing write-buffer flush capability
[ 0.377920] DMAR: Disabling IOMMU for graphics on this chipset
[ 0.378027] pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
[ 0.378041] pci 0000:00:02.0: reg 0x10: [mem 0xf6c00000-0xf6ffffff 64bit]
[ 0.378050] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.378056] pci 0000:00:02.0: reg 0x20: [io 0xefe8-0xefef]
[ 0.378179] pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
[ 0.378191] pci 0000:00:02.1: reg 0x10: [mem 0xf6b00000-0xf6bfffff 64bit]
[ 0.378367] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
[ 0.378427] pci 0000:00:1a.0: reg 0x20: [io 0x6f60-0x6f7f]
[ 0.383410] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 0.383473] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
[ 0.383533] pci 0000:00:1a.1: reg 0x20: [io 0x6f80-0x6f9f]
[ 0.387178] pci 0000:00:1a.1: System wakeup disabled by ACPI
[ 0.387242] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
[ 0.387302] pci 0000:00:1a.2: reg 0x20: [io 0x6fa0-0x6fbf]
[ 0.393845] pci 0000:00:1a.2: System wakeup disabled by ACPI
[ 0.393920] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
[ 0.393944] pci 0000:00:1a.7: reg 0x10: [mem 0xfed1c400-0xfed1c7ff]
[ 0.394057] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.400512] pci 0000:00:1a.7: System wakeup disabled by ACPI
[ 0.400581] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
[ 0.400606] pci 0000:00:1b.0: reg 0x10: [mem 0xf6afc000-0xf6afffff 64bit]
[ 0.400721] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.400785] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.400848] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
[ 0.400963] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.401027] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.401095] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
[ 0.401209] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.401273] pci 0000:00:1c.1: System wakeup disabled by ACPI
[ 0.401337] pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400
[ 0.401451] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.401538] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.401602] pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
[ 0.401717] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.401782] pci 0000:00:1c.4: System wakeup disabled by ACPI
[ 0.401847] pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
[ 0.401960] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[ 0.402023] pci 0000:00:1c.5: System wakeup disabled by ACPI
[ 0.403359] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[ 0.403419] pci 0000:00:1d.0: reg 0x20: [io 0x6f00-0x6f1f]
[ 0.407178] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.407241] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[ 0.407302] pci 0000:00:1d.1: reg 0x20: [io 0x6f20-0x6f3f]
[ 0.413844] pci 0000:00:1d.1: System wakeup disabled by ACPI
[ 0.413909] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[ 0.413969] pci 0000:00:1d.2: reg 0x20: [io 0x6f40-0x6f5f]
[ 0.420512] pci 0000:00:1d.2: System wakeup disabled by ACPI
[ 0.420587] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[ 0.420611] pci 0000:00:1d.7: reg 0x10: [mem 0xfed1c000-0xfed1c3ff]
[ 0.420725] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.426743] pci 0000:00:1d.7: System wakeup disabled by ACPI
[ 0.426809] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 0.426939] pci 0000:00:1e.0: System wakeup disabled by ACPI
[ 0.427001] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
[ 0.427249] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
[ 0.427274] pci 0000:00:1f.2: reg 0x10: [io 0x6e70-0x6e77]
[ 0.427286] pci 0000:00:1f.2: reg 0x14: [io 0x6e78-0x6e7b]
[ 0.427298] pci 0000:00:1f.2: reg 0x18: [io 0x6e80-0x6e87]
[ 0.427309] pci 0000:00:1f.2: reg 0x1c: [io 0x6e88-0x6e8b]
[ 0.427321] pci 0000:00:1f.2: reg 0x20: [io 0x6ea0-0x6ebf]
[ 0.427333] pci 0000:00:1f.2: reg 0x24: [mem 0xfed1c800-0xfed1cfff]
[ 0.427402] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.427512] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[ 0.427534] pci 0000:00:1f.3: reg 0x10: [mem 0xf6afbf00-0xf6afbfff 64bit]
[ 0.427566] pci 0000:00:1f.3: reg 0x20: [io 0x1100-0x111f]
[ 0.427764] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[ 0.428098] pci 0000:0c:00.0: [14e4:4315] type 00 class 0x028000
[ 0.428178] pci 0000:0c:00.0: reg 0x10: [mem 0xf69fc000-0xf69fffff 64bit]
[ 0.428603] pci 0000:0c:00.0: supports D1 D2
[ 0.428605] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
[ 0.429037] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[ 0.429045] pci 0000:00:1c.1: bridge window [mem 0xf6900000-0xf69fffff]
[ 0.429153] acpiphp: Slot [1] registered
[ 0.429160] pci 0000:00:1c.3: PCI bridge to [bus 0d-0e]
[ 0.429165] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
[ 0.429170] pci 0000:00:1c.3: bridge window [mem 0xf6600000-0xf68fffff]
[ 0.429177] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
[ 0.429282] pci 0000:0f:00.0: [1180:e822] type 00 class 0x080500
[ 0.429304] pci 0000:0f:00.0: MMC controller base frequency changed to 50Mhz.
[ 0.429329] pci 0000:0f:00.0: reg 0x10: [mem 0xf65ff600-0xf65ff6ff]
[ 0.429525] pci 0000:0f:00.0: supports D1 D2
[ 0.429527] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.429648] pci 0000:0f:00.1: [1180:e230] type 00 class 0x088000
[ 0.429677] pci 0000:0f:00.1: reg 0x10: [mem 0xf65ff700-0xf65ff7ff]
[ 0.430111] pci 0000:0f:00.1: supports D1 D2
[ 0.430113] pci 0000:0f:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.430227] pci 0000:0f:00.3: [1180:e832] type 00 class 0x0c0010
[ 0.430255] pci 0000:0f:00.3: reg 0x10: [mem 0xf65ff800-0xf65fffff]
[ 0.430363] pci 0000:0f:00.3: Enabling fixed DMA alias to 00.0
[ 0.430441] pci 0000:0f:00.3: supports D1 D2
[ 0.430443] pci 0000:0f:00.3: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.440041] pci 0000:00:1c.4: PCI bridge to [bus 0f]
[ 0.440049] pci 0000:00:1c.4: bridge window [mem 0xf6500000-0xf65fffff]
[ 0.440214] pci 0000:09:00.0: [10ec:8168] type 00 class 0x020000
[ 0.440292] pci 0000:09:00.0: reg 0x10: [io 0xce00-0xceff]
[ 0.440402] pci 0000:09:00.0: reg 0x18: [mem 0xf0204000-0xf0204fff 64bit pref]
[ 0.440473] pci 0000:09:00.0: reg 0x20: [mem 0xf0200000-0xf0203fff 64bit pref]
[ 0.440519] pci 0000:09:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[ 0.440854] pci 0000:09:00.0: supports D1 D2
[ 0.440856] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.441102] pci 0000:00:1c.5: PCI bridge to [bus 09]
[ 0.441107] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff]
[ 0.441112] pci 0000:00:1c.5: bridge window [mem 0xf6400000-0xf64fffff]
[ 0.441119] pci 0000:00:1c.5: bridge window [mem 0xf0200000-0xf02fffff 64bit pref]
[ 0.441244] pci 0000:00:1e.0: PCI bridge to [bus 02] (subtractive decode)
[ 0.441258] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.441260] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.441262] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.441264] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[ 0.441266] pci 0000:00:1e.0: bridge window [mem 0xe0000000-0xf7ffffff window] (subtractive decode)
[ 0.441268] pci 0000:00:1e.0: bridge window [mem 0xfc000000-0xfebfffff window] (subtractive decode)
[ 0.441270] pci 0000:00:1e.0: bridge window [mem 0xfec10000-0xfecfffff window] (subtractive decode)
[ 0.441272] pci 0000:00:1e.0: bridge window [mem 0xfed1c000-0xfed1ffff window] (subtractive decode)
[ 0.441274] pci 0000:00:1e.0: bridge window [mem 0xfed90000-0xfed9ffff window] (subtractive decode)
[ 0.441276] pci 0000:00:1e.0: bridge window [mem 0xfeda7000-0xfedfffff window] (subtractive decode)
[ 0.441278] pci 0000:00:1e.0: bridge window [mem 0xfee10000-0xff9fffff window] (subtractive decode)
[ 0.441279] pci 0000:00:1e.0: bridge window [mem 0xffc00000-0xffdfffff window] (subtractive decode)
[ 0.441281] pci 0000:00:1e.0: bridge window [mem 0x120000000-0x317ffffff window] (subtractive decode)
[ 0.441780] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 *11)
[ 0.441872] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *10
[ 0.441951] ACPI: PCI Interrupt Link [LNKC] (IRQs 10 11) *0, disabled.
[ 0.442043] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 10 11) *3
[ 0.442134] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[ 0.442227] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[ 0.442322] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 *4 5 6 7 10 11 12 14 15)
[ 0.442408] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 0.442706] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 0.444288] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.444290] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.444298] vgaarb: loaded
[ 0.444299] vgaarb: bridge control possible 0000:00:02.0
[ 0.450016] PCI: Using ACPI for IRQ routing
[ 0.452473] PCI: pci_cache_line_size set to 64 bytes
[ 0.452967] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.452969] e820: reserve RAM buffer [mem 0xddcbf400-0xdfffffff]
[ 0.453110] NetLabel: Initializing
[ 0.453111] NetLabel: domain hash size = 128
[ 0.453112] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.453132] NetLabel: unlabeled traffic allowed by default
[ 0.453394] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[ 0.453400] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.453405] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 0.460022] clocksource: Switched to clocksource hpet
[ 0.470807] VFS: Disk quotas dquot_6.6.0
[ 0.470836] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.470967] pnp: PnP ACPI init
[ 0.471090] pnp 00:00: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.471141] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.471189] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.471280] system 00:03: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.471373] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[ 0.471377] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 0.471559] system 00:05: [io 0x0900-0x097f] has been reserved
[ 0.471561] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 0.471564] system 00:05: [io 0x1000-0x1005] has been reserved
[ 0.471566] system 00:05: [io 0x1008-0x100f] has been reserved
[ 0.471569] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.471634] system 00:06: [io 0xf400-0xf4fe] has been reserved
[ 0.471636] system 00:06: [io 0x1006-0x1007] has been reserved
[ 0.471638] system 00:06: [io 0x100a-0x1059] could not be reserved
[ 0.471640] system 00:06: [io 0x1060-0x107f] has been reserved
[ 0.471642] system 00:06: [io 0x1080-0x10bf] has been reserved
[ 0.471644] system 00:06: [io 0x1100-0x111f] has been reserved
[ 0.471646] system 00:06: [io 0x1010-0x102f] has been reserved
[ 0.471648] system 00:06: [io 0x0809] has been reserved
[ 0.471653] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.489663] system 00:07: [mem 0x00000000-0x0009efff] could not be reserved
[ 0.489666] system 00:07: [mem 0x0009f000-0x0009ffff] could not be reserved
[ 0.489668] system 00:07: [mem 0x000c0000-0x000cffff] could not be reserved
[ 0.489670] system 00:07: [mem 0x000e0000-0x000fffff] could not be reserved
[ 0.489672] system 00:07: [mem 0x00100000-0xddcbf3ff] could not be reserved
[ 0.489674] system 00:07: [mem 0xddcbf400-0xddcfffff] could not be reserved
[ 0.489677] system 00:07: [mem 0xddd00000-0xdddfffff] has been reserved
[ 0.489679] system 00:07: [mem 0xffe00000-0xffffffff] has been reserved
[ 0.489681] system 00:07: [mem 0xfec00000-0xfec0ffff] could not be reserved
[ 0.489683] system 00:07: [mem 0xfee00000-0xfee0ffff] has been reserved
[ 0.489685] system 00:07: [mem 0xfed20000-0xfed8ffff] has been reserved
[ 0.489688] system 00:07: [mem 0xfeda0000-0xfeda3fff] has been reserved
[ 0.489690] system 00:07: [mem 0xfeda4000-0xfeda4fff] has been reserved
[ 0.489692] system 00:07: [mem 0xfeda5000-0xfeda5fff] has been reserved
[ 0.489694] system 00:07: [mem 0xfeda6000-0xfeda6fff] has been reserved
[ 0.489696] system 00:07: [mem 0xfed1c800-0xfed1cfff] has been reserved
[ 0.489698] system 00:07: [mem 0xfed18000-0xfed1bfff] has been reserved
[ 0.489700] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.489704] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.489743] pnp: PnP ACPI: found 8 devices
[ 0.497335] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.497357] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 0b] add_size 1000
[ 0.497360] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[ 0.497363] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0b] add_size 200000 add_align 100000
[ 0.497374] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 0c] add_size 1000
[ 0.497377] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000 add_align 100000
[ 0.497398] pci 0000:00:1c.4: bridge window [io 0x1000-0x0fff] to [bus 0f] add_size 1000
[ 0.497401] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0f] add_size 200000 add_align 100000
[ 0.497426] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.497428] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.497431] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.497433] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.497435] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.497437] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.497440] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.497442] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.497444] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.497446] pci 0000:00:1c.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.497448] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.497450] pci 0000:00:1c.1: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.497452] pci 0000:00:1c.4: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.497455] pci 0000:00:1c.4: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.497461] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0300000-0xf04fffff]
[ 0.497469] pci 0000:00:1c.0: BAR 15: assigned [mem 0x120000000-0x1201fffff 64bit pref]
[ 0.497475] pci 0000:00:1c.1: BAR 15: assigned [mem 0x120200000-0x1203fffff 64bit pref]
[ 0.497482] pci 0000:00:1c.4: BAR 15: assigned [mem 0x120400000-0x1205fffff 64bit pref]
[ 0.497485] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 0.497488] pci 0000:00:1c.1: BAR 13: assigned [io 0x3000-0x3fff]
[ 0.497491] pci 0000:00:1c.4: BAR 13: assigned [io 0x4000-0x4fff]
[ 0.497495] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[ 0.497498] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.497504] pci 0000:00:1c.0: bridge window [mem 0xf0300000-0xf04fffff]
[ 0.497509] pci 0000:00:1c.0: bridge window [mem 0x120000000-0x1201fffff 64bit pref]
[ 0.497517] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[ 0.497520] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
[ 0.497526] pci 0000:00:1c.1: bridge window [mem 0xf6900000-0xf69fffff]
[ 0.497531] pci 0000:00:1c.1: bridge window [mem 0x120200000-0x1203fffff 64bit pref]
[ 0.497539] pci 0000:00:1c.3: PCI bridge to [bus 0d-0e]
[ 0.497543] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
[ 0.497549] pci 0000:00:1c.3: bridge window [mem 0xf6600000-0xf68fffff]
[ 0.497553] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
[ 0.497561] pci 0000:00:1c.4: PCI bridge to [bus 0f]
[ 0.497564] pci 0000:00:1c.4: bridge window [io 0x4000-0x4fff]
[ 0.497570] pci 0000:00:1c.4: bridge window [mem 0xf6500000-0xf65fffff]
[ 0.497575] pci 0000:00:1c.4: bridge window [mem 0x120400000-0x1205fffff 64bit pref]
[ 0.497584] pci 0000:09:00.0: BAR 6: assigned [mem 0xf6400000-0xf641ffff pref]
[ 0.497586] pci 0000:00:1c.5: PCI bridge to [bus 09]
[ 0.497590] pci 0000:00:1c.5: bridge window [io 0xc000-0xcfff]
[ 0.497596] pci 0000:00:1c.5: bridge window [mem 0xf6400000-0xf64fffff]
[ 0.497600] pci 0000:00:1c.5: bridge window [mem 0xf0200000-0xf02fffff 64bit pref]
[ 0.497608] pci 0000:00:1e.0: PCI bridge to [bus 02]
[ 0.497624] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.497626] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.497628] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.497629] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[ 0.497631] pci_bus 0000:00: resource 8 [mem 0xe0000000-0xf7ffffff window]
[ 0.497633] pci_bus 0000:00: resource 9 [mem 0xfc000000-0xfebfffff window]
[ 0.497635] pci_bus 0000:00: resource 10 [mem 0xfec10000-0xfecfffff window]
[ 0.497637] pci_bus 0000:00: resource 11 [mem 0xfed1c000-0xfed1ffff window]
[ 0.497638] pci_bus 0000:00: resource 12 [mem 0xfed90000-0xfed9ffff window]
[ 0.497640] pci_bus 0000:00: resource 13 [mem 0xfeda7000-0xfedfffff window]
[ 0.497642] pci_bus 0000:00: resource 14 [mem 0xfee10000-0xff9fffff window]
[ 0.497644] pci_bus 0000:00: resource 15 [mem 0xffc00000-0xffdfffff window]
[ 0.497646] pci_bus 0000:00: resource 16 [mem 0x120000000-0x317ffffff window]
[ 0.497648] pci_bus 0000:0b: resource 0 [io 0x2000-0x2fff]
[ 0.497649] pci_bus 0000:0b: resource 1 [mem 0xf0300000-0xf04fffff]
[ 0.497651] pci_bus 0000:0b: resource 2 [mem 0x120000000-0x1201fffff 64bit pref]
[ 0.497653] pci_bus 0000:0c: resource 0 [io 0x3000-0x3fff]
[ 0.497655] pci_bus 0000:0c: resource 1 [mem 0xf6900000-0xf69fffff]
[ 0.497657] pci_bus 0000:0c: resource 2 [mem 0x120200000-0x1203fffff 64bit pref]
[ 0.497659] pci_bus 0000:0d: resource 0 [io 0xd000-0xdfff]
[ 0.497660] pci_bus 0000:0d: resource 1 [mem 0xf6600000-0xf68fffff]
[ 0.497662] pci_bus 0000:0d: resource 2 [mem 0xf0000000-0xf01fffff 64bit pref]
[ 0.497664] pci_bus 0000:0f: resource 0 [io 0x4000-0x4fff]
[ 0.497666] pci_bus 0000:0f: resource 1 [mem 0xf6500000-0xf65fffff]
[ 0.497667] pci_bus 0000:0f: resource 2 [mem 0x120400000-0x1205fffff 64bit pref]
[ 0.497669] pci_bus 0000:09: resource 0 [io 0xc000-0xcfff]
[ 0.497671] pci_bus 0000:09: resource 1 [mem 0xf6400000-0xf64fffff]
[ 0.497673] pci_bus 0000:09: resource 2 [mem 0xf0200000-0xf02fffff 64bit pref]
[ 0.497675] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7 window]
[ 0.497677] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff window]
[ 0.497679] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.497681] pci_bus 0000:02: resource 7 [mem 0x000d0000-0x000dffff window]
[ 0.497682] pci_bus 0000:02: resource 8 [mem 0xe0000000-0xf7ffffff window]
[ 0.497684] pci_bus 0000:02: resource 9 [mem 0xfc000000-0xfebfffff window]
[ 0.497686] pci_bus 0000:02: resource 10 [mem 0xfec10000-0xfecfffff window]
[ 0.497688] pci_bus 0000:02: resource 11 [mem 0xfed1c000-0xfed1ffff window]
[ 0.497690] pci_bus 0000:02: resource 12 [mem 0xfed90000-0xfed9ffff window]
[ 0.497692] pci_bus 0000:02: resource 13 [mem 0xfeda7000-0xfedfffff window]
[ 0.497693] pci_bus 0000:02: resource 14 [mem 0xfee10000-0xff9fffff window]
[ 0.497695] pci_bus 0000:02: resource 15 [mem 0xffc00000-0xffdfffff window]
[ 0.497697] pci_bus 0000:02: resource 16 [mem 0x120000000-0x317ffffff window]
[ 0.497740] NET: Registered protocol family 2
[ 0.497964] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.498096] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.498295] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.498352] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.498381] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.498446] NET: Registered protocol family 1
[ 0.498464] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.501128] PCI: CLS 64 bytes, default 64
[ 0.501194] Unpacking initramfs...
[ 0.830923] Freeing initrd memory: 14144K (ffff88003644f000 - ffff88003721f000)
[ 0.830929] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.830932] software IO TLB [mem 0xd9cbf000-0xddcbf000] (64MB) mapped at [ffff8800d9cbf000-ffff8800ddcbefff]
[ 0.831113] Scanning for low memory corruption every 60 seconds
[ 0.831529] futex hash table entries: 512 (order: 3, 32768 bytes)
[ 0.831972] Initialise system trusted keyrings
[ 0.832095] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[ 0.834757] zbud: loaded
[ 0.835352] Key type asymmetric registered
[ 0.835403] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 0.835438] io scheduler noop registered
[ 0.835439] io scheduler deadline registered
[ 0.835451] io scheduler cfq registered (default)
[ 0.836950] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.836957] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.836971] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[ 0.836972] vesafb: scrolling: redraw
[ 0.836974] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.836995] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90000800000, using 3072k, total 3072k
[ 0.861078] Console: switching to colour frame buffer device 128x48
[ 0.884988] fb0: VESA VGA frame buffer device
[ 0.885011] intel_idle: does not run on family 6 model 23
[ 0.885104] Monitor-Mwait will be used to enter C-1 state
[ 0.885123] Monitor-Mwait will be used to enter C-2 state
[ 0.885139] Monitor-Mwait will be used to enter C-3 state
[ 0.885150] tsc: Marking TSC unstable due to TSC halts in idle
[ 0.885560] GHES: HEST is not enabled!
[ 0.885635] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.886231] Linux agpgart interface v0.103
[ 0.886482] rtc_cmos 00:02: RTC can wake from S4
[ 0.886715] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 0.886754] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 0.886794] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.886934] IPv6: Loaded, but administratively disabled, reboot required to enable
[ 0.886937] NET: Registered protocol family 17
[ 0.887167] microcode: sig=0x1067a, pf=0x80, revision=0xa07
[ 0.887230] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.887482] registered taskstats version 1
[ 0.887484] Loading compiled-in X.509 certificates
[ 0.887501] zswap: loaded using pool lzo/zbud
[ 0.888403] Magic number: 12:62:931
[ 0.888537] rtc_cmos 00:02: setting system clock to 2016-12-29 09:55:26 UTC (1483005326)
[ 0.888602] PM: Checking hibernation image partition UUID=a9718be8-1901-4168-9438-7945af4be163
[ 0.888606] PM: Hibernation image not present or could not be loaded.
[ 0.890336] Freeing unused kernel memory: 1256K (ffffffff81b08000 - ffffffff81c42000)
[ 0.890338] Write protecting the kernel read-only data: 10240k
[ 0.891573] Freeing unused kernel memory: 2044K (ffff880001601000 - ffff880001800000)
[ 0.892097] Freeing unused kernel memory: 136K (ffff8800019de000 - ffff880001a00000)
[ 0.897103] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.897368] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.911897] systemd[1]: systemd 232 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 0.912066] systemd[1]: Detected architecture x86-64.
[ 0.912070] systemd[1]: Running in initial RAM disk.
[ 0.912077] systemd[1]: Running with unpopulated /etc.
[ 0.912087] systemd[1]: No hostname configured.
[ 0.912092] systemd[1]: Set hostname to <localhost>.
[ 0.912123] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.912130] systemd[1]: Initializing machine ID from random generator.
[ 0.912805] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.913140] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.913766] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.915021] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.916377] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.916398] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.916446] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.916605] systemd[1]: Populated /etc with preset unit settings.
[ 0.933152] systemd[1]: Created slice system.slice.
[ 0.933378] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
[ 0.941012] [drm] Initialized drm 1.1.0 20060810
[ 0.953866] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 0.954960] ACPI: Lid Switch [LID]
[ 0.955028] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.955030] ACPI: Power Button [PBTN]
[ 0.955089] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[ 0.955091] ACPI: Sleep Button [SBTN]
[ 0.993542] pci 0000:00:00.0: Intel GM45 Chipset
[ 0.993566] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 0.994157] pci 0000:00:00.0: detected 32768K stolen memory
[ 0.994210] [drm] Memory usable by graphics device = 2048M
[ 0.994214] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[ 0.994215] fb: switching to inteldrmfb from VESA VGA
[ 0.994252] Console: switching to colour dummy device 80x25
[ 0.997098] [drm] Replacing VGA console driver
[ 1.003428] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 1.003430] [drm] Driver supports precise vblank timestamp query.
[ 1.005814] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 1.040748] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 1.048408] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.048485] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.060930] ACPI: bus type USB registered
[ 1.060985] usbcore: registered new interface driver usbfs
[ 1.061005] usbcore: registered new interface driver hub
[ 1.061077] usbcore: registered new device driver usb
[ 1.062083] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.062336] ehci-pci: EHCI PCI platform driver
[ 1.068298] sdhci: Secure Digital Host Controller Interface driver
[ 1.068300] sdhci: Copyright(c) Pierre Ossman
[ 1.068668] sdhci-pci 0000:0f:00.0: SDHCI controller found [1180:e822] (rev 1)
[ 1.068804] sdhci-pci 0000:0f:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
[ 1.073526] SCSI subsystem initialized
[ 1.074545] mmc0: SDHCI controller on PCI [0000:0f:00.0] using DMA
[ 1.076575] libata version 3.00 loaded.
[ 1.121557] [drm] RC6 disabled, disabling runtime PM support
[ 1.122343] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
[ 1.122941] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input3
[ 1.122971] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 1.122996] [drm] Initialized i915 1.6.0 20160711 for 0000:00:02.0 on minor 0
[ 1.123269] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 1.123278] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 1.123294] ehci-pci 0000:00:1a.7: debug port 1
[ 1.127222] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 1.127243] ehci-pci 0000:00:1a.7: irq 22, io mem 0xfed1c400
[ 1.140104] firewire_ohci 0000:0f:00.3: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
[ 1.142513] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 1.143431] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 1.144689] hub 1-0:1.0: USB hub found
[ 1.144701] hub 1-0:1.0: 6 ports detected
[ 1.145288] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 1.145298] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 1.145312] ehci-pci 0000:00:1d.7: debug port 1
[ 1.149225] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 1.149243] ehci-pci 0000:00:1d.7: irq 20, io mem 0xfed1c000
[ 1.160114] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.160410] hub 2-0:1.0: USB hub found
[ 1.160419] hub 2-0:1.0: 6 ports detected
[ 1.160791] ahci 0000:00:1f.2: version 3.0
[ 1.161069] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 1.161108] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
[ 1.161111] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems
[ 1.161919] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.194641] scsi host0: ahci
[ 1.198319] scsi host1: ahci
[ 1.202071] scsi host2: ahci
[ 1.205836] scsi host3: ahci
[ 1.209640] scsi host4: ahci
[ 1.213435] scsi host5: ahci
[ 1.213612] ata1: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1c900 irq 30
[ 1.213615] ata2: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1c980 irq 30
[ 1.213616] ata3: DUMMY
[ 1.213618] ata4: DUMMY
[ 1.213620] ata5: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1cb00 irq 30
[ 1.213623] ata6: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1cb80 irq 30
[ 1.213870] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 1.213878] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 1.213891] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 1.213917] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f60
[ 1.214264] hub 3-0:1.0: USB hub found
[ 1.214276] hub 3-0:1.0: 2 ports detected
[ 1.214641] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 1.214647] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 1.214656] uhci_hcd 0000:00:1a.1: detected 2 ports
[ 1.214686] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f80
[ 1.214942] hub 4-0:1.0: USB hub found
[ 1.214951] hub 4-0:1.0: 2 ports detected
[ 1.215286] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 1.215292] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[ 1.215301] uhci_hcd 0000:00:1a.2: detected 2 ports
[ 1.215325] uhci_hcd 0000:00:1a.2: irq 22, io base 0x00006fa0
[ 1.215565] hub 5-0:1.0: USB hub found
[ 1.215573] hub 5-0:1.0: 2 ports detected
[ 1.215892] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.215898] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 1.215906] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 1.215928] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f00
[ 1.216148] hub 6-0:1.0: USB hub found
[ 1.216156] hub 6-0:1.0: 2 ports detected
[ 1.216491] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.216498] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[ 1.216507] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 1.216529] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f20
[ 1.221767] hub 7-0:1.0: USB hub found
[ 1.221780] hub 7-0:1.0: 2 ports detected
[ 1.222141] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 1.222148] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[ 1.222156] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 1.222180] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40
[ 1.222422] hub 8-0:1.0: USB hub found
[ 1.222431] hub 8-0:1.0: 2 ports detected
[ 1.257309] fbcon: inteldrmfb (fb0) is primary device
[ 1.386066] random: fast init done
[ 1.527807] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.540347] ata1.00: ATA-8: KINGSTON SV300S37A60G, 603ABBF0, max UDMA/133
[ 1.540350] ata1.00: 117231408 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[ 1.543394] usb 2-3: new high-speed USB device number 3 using ehci-pci
[ 1.550062] ata1.00: configured for UDMA/133
[ 1.653544] firewire_core 0000:0f:00.3: created device fw0: GUID 424fc0000f342e81, S400
[ 1.666711] usb 6-2: new low-speed USB device number 2 using uhci_hcd
[ 1.666734] usb 3-1: new full-speed USB device number 2 using uhci_hcd
[ 1.683033] usb-storage 2-3:1.0: USB Mass Storage device detected
[ 1.683278] scsi host6: usb-storage 2-3:1.0
[ 1.683412] usbcore: registered new interface driver usb-storage
[ 1.683825] usbcore: registered new interface driver uas
[ 1.793396] usb 2-5: new high-speed USB device number 4 using ehci-pci
[ 1.840061] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e31ce2a675, max_idle_ns: 440795241123 ns
[ 1.851663] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.865033] usbcore: registered new interface driver usbhid
[ 1.865034] usbhid: USB HID core driver
[ 1.865937] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.0/0003:093A:2510.0001/input/input6
[ 1.866000] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:1d.0-2/input0
[ 2.225475] Console: switching to colour frame buffer device 160x48
[ 2.244953] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 2.253843] scsi 0:0:0:0: Direct-Access ATA KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
[ 2.597080] ata2: SATA link down (SStatus 0 SControl 300)
[ 2.694214] scsi 6:0:0:0: Direct-Access SanDisk Cruzer Switch 1.26 PQ: 0 ANSI: 6
[ 2.695696] sd 0:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.9 GiB)
[ 2.695730] sd 0:0:0:0: [sda] Write Protect is off
[ 2.695733] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.695745] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.697666] sd 6:0:0:0: [sdb] 15633408 512-byte logical blocks: (8.00 GB/7.45 GiB)
[ 2.698685] sd 6:0:0:0: [sdb] Write Protect is off
[ 2.698690] sd 6:0:0:0: [sdb] Mode Sense: 43 00 00 00
[ 2.699684] sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 2.700693] sda: sda1
[ 2.700934] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.703321] sdb: sdb1 sdb2
[ 2.706566] sd 6:0:0:0: [sdb] Attached SCSI disk
[ 2.907645] ata5: SATA link down (SStatus 0 SControl 300)
[ 3.224471] ata6: SATA link down (SStatus 0 SControl 300)
[ 3.226405] device-mapper: uevent: version 1.0.3
[ 3.227198] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[ 5.424411] NET: Registered protocol family 38
[ 8.210516] PM: Starting manual resume from disk
[ 8.210521] PM: Hibernation image partition 254:2 present
[ 8.210522] PM: Looking for hibernation image.
[ 8.210789] PM: Image not found (code -22)
[ 8.210790] PM: Hibernation image not present or could not be loaded.
[ 8.260033] raid6: sse2x1 gen() 3146 MB/s
[ 8.316676] raid6: sse2x1 xor() 3368 MB/s
[ 8.373385] raid6: sse2x2 gen() 3703 MB/s
[ 8.430009] raid6: sse2x2 xor() 4102 MB/s
[ 8.486676] raid6: sse2x4 gen() 5845 MB/s
[ 8.543345] raid6: sse2x4 xor() 4601 MB/s
[ 8.543347] raid6: using algorithm sse2x4 gen() 5845 MB/s
[ 8.543347] raid6: .... xor() 4601 MB/s, rmw enabled
[ 8.543349] raid6: using ssse3x2 recovery algorithm
[ 8.543727] xor: measuring software checksum speed
[ 8.576674] prefetch64-sse: 8228.400 MB/sec
[ 8.610007] generic_sse: 7279.200 MB/sec
[ 8.610009] xor: using function: prefetch64-sse (8228.400 MB/sec)
[ 8.656213] Btrfs loaded, crc32c=crc32c-generic
[ 8.658322] BTRFS: device fsid a12165de-b177-4b77-af64-a605c897fa74 devid 1 transid 380830 /dev/dm-3
[ 8.719823] BTRFS info (device dm-3): disk space caching is enabled
[ 8.719826] BTRFS info (device dm-3): has skinny extents
[ 8.744803] BTRFS info (device dm-3): detected SSD devices, enabling SSD mode
[ 8.750915] BTRFS info (device dm-3): checking UUID tree
[ 8.882414] systemd-journald[56]: Received SIGTERM from PID 1 (systemd).
[ 8.908414] systemd: 24 output lines suppressed due to ratelimiting
[ 9.050368] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 9.183250] vboxdrv: loading out-of-tree module taints kernel.
[ 9.194787] vboxdrv: Found 2 processor cores
[ 9.198390] vboxdrv: fAsync=0 offMin=0x1e3 offMax=0x911
[ 9.252112] systemd-journald[260]: File /var/log/journal/9360ff272aac4947a22ec10f67d7683e/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 9.298534] vboxdrv: TSC mode is Synchronous, tentative frequency 2094750192 Hz
[ 9.298536] vboxdrv: Successfully loaded version 5.1.12 (interface 0x00280000)
[ 9.313119] VBoxPciLinuxInit
[ 9.352549] vboxpci: IOMMU not found (not registered)
[ 9.356505] VBoxNetAdp: Successfully started.
[ 9.362207] VBoxNetFlt: Successfully started.
[ 9.387089] BTRFS info (device dm-3): force lzo compression
[ 9.387097] BTRFS info (device dm-3): disk space caching is enabled
[ 9.387099] BTRFS info (device dm-3): resize thread pool 4 -> 2
[ 9.598720] systemd-journald[260]: Received request to flush runtime journal from PID 1
[ 9.665986] ACPI: AC Adapter [AC] (on-line)
[ 9.741629] ACPI: Battery Slot [BAT0] (battery present)
[ 9.742046] wmi: Mapper loaded
[ 9.751747] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 9.789586] thermal LNXTHERM:00: registered as thermal_zone0
[ 9.789589] ACPI: Thermal Zone [THM] (57 C)
[ 9.805996] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 9.806019] r8169 0000:09:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 9.807913] r8169 0000:09:00.0 eth0: RTL8168d/8111d at 0xffffc90000768000, b8:ac:6f:7c:83:f8, XID 081000c0 IRQ 31
[ 9.807918] r8169 0000:09:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 9.823630] ssb: Found chip with id 0x4312, rev 0x01 and package 0x00
[ 9.823648] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x16, vendor 0x4243)
[ 9.823665] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x0F, vendor 0x4243)
[ 9.823678] ssb: Core 2 found: PCMCIA (cc 0x80D, rev 0x0A, vendor 0x4243)
[ 9.823692] ssb: Core 3 found: PCI-E (cc 0x820, rev 0x09, vendor 0x4243)
[ 9.875533] snd_hda_codec_conexant hdaudioC0D0: CX20583 (Pebble HSF): BIOS auto-probing.
[ 9.876104] snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20583 (Pebble HSF): line_outs=1 (0x1f/0x0/0x0/0x0/0x0) type:speaker
[ 9.876106] snd_hda_codec_conexant hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 9.876108] snd_hda_codec_conexant hdaudioC0D0: hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[ 9.876110] snd_hda_codec_conexant hdaudioC0D0: mono: mono_out=0x0
[ 9.876111] snd_hda_codec_conexant hdaudioC0D0: inputs:
[ 9.876114] snd_hda_codec_conexant hdaudioC0D0: Internal Mic=0x23
[ 9.876116] snd_hda_codec_conexant hdaudioC0D0: Mic=0x1a
[ 9.880718] snd_hda_codec_conexant hdaudioC0D0: Enable sync_write for stable communication
[ 9.890696] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 9.890935] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 9.891026] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 9.899950] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 9.928123] ssb: Sonics Silicon Backplane found on PCI device 0000:0c:00.0
[ 9.995322] intel_powerclamp: No package C-state available
[ 9.998408] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[ 10.156958] Adding 3145724k swap on /dev/mapper/vg-swap. Priority:-1 extents:1 across:3145724k SSFS
[ 10.160933] media: Linux media interface: v0.10
[ 10.235135] mousedev: PS/2 mouse device common for all mice
[ 10.238651] Linux video capture interface: v2.00
[ 10.245620] Bluetooth: Core ver 2.21
[ 10.245638] NET: Registered protocol family 31
[ 10.245640] Bluetooth: HCI device and connection manager initialized
[ 10.245647] Bluetooth: HCI socket layer initialized
[ 10.245652] Bluetooth: L2CAP socket layer initialized
[ 10.245662] Bluetooth: SCO socket layer initialized
[ 10.269141] dell_wmi: Detected Dell WMI interface version 1
[ 10.269233] input: Dell WMI hotkeys as /devices/virtual/input/input11
[ 10.269463] uvcvideo: Found UVC 1.00 device Integrated_Webcam_2M (0408:20f5)
[ 10.275752] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: data=ordered
[ 10.280091] uvcvideo 2-5:1.0: Entity type for entity Extension 5 was not initialized!
[ 10.280096] uvcvideo 2-5:1.0: Entity type for entity Extension 4 was not initialized!
[ 10.280098] uvcvideo 2-5:1.0: Entity type for entity Processing 3 was not initialized!
[ 10.280100] uvcvideo 2-5:1.0: Entity type for entity Camera 1 was not initialized!
[ 10.280230] input: Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5:1.0/input/input12
[ 10.280332] usbcore: registered new interface driver uvcvideo
[ 10.280333] USB Video Class driver (1.1.1)
[ 10.289516] iTCO_vendor_support: vendor-support=0
[ 10.291770] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 10.301092] gpio_ich: GPIO from 435 to 495 on gpio_ich
[ 10.301706] usbcore: registered new interface driver btusb
[ 10.302379] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x1060)
[ 10.308218] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 10.508431] r8169 0000:09:00.0 eth0: link down
[ 10.538917] b43-phy0: Broadcom 4312 WLAN found (core revision 15)
[ 10.578531] b43-phy0: Found PHY: Analog 6, Type 5 (LP), Revision 1
[ 10.578548] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2062, Revision 2, Version 0
[ 10.591945] Broadcom 43xx driver loaded [ Features: PNLS ]
[ 10.610403] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 10.893629] b43-phy0: Loading firmware version 784.2 (2012-08-15 21:35:19)
[ 10.944805] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input10
[ 19.254617] wlan0: authenticate with 02:f8:1c:89:1b:62
[ 19.287281] wlan0: send auth to 02:f8:1c:89:1b:62 (try 1/3)
[ 19.289318] wlan0: authenticated
[ 19.290057] wlan0: associate with 02:f8:1c:89:1b:62 (try 1/3)
[ 19.293660] wlan0: RX AssocResp from 02:f8:1c:89:1b:62 (capab=0x411 status=0 aid=1)
[ 19.294271] wlan0: associated
[ 20.473100] random: crng init done
[ 23.290122] systemd-journald[260]: File /var/log/journal/9360ff272aac4947a22ec10f67d7683e/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[ 92.942068] fuse init (API version 7.25)
[ 284.167834] BTRFS info (device dm-3): relocating block group 1066213048320 flags 1
[ 287.411051] BTRFS info (device dm-3): found 4686 extents
[ 294.100158] BTRFS info (device dm-3): found 4685 extents
[ 962.643745] usb 2-3: USB disconnect, device number 3
[ 2334.091705] PM: Hibernation mode set to 'platform'
[ 2334.093605] PM: Syncing filesystems ... done.
[ 2334.333119] Freezing user space processes ... (elapsed 0.001 seconds) done.
[ 2334.335107] Double checking all user space processes after OOM killer disable... (elapsed 0.000 seconds)
[ 2334.335265] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[ 2334.335267] PM: Marking nosave pages: [mem 0x0009f000-0x000fffff]
[ 2334.335271] PM: Marking nosave pages: [mem 0xddcbf000-0xffffffff]
[ 2334.335873] PM: Basic memory bitmaps created
[ 2334.335889] PM: Preallocating image memory... done (allocated 407998 pages)
[ 2335.201922] PM: Allocated 1631992 kbytes in 0.86 seconds (1897.66 MB/s)
[ 2335.201923] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 2335.203616] Suspending console(s) (use no_console_suspend to debug)
[ 2335.203689] wlan0: deauthenticating from 02:f8:1c:89:1b:62 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 2335.220542] queueing ieee80211 work while going to suspend
[ 2335.649917] PM: freeze of devices complete after 446.288 msecs
[ 2335.666553] PM: late freeze of devices complete after 16.630 msecs
[ 2335.667927] PM: noirq freeze of devices complete after 1.370 msecs
[ 2335.668203] ACPI: Preparing to enter system sleep state S4
[ 2335.675308] PM: Saving platform NVS memory
[ 2335.675347] Disabling non-boot CPUs ...
[ 2335.701010] smpboot: CPU 1 is now offline
[ 2335.710176] PM: Creating hibernation image:
[ 2335.713106] PM: Need to copy 396129 pages
[ 2335.713106] PM: Normal pages needed: 396129 + 1024, available pages: 643238
[ 2335.713106] PM: Restoring platform NVS memory
[ 2335.713106] Enabling non-boot CPUs ...
[ 2335.736514] x86: Booting SMP configuration:
[ 2335.736516] smpboot: Booting Node 0 Processor 1 APIC 0x1
[ 2335.737672] cache: parent cpu1 should not be sleeping
[ 2335.738437] CPU1 is up
[ 2335.739864] ACPI: Waking up from system sleep state S4
[ 2335.758192] sdhci-pci 0000:0f:00.0: MMC controller base frequency changed to 50Mhz.
[ 2335.773966] PM: noirq restore of devices complete after 16.981 msecs
[ 2335.774218] PM: early restore of devices complete after 0.223 msecs
[ 2335.854057] usb usb3: root hub lost power or was reset
[ 2335.854098] usb usb4: root hub lost power or was reset
[ 2335.854136] usb usb5: root hub lost power or was reset
[ 2335.854172] usb usb1: root hub lost power or was reset
[ 2335.858076] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 2335.858257] usb usb6: root hub lost power or was reset
[ 2335.858259] usb usb7: root hub lost power or was reset
[ 2335.858301] usb usb8: root hub lost power or was reset
[ 2335.858574] usb usb2: root hub lost power or was reset
[ 2335.862474] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 2335.867428] rtc_cmos 00:02: System wakeup disabled by ACPI
[ 2335.924808] r8169 0000:09:00.0 eth0: link down
[ 2335.929742] sd 0:0:0:0: [sda] Starting disk
[ 2336.260354] ata6: SATA link down (SStatus 0 SControl 300)
[ 2336.260385] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2336.260411] ata2: SATA link down (SStatus 0 SControl 300)
[ 2336.260438] ata5: SATA link down (SStatus 0 SControl 300)
[ 2336.279374] ata1.00: configured for UDMA/133
[ 2336.309814] usb 3-1: reset full-speed USB device number 2 using uhci_hcd
[ 2336.339801] usb 2-5: reset high-speed USB device number 4 using ehci-pci
[ 2336.373199] sdhci-pci 0000:0f:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
[ 2336.426503] firewire_core 0000:0f:00.3: rediscovered device fw0
[ 2336.489830] usb 6-2: reset low-speed USB device number 2 using uhci_hcd
[ 2336.980021] b43-phy0: Loading firmware version 784.2 (2012-08-15 21:35:19)
[ 2343.917401] PM: restore of devices complete after 8065.394 msecs
[ 2343.917502] usb 3-1:1.0: rebind failed: -517
[ 2343.917512] usb 3-1:1.1: rebind failed: -517
[ 2343.917813] PM: Image restored successfully.
[ 2343.917833] PM: Basic memory bitmaps freed
[ 2343.917842] Restarting tasks ... done.
[ 2345.360737] wlan0: authenticate with 02:f8:1c:89:1b:62
[ 2345.397219] wlan0: send auth to 02:f8:1c:89:1b:62 (try 1/3)
[ 2345.399404] wlan0: authenticated
[ 2345.400134] wlan0: associate with 02:f8:1c:89:1b:62 (try 1/3)
[ 2345.403580] wlan0: RX AssocResp from 02:f8:1c:89:1b:62 (capab=0x411 status=0 aid=1)
[ 2345.406285] wlan0: associated
[ 2394.815451] PM: Hibernation mode set to 'platform'
Offline
Ok, it seems that removing "autodetect" from Mkinitcpio.conf HOOKS="" has solved the issue. I just did ~10 hibernation cycles without failure.
Last edited by ugjka (2016-12-29 11:07:42)
Offline
Erm, that solution didn't work later after I rebooted fully. Now I have another solution that seem to work (but for how long? )
Disabling pm_async on boot via systemd
[ugjka@ArchT ~]$ cat /etc/systemd/system/nopmasync.service
[Unit]
Description=Disable PM Async for suspend/hibernation
[Service]
ExecStart=/usr/bin/bash -c "echo 0 > /sys/power/pm_async"
[Install]
WantedBy=multi-user.target
Offline
Okay, this was a temporary fix as well. Any ideas what else to try?
Offline
Hello,
i hope this is of any help for You.
For some time I also had problems with hibernation. Sometimes it worked and after 2 or more cycles it crashed.
I tried a lot and read some things but what really helped was doing a
swapoff -a && swapon -a
before hibernating.
So as i am using this really cool hibernation after suspend dicussed for example in this thread:
i have added this:
if [ -z "$alarm" ] || [ "$now" -ge "$alarm" ]; then \
echo "hibernate triggered"; \
swapoff -a && swapon -a; \
systemctl hibernate; \
to systemd/system/suspend-to-hibernate.
I also increased my ram to 12 GB and got a ssd harddrive...
but i think it even worked before pimping my laptop....
all the best!
Offline
Offline
Well shoot me, after removing intel_agp i915 r8188eu from MODULES="" hibernation suddenly works.
I hope this will be permanent. I'll wait for a couple days, and then mark this as [Solved] if this is indeed a fix?
Last edited by ugjka (2017-01-10 13:31:52)
Offline
So it seems the problem is solved.
A short recap of changes I did
Removed "autodetect" from mkinitcpio.conf hooks
Disabled "pm_async" on boot
Removed everything from "modules" in mkinitcpio.conf
Offline