You are not logged in.

#1 2013-10-05 13:21:22

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

[Luks] SWAP hibernation in LVM using LUKS (resolved)

Hi,

I use Luks for encrypt my root, home and swap.
At the boot, the message is

ERROR can't find /dev/mapper/cr-swap wainting 10 seconds.. 

And after I can enter the passphrase.

Here's the config.

$ lsblk
sdb             8:16   0 149,1G  0 disk  
├─sdb1          8:17   0  94,1M  0 part  /boot
└─sdb2          8:18   0   149G  0 part  
  └─root      254:0    0   149G  0 crypt 
    ├─cr-root 254:1    0    15G  0 lvm   /
    ├─cr-home 254:2    0   100G  0 lvm   /home
    └─cr-swap 254:3    0     3G  0 lvm 

I also add

vim /etc/crypttab
cr-swap /dev/mapper/cr-swap  dev/urandom swap,cipher=aes-cbc-essiv:sha256 

How can I use /dev/mapper/rc-swap to SWAP in order to suspend-to-disk support ?

Thanks in adance.

Last edited by NeanderMarcl (2013-10-06 19:38:31)

Offline

#2 2013-10-05 23:14:15

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

You shouldn't be using crypttab because swap is not directly encrypted. It is part of the lvm which is in an encrypted container. So the container has to be opened first, then the lvm assembled and then the logical volumes are accessible.

Basically, I think you just need to specify the swap volume on the command line the same way you do root and the rest should be taken care of, provided you have the right hooks in your initramfs config. So add resume=/dev/cr/swap to your kernel command line rather than putting anything in crypttab.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#3 2013-10-06 09:06:38

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Thanks for answer.
I've deleted the /etc/crypttab and change in /boot/syslinux/sylinux.cfg the section resume=/dev/mapper/cr-swap to resume=/dev/cr/swap but it stille the same.

syslinux-install_update -iam

I also check the values in HOOKS

/etc/mkinitcpio.conf
MODULES="... sd_mod .."
HOOKS="base udev autodetect resume modconf block keymap encrypt lvm2 filesystems usbinput fsck"

During the boot before entering passphrase the same message :

Waiting 10 seconds for device /dev/cr/swap...
ERROR : resume: hibernation device '/dev/cr/swap' not found

Offline

#4 2013-10-06 10:53:15

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Finally, I change to the line in

/boot/syslinux/syslinux.cfg
resume=/dev/mapper/cr-swap ro

The error is quite different.

 ERROR: resume: no device specified for hibernation

Offline

#5 2013-10-06 15:21:45

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Not sure but maybe you need the order of the hooks to be right here i.e. resume after encrypt and lvm2. I know it no longer matters which order you put encrypt and lvm2 in but I'm not sure that means that the order doesn't matter at all.

Here's (relevant parts of) my kernel command line:

... root=/dev/vgroup-cfr/arch rw rootfstype=ext4 cryptdevice=/dev/disk/by-uuid/52c6459e-e27a-400f-a282-f73337d70f74:lvm resume=/dev/vgroup-cfr/swap ...

And from mkinitcpio.conf:

...
HOOKS="base udev autodetect modconf block encrypt lvm2 resume filesystems keyboard fsck shutdown"
...

CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#6 2013-10-06 15:39:14

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

I've changed the order, the error disapears during the boot ! thanks the order has an importance
But after resume the system does not save the state. I reboots the system.

Last edited by NeanderMarcl (2013-10-06 15:39:25)

Offline

#7 2013-10-06 17:42:28

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

What does the journal say? Does it look for the resume image to see if there is one?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#8 2013-10-06 17:51:20

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

You mean

journactl 

, nothing about swap.

Offline

#9 2013-10-06 17:55:36

progandy
Member
Registered: 2012-05-17
Posts: 5,211

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Maybe in your dmesg?

Last edited by progandy (2013-10-06 17:56:21)


| alias CUTF='LANG=en_XX.UTF-8@POSIX ' |

Offline

#10 2013-10-06 18:21:54

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

NeanderMarcl wrote:

You mean

journactl 

, nothing about swap.

Look for "resume". For example:

Hyd 05 21:46:03 MyComputer initramfs: :: running hook [resume]
Hyd 05 21:46:03 MyComputer kernel: PM: Starting manual resume from disk
Hyd 05 21:46:03 MyComputer kernel: PM: Hibernation image partition 254:5 present
Hyd 05 21:46:03 MyComputer kernel: PM: Looking for hibernation image.
Hyd 05 21:46:03 MyComputer kernel: PM: Image not found (code -22)
Hyd 05 21:46:03 MyComputer kernel: PM: Hibernation image not present or could not be loaded.

This is expected in my case - I rebooted the computer rather than hibernating it so there is not meant to be an image for it to find. See if yours looks for the image.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#11 2013-10-06 18:34:39

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

-- Reboot --
oct. 06 18:18:28 stan systemd[391]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
oct. 06 18:18:28 stan systemd[391]: Mounted /sys/kernel/config.
oct. 06 18:18:28 stan systemd[391]: Stopped target Sound Card.
oct. 06 18:18:28 stan systemd[391]: Starting Default.
oct. 06 18:18:28 stan systemd[391]: Reached target Default.
oct. 06 18:18:28 stan systemd[391]: Startup finished in 77ms.
oct. 06 18:18:35 stan systemd[391]: Stopping Default.
oct. 06 18:18:35 stan systemd[391]: Stopped target Default.
oct. 06 18:18:35 stan systemd[391]: Starting Shutdown.
-- Reboot --
oct. 06 20:21:20 stan systemd[341]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
oct. 06 20:21:21 stan systemd[341]: Mounted /sys/kernel/config.
oct. 06 20:21:21 stan systemd[341]: Stopped target Sound Card.
oct. 06 20:21:21 stan systemd[341]: Starting Default.
oct. 06 20:21:21 stan systemd[341]: Reached target Default.
oct. 06 20:21:21 stan systemd[341]: Startup finished in 269ms.
oct. 06 20:30:28 stan su[8001]: (to julien) julien on none
oct. 06 20:30:28 stan su[8001]: pam_unix(su-l:session): session opened for user root by (uid=1000)
oct. 06 20:30:51 stan su[8001]: pam_unix(su-l:session): session closed for user root

Offline

#12 2013-10-06 18:37:56

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

You need to execute journalctl with privileges to get useful output. (Or add yourself to the relevant group.)

EDIT: journalctl should tell you this at the top of the output when you run the command.

Last edited by cfr (2013-10-06 18:38:57)


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#13 2013-10-06 18:43:58

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

-- Reboot --
oct. 06 17:47:37 stan systemd[383]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
oct. 06 17:47:37 stan systemd[383]: Mounted /sys/kernel/config.
oct. 06 17:47:37 stan systemd[383]: Stopped target Sound Card.
oct. 06 17:47:37 stan systemd[383]: Starting Default.
oct. 06 17:47:37 stan systemd[383]: Reached target Default.
oct. 06 17:47:37 stan systemd[383]: Startup finished in 94ms.
oct. 06 18:16:51 stan systemd[383]: Stopping Default.
-- Reboot --
oct. 06 18:18:28 stan systemd[391]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
oct. 06 18:18:28 stan systemd[391]: Mounted /sys/kernel/config.
oct. 06 18:18:28 stan systemd[391]: Stopped target Sound Card.
oct. 06 18:18:28 stan systemd[391]: Starting Default.
oct. 06 18:18:28 stan systemd[391]: Reached target Default.
oct. 06 18:18:28 stan systemd[391]: Startup finished in 77ms.
oct. 06 18:18:35 stan systemd[391]: Stopping Default.
oct. 06 18:18:35 stan systemd[391]: Stopped target Default.
oct. 06 18:18:35 stan systemd[391]: Starting Shutdown.

Offline

#14 2013-10-06 18:51:28

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

oct. 06 20:45:41 stan systemd[1]: Starting Sleep.
oct. 06 20:45:41 stan systemd[1]: Reached target Sleep.
oct. 06 20:45:41 stan systemd[1]: Starting Hibernate...
oct. 06 20:45:41 stan kernel: PM: Hibernation mode set to 'platform'
oct. 06 20:45:41 stan systemd-sleep[20831]: Suspending system...
oct. 06 20:45:42 stan slim[277]: (II) AIGLX: Suspending AIGLX clients for VT switch
oct. 06 20:45:42 stan kernel: PM: Marking nosave pages: [mem 0x0009f000-0x000fffff]
oct. 06 20:45:42 stan kernel: PM: Basic memory bitmaps created
-- Reboot --
oct. 06 20:46:25 stan systemd-journal[177]: Runtime journal is using 544.0K (max 150.6M, leaving 226.0M of free 1.4G, current limit 150.6M).
oct. 06 20:46:25 stan systemd-journal[177]: Runtime journal is using 548.0K (max 150.6M, leaving 226.0M of free 1.4G, current limit 150.6M).
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpuset
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpu
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpuacct
oct. 06 20:46:25 stan kernel: Linux version 3.11.3-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 2 01:38:48 CEST 
oct. 06 20:46:25 stan kernel: Command line: root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root  initrd=/initramfs-linux.img BOOT_IMAGE=/vmlinuz-linux 

Offline

#15 2013-10-06 18:57:34

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

NeanderMarcl wrote:
oct. 06 20:45:41 stan systemd[1]: Starting Sleep.
oct. 06 20:45:41 stan systemd[1]: Reached target Sleep.
oct. 06 20:45:41 stan systemd[1]: Starting Hibernate...
oct. 06 20:45:41 stan kernel: PM: Hibernation mode set to 'platform'
oct. 06 20:45:41 stan systemd-sleep[20831]: Suspending system...
oct. 06 20:45:42 stan slim[277]: (II) AIGLX: Suspending AIGLX clients for VT switch
oct. 06 20:45:42 stan kernel: PM: Marking nosave pages: [mem 0x0009f000-0x000fffff]
oct. 06 20:45:42 stan kernel: PM: Basic memory bitmaps created
-- Reboot --
oct. 06 20:46:25 stan systemd-journal[177]: Runtime journal is using 544.0K (max 150.6M, leaving 226.0M of free 1.4G, current limit 150.6M).
oct. 06 20:46:25 stan systemd-journal[177]: Runtime journal is using 548.0K (max 150.6M, leaving 226.0M of free 1.4G, current limit 150.6M).
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpuset
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpu
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpuacct
oct. 06 20:46:25 stan kernel: Linux version 3.11.3-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 2 01:38:48 CEST 
oct. 06 20:46:25 stan kernel: Command line: root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root  initrd=/initramfs-linux.img BOOT_IMAGE=/vmlinuz-linux 

That can't be all there is. What does

# journalctl -b --full --no-pager

give you?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#16 2013-10-06 19:00:07

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

-- Logs begin at ven. 2013-10-04 19:47:19 CEST, end at dim. 2013-10-06 20:58:49 CEST. --
oct. 06 20:46:25 stan systemd-journal[177]: Runtime journal is using 544.0K (max 150.6M, leaving 226.0M of free 1.4G, current limit 150.6M).
oct. 06 20:46:25 stan systemd-journal[177]: Runtime journal is using 548.0K (max 150.6M, leaving 226.0M of free 1.4G, current limit 150.6M).
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpuset
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpu
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys cpuacct
oct. 06 20:46:25 stan kernel: Linux version 3.11.3-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 2 01:38:48 CEST 2013
oct. 06 20:46:25 stan kernel: Command line: root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root  initrd=/initramfs-linux.img BOOT_IMAGE=/vmlinuz-linux 
oct. 06 20:46:25 stan kernel: e820: BIOS-provided physical RAM map:
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000000e6000-0x00000000000fffff] reserved
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bffaffff] usable
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000bffb0000-0x00000000bffbffff] ACPI data
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000bffc0000-0x00000000bffeffff] ACPI NVS
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000bfff0000-0x00000000bfffffff] reserved
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
oct. 06 20:46:25 stan kernel: BIOS-e820: [mem 0x00000000ff380000-0x00000000ffffffff] reserved
oct. 06 20:46:25 stan kernel: NX (Execute Disable) protection: active
oct. 06 20:46:25 stan kernel: SMBIOS 2.4 present.
oct. 06 20:46:25 stan kernel: DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./G31M-GS.  , BIOS P1.80 05/20/2011
oct. 06 20:46:25 stan kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
oct. 06 20:46:25 stan kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
oct. 06 20:46:25 stan kernel: No AGP bridge found
oct. 06 20:46:25 stan kernel: e820: last_pfn = 0xbffb0 max_arch_pfn = 0x400000000
oct. 06 20:46:25 stan kernel: MTRR default type: uncachable
oct. 06 20:46:25 stan kernel: MTRR fixed ranges enabled:
oct. 06 20:46:25 stan kernel:   00000-9FFFF write-back
oct. 06 20:46:25 stan kernel:   A0000-BFFFF uncachable
oct. 06 20:46:25 stan kernel:   C0000-CFFFF write-protect
oct. 06 20:46:25 stan kernel:   D0000-DFFFF uncachable
oct. 06 20:46:25 stan kernel:   E0000-EFFFF write-through
oct. 06 20:46:25 stan kernel:   F0000-FFFFF write-protect
oct. 06 20:46:25 stan kernel: MTRR variable ranges enabled:
oct. 06 20:46:25 stan kernel:   0 base 000000000 mask F80000000 write-back
oct. 06 20:46:25 stan kernel:   1 base 080000000 mask FC0000000 write-back
oct. 06 20:46:25 stan kernel:   2 disabled
oct. 06 20:46:25 stan kernel:   3 disabled
oct. 06 20:46:25 stan kernel:   4 disabled
oct. 06 20:46:25 stan kernel:   5 disabled
oct. 06 20:46:25 stan kernel:   6 disabled
oct. 06 20:46:25 stan kernel:   7 disabled
oct. 06 20:46:25 stan kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
oct. 06 20:46:25 stan kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
oct. 06 20:46:25 stan kernel: Scanning 1 areas for low memory corruption
oct. 06 20:46:25 stan kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
oct. 06 20:46:25 stan kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
oct. 06 20:46:25 stan kernel:  [mem 0x00000000-0x000fffff] page 4k
oct. 06 20:46:25 stan kernel: BRK [0x01b2d000, 0x01b2dfff] PGTABLE
oct. 06 20:46:25 stan kernel: BRK [0x01b2e000, 0x01b2efff] PGTABLE
oct. 06 20:46:25 stan kernel: BRK [0x01b2f000, 0x01b2ffff] PGTABLE
oct. 06 20:46:25 stan kernel: init_memory_mapping: [mem 0xbfc00000-0xbfdfffff]
oct. 06 20:46:25 stan kernel:  [mem 0xbfc00000-0xbfdfffff] page 2M
oct. 06 20:46:25 stan kernel: BRK [0x01b30000, 0x01b30fff] PGTABLE
oct. 06 20:46:25 stan kernel: init_memory_mapping: [mem 0xbc000000-0xbfbfffff]
oct. 06 20:46:25 stan kernel:  [mem 0xbc000000-0xbfbfffff] page 2M
oct. 06 20:46:25 stan kernel: init_memory_mapping: [mem 0x80000000-0xbbffffff]
oct. 06 20:46:25 stan kernel:  [mem 0x80000000-0xbbffffff] page 2M
oct. 06 20:46:25 stan kernel: init_memory_mapping: [mem 0x00100000-0x7fffffff]
oct. 06 20:46:25 stan kernel:  [mem 0x00100000-0x001fffff] page 4k
oct. 06 20:46:25 stan kernel:  [mem 0x00200000-0x7fffffff] page 2M
oct. 06 20:46:25 stan kernel: init_memory_mapping: [mem 0xbfe00000-0xbffaffff]
oct. 06 20:46:25 stan kernel:  [mem 0xbfe00000-0xbffaffff] page 4k
oct. 06 20:46:25 stan kernel: BRK [0x01b31000, 0x01b31fff] PGTABLE
oct. 06 20:46:25 stan kernel: RAMDISK: [mem 0x7fb1a000-0x7fffefff]
oct. 06 20:46:25 stan kernel: ACPI: RSDP 00000000000fa010 00014 (v00 ACPIAM)
oct. 06 20:46:25 stan kernel: ACPI: RSDT 00000000bffb0000 00040 (v01 052011 RSDT1536 20110520 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: FACP 00000000bffb0200 00084 (v01 A M I  OEMFACP  12000601 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: DSDT 00000000bffb0440 05641 (v01  AS166 AS166172 00000172 INTL 20051117)
oct. 06 20:46:25 stan kernel: ACPI: FACS 00000000bffc0000 00040
oct. 06 20:46:25 stan kernel: ACPI: APIC 00000000bffb0390 0006C (v01 052011 APIC1536 20110520 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: MCFG 00000000bffb0400 0003C (v01 052011 OEMMCFG  20110520 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: OEMB 00000000bffc0040 00071 (v01 052011 OEMB1536 20110520 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: AAFT 00000000bffb5a90 00027 (v01 052011 OEMAAFT  20110520 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: GSCI 00000000bffc00c0 02024 (v01 052011 GMCHSCI  20110520 MSFT 00000097)
oct. 06 20:46:25 stan kernel: ACPI: SSDT 00000000bffc2a10 00A7C (v01 DpgPmm    CpuPm 00000012 INTL 20051117)
oct. 06 20:46:25 stan kernel: ACPI: Local APIC address 0xfee00000
oct. 06 20:46:25 stan kernel: No NUMA configuration found
oct. 06 20:46:25 stan kernel: Faking a node at [mem 0x0000000000000000-0x00000000bffaffff]
oct. 06 20:46:25 stan kernel: Initmem setup node 0 [mem 0x00000000-0xbffaffff]
oct. 06 20:46:25 stan kernel:   NODE_DATA [mem 0xbffab000-0xbffaffff]
oct. 06 20:46:25 stan kernel:  [ffffea0000000000-ffffea0002ffffff] PMD -> [ffff8800bc400000-ffff8800bf3fffff] on node 0
oct. 06 20:46:25 stan kernel: Zone ranges:
oct. 06 20:46:25 stan kernel:   DMA      [mem 0x00001000-0x00ffffff]
oct. 06 20:46:25 stan kernel:   DMA32    [mem 0x01000000-0xffffffff]
oct. 06 20:46:25 stan kernel:   Normal   empty
oct. 06 20:46:25 stan kernel: Movable zone start for each node
oct. 06 20:46:25 stan kernel: Early memory node ranges
oct. 06 20:46:25 stan kernel:   node   0: [mem 0x00001000-0x0009efff]
oct. 06 20:46:25 stan kernel:   node   0: [mem 0x00100000-0xbffaffff]
oct. 06 20:46:25 stan kernel: On node 0 totalpages: 786254
oct. 06 20:46:25 stan kernel:   DMA zone: 64 pages used for memmap
oct. 06 20:46:25 stan kernel:   DMA zone: 21 pages reserved
oct. 06 20:46:25 stan kernel:   DMA zone: 3998 pages, LIFO batch:0
oct. 06 20:46:25 stan kernel:   DMA32 zone: 12223 pages used for memmap
oct. 06 20:46:25 stan kernel:   DMA32 zone: 782256 pages, LIFO batch:31
oct. 06 20:46:25 stan kernel: ACPI: PM-Timer IO Port: 0x808
oct. 06 20:46:25 stan kernel: ACPI: Local APIC address 0xfee00000
oct. 06 20:46:25 stan kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
oct. 06 20:46:25 stan kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
oct. 06 20:46:25 stan kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
oct. 06 20:46:25 stan kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
oct. 06 20:46:25 stan kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
oct. 06 20:46:25 stan kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
oct. 06 20:46:25 stan kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
oct. 06 20:46:25 stan kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
oct. 06 20:46:25 stan kernel: ACPI: IRQ0 used by override.
oct. 06 20:46:25 stan kernel: ACPI: IRQ2 used by override.
oct. 06 20:46:25 stan kernel: ACPI: IRQ9 used by override.
oct. 06 20:46:25 stan kernel: Using ACPI (MADT) for SMP configuration information
oct. 06 20:46:25 stan kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
oct. 06 20:46:25 stan kernel: nr_irqs_gsi: 40
oct. 06 20:46:25 stan kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
oct. 06 20:46:25 stan kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000e5fff]
oct. 06 20:46:25 stan kernel: PM: Registered nosave memory: [mem 0x000e6000-0x000fffff]
oct. 06 20:46:25 stan kernel: e820: [mem 0xc0000000-0xfecfffff] available for PCI devices
oct. 06 20:46:25 stan kernel: Booting paravirtualized kernel on bare hardware
oct. 06 20:46:25 stan kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
oct. 06 20:46:25 stan kernel: PERCPU: Embedded 29 pages/cpu @ffff8800bfa00000 s86528 r8192 d24064 u524288
oct. 06 20:46:25 stan kernel: pcpu-alloc: s86528 r8192 d24064 u524288 alloc=1*2097152
oct. 06 20:46:25 stan kernel: pcpu-alloc: [0] 0 1 2 3 
oct. 06 20:46:25 stan kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 773946
oct. 06 20:46:25 stan kernel: Policy zone: DMA32
oct. 06 20:46:25 stan kernel: Kernel command line: root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root  initrd=/initramfs-linux.img BOOT_IMAGE=/vmlinuz-linux 
oct. 06 20:46:25 stan kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
oct. 06 20:46:25 stan kernel: Checking aperture...
oct. 06 20:46:25 stan kernel: No AGP bridge found
oct. 06 20:46:25 stan kernel: Calgary: detecting Calgary via BIOS EBDA area
oct. 06 20:46:25 stan kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
oct. 06 20:46:25 stan kernel: Memory: 3078568K/3145016K available (5046K kernel code, 795K rwdata, 1696K rodata, 1140K init, 1284K bss, 66448K reserved)
oct. 06 20:46:25 stan kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
oct. 06 20:46:25 stan kernel: Preemptible hierarchical RCU implementation.
oct. 06 20:46:25 stan kernel:         RCU dyntick-idle grace-period acceleration is enabled.
oct. 06 20:46:25 stan kernel:         Dump stacks of tasks blocking RCU-preempt GP.
oct. 06 20:46:25 stan kernel:         RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
oct. 06 20:46:25 stan kernel: NR_IRQS:4352 nr_irqs:712 16
oct. 06 20:46:25 stan kernel: Console: colour VGA+ 80x25
oct. 06 20:46:25 stan kernel: console [tty0] enabled
oct. 06 20:46:25 stan kernel: allocated 12582912 bytes of page_cgroup
oct. 06 20:46:25 stan kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
oct. 06 20:46:25 stan kernel: tsc: Fast TSC calibration using PIT
oct. 06 20:46:25 stan kernel: tsc: Detected 2193.912 MHz processor
oct. 06 20:46:25 stan kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4389.65 BogoMIPS (lpj=7313040)
oct. 06 20:46:25 stan kernel: pid_max: default: 32768 minimum: 301
oct. 06 20:46:25 stan kernel: Security Framework initialized
oct. 06 20:46:25 stan kernel: AppArmor: AppArmor disabled by boot time parameter
oct. 06 20:46:25 stan kernel: Yama: becoming mindful.
oct. 06 20:46:25 stan kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
oct. 06 20:46:25 stan kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
oct. 06 20:46:25 stan kernel: Mount-cache hash table entries: 256
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys memory
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys devices
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys freezer
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys net_cls
oct. 06 20:46:25 stan kernel: Initializing cgroup subsys blkio
oct. 06 20:46:25 stan kernel: CPU: Physical Processor ID: 0
oct. 06 20:46:25 stan kernel: CPU: Processor Core ID: 0
oct. 06 20:46:25 stan kernel: mce: CPU supports 6 MCE banks
oct. 06 20:46:25 stan kernel: CPU0: Thermal monitoring enabled (TM2)
oct. 06 20:46:25 stan kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
                              Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
                              tlb_flushall_shift: -1
oct. 06 20:46:25 stan kernel: Freeing SMP alternatives memory: 20K (ffffffff819e5000 - ffffffff819ea000)
oct. 06 20:46:25 stan kernel: ACPI: Core revision 20130517
oct. 06 20:46:25 stan kernel: ACPI: All ACPI Tables successfully acquired
oct. 06 20:46:25 stan kernel: ftrace: allocating 20089 entries in 79 pages
oct. 06 20:46:25 stan kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
oct. 06 20:46:25 stan kernel: smpboot: CPU0: Intel(R) Pentium(R) Dual  CPU  E2200  @ 2.20GHz (fam: 06, model: 0f, stepping: 0d)
oct. 06 20:46:25 stan kernel: Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
oct. 06 20:46:25 stan kernel: perf_event_intel: PEBS disabled due to CPU errata
oct. 06 20:46:25 stan kernel: ... version:                2
oct. 06 20:46:25 stan kernel: ... bit width:              40
oct. 06 20:46:25 stan kernel: ... generic registers:      2
oct. 06 20:46:25 stan kernel: ... value mask:             000000ffffffffff
oct. 06 20:46:25 stan kernel: ... max period:             000000007fffffff
oct. 06 20:46:25 stan kernel: ... fixed-purpose events:   3
oct. 06 20:46:25 stan kernel: ... event mask:             0000000700000003
oct. 06 20:46:25 stan kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
oct. 06 20:46:25 stan kernel: smpboot: Booting Node   0, Processors  #1
oct. 06 20:46:25 stan kernel: Brought up 2 CPUs
oct. 06 20:46:25 stan kernel: smpboot: Total of 2 processors activated (8779.30 BogoMIPS)
oct. 06 20:46:25 stan kernel: devtmpfs: initialized
oct. 06 20:46:25 stan kernel: PM: Registering ACPI NVS region [mem 0xbffc0000-0xbffeffff] (196608 bytes)
oct. 06 20:46:25 stan kernel: RTC time: 18:46:18, date: 10/06/13
oct. 06 20:46:25 stan kernel: NET: Registered protocol family 16
oct. 06 20:46:25 stan kernel: ACPI: bus type PCI registered
oct. 06 20:46:25 stan kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
oct. 06 20:46:25 stan kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
oct. 06 20:46:25 stan kernel: PCI: not using MMCONFIG
oct. 06 20:46:25 stan kernel: PCI: Using configuration type 1 for base access
oct. 06 20:46:25 stan kernel: bio: create slab <bio-0> at 0
oct. 06 20:46:25 stan kernel: ACPI: Added _OSI(Module Device)
oct. 06 20:46:25 stan kernel: ACPI: Added _OSI(Processor Device)
oct. 06 20:46:25 stan kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
oct. 06 20:46:25 stan kernel: ACPI: Added _OSI(Processor Aggregator Device)
oct. 06 20:46:25 stan kernel: ACPI: EC: Look up EC in DSDT
oct. 06 20:46:25 stan kernel: ACPI: Executed 1 blocks of module-level executable AML code
oct. 06 20:46:25 stan kernel: ACPI: SSDT 00000000bffc20f0 00235 (v01 DpgPmm  P001Ist 00000011 INTL 20051117)
oct. 06 20:46:25 stan kernel: ACPI: Dynamic OEM Table Load:
oct. 06 20:46:25 stan kernel: ACPI: SSDT           (null) 00235 (v01 DpgPmm  P001Ist 00000011 INTL 20051117)
oct. 06 20:46:25 stan kernel: ACPI: SSDT 00000000bffc2580 00235 (v01 DpgPmm  P002Ist 00000012 INTL 20051117)
oct. 06 20:46:25 stan kernel: ACPI: Dynamic OEM Table Load:
oct. 06 20:46:25 stan kernel: ACPI: SSDT           (null) 00235 (v01 DpgPmm  P002Ist 00000012 INTL 20051117)
oct. 06 20:46:25 stan kernel: ACPI: Interpreter enabled
oct. 06 20:46:25 stan kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
oct. 06 20:46:25 stan kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130517/hwxface-571)
oct. 06 20:46:25 stan kernel: ACPI: (supports S0 S1 S4 S5)
oct. 06 20:46:25 stan kernel: ACPI: Using IOAPIC for interrupt routing
oct. 06 20:46:25 stan kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
oct. 06 20:46:25 stan kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
oct. 06 20:46:25 stan kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
oct. 06 20:46:25 stan kernel: ACPI: No dock devices found.
oct. 06 20:46:25 stan kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
oct. 06 20:46:25 stan kernel: acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
oct. 06 20:46:25 stan kernel: acpi PNP0A08:00: ACPI _OSC control (0x1c) granted
oct. 06 20:46:25 stan kernel: PCI host bridge to bus 0000:00
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0: [8086:29c1] type 01 class 0x060400
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
oct. 06 20:46:25 stan kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf9ffc000-0xf9ffffff 64bit]
oct. 06 20:46:25 stan kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
oct. 06 20:46:25 stan kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.0: reg 0x20: [io  0xc480-0xc49f]
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.1: reg 0x20: [io  0xc800-0xc81f]
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.2: reg 0x20: [io  0xc880-0xc89f]
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.3: reg 0x20: [io  0xcc00-0xcc1f]
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.3: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xf9ffbc00-0xf9ffbfff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
oct. 06 20:46:25 stan kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: Force enabled HPET at 0xfed00000
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: address space collision: [io  0x0800-0x087f] conflicts with ACPI CPU throttle [??? 0x00000810-0x00000815 flags 0x80000000]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0280 (mask 00ff)
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0300 (mask 003f)
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.1: reg 0x10: [io  0x0000-0x0007]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.1: reg 0x14: [io  0x0000-0x0003]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.1: reg 0x18: [io  0x08f0-0x08f7]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.1: reg 0x1c: [io  0x08f8-0x08fb]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.1: reg 0x20: [io  0xffa0-0xffaf]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: [8086:27c0] type 00 class 0x01018f
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: reg 0x10: [io  0xc400-0xc407]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: reg 0x14: [io  0xc080-0xc083]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: reg 0x18: [io  0xc000-0xc007]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: reg 0x1c: [io  0xbc00-0xbc03]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: reg 0x20: [io  0xb880-0xb88f]
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.2: PME# supported from D3hot
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.3: reg 0x20: [io  0x0400-0x041f]
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: [10de:06e0] type 00 class 0x030000
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: reg 0x10: [mem 0xfd000000-0xfdffffff]
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: reg 0x1c: [mem 0xfa000000-0xfbffffff 64bit]
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: reg 0x24: [io  0xec00-0xec7f]
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: reg 0x30: [mem 0xfebe0000-0xfebfffff pref]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0: PCI bridge to [bus 04]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfebfffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0:   bridge window [mem 0xcff00000-0xcfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: reg 0x10: [io  0xd800-0xd8ff]
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: reg 0x18: [mem 0xcfeff000-0xcfefffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: reg 0x20: [mem 0xcfef8000-0xcfefbfff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: supports D1 D2
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: PCI bridge to [bus 01]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15)
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 10 11 12 14 15)
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
oct. 06 20:46:25 stan kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
oct. 06 20:46:25 stan kernel: ACPI: Enabled 2 GPEs in block 00 to 1F
oct. 06 20:46:25 stan kernel: ACPI: \_SB_.PCI0: notify handler is installed
oct. 06 20:46:25 stan kernel: Found 1 acpi root devices
oct. 06 20:46:25 stan kernel: vgaarb: device added: PCI:0000:04:00.0,decodes=io+mem,owns=io+mem,locks=none
oct. 06 20:46:25 stan kernel: vgaarb: loaded
oct. 06 20:46:25 stan kernel: vgaarb: bridge control possible 0000:04:00.0
oct. 06 20:46:25 stan kernel: PCI: Using ACPI for IRQ routing
oct. 06 20:46:25 stan kernel: PCI: pci_cache_line_size set to 64 bytes
oct. 06 20:46:25 stan kernel: e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
oct. 06 20:46:25 stan kernel: e820: reserve RAM buffer [mem 0xbffb0000-0xbfffffff]
oct. 06 20:46:25 stan kernel: NetLabel: Initializing
oct. 06 20:46:25 stan kernel: NetLabel:  domain hash size = 128
oct. 06 20:46:25 stan kernel: NetLabel:  protocols = UNLABELED CIPSOv4
oct. 06 20:46:25 stan kernel: NetLabel:  unlabeled traffic allowed by default
oct. 06 20:46:25 stan kernel: hpet clockevent registered
oct. 06 20:46:25 stan kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
oct. 06 20:46:25 stan kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
oct. 06 20:46:25 stan kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
oct. 06 20:46:25 stan kernel: Switched to clocksource hpet
oct. 06 20:46:25 stan kernel: pnp: PnP ACPI init
oct. 06 20:46:25 stan kernel: ACPI: bus type PNP registered
oct. 06 20:46:25 stan kernel: system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
oct. 06 20:46:25 stan kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
oct. 06 20:46:25 stan kernel: pnp 00:01: [dma 4]
oct. 06 20:46:25 stan kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
oct. 06 20:46:25 stan kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
oct. 06 20:46:25 stan kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
oct. 06 20:46:25 stan kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
oct. 06 20:46:25 stan kernel: pnp 00:05: [dma 3]
oct. 06 20:46:25 stan kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0401 (active)
oct. 06 20:46:25 stan kernel: system 00:06: [io  0x04d0-0x04d1] has been reserved
oct. 06 20:46:25 stan kernel: system 00:06: [io  0x0800-0x087f] could not be reserved
oct. 06 20:46:25 stan kernel: system 00:06: [io  0x0480-0x04bf] has been reserved
oct. 06 20:46:25 stan kernel: system 00:06: [io  0x0900-0x090f] has been reserved
oct. 06 20:46:25 stan kernel: system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
oct. 06 20:46:25 stan kernel: system 00:06: [mem 0xfed20000-0xfed8ffff] has been reserved
oct. 06 20:46:25 stan kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
oct. 06 20:46:25 stan kernel: pnp 00:07: Plug and Play ACPI device, IDs INT0800 (active)
oct. 06 20:46:25 stan kernel: system 00:08: [mem 0xffc00000-0xfff7ffff] has been reserved
oct. 06 20:46:25 stan kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
oct. 06 20:46:25 stan kernel: system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
oct. 06 20:46:25 stan kernel: system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
oct. 06 20:46:25 stan kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
oct. 06 20:46:25 stan kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
oct. 06 20:46:25 stan kernel: pnp 00:0b: [dma 0 disabled]
oct. 06 20:46:25 stan kernel: pnp 00:0b: Plug and Play ACPI device, IDs PNP0501 (active)
oct. 06 20:46:25 stan kernel: system 00:0c: [io  0x0280-0x028f] has been reserved
oct. 06 20:46:25 stan kernel: system 00:0c: [io  0x0290-0x029f] has been reserved
oct. 06 20:46:25 stan kernel: system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
oct. 06 20:46:25 stan kernel: system 00:0d: [mem 0xe0000000-0xefffffff] has been reserved
oct. 06 20:46:25 stan kernel: system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
oct. 06 20:46:25 stan kernel: system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved
oct. 06 20:46:25 stan kernel: system 00:0e: [mem 0x000c0000-0x000cffff] could not be reserved
oct. 06 20:46:25 stan kernel: system 00:0e: [mem 0x000e0000-0x000fffff] could not be reserved
oct. 06 20:46:25 stan kernel: system 00:0e: [mem 0x00100000-0xbfffffff] could not be reserved
oct. 06 20:46:25 stan kernel: system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
oct. 06 20:46:25 stan kernel: pnp: PnP ACPI: found 15 devices
oct. 06 20:46:25 stan kernel: ACPI: bus type PNP unregistered
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 400000
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 400000
oct. 06 20:46:25 stan kernel: pci 0000:00:1f.0: BAR 13: [io  0x0800-0x087f] has bogus alignment
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 400000
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc03fffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: BAR 14: assigned [mem 0xc0400000-0xc07fffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0: PCI bridge to [bus 04]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfebfffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0000000-0xc03fffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0:   bridge window [mem 0xcff00000-0xcfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1: PCI bridge to [bus 01]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1:   bridge window [mem 0xc0400000-0xc07fffff]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.1:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0: PCI bridge to [bus 03]
oct. 06 20:46:25 stan kernel: pci 0000:00:1c.0: enabling device (0106 -> 0107)
oct. 06 20:46:25 stan kernel: pci 0000:00:1e.0: setting latency timer to 64
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xffffffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:04: resource 1 [mem 0xfa000000-0xfebfffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:04: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc03fffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:02: resource 2 [mem 0xcff00000-0xcfffffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:01: resource 1 [mem 0xc0400000-0xc07fffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:01: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
oct. 06 20:46:25 stan kernel: pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
oct. 06 20:46:25 stan kernel: pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:03: resource 8 [mem 0xc0000000-0xdfffffff]
oct. 06 20:46:25 stan kernel: pci_bus 0000:03: resource 9 [mem 0xf0000000-0xffffffff]
oct. 06 20:46:25 stan kernel: NET: Registered protocol family 2
oct. 06 20:46:25 stan kernel: TCP established hash table entries: 32768 (order: 7, 524288 bytes)
oct. 06 20:46:25 stan kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
oct. 06 20:46:25 stan kernel: TCP: Hash tables configured (established 32768 bind 32768)
oct. 06 20:46:25 stan kernel: TCP: reno registered
oct. 06 20:46:25 stan kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
oct. 06 20:46:25 stan kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
oct. 06 20:46:25 stan kernel: NET: Registered protocol family 1
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: Boot video device
oct. 06 20:46:25 stan kernel: PCI: CLS 32 bytes, default 64
oct. 06 20:46:25 stan kernel: Unpacking initramfs...
oct. 06 20:46:25 stan kernel: Freeing initrd memory: 5012K (ffff88007fb1a000 - ffff88007ffff000)
oct. 06 20:46:25 stan kernel: Scanning for low memory corruption every 60 seconds
oct. 06 20:46:25 stan kernel: audit: initializing netlink socket (disabled)
oct. 06 20:46:25 stan kernel: type=2000 audit(1381085178.279:1): initialized
oct. 06 20:46:25 stan kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
oct. 06 20:46:25 stan kernel: zbud: loaded
oct. 06 20:46:25 stan kernel: VFS: Disk quotas dquot_6.5.2
oct. 06 20:46:25 stan kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
oct. 06 20:46:25 stan kernel: msgmni has been set to 6022
oct. 06 20:46:25 stan kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
oct. 06 20:46:25 stan kernel: io scheduler noop registered
oct. 06 20:46:25 stan kernel: io scheduler deadline registered
oct. 06 20:46:25 stan kernel: io scheduler cfq registered (default)
oct. 06 20:46:25 stan kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
oct. 06 20:46:25 stan kernel: pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
oct. 06 20:46:25 stan kernel: pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
oct. 06 20:46:25 stan kernel: pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
oct. 06 20:46:25 stan kernel: pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
oct. 06 20:46:25 stan kernel: pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
oct. 06 20:46:25 stan kernel: pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
oct. 06 20:46:25 stan kernel: pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
oct. 06 20:46:25 stan kernel: pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
oct. 06 20:46:25 stan kernel: pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
oct. 06 20:46:25 stan kernel: pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
oct. 06 20:46:25 stan kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
oct. 06 20:46:25 stan kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
oct. 06 20:46:25 stan kernel: intel_idle: does not run on family 6 model 15
oct. 06 20:46:25 stan kernel: GHES: HEST is not enabled!
oct. 06 20:46:25 stan kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
oct. 06 20:46:25 stan kernel: 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
oct. 06 20:46:25 stan kernel: Linux agpgart interface v0.103
oct. 06 20:46:25 stan kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
oct. 06 20:46:25 stan kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
oct. 06 20:46:25 stan kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
oct. 06 20:46:25 stan kernel: mousedev: PS/2 mouse device common for all mice
oct. 06 20:46:25 stan kernel: rtc_cmos 00:02: RTC can wake from S4
oct. 06 20:46:25 stan kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
oct. 06 20:46:25 stan kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
oct. 06 20:46:25 stan kernel: cpuidle: using governor ladder
oct. 06 20:46:25 stan kernel: cpuidle: using governor menu
oct. 06 20:46:25 stan kernel: drop_monitor: Initializing network drop monitor service
oct. 06 20:46:25 stan kernel: TCP: cubic registered
oct. 06 20:46:25 stan kernel: NET: Registered protocol family 10
oct. 06 20:46:25 stan kernel: NET: Registered protocol family 17
oct. 06 20:46:25 stan kernel: Key type dns_resolver registered
oct. 06 20:46:25 stan kernel: PM: Hibernation image not present or could not be loaded.
oct. 06 20:46:25 stan kernel: registered taskstats version 1
oct. 06 20:46:25 stan kernel:   Magic number: 1:620:796
oct. 06 20:46:25 stan kernel: rtc_cmos 00:02: setting system clock to 2013-10-06 18:46:18 UTC (1381085178)
oct. 06 20:46:25 stan kernel: Freeing unused kernel memory: 1140K (ffffffff818c8000 - ffffffff819e5000)
oct. 06 20:46:25 stan kernel: Write protecting the kernel read-only data: 8192k
oct. 06 20:46:25 stan kernel: Freeing unused kernel memory: 1088K (ffff8800014f0000 - ffff880001600000)
oct. 06 20:46:25 stan kernel: Freeing unused kernel memory: 352K (ffff8800017a8000 - ffff880001800000)
oct. 06 20:46:25 stan systemd-udevd[46]: starting version 208
oct. 06 20:46:25 stan kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
oct. 06 20:46:25 stan kernel: SCSI subsystem initialized
oct. 06 20:46:25 stan kernel: ACPI: bus type USB registered
oct. 06 20:46:25 stan kernel: usbcore: registered new interface driver usbfs
oct. 06 20:46:25 stan kernel: usbcore: registered new interface driver hub
oct. 06 20:46:25 stan kernel: ACPI: bus type ATA registered
oct. 06 20:46:25 stan kernel: usbcore: registered new device driver usb
oct. 06 20:46:25 stan kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
oct. 06 20:46:25 stan kernel: ehci-pci: EHCI PCI platform driver
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: setting latency timer to 64
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: debug port 1
oct. 06 20:46:25 stan kernel: libata version 3.00 loaded.
oct. 06 20:46:25 stan kernel: uhci_hcd: USB Universal Host Controller Interface driver
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xf9ffbc00
oct. 06 20:46:25 stan kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
oct. 06 20:46:25 stan kernel: hub 1-0:1.0: USB hub found
oct. 06 20:46:25 stan kernel: hub 1-0:1.0: 8 ports detected
oct. 06 20:46:25 stan kernel: ata_piix 0000:00:1f.1: version 2.13
oct. 06 20:46:25 stan kernel: ata_piix 0000:00:1f.1: setting latency timer to 64
oct. 06 20:46:25 stan kernel: scsi0 : ata_piix
oct. 06 20:46:25 stan kernel: scsi1 : ata_piix
oct. 06 20:46:25 stan kernel: ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
oct. 06 20:46:25 stan kernel: ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
oct. 06 20:46:25 stan kernel: ata_piix 0000:00:1f.2: MAP [
oct. 06 20:46:25 stan kernel:  P0 P2 P1 P3 ]
oct. 06 20:46:25 stan kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
oct. 06 20:46:25 stan kernel: scsi2 : ata_piix
oct. 06 20:46:25 stan kernel: scsi3 : ata_piix
oct. 06 20:46:25 stan kernel: ata3: SATA max UDMA/133 cmd 0xc400 ctl 0xc080 bmdma 0xb880 irq 19
oct. 06 20:46:25 stan kernel: ata4: SATA max UDMA/133 cmd 0xc000 ctl 0xbc00 bmdma 0xb888 irq 19
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000c480
oct. 06 20:46:25 stan kernel: hub 2-0:1.0: USB hub found
oct. 06 20:46:25 stan kernel: hub 2-0:1.0: 2 ports detected
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000c800
oct. 06 20:46:25 stan kernel: hub 3-0:1.0: USB hub found
oct. 06 20:46:25 stan kernel: hub 3-0:1.0: 2 ports detected
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c880
oct. 06 20:46:25 stan kernel: hub 4-0:1.0: USB hub found
oct. 06 20:46:25 stan kernel: hub 4-0:1.0: 2 ports detected
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
oct. 06 20:46:25 stan kernel: uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000cc00
oct. 06 20:46:25 stan kernel: hub 5-0:1.0: USB hub found
oct. 06 20:46:25 stan kernel: hub 5-0:1.0: 2 ports detected
oct. 06 20:46:25 stan kernel: ata3.01: NODEV after polling detection
oct. 06 20:46:25 stan kernel: ata3.00: ATAPI: ATAPI   DVD A  DH16A6S, YA16, max UDMA/100
oct. 06 20:46:25 stan kernel: ata4.00: ATA-8: Hitachi HDP725016GLA380, GMBOA52A, max UDMA/133
oct. 06 20:46:25 stan kernel: ata4.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 0/32)
oct. 06 20:46:25 stan kernel: ata3.00: configured for UDMA/100
oct. 06 20:46:25 stan kernel: ata4.00: configured for UDMA/133
oct. 06 20:46:25 stan kernel: ata1.01: ATA-6: ST3120022A, 3.06, max UDMA/100
oct. 06 20:46:25 stan kernel: ata1.01: 234441648 sectors, multi 0: LBA48 
oct. 06 20:46:25 stan kernel: ata1.01: limited to UDMA/33 due to 40-wire cable
oct. 06 20:46:25 stan kernel: ata1.01: configured for UDMA/33
oct. 06 20:46:25 stan kernel: scsi 0:0:1:0: Direct-Access     ATA      ST3120022A       3.06 PQ: 0 ANSI: 5
oct. 06 20:46:25 stan kernel: sd 0:0:1:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
oct. 06 20:46:25 stan kernel: sd 0:0:1:0: [sda] Write Protect is off
oct. 06 20:46:25 stan kernel: sd 0:0:1:0: [sda] Mode Sense: 00 3a 00 00
oct. 06 20:46:25 stan kernel: sd 0:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
oct. 06 20:46:25 stan kernel: scsi 2:0:0:0: CD-ROM            ATAPI    DVD A  DH16A6S   YA16 PQ: 0 ANSI: 5
oct. 06 20:46:25 stan kernel: scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDP72501 GMBO PQ: 0 ANSI: 5
oct. 06 20:46:25 stan kernel: sd 3:0:0:0: [sdb] 312581808 512-byte logical blocks: (160 GB/149 GiB)
oct. 06 20:46:25 stan kernel: sd 3:0:0:0: [sdb] Write Protect is off
oct. 06 20:46:25 stan kernel: sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
oct. 06 20:46:25 stan kernel: sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
oct. 06 20:46:25 stan kernel: sr0: scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
oct. 06 20:46:25 stan kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
oct. 06 20:46:25 stan kernel: sr 2:0:0:0: Attached scsi CD-ROM sr0
oct. 06 20:46:25 stan kernel:  sdb: sdb1 sdb2
oct. 06 20:46:25 stan kernel: sd 3:0:0:0: [sdb] Attached SCSI disk
oct. 06 20:46:25 stan kernel:  sda: sda1
oct. 06 20:46:25 stan kernel: sd 0:0:1:0: [sda] Attached SCSI disk
oct. 06 20:46:25 stan kernel: device-mapper: uevent: version 1.0.3
oct. 06 20:46:25 stan kernel: device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
oct. 06 20:46:25 stan kernel: usb 2-2: new low-speed USB device number 2 using uhci_hcd
oct. 06 20:46:25 stan kernel: hidraw: raw HID events driver (C) Jiri Kosina
oct. 06 20:46:25 stan kernel: usbcore: registered new interface driver usbhid
oct. 06 20:46:25 stan kernel: usbhid: USB HID core driver
oct. 06 20:46:25 stan kernel: input: USB Optical Mouse USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input1
oct. 06 20:46:25 stan kernel: a4tech 0003:09DA:0006.0001: input,hidraw0: USB HID v1.10 Mouse [USB Optical Mouse USB Optical Mouse] on usb-0000:00:1d.0-2/input0
oct. 06 20:46:25 stan kernel: tsc: Refined TSC clocksource calibration: 2193.925 MHz
oct. 06 20:46:25 stan kernel: Switched to clocksource tsc
oct. 06 20:46:25 stan kernel: sha256_ssse3: Using SSSE3 optimized SHA-256 implementation
oct. 06 20:46:25 stan kernel: bio: create slab <bio-1> at 1
oct. 06 20:46:25 stan kernel: bio: create slab <bio-1> at 1
oct. 06 20:46:25 stan kernel: EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
oct. 06 20:46:25 stan systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
oct. 06 20:46:25 stan systemd[1]: Set hostname to <stan>.
oct. 06 20:46:25 stan systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
oct. 06 20:46:25 stan systemd[1]: Started Forward Password Requests to Wall Directory Watch.
oct. 06 20:46:25 stan systemd[1]: Expecting device sys-subsystem-net-devices-enp1s0.device...
oct. 06 20:46:25 stan systemd[1]: Starting Remote File Systems.
oct. 06 20:46:25 stan systemd[1]: Reached target Remote File Systems.
oct. 06 20:46:25 stan systemd[1]: Starting Delayed Shutdown Socket.
oct. 06 20:46:25 stan systemd[1]: Listening on Delayed Shutdown Socket.
oct. 06 20:46:25 stan systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
oct. 06 20:46:25 stan systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
oct. 06 20:46:25 stan systemd[1]: Starting Device-mapper event daemon FIFOs.
oct. 06 20:46:25 stan systemd[1]: Listening on Device-mapper event daemon FIFOs.
oct. 06 20:46:25 stan systemd[1]: Starting LVM2 metadata daemon socket.
oct. 06 20:46:25 stan systemd[1]: Listening on LVM2 metadata daemon socket.
oct. 06 20:46:25 stan systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
oct. 06 20:46:25 stan systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
oct. 06 20:46:25 stan systemd[1]: Starting Paths.
oct. 06 20:46:25 stan systemd[1]: Reached target Paths.
oct. 06 20:46:25 stan systemd[1]: Starting Journal Socket.
oct. 06 20:46:25 stan systemd[1]: Listening on Journal Socket.
oct. 06 20:46:25 stan systemd[1]: Mounting POSIX Message Queue File System...
oct. 06 20:46:25 stan systemd[1]: Starting Setup Virtual Console...
oct. 06 20:46:25 stan systemd[1]: Starting Journal Service...
oct. 06 20:46:25 stan systemd[1]: Started Journal Service.
oct. 06 20:46:25 stan systemd-journal[177]: Journal started
oct. 06 20:46:25 stan systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
oct. 06 20:46:25 stan systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
oct. 06 20:46:25 stan systemd[1]: Starting Apply Kernel Variables...
oct. 06 20:46:25 stan systemd[1]: Mounting Huge Pages File System...
oct. 06 20:46:25 stan systemd[1]: Starting udev Kernel Socket.
oct. 06 20:46:25 stan systemd[1]: Listening on udev Kernel Socket.
oct. 06 20:46:25 stan systemd[1]: Starting udev Control Socket.
oct. 06 20:46:25 stan systemd[1]: Listening on udev Control Socket.
oct. 06 20:46:25 stan systemd[1]: Starting udev Coldplug all Devices...
oct. 06 20:46:25 stan systemd[1]: Mounting Debug File System...
oct. 06 20:46:25 stan systemd[1]: Started Load Kernel Modules.
oct. 06 20:46:25 stan systemd[1]: Mounted FUSE Control File System.
oct. 06 20:46:25 stan systemd[1]: Starting Create list of required static device nodes for the current kernel...
oct. 06 20:46:25 stan systemd[1]: Starting Encrypted Volumes.
oct. 06 20:46:25 stan systemd[1]: Reached target Encrypted Volumes.
oct. 06 20:46:25 stan systemd[1]: Mounting Configuration File System...
oct. 06 20:46:25 stan systemd[1]: Started Set Up Additional Binary Formats.
oct. 06 20:46:25 stan systemd[1]: Expecting device dev-disk-by\x2duuid-895cfe76\x2d97d7\x2d4e2d\x2d8433\x2d267fe59df5a5.device...
oct. 06 20:46:25 stan systemd[1]: Mounting Temporary Directory...
oct. 06 20:46:25 stan systemd[1]: Starting File System Check on Root Device...
oct. 06 20:46:25 stan systemd[1]: Expecting device dev-disk-by\x2duuid-ad0bf6d6\x2d6faf\x2d448a\x2d88fd\x2d8589f635e86b.device...
oct. 06 20:46:25 stan systemd[1]: Starting Root Slice.
oct. 06 20:46:25 stan systemd[1]: Created slice Root Slice.
oct. 06 20:46:25 stan systemd[1]: Starting User and Session Slice.
oct. 06 20:46:25 stan systemd[1]: Created slice User and Session Slice.
oct. 06 20:46:25 stan systemd[1]: Starting System Slice.
oct. 06 20:46:25 stan systemd[1]: Created slice System Slice.
oct. 06 20:46:25 stan systemd[1]: Starting system-dhcpcd.slice.
oct. 06 20:46:25 stan systemd[1]: Created slice system-dhcpcd.slice.
oct. 06 20:46:25 stan systemd[1]: Starting system-getty.slice.
oct. 06 20:46:25 stan systemd[1]: Created slice system-getty.slice.
oct. 06 20:46:25 stan systemd[1]: Starting Slices.
oct. 06 20:46:25 stan systemd[1]: Reached target Slices.
oct. 06 20:46:25 stan systemd[1]: Expecting device dev-disk-by\x2duuid-64f23708\x2de717\x2d4399\x2da654\x2dc785dffab70b.device...
oct. 06 20:46:25 stan systemd[1]: Mounted POSIX Message Queue File System.
oct. 06 20:46:25 stan systemd[1]: Started Apply Kernel Variables.
oct. 06 20:46:25 stan systemd[1]: Mounted Huge Pages File System.
oct. 06 20:46:25 stan systemd[1]: Mounted Debug File System.
oct. 06 20:46:25 stan systemd[1]: Mounted Configuration File System.
oct. 06 20:46:25 stan systemd[1]: Mounted Temporary Directory.
oct. 06 20:46:26 stan systemd[1]: Started udev Coldplug all Devices.
oct. 06 20:46:26 stan systemd[1]: Started Create list of required static device nodes for the current kernel.
oct. 06 20:46:26 stan systemd[1]: Starting Create static device nodes in /dev...
oct. 06 20:46:26 stan systemd-fsck[193]: [74B blob data]
oct. 06 20:46:26 stan systemd[1]: Started Setup Virtual Console.
oct. 06 20:46:26 stan systemd[1]: Started File System Check on Root Device.
oct. 06 20:46:26 stan systemd[1]: Starting Remount Root and Kernel File Systems...
oct. 06 20:46:26 stan systemd[1]: Started Create static device nodes in /dev.
oct. 06 20:46:26 stan systemd[1]: Starting udev Kernel Device Manager...
oct. 06 20:46:26 stan systemd[1]: Started udev Kernel Device Manager.
oct. 06 20:46:26 stan systemd-udevd[205]: starting version 208
oct. 06 20:46:26 stan systemd[1]: Started Remount Root and Kernel File Systems.
oct. 06 20:46:26 stan systemd[1]: Starting Load/Save Random Seed...
oct. 06 20:46:26 stan systemd[1]: Starting Local File Systems (Pre).
oct. 06 20:46:26 stan systemd[1]: Reached target Local File Systems (Pre).
oct. 06 20:46:26 stan kernel: EXT4-fs (dm-1): re-mounted. Opts: data=ordered
oct. 06 20:46:26 stan systemd[1]: Started Load/Save Random Seed.
oct. 06 20:46:26 stan kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
oct. 06 20:46:26 stan kernel: ACPI: Power Button [PWRB]
oct. 06 20:46:26 stan kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
oct. 06 20:46:26 stan kernel: ACPI: Power Button [PWRF]
oct. 06 20:46:26 stan kernel: snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
oct. 06 20:46:26 stan kernel: parport_pc 00:05: reported by Plug and Play ACPI
oct. 06 20:46:26 stan kernel: parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
oct. 06 20:46:26 stan kernel: ACPI: Requesting acpi_cpufreq
oct. 06 20:46:27 stan kernel: intel_rng: FWH not detected
oct. 06 20:46:27 stan kernel: input: HDA Intel Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
oct. 06 20:46:27 stan kernel: input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
oct. 06 20:46:27 stan kernel: input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
oct. 06 20:46:27 stan kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
oct. 06 20:46:27 stan kernel: ACPI Warning: 0x0000000000000828-0x000000000000082f SystemIO conflicts with Region \PMRG 1 (20130517/utaddress-251)
oct. 06 20:46:27 stan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
oct. 06 20:46:27 stan kernel: ACPI Warning: 0x0000000000000480-0x00000000000004af SystemIO conflicts with Region \GPR2 1 (20130517/utaddress-251)
oct. 06 20:46:27 stan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
oct. 06 20:46:27 stan kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
oct. 06 20:46:27 stan kernel: i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
oct. 06 20:46:27 stan kernel: leds_ss4200: no LED devices found
oct. 06 20:46:27 stan kernel: microcode: CPU0 sig=0x6fd, pf=0x1, revision=0xa3
oct. 06 20:46:27 stan kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
oct. 06 20:46:27 stan kernel: ppdev: user-space parallel port driver
oct. 06 20:46:27 stan systemd[1]: Starting Sound Card.
oct. 06 20:46:27 stan systemd[1]: Reached target Sound Card.
oct. 06 20:46:27 stan kernel: iTCO_vendor_support: vendor-support=0
oct. 06 20:46:27 stan kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
oct. 06 20:46:27 stan kernel: iTCO_wdt: Found a ICH7 or ICH7R TCO device (Version=2, TCOBASE=0x0860)
oct. 06 20:46:27 stan kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
oct. 06 20:46:27 stan kernel: microcode: CPU1 sig=0x6fd, pf=0x1, revision=0xa3
oct. 06 20:46:27 stan kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
oct. 06 20:46:27 stan kernel: coretemp coretemp.0: Using relative temperature scale!
oct. 06 20:46:27 stan kernel: coretemp coretemp.0: Using relative temperature scale!
oct. 06 20:46:27 stan kernel: [drm] Initialized drm 1.1.0 20060810
oct. 06 20:46:27 stan kernel: wmi: Mapper loaded
oct. 06 20:46:27 stan kernel: nouveau  [  DEVICE][0000:04:00.0] BOOT0  : 0x298000a2
oct. 06 20:46:27 stan kernel: nouveau  [  DEVICE][0000:04:00.0] Chipset: G98 (NV98)
oct. 06 20:46:27 stan kernel: nouveau  [  DEVICE][0000:04:00.0] Family : NV50
oct. 06 20:46:27 stan kernel: nouveau  [   VBIOS][0000:04:00.0] checking PRAMIN for image...
oct. 06 20:46:27 stan kernel: nouveau  [   VBIOS][0000:04:00.0] ... appears to be valid
oct. 06 20:46:27 stan kernel: nouveau  [   VBIOS][0000:04:00.0] using image from PRAMIN
oct. 06 20:46:27 stan kernel: nouveau  [   VBIOS][0000:04:00.0] BIT signature found
oct. 06 20:46:27 stan kernel: nouveau  [   VBIOS][0000:04:00.0] version 62.98.29.00.35
oct. 06 20:46:27 stan kernel: nouveau  [     PFB][0000:04:00.0] RAM type: DDR2
oct. 06 20:46:27 stan kernel: nouveau  [     PFB][0000:04:00.0] RAM size: 256 MiB
oct. 06 20:46:27 stan kernel: nouveau  [     PFB][0000:04:00.0]    ZCOMP: 960 tags
oct. 06 20:46:27 stan kernel: nouveau  [  PTHERM][0000:04:00.0] FAN control: none / external
oct. 06 20:46:27 stan kernel: nouveau  [  PTHERM][0000:04:00.0] fan management: disabled
oct. 06 20:46:27 stan kernel: nouveau  [  PTHERM][0000:04:00.0] internal sensor: yes
oct. 06 20:46:27 stan kernel: [TTM] Zone  kernel: Available graphics memory: 1543090 kiB
oct. 06 20:46:27 stan kernel: [TTM] Initializing pool allocator
oct. 06 20:46:27 stan kernel: [TTM] Initializing DMA pool allocator
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] VRAM: 256 MiB
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] GART: 1048576 MiB
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] TMDS table version 2.0
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB version 4.0
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB outp 00: 04000310 00000028
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB outp 01: 01011302 00000030
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB outp 02: 02011300 00000028
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB outp 03: 02022322 00020010
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB conn 00: 00000000
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB conn 01: 00001130
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] DCB conn 02: 00002261
oct. 06 20:46:27 stan kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
oct. 06 20:46:27 stan kernel: [drm] No driver support for vblank timestamp query.
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] 1 available performance level(s)
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] 3: core 540MHz shader 1300MHz memory 510MHz fanspeed 100%
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] c: core 540MHz shader 1300MHz memory 499MHz
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] MM: using M2MF for buffer copies
oct. 06 20:46:27 stan kernel: gpio_ich: GPIO from 206 to 255 on gpio_ich
oct. 06 20:46:27 stan kernel: nouveau  [     DRM] allocated 1360x768 fb: 0x60000, bo ffff8800bb3fb400
oct. 06 20:46:27 stan kernel: fbcon: nouveaufb (fb0) is primary device
oct. 06 20:46:28 stan kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
oct. 06 20:46:28 stan kernel: r8169 0000:01:00.0: irq 44 for MSI/MSI-X
oct. 06 20:46:28 stan kernel: r8169 0000:01:00.0 eth0: RTL8168d/8111d at 0xffffc90011d26000, XID 081000c0 IRQ 44
oct. 06 20:46:28 stan kernel: r8169 0000:01:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
oct. 06 20:46:28 stan kernel: Console: switching to colour frame buffer device 170x48
oct. 06 20:46:28 stan kernel: nouveau 0000:04:00.0: fb0: nouveaufb frame buffer device
oct. 06 20:46:28 stan kernel: nouveau 0000:04:00.0: registered panic notifier
oct. 06 20:46:28 stan kernel: [drm] Initialized nouveau 1.1.1 20120801 for 0000:04:00.0 on minor 0
oct. 06 20:46:28 stan systemd[1]: Starting LVM2 metadata daemon...
oct. 06 20:46:28 stan systemd[1]: Started LVM2 metadata daemon.
oct. 06 20:46:28 stan systemd[1]: Found device /dev/disk/by-uuid/895cfe76-97d7-4e2d-8433-267fe59df5a5.
oct. 06 20:46:28 stan systemd[1]: Activating swap /dev/disk/by-uuid/895cfe76-97d7-4e2d-8433-267fe59df5a5...
oct. 06 20:46:28 stan swapon[238]: [137B blob data]
oct. 06 20:46:28 stan systemd[1]: Found device Motherboard (one of many).
oct. 06 20:46:28 stan systemd-udevd[211]: renamed network interface eth0 to enp1s0
oct. 06 20:46:28 stan systemd[1]: Found device Hitachi_HDP725016GLA380.
oct. 06 20:46:28 stan systemd[1]: Starting File System Check on /dev/disk/by-uuid/64f23708-e717-4399-a654-c785dffab70b...
oct. 06 20:46:28 stan systemd[1]: Activated swap /dev/disk/by-uuid/895cfe76-97d7-4e2d-8433-267fe59df5a5.
oct. 06 20:46:28 stan systemd[1]: Starting Swap.
oct. 06 20:46:28 stan systemd[1]: Reached target Swap.
oct. 06 20:46:28 stan kernel: Adding 3145724k swap on /dev/mapper/cr-swap.  Priority:-1 extents:1 across:3145724k FS
oct. 06 20:46:28 stan systemd-fsck[241]: [38B blob data]
oct. 06 20:46:29 stan systemd[1]: Found device /dev/disk/by-uuid/ad0bf6d6-6faf-448a-88fd-8589f635e86b.
oct. 06 20:46:29 stan systemd[1]: Starting File System Check on /dev/disk/by-uuid/ad0bf6d6-6faf-448a-88fd-8589f635e86b...
oct. 06 20:46:29 stan systemd-fsck[245]: [48B blob data]
oct. 06 20:46:29 stan systemd-fsck[241]: [57B blob data]
oct. 06 20:46:29 stan systemd[1]: Started File System Check on /dev/disk/by-uuid/64f23708-e717-4399-a654-c785dffab70b.
oct. 06 20:46:29 stan systemd[1]: Mounting /boot...
oct. 06 20:46:30 stan systemd[1]: Mounted /boot.
oct. 06 20:46:30 stan kernel: EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: data=ordered
oct. 06 20:46:30 stan systemd-fsck[245]: /dev/mapper/cr-home: Lors de l'effacement de l'i-noeud orphelin 1572908 (uid=1000, gid=100, mode=0100755, taille=1079)
oct. 06 20:46:30 stan systemd-fsck[245]: [75B blob data]
oct. 06 20:46:31 stan systemd[1]: Started File System Check on /dev/disk/by-uuid/ad0bf6d6-6faf-448a-88fd-8589f635e86b.
oct. 06 20:46:31 stan systemd[1]: Mounting /home...
oct. 06 20:46:31 stan systemd[1]: Mounted /home.
oct. 06 20:46:31 stan systemd[1]: Starting Local File Systems.
oct. 06 20:46:31 stan systemd[1]: Reached target Local File Systems.
oct. 06 20:46:31 stan systemd[1]: Starting Recreate Volatile Files and Directories...
oct. 06 20:46:31 stan kernel: EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: data=ordered
oct. 06 20:46:31 stan systemd[1]: Starting Trigger Flushing of Journal to Persistent Storage...
oct. 06 20:46:31 stan systemd[1]: Started Recreate Volatile Files and Directories.
oct. 06 20:46:31 stan systemd[1]: Starting Update UTMP about System Reboot/Shutdown...
oct. 06 20:46:31 stan systemd[1]: Started Update UTMP about System Reboot/Shutdown.
oct. 06 20:46:31 stan systemd[1]: Starting System Initialization.
oct. 06 20:46:31 stan systemd[1]: Reached target System Initialization.
oct. 06 20:46:31 stan systemd[1]: Starting ACPID Listen Socket.
oct. 06 20:46:31 stan systemd[1]: Listening on ACPID Listen Socket.
oct. 06 20:46:31 stan systemd[1]: Starting D-Bus System Message Bus Socket.
oct. 06 20:46:31 stan systemd[1]: Listening on D-Bus System Message Bus Socket.
oct. 06 20:46:31 stan systemd[1]: Starting Sockets.
oct. 06 20:46:31 stan systemd[1]: Reached target Sockets.
oct. 06 20:46:31 stan systemd[1]: Starting Daily Cleanup of Temporary Directories.
oct. 06 20:46:31 stan systemd[1]: Started Daily Cleanup of Temporary Directories.
oct. 06 20:46:31 stan systemd[1]: Starting Timers.
oct. 06 20:46:31 stan systemd[1]: Reached target Timers.
oct. 06 20:46:31 stan systemd[1]: Started Manage Sound Card State (restore and store).
oct. 06 20:46:31 stan systemd[1]: Starting Restore Sound Card State...
oct. 06 20:46:31 stan systemd[1]: Starting Basic System.
oct. 06 20:46:31 stan systemd[1]: Reached target Basic System.
oct. 06 20:46:31 stan systemd[1]: Starting dhcpcd on enp1s0...
oct. 06 20:46:31 stan systemd[1]: Started SSH Key Generation.
oct. 06 20:46:31 stan systemd[1]: Starting Login Service...
oct. 06 20:46:31 stan systemd[1]: Starting ACPI event daemon...
oct. 06 20:46:31 stan systemd[1]: Started ACPI event daemon.
oct. 06 20:46:31 stan systemd[1]: Starting D-Bus System Message Bus...
oct. 06 20:46:31 stan systemd[1]: Started D-Bus System Message Bus.
oct. 06 20:46:31 stan systemd[1]: Started Restore Sound Card State.
oct. 06 20:46:32 stan systemd-journal[177]: Permanent journal is using 324.2M (max 1.4G, leaving 2.1G of free 11.9G, current limit 1.4G).
oct. 06 20:46:31 stan acpid[272]: starting up with netlink and the input layer
oct. 06 20:46:31 stan acpid[272]: 1 rule loaded
oct. 06 20:46:31 stan acpid[272]: waiting for events: event logging is off
oct. 06 20:46:31 stan dhcpcd[269]: version 6.0.5 starting
oct. 06 20:46:33 stan dhcpcd[269]: enp1s0: waiting for carrier
oct. 06 20:46:33 stan dhcpcd[269]: enp1s0: carrier acquired
oct. 06 20:46:33 stan dhcpcd[269]: enp1s0: soliciting an IPv6 router
oct. 06 20:46:33 stan dhcpcd[269]: enp1s0: rebinding lease of 192.168.0.12
oct. 06 20:46:31 stan systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
oct. 06 20:46:31 stan systemd[1]: Starting Permit User Sessions...
oct. 06 20:46:31 stan systemd[1]: Started Permit User Sessions.
oct. 06 20:46:31 stan systemd[1]: Starting Getty on tty1...
oct. 06 20:46:31 stan systemd[1]: Started Getty on tty1.
oct. 06 20:46:31 stan systemd[1]: Starting Login Prompts.
oct. 06 20:46:31 stan systemd[1]: Reached target Login Prompts.
oct. 06 20:46:31 stan systemd[1]: Starting SLiM Simple Login Manager...
oct. 06 20:46:31 stan systemd[1]: Started SLiM Simple Login Manager.
oct. 06 20:46:32 stan systemd-logind[271]: New seat seat0.
oct. 06 20:46:32 stan systemd[1]: Started Login Service.
oct. 06 20:46:35 stan systemd-logind[271]: Watching system buttons on /dev/input/event3 (Power Button)
oct. 06 20:46:35 stan systemd-logind[271]: Watching system buttons on /dev/input/event2 (Power Button)
oct. 06 20:46:35 stan kernel: r8169 0000:01:00.0 enp1s0: link down
oct. 06 20:46:35 stan kernel: IPv6: ADDRCONF(NETDEV_UP): enp1s0: link is not ready
oct. 06 20:46:35 stan slim[278]: /usr/bin/xauth:  file /var/run/slim.auth does not exist
oct. 06 20:46:35 stan slim[278]: X.Org X Server 1.14.3
oct. 06 20:46:35 stan slim[278]: Release Date: 2013-09-12
oct. 06 20:46:35 stan slim[278]: X Protocol Version 11, Revision 0
oct. 06 20:46:35 stan slim[278]: Build Operating System: Linux 3.11.0-1-ARCH x86_64
oct. 06 20:46:35 stan slim[278]: Current Operating System: Linux stan 3.11.3-1-ARCH #1 SMP PREEMPT Wed Oct 2 01:38:48 CEST 2013 x86_64
oct. 06 20:46:35 stan slim[278]: Kernel command line: root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root  initrd=/initramfs-linux.img BOOT_IMAGE=/vmlinuz-linux
oct. 06 20:46:35 stan slim[278]: Build Date: 13 September 2013  01:28:59PM
oct. 06 20:46:35 stan slim[278]: Current version of pixman: 0.30.2
oct. 06 20:46:35 stan slim[278]: Before reporting problems, check http://wiki.x.org
oct. 06 20:46:35 stan slim[278]: to make sure that you have the latest version.
oct. 06 20:46:35 stan slim[278]: Markers: (--) probed, (**) from config file, (==) default setting,
oct. 06 20:46:35 stan slim[278]: (++) from command line, (!!) notice, (II) informational,
oct. 06 20:46:35 stan slim[278]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
oct. 06 20:46:35 stan slim[278]: (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct  6 20:46:33 2013
oct. 06 20:46:35 stan slim[278]: (==) Using config directory: "/etc/X11/xorg.conf.d"
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension Generic Event Extension
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension SHAPE
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension MIT-SHM
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XInputExtension
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XTEST
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension BIG-REQUESTS
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension SYNC
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XKEYBOARD
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XC-MISC
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension SECURITY
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XINERAMA
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XFIXES
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension RENDER
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension RANDR
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension COMPOSITE
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension DAMAGE
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension MIT-SCREEN-SAVER
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension DOUBLE-BUFFER
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension RECORD
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension DPMS
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension X-Resource
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XVideo
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XVideo-MotionCompensation
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XFree86-VidModeExtension
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XFree86-DGA
oct. 06 20:46:35 stan kernel: r8169 0000:01:00.0 enp1s0: link down
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension XFree86-DRI
oct. 06 20:46:35 stan slim[278]: Initializing built-in extension DRI2
oct. 06 20:46:35 stan slim[278]: Loading extension GLX
oct. 06 20:46:35 stan slim[278]: resize called 1360 768
oct. 06 20:46:35 stan slim[278]: The XKEYBOARD keymap compiler (xkbcomp) reports:
oct. 06 20:46:35 stan slim[278]: > Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
oct. 06 20:46:35 stan slim[278]: >                   Ignoring extra symbols
oct. 06 20:46:35 stan slim[278]: Errors from xkbcomp are not fatal to the X server
oct. 06 20:46:35 stan slim[278]: The XKEYBOARD keymap compiler (xkbcomp) reports:
oct. 06 20:46:35 stan slim[278]: > Warning:          Compat map for group 2 redefined
oct. 06 20:46:35 stan slim[278]: >                   Using new definition
oct. 06 20:46:35 stan slim[278]: > Warning:          Compat map for group 3 redefined
oct. 06 20:46:35 stan slim[278]: >                   Using new definition
oct. 06 20:46:35 stan slim[278]: > Warning:          Compat map for group 4 redefined
oct. 06 20:46:35 stan slim[278]: >                   Using new definition
oct. 06 20:46:35 stan slim[278]: Errors from xkbcomp are not fatal to the X server
oct. 06 20:46:35 stan kernel: r8169 0000:01:00.0 enp1s0: link up
oct. 06 20:46:35 stan kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
oct. 06 20:46:38 stan dhcpcd[269]: enp1s0: leased 192.168.0.12 for 864000 seconds
oct. 06 20:46:38 stan dhcpcd[269]: enp1s0: adding host route to 192.168.0.12 via 127.0.0.1
oct. 06 20:46:38 stan dhcpcd[269]: enp1s0: adding route to 192.168.0.0/24
oct. 06 20:46:38 stan dhcpcd[269]: enp1s0: adding default route via 192.168.0.254
oct. 06 20:46:38 stan dhcpcd[269]: forked to background, child pid 380
oct. 06 20:46:38 stan systemd[1]: Started dhcpcd on enp1s0.
oct. 06 20:46:38 stan systemd[1]: Starting Network.
oct. 06 20:46:38 stan systemd[1]: Reached target Network.
oct. 06 20:46:38 stan systemd[1]: Starting OpenSSH Daemon...
oct. 06 20:46:38 stan systemd[1]: Started OpenSSH Daemon.
oct. 06 20:46:38 stan systemd[1]: Starting Multi-User System.
oct. 06 20:46:38 stan systemd[1]: Reached target Multi-User System.
oct. 06 20:46:38 stan systemd[1]: Starting Graphical Interface.
oct. 06 20:46:38 stan systemd[1]: Reached target Graphical Interface.
oct. 06 20:46:38 stan systemd[1]: Startup finished in 6.647s (kernel) + 13.433s (userspace) = 20.080s.
oct. 06 20:46:38 stan sshd[381]: Server listening on 0.0.0.0 port 22.
oct. 06 20:46:38 stan sshd[381]: Server listening on :: port 22.
oct. 06 20:46:41 stan slim[278]: pam_unix(slim:session): session opened for user julien by (uid=0)
oct. 06 20:46:41 stan systemd[1]: Starting user-1000.slice.
oct. 06 20:46:41 stan systemd[1]: Created slice user-1000.slice.
oct. 06 20:46:41 stan systemd[1]: Starting User Manager for 1000...
oct. 06 20:46:41 stan systemd[1]: Starting Session 1 of user julien.
oct. 06 20:46:41 stan systemd-logind[271]: New session 1 of user julien.
oct. 06 20:46:41 stan systemd-logind[271]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
oct. 06 20:46:41 stan systemd[1]: Started Session 1 of user julien.
oct. 06 20:46:41 stan slim[278]: /usr/bin/xauth:  file /home/julien/.Xauthority does not exist
oct. 06 20:46:41 stan systemd[382]: pam_unix(systemd-user:session): session opened for user julien by (uid=0)
oct. 06 20:46:41 stan systemd[382]: Failed to open private bus connection: Failed to connect to socket /run/user/1000/dbus/user_bus_socket: No such file or directory
oct. 06 20:46:41 stan systemd[382]: Mounted /sys/kernel/config.
oct. 06 20:46:41 stan systemd[382]: Stopped target Sound Card.
oct. 06 20:46:41 stan systemd[382]: Starting Default.
oct. 06 20:46:41 stan systemd[382]: Reached target Default.
oct. 06 20:46:41 stan systemd[382]: Startup finished in 93ms.
oct. 06 20:46:41 stan systemd[1]: Started User Manager for 1000.
oct. 06 20:46:45 stan slim[278]: [104B blob data]
oct. 06 20:46:45 stan slim[278]: [104B blob data]
oct. 06 20:46:46 stan slim[278]: (dwb:396): libsoup-WARNING **: No feature manager for feature of type 'SoupAuthNTLM'
oct. 06 20:46:47 stan dhcpcd[380]: enp1s0: no IPv6 Routers available
oct. 06 20:58:03 stan sudo[9831]: julien : TTY=pts/1 ; PWD=/home/julien ; USER=root ; COMMAND=/usr/bin/journalctl -b --full --no-pager
oct. 06 20:58:03 stan sudo[9831]: pam_unix(sudo:session): session opened for user root by (uid=0)
oct. 06 20:58:03 stan sudo[9831]: pam_unix(sudo:session): session closed for user root
oct. 06 20:58:49 stan sudo[10514]: julien : TTY=pts/1 ; PWD=/home/julien ; USER=root ; COMMAND=/usr/bin/journalctl -b --full --no-pager
oct. 06 20:58:49 stan sudo[10514]: pam_unix(sudo:session): session opened for user root by (uid=0)

Last edited by NeanderMarcl (2013-10-06 19:05:57)

Offline

#17 2013-10-06 19:07:57

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Command line: root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root  initrd=/initramfs-linux.img BOOT_IMAGE=/vmlinuz-linux 

You do not have the resume parameter in your kernel command line.


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#18 2013-10-06 19:09:49

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Yeah, you're right.
But in /boot/syslinux/syslinux.cfg

LABEL arch
	MENU LABEL Arch Linux
	LINUX /vmlinuz-linux
	APPEND root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root 
	resume=/dev/mapper/cr-swap rw
	INITRD /initramfs-linux.img

LABEL archfallback
	MENU LABEL Arch Linux Fallback
	LINUX /vmlinuz-linux
	APPEND root=/dev/mapper/cr-root cryptdevice=/dev/sdb2:root
	resume=/dev/mapper/cr-swap rw
	INITRD /initramfs-linux-fallback.img

Where's the mistake ?

Last edited by NeanderMarcl (2013-10-06 19:10:18)

Offline

#19 2013-10-06 19:20:36

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,143

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

I don't use syslinux but shouldn't the "resume... rw" be tacked onto the APPEND line rather than a separate statement?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#20 2013-10-06 19:34:48

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

Offline

#21 2013-10-06 19:37:24

NeanderMarcl
Member
Registered: 2013-06-04
Posts: 74

Re: [Luks] SWAP hibernation in LVM using LUKS (resolved)

It works !!
There is no \n in the resume it was on the same line !
Thanks so much for your help !

Offline

Board footer

Powered by FluxBB