[systemd-devel] network and remote-fs on shutdown

Michel Lafon-Puyo michel.lafonpuyo at gmail.com
Tue Sep 11 05:14:12 PDT 2012


Hi,

thank you for your inputs.

On 10/09/2012 23:11, Lennart Poettering wrote:
> That is correct. It would be good to checkout if the networking daemon
> is properly ordered against network.target however. Normally the
> ordering should be:
>
> networking deaemon
>> network.target
>> remote-fs-pre.target
>> the various remote fs
>> remote-fs.target
>
> This is the boot-up order, and the shutdown order should implicitly be
> the reverse of this, so this should work.

I removed NetworkManager and replaced it by dhcpd at eth0. I actually see 
in the shutdown logs that the reversed boot-up order is respected and 
the shutdown process works correctly most of the time. Unfortunately, 
there is one case where it seems it isn't:
/mnt/be is my automounted remote fs. If I do "cd /mnt/be ; cd / ; sudo 
poweroff", the system shutdowns properly but if I do "cd /mnt/be ; sudo 
poweroff", the system hangs.

I think it is because the user processes are not stopped before the 
remote fs is unmounted. Here is the shutdown log I get (the full log is 
attached):

$ grep -e '\(user-sessions\|mnt-be\)' /shutdown-log.txt
......
[  269.453455] systemd[1]: Installed new job 
systemd-user-sessions.service/stop as 411
[  269.453862] systemd[1]: Installed new job mnt-be.automount/stop as 474
[  269.453870] systemd[1]: Installed new job mnt-be.mount/stop as 475
[  269.473475] systemd[1]: mnt-be.mount changed mounted -> unmounting
[  269.591032] systemd[1]: Child 1533 belongs to mnt-be.mount
[  269.591042] systemd[1]: mnt-be.mount mount process exited, 
code=exited status=32
[  269.591056] systemd[1]: mnt-be.mount changed unmounting -> mounted
[  269.591065] systemd[1]: Job mnt-be.mount/stop finished, result=failed
[  270.530741] systemd[1]: About to execute: 
/usr/lib/systemd/systemd-user-sessions stop
[  270.533807] systemd[1]: Forked /usr/lib/systemd/systemd-user-sessions 
as 1604
[  270.533872] systemd[1]: systemd-user-sessions.service changed exited 
-> stop
[  270.763914] systemd[1]: Child 1604 belongs to 
systemd-user-sessions.service
[  270.763931] systemd[1]: systemd-user-sessions.service: control 
process exited, code=exited status=0
[  270.765672] systemd[1]: systemd-user-sessions.service got final 
SIGCHLD for state stop
[  270.765930] systemd[1]: systemd-user-sessions.service changed stop -> 
dead
[  270.786744] systemd[1]: Job systemd-user-sessions.service/stop 
finished, result=done
[  395.496772] systemd[1]: mnt-be.automount changed running -> dead
[  395.496793] systemd[1]: Job mnt-be.automount/stop finished, result=done
[  395.548111] systemd[1]: mnt-be.mount changed mounted -> failed
[  395.548186] systemd[1]: Unit mnt-be.mount entered failed state.
[  395.571805] systemd[1]: systemd-user-sessions.service: cgroup is empty
[  395.572245] systemd[1]: systemd-user-sessions.service: cgroup is empty

As you can see, the unmounting of mnt-be is done before 
systemd-user-sessions is stopped.


Below are the 'systemctl show' results for the corresponding units (I 
removed references to other remote-fs that are not mounted at all):

$ systemctl show -p "After" -p "Before" remote-fs-pre.target
Before=mnt-be.mount
After=network.target nss-lookup.target

$ systemctl show -p "After" -p "Before" remote-fs.target
Before=systemd-journal-flush.service systemd-user-sessions.service 
multi-user.target
After=mnt-be.automount

$ systemctl show -p "After" -p "Before" mnt-be.automount
Before=umount.target remote-fs.target mnt-be.mount
After=-.mount

$ systemctl show -p "After" -p "Before" mnt-be.mount
Before=umount.target
After=mnt-be.automount remote-fs-pre.target systemd-journald.socket -.mount

$ systemctl show -p "After" -p "Before" systemd-user-sessions.service
Before=shutdown.target slim.service multi-user.target 
systemd-ask-password-wall.service getty at tty1.service
After=systemd-journal-flush.service remote-fs.target 
systemd-journald.socket basic.target


So the simplified dependency graph I obtain is:

remote-fs-pre.target   mnt-be.automount
         \                  /      |
          \                /       |
           \              /        |
            \            /         |
             \          /          |
             mnt-be.mount          |
                                   |
                                   |
                               remote-fs
                                   |
                                   |
                                   |
                         systemd-user-sessions



As I understand it, there is no boot-up order between 
systemd-user-sessions and mnt-be.mount so on shutdown there is a race 
condition between systemd-user-sessions and mnt-be.mount.

Is it right?

Cheers
--
Michel
-------------- next part --------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.5.3-1-ARCH (tobias at T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Aug 26 08:15:06 UTC 2012
[    0.000000] Disabled fast string operations
[    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-0x000000007fe813ff] usable
[    0.000000] BIOS-e820: [mem 0x000000007fe81400-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f4006fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f4008000-0x00000000f400bfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed9ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffb00000-0x00000000ffffffff] reserved
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI 2.4 present.
[    0.000000] DMI: Dell Inc. Latitude D820                   /0JF240, BIOS A10 01/27/2010
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7fe81 max_arch_pfn = 0x100000
[    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 F80000000 write-back
[    0.000000]   1 base 07FF00000 mask FFFF00000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] PAT not supported by CPU.
[    0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x377fdfff]
[    0.000000]  [mem 0x00000000-0x003fffff] page 4k
[    0.000000]  [mem 0x00400000-0x373fffff] page 2M
[    0.000000]  [mem 0x37400000-0x377fdfff] page 4k
[    0.000000] kernel direct mapping tables up to 0x377fdfff @ [mem 0x01bfa000-0x01bfffff]
[    0.000000] log_buf_len: 1048576
[    0.000000] early log buf free: 521576(99%)
[    0.000000] RAMDISK: [mem 0x37934000-0x37c91fff]
[    0.000000] Allocated new RAMDISK: [mem 0x373a0000-0x376fd707]
[    0.000000] Move RAMDISK from [mem 0x37934000-0x37c91707] to [mem 0x373a0000-0x376fd707]
[    0.000000] ACPI: RSDP 000fc0c0 00014 (v00 DELL  )
[    0.000000] ACPI: RSDT 7fe819cc 00044 (v01 DELL    M07     27DA011B ASL  00000061)
[    0.000000] ACPI: FACP 7fe82800 00074 (v01 DELL    M07     27DA011B ASL  00000061)
[    0.000000] ACPI: DSDT 7fe83400 05487 (v01 INT430 SYSFexxx 00001001 INTL 20050624)
[    0.000000] ACPI: FACS 7fe91c00 00040
[    0.000000] ACPI: HPET 7fe82f00 00038 (v01 DELL    M07     00000001 ASL  00000061)
[    0.000000] ACPI: APIC 7fe83000 00068 (v01 DELL    M07     27DA011B ASL  00000047)
[    0.000000] ACPI: ASF! 7fe82c00 0005B (v16 DELL    M07     27DA011B ASL  00000061)
[    0.000000] ACPI: MCFG 7fe82fc0 0003E (v16 DELL    M07     27DA011B ASL  00000061)
[    0.000000] ACPI: TCPA 7fe83300 00032 (v01 DELL    M07     27DA011B ASL  00000061)
[    0.000000] ACPI: SLIC 7fe8309c 00176 (v01 DELL    M07     27DA011B ASL  00000061)
[    0.000000] ACPI: SSDT 7fe81a53 004DC (v01  PmRef    CpuPm 00003000 INTL 20050624)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1158MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x377fdfff]
[    0.000000]   HighMem  [mem 0x377fe000-0x7fe80fff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x7fe80fff]
[    0.000000] On node 0 totalpages: 523792
[    0.000000] free_area_init_node: node 0, pgdat c1539a00, node_mem_map f639f200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2318 pages used for memmap
[    0.000000]   HighMem zone: 294261 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] e820: [mem 0x80000000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @f6379000 s31616 r0 d21632 u53248
[    0.000000] pcpu-alloc: s31616 r0 d21632 u53248 alloc=13*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519698
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=f237ff37-4b97-4868-812f-643743616af7 ro systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] Initializing CPU#0
[    0.000000] allocated 4191112 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0007fe81)
[    0.000000] Memory: 2062376k/2095620k available (3892k kernel code, 32792k reserved, 1494k data, 532k init, 1186316k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc1543000 - 0xc15c8000   ( 532 kB)
[    0.000000]       .data : 0xc13cd3e6 - 0xc1542cc0   (1494 kB)
[    0.000000]       .text : 0xc1000000 - 0xc13cd3e6   (3892 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	Dump stacks of tasks blocking RCU-preempt GP.
[    0.000000] NR_IRQS:2304 nr_irqs:512 16
[    0.000000] CPU 0 irqstacks, hard=f5808000 soft=f580a000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1828.652 MHz processor.
[    0.003335] Calibrating delay loop (skipped), value calculated using timer frequency.. 3658.69 BogoMIPS (lpj=6095506)
[    0.003340] pid_max: default: 32768 minimum: 301
[    0.003369] Security Framework initialized
[    0.003376] AppArmor: AppArmor disabled by boot time parameter
[    0.003393] Mount-cache hash table entries: 512
[    0.003667] Initializing cgroup subsys cpuacct
[    0.003671] Initializing cgroup subsys memory
[    0.003681] Initializing cgroup subsys devices
[    0.003684] Initializing cgroup subsys freezer
[    0.003686] Initializing cgroup subsys net_cls
[    0.003688] Initializing cgroup subsys blkio
[    0.003718] Disabled fast string operations
[    0.003724] CPU: Physical Processor ID: 0
[    0.003725] CPU: Processor Core ID: 0
[    0.003728] mce: CPU supports 6 MCE banks
[    0.003738] CPU0: Thermal monitoring enabled (TM2)
[    0.003742] using mwait in idle threads.
[    0.004827] ACPI: Core revision 20120320
[    0.009519] ftrace: allocating 17043 entries in 34 pages
[    0.020067] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.020534] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.053559] CPU0: Genuine Intel(R) CPU           T2400  @ 1.83GHz stepping 08
[    0.056663] Performance Events: Core events, core PMU driver.
[    0.056663] ... version:                1
[    0.056663] ... bit width:              40
[    0.056663] ... generic registers:      2
[    0.056663] ... value mask:             000000ffffffffff
[    0.056663] ... max period:             000000007fffffff
[    0.056663] ... fixed-purpose events:   0
[    0.056663] ... event mask:             0000000000000003
[    0.073402] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.086674] CPU 1 irqstacks, hard=f58a8000 soft=f58aa000
[    0.086676] Booting Node   0, Processors  #1 Ok.
[    0.006666] Initializing CPU#1
[    0.006666] Disabled fast string operations
[    0.099791] TSC synchronization [CPU#0 -> CPU#1]:
[    0.099795] Measured 3860130967 cycles TSC warp between CPUs, turning off TSC clock.
[    0.099798] Marking TSC unstable due to check_tsc_sync_source failed
[    0.099898] Brought up 2 CPUs
[    0.099902] Total of 2 processors activated (7317.38 BogoMIPS).
[    0.100093] devtmpfs: initialized
[    0.100240] NET: Registered protocol family 16
[    0.100341] ACPI: bus type pci registered
[    0.100426] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.100430] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.100432] PCI: Using MMCONFIG for extended config space
[    0.100434] PCI: Using configuration type 1 for base access
[    0.100448] dmi type 0xB1 record - unknown flag
[    0.100556] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.100557] mtrr: probably your BIOS does not setup all CPUs.
[    0.100559] mtrr: corrected configuration.
[    0.103371] bio: create slab <bio-0> at 0
[    0.103384] ACPI: Added _OSI(Module Device)
[    0.103384] ACPI: Added _OSI(Processor Device)
[    0.103384] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.103384] ACPI: Added _OSI(Processor Aggregator Device)
[    0.104536] ACPI: EC: Look up EC in DSDT
[    0.113610] ACPI Warning: Incorrect checksum in table [TCPA] - 0x00, should be 0x91 (20120320/tbutils-323)
[    0.113618] ACPI: SSDT 7fe81a10 00043 (v01  LMPWR  DELLLOM 00001001 INTL 20050624)
[    0.113883] ACPI: Dynamic OEM Table Load:
[    0.113887] ACPI: SSDT   (null) 00043 (v01  LMPWR  DELLLOM 00001001 INTL 20050624)
[    0.114201] ACPI: SSDT 7fe8217a 00202 (v01  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.114484] ACPI: Dynamic OEM Table Load:
[    0.114488] ACPI: SSDT   (null) 00202 (v01  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.114613] ACPI: SSDT 7fe81f2f 001C6 (v01  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.114876] ACPI: Dynamic OEM Table Load:
[    0.114880] ACPI: SSDT   (null) 001C6 (v01  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.115135] ACPI: SSDT 7fe8237c 000C4 (v01  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.115409] ACPI: Dynamic OEM Table Load:
[    0.115412] ACPI: SSDT   (null) 000C4 (v01  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.115518] ACPI: SSDT 7fe820f5 00085 (v01  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.115782] ACPI: Dynamic OEM Table Load:
[    0.115786] ACPI: SSDT   (null) 00085 (v01  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.115992] ACPI: Interpreter enabled
[    0.116001] ACPI: (supports S0 S3 S4 S5)
[    0.116022] ACPI: Using IOAPIC for interrupt routing
[    0.158884] ACPI: ACPI Dock Station Driver: 2 docks/bays found
[    0.158894] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.164592] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.176006] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
[    0.176011] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
[    0.176014] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.176017] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
[    0.176021] pci_root PNP0A03:00: host bridge window [mem 0x80000000-0xefffffff]
[    0.176024] pci_root PNP0A03:00: host bridge window [mem 0xf4007000-0xf4007fff]
[    0.176027] pci_root PNP0A03:00: host bridge window [mem 0xf400c000-0xfebfffff]
[    0.176030] pci_root PNP0A03:00: host bridge window [mem 0xfec10000-0xfecfffff]
[    0.176034] pci_root PNP0A03:00: host bridge window [mem 0xfed00400-0xfed1ffff]
[    0.176037] pci_root PNP0A03:00: host bridge window [mem 0xfed40000-0xfed44fff]
[    0.176040] pci_root PNP0A03:00: host bridge window [mem 0xfee10000-0xffafffff]
[    0.176097] PCI host bridge to bus 0000:00
[    0.176101] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.176104] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.176107] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.176111] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
[    0.176114] pci_bus 0000:00: root bus resource [mem 0x80000000-0xefffffff]
[    0.176117] pci_bus 0000:00: root bus resource [mem 0xf4007000-0xf4007fff]
[    0.176120] pci_bus 0000:00: root bus resource [mem 0xf400c000-0xfebfffff]
[    0.176123] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfecfffff]
[    0.176126] pci_bus 0000:00: root bus resource [mem 0xfed00400-0xfed1ffff]
[    0.176130] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.176133] pci_bus 0000:00: root bus resource [mem 0xfee10000-0xffafffff]
[    0.176146] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
[    0.176201] pci 0000:00:01.0: [8086:27a1] type 01 class 0x060400
[    0.176251] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.176319] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.176343] pci 0000:00:1b.0: reg 10: [mem 0xefffc000-0xefffffff 64bit]
[    0.176448] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.176481] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.176592] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.176628] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[    0.176748] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.176785] pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400
[    0.176896] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.176932] pci 0000:00:1c.3: [8086:27d6] type 01 class 0x060400
[    0.177042] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.177078] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.177135] pci 0000:00:1d.0: reg 20: [io  0xbf80-0xbf9f]
[    0.177179] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.177236] pci 0000:00:1d.1: reg 20: [io  0xbf60-0xbf7f]
[    0.177280] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.177337] pci 0000:00:1d.2: reg 20: [io  0xbf40-0xbf5f]
[    0.177380] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.177437] pci 0000:00:1d.3: reg 20: [io  0xbf20-0xbf3f]
[    0.177492] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.177518] pci 0000:00:1d.7: reg 10: [mem 0xffa80000-0xffa803ff]
[    0.177624] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.177652] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.177750] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
[    0.177864] pci 0000:00:1f.0: quirk: [io  0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
[    0.177871] pci 0000:00:1f.0: quirk: [io  0x1080-0x10bf] claimed by ICH6 GPIO
[    0.177876] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0900 (mask 007f)
[    0.177884] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0c80 (mask 003f)
[    0.177950] pci 0000:00:1f.2: [8086:27c4] type 00 class 0x010180
[    0.177972] pci 0000:00:1f.2: reg 10: [io  0x01f0-0x01f7]
[    0.177984] pci 0000:00:1f.2: reg 14: [io  0x03f4-0x03f7]
[    0.177997] pci 0000:00:1f.2: reg 18: [io  0x0170-0x0177]
[    0.178010] pci 0000:00:1f.2: reg 1c: [io  0x0374-0x0377]
[    0.178023] pci 0000:00:1f.2: reg 20: [io  0xbfa0-0xbfaf]
[    0.178080] pci 0000:00:1f.2: PME# supported from D3hot
[    0.178102] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.178176] pci 0000:00:1f.3: reg 20: [io  0x10c0-0x10df]
[    0.178271] pci 0000:01:00.0: [10de:01d7] type 00 class 0x030000
[    0.178283] pci 0000:01:00.0: reg 10: [mem 0xed000000-0xedffffff]
[    0.178296] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.178308] pci 0000:01:00.0: reg 1c: [mem 0xee000000-0xeeffffff 64bit]
[    0.178323] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.178367] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.178377] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.178383] pci 0000:00:01.0:   bridge window [mem 0xed000000-0xefefffff]
[    0.178388] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.178450] pci 0000:00:1c.0: PCI bridge to [bus 0b-0b]
[    0.178625] pci 0000:0c:00.0: [8086:4222] type 00 class 0x028000
[    0.178682] pci 0000:0c:00.0: reg 10: [mem 0xecfff000-0xecffffff]
[    0.179101] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
[    0.179182] pci 0000:0c:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.179210] pci 0000:00:1c.1: PCI bridge to [bus 0c-0c]
[    0.179219] pci 0000:00:1c.1:   bridge window [mem 0xecf00000-0xecffffff]
[    0.179352] pci 0000:09:00.0: [14e4:1600] type 00 class 0x020000
[    0.179384] pci 0000:09:00.0: reg 10: [mem 0xecef0000-0xecefffff 64bit]
[    0.179552] pci 0000:09:00.0: PME# supported from D3hot D3cold
[    0.179579] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.179592] pci 0000:00:1c.2: PCI bridge to [bus 09-09]
[    0.179601] pci 0000:00:1c.2:   bridge window [mem 0xece00000-0xecefffff]
[    0.179668] pci 0000:00:1c.3: PCI bridge to [bus 0d-0e]
[    0.179674] pci 0000:00:1c.3:   bridge window [io  0xe000-0xefff]
[    0.179680] pci 0000:00:1c.3:   bridge window [mem 0xecc00000-0xecdfffff]
[    0.179689] pci 0000:00:1c.3:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.179739] pci 0000:03:01.0: [1217:7135] type 02 class 0x060700
[    0.179766] pci 0000:03:01.0: reg 10: [mem 0x00000000-0x00000fff]
[    0.179810] pci 0000:03:01.0: supports D1 D2
[    0.179813] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.179844] pci 0000:03:01.4: [1217:00f7] type 00 class 0x0c0010
[    0.179866] pci 0000:03:01.4: reg 10: [mem 0xecbff000-0xecbfffff]
[    0.179879] pci 0000:03:01.4: reg 14: [mem 0xecbfe800-0xecbfefff]
[    0.179964] pci 0000:03:01.4: supports D1 D2
[    0.179967] pci 0000:03:01.4: PME# supported from D0 D1 D2 D3hot D3cold
[    0.180047] pci 0000:00:1e.0: PCI bridge to [bus 03-04] (subtractive decode)
[    0.180056] pci 0000:00:1e.0:   bridge window [mem 0xecb00000-0xecbfffff]
[    0.180065] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.180068] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.180071] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.180075] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[    0.180078] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xefffffff] (subtractive decode)
[    0.180081] pci 0000:00:1e.0:   bridge window [mem 0xf4007000-0xf4007fff] (subtractive decode)
[    0.180084] pci 0000:00:1e.0:   bridge window [mem 0xf400c000-0xfebfffff] (subtractive decode)
[    0.180088] pci 0000:00:1e.0:   bridge window [mem 0xfec10000-0xfecfffff] (subtractive decode)
[    0.180091] pci 0000:00:1e.0:   bridge window [mem 0xfed00400-0xfed1ffff] (subtractive decode)
[    0.180094] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
[    0.180097] pci 0000:00:1e.0:   bridge window [mem 0xfee10000-0xffafffff] (subtractive decode)
[    0.180151] pci_bus 0000:04: [bus 04-07] partially hidden behind transparent bridge 0000:03 [bus 03-04]
[    0.180187] pci_bus 0000:00: on NUMA node 0
[    0.180191] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.180469] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.180517] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIE._PRT]
[    0.180600] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.180658] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.180716] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PXP0._PRT]
[    0.180749] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.180808]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.180812]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.180814] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.193540] ACPI: PCI Interrupt Link [LNKA] (IRQs *9 10 11)
[    0.193622] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7) *3
[    0.193703] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 11) *5
[    0.193783] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 *11)
[    0.193863] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.193947] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.194032] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.194116] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
[    0.194194] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.194194] vgaarb: loaded
[    0.194194] vgaarb: bridge control possible 0000:01:00.0
[    0.194194] PCI: Using ACPI for IRQ routing
[    0.196878] PCI: pci_cache_line_size set to 64 bytes
[    0.196983] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.196986] e820: reserve RAM buffer [mem 0x7fe81400-0x7fffffff]
[    0.197115] NetLabel: Initializing
[    0.197118] NetLabel:  domain hash size = 128
[    0.197119] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.197135] NetLabel:  unlabeled traffic allowed by default
[    0.197184] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.197191] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.197197] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.206672] Switching to clocksource hpet
[    0.215024] pnp: PnP ACPI init
[    0.215054] ACPI: bus type pnp registered
[    0.224416] pnp 00:00: [mem 0x00000000-0x0009fbff]
[    0.224420] pnp 00:00: [mem 0x0009fc00-0x0009ffff]
[    0.224423] pnp 00:00: [mem 0x000c0000-0x000cffff]
[    0.224426] pnp 00:00: [mem 0x000e0000-0x000fffff]
[    0.224429] pnp 00:00: [mem 0x00100000-0x7fe813ff]
[    0.224432] pnp 00:00: [mem 0x7fe81400-0x7fefffff]
[    0.224435] pnp 00:00: [mem 0x7ff00000-0x7fffffff]
[    0.224438] pnp 00:00: [mem 0xffb00000-0xffffffff]
[    0.224441] pnp 00:00: [mem 0xfec00000-0xfec0ffff]
[    0.224444] pnp 00:00: [mem 0xfee00000-0xfee0ffff]
[    0.224447] pnp 00:00: [mem 0xfed20000-0xfed3ffff]
[    0.224450] pnp 00:00: [mem 0xfed45000-0xfed9ffff]
[    0.224453] pnp 00:00: [mem 0xffa80000-0xffa83fff]
[    0.224455] pnp 00:00: [mem 0xf4000000-0xf4003fff]
[    0.224458] pnp 00:00: [mem 0xf4004000-0xf4004fff]
[    0.224461] pnp 00:00: [mem 0xf4005000-0xf4005fff]
[    0.224464] pnp 00:00: [mem 0xf4006000-0xf4006fff]
[    0.224467] pnp 00:00: [mem 0xf4008000-0xf400bfff]
[    0.224470] pnp 00:00: [mem 0xf0000000-0xf3ffffff]
[    0.224559] system 00:00: [mem 0x00000000-0x0009fbff] could not be reserved
[    0.224563] system 00:00: [mem 0x0009fc00-0x0009ffff] could not be reserved
[    0.224567] system 00:00: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.224571] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.224575] system 00:00: [mem 0x00100000-0x7fe813ff] could not be reserved
[    0.224578] system 00:00: [mem 0x7fe81400-0x7fefffff] has been reserved
[    0.224582] system 00:00: [mem 0x7ff00000-0x7fffffff] has been reserved
[    0.224586] system 00:00: [mem 0xffb00000-0xffffffff] has been reserved
[    0.224589] system 00:00: [mem 0xfec00000-0xfec0ffff] could not be reserved
[    0.224593] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.224597] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.224600] system 00:00: [mem 0xfed45000-0xfed9ffff] has been reserved
[    0.224604] system 00:00: [mem 0xffa80000-0xffa83fff] could not be reserved
[    0.224608] system 00:00: [mem 0xf4000000-0xf4003fff] has been reserved
[    0.224611] system 00:00: [mem 0xf4004000-0xf4004fff] has been reserved
[    0.224615] system 00:00: [mem 0xf4005000-0xf4005fff] has been reserved
[    0.224619] system 00:00: [mem 0xf4006000-0xf4006fff] has been reserved
[    0.224622] system 00:00: [mem 0xf4008000-0xf400bfff] has been reserved
[    0.224626] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.224632] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.230300] pnp 00:01: [bus 00-ff]
[    0.230305] pnp 00:01: [io  0x0000-0x0cf7 window]
[    0.230308] pnp 00:01: [io  0x0cf8-0x0cff]
[    0.230311] pnp 00:01: [io  0x0d00-0xffff window]
[    0.230314] pnp 00:01: [mem 0x000a0000-0x000bffff window]
[    0.230317] pnp 00:01: [mem 0x000d0000-0x000dffff window]
[    0.230320] pnp 00:01: [mem 0x80000000-0xefffffff window]
[    0.230323] pnp 00:01: [mem 0xf4007000-0xf4007fff window]
[    0.230326] pnp 00:01: [mem 0xf400c000-0xfebfffff window]
[    0.230330] pnp 00:01: [mem 0xfec10000-0xfecfffff window]
[    0.230333] pnp 00:01: [mem 0xfed00400-0xfed1ffff window]
[    0.230336] pnp 00:01: [mem 0xfed40000-0xfed44fff window]
[    0.230339] pnp 00:01: [mem 0xfeda0000-0xfed9ffff window disabled]
[    0.230342] pnp 00:01: [mem 0xfee10000-0xffafffff window]
[    0.230423] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.230445] pnp 00:02: [io  0x0092]
[    0.230448] pnp 00:02: [io  0x00b2]
[    0.230451] pnp 00:02: [io  0x0020-0x0021]
[    0.230454] pnp 00:02: [io  0x00a0-0x00a1]
[    0.230457] pnp 00:02: [irq 0 disabled]
[    0.230460] pnp 00:02: [io  0x04d0-0x04d1]
[    0.230462] pnp 00:02: [io  0x1000-0x1005]
[    0.230465] pnp 00:02: [io  0x1008-0x100f]
[    0.230482] pnp 00:02: disabling [io  0x1000-0x1005] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.230486] pnp 00:02: disabling [io  0x1008-0x100f] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.230530] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.230535] system 00:02: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.230555] pnp 00:03: [io  0xf400-0xf4fe]
[    0.230559] pnp 00:03: [io  0x0086]
[    0.230561] pnp 00:03: [io  0x00b3]
[    0.230564] pnp 00:03: [io  0x1006-0x1007]
[    0.230567] pnp 00:03: [io  0x100a-0x1059]
[    0.230569] pnp 00:03: [io  0x1060-0x107f]
[    0.230572] pnp 00:03: [io  0x1080-0x10bf]
[    0.230575] pnp 00:03: [io  0x10c0-0x10df]
[    0.230578] pnp 00:03: [io  0x1010-0x102f]
[    0.230580] pnp 00:03: [io  0x0809]
[    0.230597] pnp 00:03: disabling [io  0x1006-0x1007] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.230601] pnp 00:03: disabling [io  0x100a-0x1059] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.230605] pnp 00:03: disabling [io  0x1060-0x107f] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.230609] pnp 00:03: disabling [io  0x1010-0x102f] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.230656] system 00:03: [io  0xf400-0xf4fe] has been reserved
[    0.230660] system 00:03: [io  0x1080-0x10bf] has been reserved
[    0.230663] system 00:03: [io  0x10c0-0x10df] has been reserved
[    0.230667] system 00:03: [io  0x0809] has been reserved
[    0.230671] system 00:03: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.230704] pnp 00:04: [irq 12]
[    0.230739] pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.230759] pnp 00:05: [io  0x0060]
[    0.230762] pnp 00:05: [io  0x0064]
[    0.230765] pnp 00:05: [io  0x0062]
[    0.230767] pnp 00:05: [io  0x0066]
[    0.230774] pnp 00:05: [irq 1]
[    0.230809] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.230827] pnp 00:06: [io  0x0070-0x0071]
[    0.230835] pnp 00:06: [irq 8]
[    0.230838] pnp 00:06: [io  0x0072-0x0077]
[    0.230875] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.230896] pnp 00:07: [io  0x0061]
[    0.230899] pnp 00:07: [io  0x0063]
[    0.230902] pnp 00:07: [io  0x0065]
[    0.230905] pnp 00:07: [io  0x0067]
[    0.230940] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.230960] pnp 00:08: [io  0x002e-0x002f]
[    0.230964] pnp 00:08: [io  0x0c80-0x0caf]
[    0.230966] pnp 00:08: [io  0x0cc0-0x0cff]
[    0.230969] pnp 00:08: [io  0x004e-0x004f]
[    0.230972] pnp 00:08: [io  0x0910-0x091f]
[    0.230975] pnp 00:08: [io  0x0920-0x092f]
[    0.230977] pnp 00:08: [io  0x0cbc-0x0cbf]
[    0.230980] pnp 00:08: [io  0x0930-0x097f]
[    0.231037] system 00:08: [io  0x0c80-0x0caf] has been reserved
[    0.231041] system 00:08: [io  0x0cc0-0x0cff] could not be reserved
[    0.231045] system 00:08: [io  0x0910-0x091f] has been reserved
[    0.231048] system 00:08: [io  0x0920-0x092f] has been reserved
[    0.231052] system 00:08: [io  0x0cbc-0x0cbf] has been reserved
[    0.231055] system 00:08: [io  0x0930-0x097f] has been reserved
[    0.231060] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.231085] pnp 00:09: [dma 4]
[    0.231089] pnp 00:09: [io  0x0000-0x000f]
[    0.231091] pnp 00:09: [io  0x0080-0x0085]
[    0.231094] pnp 00:09: [io  0x0087-0x008f]
[    0.231097] pnp 00:09: [io  0x00c0-0x00df]
[    0.231100] pnp 00:09: [io  0x0010-0x001f]
[    0.231102] pnp 00:09: [io  0x0090-0x0091]
[    0.231105] pnp 00:09: [io  0x0093-0x009f]
[    0.231142] pnp 00:09: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.231160] pnp 00:0a: [io  0x00f0-0x00ff]
[    0.231168] pnp 00:0a: [irq 13]
[    0.231205] pnp 00:0a: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.231257] pnp 00:0b: [mem 0xfed00000-0xfed003ff]
[    0.231318] system 00:0b: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.231323] system 00:0b: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.236255] pnp 00:0c: [irq 4]
[    0.236259] pnp 00:0c: [io  0x03f8-0x03ff]
[    0.236339] pnp 00:0c: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.244205] pnp 00:0d: [mem 0xfed40000-0xfed44fff]
[    0.244209] pnp 00:0d: [io  0x0cb0-0x0cbb]
[    0.244268] system 00:0d: [io  0x0cb0-0x0cbb] has been reserved
[    0.244272] system 00:0d: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.244277] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.245600] pnp: PnP ACPI: found 14 devices
[    0.245602] ACPI: ACPI bus type pnp unregistered
[    0.283520] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 0b-0b] add_size 1000
[    0.283526] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b-0b] add_size 200000
[    0.283530] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0b-0b] add_size 200000
[    0.283543] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 0c-0c] add_size 1000
[    0.283547] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c-0c] add_size 200000
[    0.283560] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 09-09] add_size 1000
[    0.283564] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 09-09] add_size 200000
[    0.283594] pci 0000:03:01.0: res[13]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.283597] pci 0000:03:01.0: res[14]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.283601] pci 0000:00:1e.0: bridge window [io  0x1000-0x0fff] to [bus 03-04] add_size 1000
[    0.283605] pci 0000:03:01.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.283610] pci 0000:00:1e.0: bridge window [mem 0x04000000-0x03ffffff pref] to [bus 03-04] add_size 4000000
[    0.283622] pci 0000:00:1e.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.283626] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.283630] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.283633] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.283637] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.283641] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.283644] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.283648] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.283651] pci 0000:00:1e.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.283658] pci 0000:00:1e.0: BAR 15: assigned [mem 0x80000000-0x83ffffff pref]
[    0.283663] pci 0000:00:1c.0: BAR 14: assigned [mem 0x84000000-0x841fffff]
[    0.283667] pci 0000:00:1c.0: BAR 15: assigned [mem 0x84200000-0x843fffff 64bit pref]
[    0.283672] pci 0000:00:1c.1: BAR 15: assigned [mem 0x84400000-0x845fffff 64bit pref]
[    0.283676] pci 0000:00:1c.2: BAR 15: assigned [mem 0x84600000-0x847fffff 64bit pref]
[    0.283680] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.283685] pci 0000:00:1c.1: BAR 13: assigned [io  0x3000-0x3fff]
[    0.283689] pci 0000:00:1c.2: BAR 13: assigned [io  0x4000-0x4fff]
[    0.283693] pci 0000:00:1e.0: BAR 13: assigned [io  0x5000-0x5fff]
[    0.283699] pci 0000:01:00.0: BAR 6: assigned [mem 0xef000000-0xef01ffff pref]
[    0.283703] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.283709] pci 0000:00:01.0:   bridge window [mem 0xed000000-0xefefffff]
[    0.283713] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.283719] pci 0000:00:1c.0: PCI bridge to [bus 0b-0b]
[    0.283723] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.283731] pci 0000:00:1c.0:   bridge window [mem 0x84000000-0x841fffff]
[    0.283737] pci 0000:00:1c.0:   bridge window [mem 0x84200000-0x843fffff 64bit pref]
[    0.283745] pci 0000:00:1c.1: PCI bridge to [bus 0c-0c]
[    0.283750] pci 0000:00:1c.1:   bridge window [io  0x3000-0x3fff]
[    0.283757] pci 0000:00:1c.1:   bridge window [mem 0xecf00000-0xecffffff]
[    0.283763] pci 0000:00:1c.1:   bridge window [mem 0x84400000-0x845fffff 64bit pref]
[    0.283771] pci 0000:00:1c.2: PCI bridge to [bus 09-09]
[    0.283776] pci 0000:00:1c.2:   bridge window [io  0x4000-0x4fff]
[    0.283783] pci 0000:00:1c.2:   bridge window [mem 0xece00000-0xecefffff]
[    0.283789] pci 0000:00:1c.2:   bridge window [mem 0x84600000-0x847fffff 64bit pref]
[    0.283797] pci 0000:00:1c.3: PCI bridge to [bus 0d-0e]
[    0.283802] pci 0000:00:1c.3:   bridge window [io  0xe000-0xefff]
[    0.283809] pci 0000:00:1c.3:   bridge window [mem 0xecc00000-0xecdfffff]
[    0.283815] pci 0000:00:1c.3:   bridge window [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.283826] pci 0000:03:01.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.283830] pci 0000:03:01.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
[    0.283833] pci 0000:03:01.0: res[13]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.283837] pci 0000:03:01.0: res[14]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.283841] pci 0000:03:01.0: BAR 0: assigned [mem 0x88000000-0x88000fff]
[    0.283848] pci 0000:03:01.0: BAR 15: assigned [mem 0x80000000-0x83ffffff pref]
[    0.283853] pci 0000:03:01.0: BAR 16: assigned [mem 0x8c000000-0x8fffffff]
[    0.283856] pci 0000:03:01.0: BAR 13: assigned [io  0x5000-0x50ff]
[    0.283860] pci 0000:03:01.0: BAR 14: assigned [io  0x5400-0x54ff]
[    0.283863] pci 0000:03:01.0: CardBus bridge to [bus 04-07]
[    0.283866] pci 0000:03:01.0:   bridge window [io  0x5000-0x50ff]
[    0.283873] pci 0000:03:01.0:   bridge window [io  0x5400-0x54ff]
[    0.283879] pci 0000:03:01.0:   bridge window [mem 0x80000000-0x83ffffff pref]
[    0.283886] pci 0000:03:01.0:   bridge window [mem 0x8c000000-0x8fffffff]
[    0.283892] pci 0000:00:1e.0: PCI bridge to [bus 03-04]
[    0.283896] pci 0000:00:1e.0:   bridge window [io  0x5000-0x5fff]
[    0.283904] pci 0000:00:1e.0:   bridge window [mem 0xecb00000-0xecbfffff]
[    0.283910] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0x83ffffff pref]
[    0.283973] pci 0000:00:1e.0: setting latency timer to 64
[    0.283982] pci 0000:03:01.0: enabling device (0000 -> 0003)
[    0.283994] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.283997] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.284000] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.284004] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[    0.284007] pci_bus 0000:00: resource 8 [mem 0x80000000-0xefffffff]
[    0.284010] pci_bus 0000:00: resource 9 [mem 0xf4007000-0xf4007fff]
[    0.284013] pci_bus 0000:00: resource 10 [mem 0xf400c000-0xfebfffff]
[    0.284016] pci_bus 0000:00: resource 11 [mem 0xfec10000-0xfecfffff]
[    0.284020] pci_bus 0000:00: resource 12 [mem 0xfed00400-0xfed1ffff]
[    0.284023] pci_bus 0000:00: resource 13 [mem 0xfed40000-0xfed44fff]
[    0.284026] pci_bus 0000:00: resource 14 [mem 0xfee10000-0xffafffff]
[    0.284029] pci_bus 0000:01: resource 1 [mem 0xed000000-0xefefffff]
[    0.284033] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.284036] pci_bus 0000:0b: resource 0 [io  0x2000-0x2fff]
[    0.284039] pci_bus 0000:0b: resource 1 [mem 0x84000000-0x841fffff]
[    0.284042] pci_bus 0000:0b: resource 2 [mem 0x84200000-0x843fffff 64bit pref]
[    0.284046] pci_bus 0000:0c: resource 0 [io  0x3000-0x3fff]
[    0.284049] pci_bus 0000:0c: resource 1 [mem 0xecf00000-0xecffffff]
[    0.284052] pci_bus 0000:0c: resource 2 [mem 0x84400000-0x845fffff 64bit pref]
[    0.284055] pci_bus 0000:09: resource 0 [io  0x4000-0x4fff]
[    0.284059] pci_bus 0000:09: resource 1 [mem 0xece00000-0xecefffff]
[    0.284062] pci_bus 0000:09: resource 2 [mem 0x84600000-0x847fffff 64bit pref]
[    0.284065] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[    0.284068] pci_bus 0000:0d: resource 1 [mem 0xecc00000-0xecdfffff]
[    0.284072] pci_bus 0000:0d: resource 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.284075] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
[    0.284078] pci_bus 0000:03: resource 1 [mem 0xecb00000-0xecbfffff]
[    0.284081] pci_bus 0000:03: resource 2 [mem 0x80000000-0x83ffffff pref]
[    0.284084] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
[    0.284088] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
[    0.284091] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
[    0.284094] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff]
[    0.284097] pci_bus 0000:03: resource 8 [mem 0x80000000-0xefffffff]
[    0.284100] pci_bus 0000:03: resource 9 [mem 0xf4007000-0xf4007fff]
[    0.284103] pci_bus 0000:03: resource 10 [mem 0xf400c000-0xfebfffff]
[    0.284107] pci_bus 0000:03: resource 11 [mem 0xfec10000-0xfecfffff]
[    0.284110] pci_bus 0000:03: resource 12 [mem 0xfed00400-0xfed1ffff]
[    0.284113] pci_bus 0000:03: resource 13 [mem 0xfed40000-0xfed44fff]
[    0.284116] pci_bus 0000:03: resource 14 [mem 0xfee10000-0xffafffff]
[    0.284119] pci_bus 0000:04: resource 0 [io  0x5000-0x50ff]
[    0.284123] pci_bus 0000:04: resource 1 [io  0x5400-0x54ff]
[    0.284126] pci_bus 0000:04: resource 2 [mem 0x80000000-0x83ffffff pref]
[    0.284129] pci_bus 0000:04: resource 3 [mem 0x8c000000-0x8fffffff]
[    0.284170] NET: Registered protocol family 2
[    0.284249] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.284426] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.285115] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.285459] TCP: Hash tables configured (established 131072 bind 65536)
[    0.285462] TCP: reno registered
[    0.285466] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.285477] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.285568] NET: Registered protocol family 1
[    0.285796] pci 0000:01:00.0: Boot video device
[    0.285820] PCI: CLS 64 bytes, default 64
[    0.285884] Unpacking initramfs...
[    0.388873] Freeing initrd memory: 3448k freed
[    0.391177] apm: BIOS not found.
[    0.391502] audit: initializing netlink socket (disabled)
[    0.391522] type=2000 audit(1347367745.389:1): initialized
[    0.404703] highmem bounce pool size: 64 pages
[    0.404717] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.407095] VFS: Disk quotas dquot_6.5.2
[    0.407162] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.407294] msgmni has been set to 1717
[    0.407582] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.407632] io scheduler noop registered
[    0.407635] io scheduler deadline registered
[    0.407644] io scheduler cfq registered (default)
[    0.407795] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.407910] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.408051] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
[    0.408192] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
[    0.408331] pcieport 0000:00:1c.3: irq 44 for MSI/MSI-X
[    0.408514] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    0.408516] vesafb: scrolling: redraw
[    0.408519] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.408690] vesafb: framebuffer at 0xd0000000, mapped to 0xf8080000, using 3072k, total 3072k
[    0.456507] Console: switching to colour frame buffer device 128x48
[    0.504220] fb0: VESA VGA frame buffer device
[    0.504245] intel_idle: does not run on family 6 model 14
[    0.504284] GHES: HEST is not enabled!
[    0.504303] isapnp: Scanning for PnP cards...
[    0.817192] isapnp: No Plug & Play device found
[    0.817254] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.838096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.859331] 00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.859709] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.862646] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.862691] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.862838] mousedev: PS/2 mouse device common for all mice
[    0.862923] rtc_cmos 00:06: RTC can wake from S4
[    0.863094] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    0.863128] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.863153] cpuidle: using governor ladder
[    0.863155] cpuidle: using governor menu
[    0.863278] drop_monitor: Initializing network drop monitor service
[    0.863415] TCP: cubic registered
[    0.863554] NET: Registered protocol family 10
[    0.863770] NET: Registered protocol family 17
[    0.863784] Key type dns_resolver registered
[    0.863843] Using IPI No-Shortcut mode
[    0.863996] PM: Hibernation image not present or could not be loaded.
[    0.864007] registered taskstats version 1
[    0.864655] rtc_cmos 00:06: setting system clock to 2012-09-11 12:49:06 UTC (1347367746)
[    0.864791] Freeing unused kernel memory: 532k freed
[    0.865116] Write protecting the kernel text: 3896k
[    0.865148] Write protecting the kernel read-only data: 1140k
[    0.866452] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.874655] systemd-udevd[40]: starting version 188
[    0.876528] Linux agpgart interface v0.103
[    0.878419] [drm] Initialized drm 1.1.0 20060810
[    0.881425] wmi: Mapper loaded
[    0.882788] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
[    0.882861] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:21/LNXVIDEO:00/input/input1
[    0.882922] [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.
[    0.883503] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    0.884040] ACPI: Lid Switch [LID]
[    0.884124] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
[    0.884129] ACPI: Power Button [PBTN]
[    0.884202] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
[    0.884206] ACPI: Sleep Button [SBTN]
[    0.889776] [drm] nouveau 0000:01:00.0: Detected an NV40 generation card (0x046700a3)
[    0.890238] checking generic (d0000000 300000) vs hw (d0000000 10000000)
[    0.890241] fb: conflicting fb hw usage nouveaufb vs VESA VGA - removing generic driver
[    0.890265] Console: switching to colour dummy device 80x25
[    0.891265] [drm] nouveau 0000:01:00.0: Checking PRAMIN for VBIOS
[    0.956256] [drm] nouveau 0000:01:00.0: ... BIOS checksum invalid
[    0.956258] [drm] nouveau 0000:01:00.0: Checking PROM for VBIOS
[    0.956269] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    0.956271] [drm] nouveau 0000:01:00.0: Checking ACPI for VBIOS
[    0.956273] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    0.956275] [drm] nouveau 0000:01:00.0: Checking PCIROM for VBIOS
[    0.956488] [drm] nouveau 0000:01:00.0: ... BIOS checksum invalid
[    0.956490] [drm] nouveau 0000:01:00.0: Using VBIOS from PRAMIN
[    0.956493] [drm] nouveau 0000:01:00.0: BIT BIOS found
[    0.956497] [drm] nouveau 0000:01:00.0: Bios version 05.72.22.21
[    0.956500] [drm] nouveau 0000:01:00.0: TMDS table version 1.1
[    0.956643] [drm] nouveau 0000:01:00.0: MXM: no VBIOS data, nothing to do
[    0.956645] [drm] nouveau 0000:01:00.0: DCB version 3.0
[    0.956649] [drm] nouveau 0000:01:00.0: DCB outp 00: 03000323 00000004
[    0.956652] [drm] nouveau 0000:01:00.0: DCB outp 01: 01011300 00000028
[    0.956654] [drm] nouveau 0000:01:00.0: DCB outp 02: 04022312 00000000
[    0.956657] [drm] nouveau 0000:01:00.0: DCB outp 03: 020333f1 0020c070
[    0.956659] [drm] nouveau 0000:01:00.0: DCB conn 00: 0041
[    0.956662] [drm] nouveau 0000:01:00.0: DCB conn 01: 0100
[    0.956665] [drm] nouveau 0000:01:00.0: DCB conn 02: 0230
[    0.956680] [drm] nouveau 0000:01:00.0: DCB conn 03: 0310
[    0.956683] [drm] nouveau 0000:01:00.0: DCB conn 04: 0311
[    0.956691] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xF12D
[    0.956736] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xF457
[    0.971971] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xF9F5
[    0.971992] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xFB4D
[    0.973118] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xFCFF
[    0.973355] [TTM] Zone  kernel: Available graphics memory: 440020 kiB
[    0.973358] [TTM] Zone highmem: Available graphics memory: 1033178 kiB
[    0.973360] [TTM] Initializing pool allocator
[    0.973373] [drm] nouveau 0000:01:00.0: Detected 128MiB VRAM (DDR2)
[    0.982510] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
[    0.984793] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    0.984796] [drm] No driver support for vblank timestamp query.
[    0.990488] [drm] nouveau 0000:01:00.0: 3 available performance level(s)
[    0.990493] [drm] nouveau 0000:01:00.0: 0: core 100MHz shader 100MHz memory 400MHz voltage 1000mV fanspeed 100%
[    0.990498] [drm] nouveau 0000:01:00.0: 1: core 200MHz shader 200MHz memory 400MHz voltage 1000mV fanspeed 100%
[    0.990502] [drm] nouveau 0000:01:00.0: 2: core 450MHz shader 450MHz memory 600MHz voltage 1100mV fanspeed 100%
[    0.990506] [drm] nouveau 0000:01:00.0: c: core 324MHz memory 391MHz voltage 1100mV
[    0.991701] [drm] nouveau 0000:01:00.0: MM: using M2MF for buffer copies
[    0.991708] [drm] nouveau 0000:01:00.0: 0xE779: Parsing digital output script table
[    1.042609] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on lvds encoder (output 0)
[    1.042612] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 1)
[    1.042615] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on tmds encoder (output 2)
[    1.042618] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV encoder (output 3)
[    1.153668] [drm] nouveau 0000:01:00.0: allocated 1280x1024 fb: 0x49000, bo f50e7400
[    1.153751] fbcon: nouveaufb (fb0) is primary device
[    1.164296] [drm] nouveau 0000:01:00.0: Calling LVDS script 6:
[    1.164299] [drm] nouveau 0000:01:00.0: 0xE4B3: Parsing digital output script table
[    1.444329] [drm] nouveau 0000:01:00.0: Calling LVDS script 2:
[    1.444331] [drm] nouveau 0000:01:00.0: 0xE522: Parsing digital output script table
[    1.592368] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on lvds encoder (output 0)
[    1.592369] [drm] nouveau 0000:01:00.0: Calling LVDS script 5:
[    1.592371] [drm] nouveau 0000:01:00.0: 0xE4A4: Parsing digital output script table
[    1.592379] [drm] nouveau 0000:01:00.0: Output LVDS-1 is running on CRTC 0 using output A
[    1.602980] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 1)
[    1.602983] [drm] nouveau 0000:01:00.0: Output VGA-1 is running on CRTC 1 using output A
[    1.602988] Console: switching to colour frame buffer device 160x50
[    1.604794] fb0: nouveaufb frame buffer device
[    1.604796] drm: registered panic notifier
[    1.604801] [drm] Initialized nouveau 1.0.0 20120316 for 0000:01:00.0 on minor 0
[    1.661860] ACPI: bus type usb registered
[    1.661899] usbcore: registered new interface driver usbfs
[    1.661914] usbcore: registered new interface driver hub
[    1.661994] usbcore: registered new device driver usb
[    1.662462] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.662513] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.662518] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.662526] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    1.662549] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    1.662563] ehci_hcd 0000:00:1d.7: debug port 1
[    1.666452] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[    1.666480] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xffa80000
[    1.669536] SCSI subsystem initialized
[    1.671349] uhci_hcd: USB Universal Host Controller Interface driver
[    1.672592] libata version 3.00 loaded.
[    1.673371] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.673674] hub 1-0:1.0: USB hub found
[    1.673681] hub 1-0:1.0: 8 ports detected
[    1.673988] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.673993] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.674002] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.674035] uhci_hcd 0000:00:1d.0: irq 20, io base 0x0000bf80
[    1.674283] hub 2-0:1.0: USB hub found
[    1.674288] hub 2-0:1.0: 2 ports detected
[    1.674408] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.674413] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.674422] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    1.674466] uhci_hcd 0000:00:1d.1: irq 21, io base 0x0000bf60
[    1.674903] hub 3-0:1.0: USB hub found
[    1.674908] hub 3-0:1.0: 2 ports detected
[    1.675014] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.675019] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.675026] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    1.675066] uhci_hcd 0000:00:1d.2: irq 22, io base 0x0000bf40
[    1.675257] hub 4-0:1.0: USB hub found
[    1.675262] hub 4-0:1.0: 2 ports detected
[    1.675367] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    1.675372] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    1.675379] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    1.675418] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000bf20
[    1.675711] hub 5-0:1.0: USB hub found
[    1.675717] hub 5-0:1.0: 2 ports detected
[    1.675922] ata_piix 0000:00:1f.2: version 2.13
[    1.675938] ata_piix 0000:00:1f.2: MAP [
[    1.675940]  P0 P2 IDE IDE ]
[    1.675981] ata_piix 0000:00:1f.2: setting latency timer to 64
[    1.676766] scsi0 : ata_piix
[    1.676996] scsi1 : ata_piix
[    1.678823] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xbfa0 irq 14
[    1.678827] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xbfa8 irq 15
[    1.837263] ata2.00: ATAPI: SONY DVD+/-RW DW-Q58A, UDS1, max UDMA/33
[    1.837397] ata1.00: ATA-8: Hitachi HTS543225A7A384, ESBOA60W, max UDMA/133
[    1.837401] ata1.00: 488397168 sectors, multi 8: LBA48 NCQ (depth 0/32)
[    1.850410] ata2.00: configured for UDMA/33
[    1.850671] ata1.00: configured for UDMA/133
[    1.850865] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54322 ESBO PQ: 0 ANSI: 5
[    1.852118] scsi 1:0:0:0: CD-ROM            SONY     DVD+-RW DW-Q58A  UDS1 PQ: 0 ANSI: 5
[    1.855758] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.855824] sd 0:0:0:0: [sda] Write Protect is off
[    1.855828] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.855856] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.899629]  sda: sda1 sda2 < sda5 sda6 sda7 >
[    1.900410] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.980034] usb 1-2: new high-speed USB device number 2 using ehci_hcd
[    2.103961] hub 1-2:1.0: USB hub found
[    2.104033] hub 1-2:1.0: 4 ports detected
[    2.316691] usb 1-7: new high-speed USB device number 4 using ehci_hcd
[    2.441983] hub 1-7:1.0: USB hub found
[    2.442287] hub 1-7:1.0: 4 ports detected
[    2.670027] usb 3-1: new full-speed USB device number 2 using uhci_hcd
[    2.817569] hub 3-1:1.0: USB hub found
[    2.819515] hub 3-1:1.0: 3 ports detected
[    3.010301] usb 1-7.3: new low-speed USB device number 5 using ehci_hcd
[    3.027194] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[    3.176920] usb 1-7.4: new low-speed USB device number 6 using ehci_hcd
[    3.334513] usb 3-1.2: new full-speed USB device number 3 using uhci_hcd
[    3.784592] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    3.854958] systemd[1]: Successfully opened /dev/kmsg for logging.
[    3.855054] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
[    3.855213] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
[    3.855383] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
[    3.856769] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
[    3.856904] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
[    3.860083] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgroup with options net_cls.
[    3.860223] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
[    3.860380] systemd[1]: systemd 189 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
[    3.889381] systemd[1]: Your kernel apparently lacks built-in autofs4 support. Might be a good idea to compile it in. We'll now try to work around this by loading the module...
[    4.106146] systemd[1]: Inserted module 'autofs4'
[    4.116397] systemd[1]: Set hostname to <ug084-linux>.
[    4.129173] systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd/system.
[    4.129275] systemd[1]: Installed release agent.
[    4.129411] systemd[1]: Created root group.
[    4.129476] systemd[1]: Using notification socket @/org/freedesktop/systemd1/notify
[    4.129628] systemd[1]: Successfully created private D-Bus server.
[    4.157581] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 107
[    4.157723] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-system-update-generator as 108
[    4.157859] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-getty-generator as 109
[    4.157994] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 110
[    4.197085] systemd[1]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator exited successfully.
[    4.197098] systemd[1]: /usr/lib/systemd/system-generators/systemd-system-update-generator exited successfully.
[    4.197109] systemd[1]: /usr/lib/systemd/system-generators/systemd-getty-generator exited successfully.
[    4.225984] systemd[1]: /usr/lib/systemd/system-generators/systemd-fstab-generator exited successfully.
[    4.310102] systemd[1]: Looking for unit files in:
[    4.310107] systemd[1]: 	/etc/systemd/system
[    4.310110] systemd[1]: 	/run/systemd/generator
[    4.310113] systemd[1]: 	/usr/lib/systemd/system
[    4.310118] systemd[1]: Disabled SysV init scripts and rcN.d links support
[    4.468939] systemd[1]: Failed to load configuration for syslog.service: No such file or directory
[    4.628256] systemd[1]: Failed to load configuration for plymouth-start.service: No such file or directory
[    4.717007] systemd[1]: Failed to load configuration for rc-local.service: No such file or directory
[    4.717018] systemd[1]: Failed to load configuration for plymouth-quit-wait.service: No such file or directory
[    5.213539] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
[    5.232320] systemd[1]: -.mount changed dead -> mounted
[    5.232383] systemd[1]: Activating default unit: default.target
[    5.232390] systemd[1]: Trying to enqueue job graphical.target/start/replace
[    5.232587] systemd[1]: Installed new job graphical.target/start as 1
[    5.232594] systemd[1]: Installed new job multi-user.target/start as 2
[    5.232600] systemd[1]: Installed new job basic.target/start as 3
[    5.232605] systemd[1]: Installed new job sysinit.target/start as 4
[    5.232610] systemd[1]: Installed new job local-fs.target/start as 5
[    5.232615] systemd[1]: Installed new job mnt-windows_c.mount/start as 6
[    5.232622] systemd[1]: Installed new job systemd-journald.socket/start as 7
[    5.232626] systemd[1]: Installed new job dev-sda1.device/start as 9
[    5.232645] systemd[1]: Installed new job local-fs-pre.target/start as 10
[    5.232651] systemd[1]: Installed new job boot.mount/start as 13
[    5.232656] systemd[1]: Installed new job systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service/start as 14
[    5.232662] systemd[1]: Installed new job dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.device/start as 15
[    5.232673] systemd[1]: Installed new job tmp.mount/start as 16
[    5.232678] systemd[1]: Installed new job systemd-fsck-root.service/start as 17
[    5.232683] systemd[1]: Installed new job systemd-remount-fs.service/start as 18
[    5.232687] systemd[1]: Installed new job swap.target/start as 19
[    5.232693] systemd[1]: Installed new job dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap/start as 20
[    5.232698] systemd[1]: Installed new job dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.device/start as 21
[    5.232710] systemd[1]: Installed new job systemd-udev-trigger.service/start as 22
[    5.232715] systemd[1]: Installed new job systemd-udevd.service/start as 23
[    5.232720] systemd[1]: Installed new job systemd-udevd-control.socket/start as 24
[    5.232725] systemd[1]: Installed new job systemd-udevd-kernel.socket/start as 25
[    5.232729] systemd[1]: Installed new job systemd-sysctl.service/start as 26
[    5.232734] systemd[1]: Installed new job systemd-binfmt.service/start as 27
[    5.232738] systemd[1]: Installed new job systemd-random-seed-load.service/start as 28
[    5.232743] systemd[1]: Installed new job sys-kernel-config.mount/start as 29
[    5.232747] systemd[1]: Installed new job systemd-modules-load.service/start as 30
[    5.232752] systemd[1]: Installed new job cryptsetup.target/start as 31
[    5.232756] systemd[1]: Installed new job dev-hugepages.mount/start as 32
[    5.232761] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 33
[    5.232765] systemd[1]: Installed new job systemd-ask-password-console.path/start as 34
[    5.232770] systemd[1]: Installed new job dev-mqueue.mount/start as 35
[    5.232774] systemd[1]: Installed new job systemd-tmpfiles-setup.service/start as 36
[    5.232779] systemd[1]: Installed new job sys-kernel-debug.mount/start as 37
[    5.232784] systemd[1]: Installed new job systemd-journald.service/start as 38
[    5.232788] systemd[1]: Installed new job systemd-journal-flush.service/start as 39
[    5.232793] systemd[1]: Installed new job systemd-vconsole-setup.service/start as 40
[    5.232797] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.automount/start as 41
[    5.232802] systemd[1]: Installed new job sockets.target/start as 44
[    5.232807] systemd[1]: Installed new job acpid.socket/start as 45
[    5.232811] systemd[1]: Installed new job cups.socket/start as 46
[    5.232815] systemd[1]: Installed new job sshd.socket/start as 47
[    5.232820] systemd[1]: Installed new job sshdgenkeys.service/start as 48
[    5.232824] systemd[1]: Installed new job systemd-initctl.socket/start as 50
[    5.232829] systemd[1]: Installed new job systemd-shutdownd.socket/start as 51
[    5.232833] systemd[1]: Installed new job dbus.socket/start as 52
[    5.232838] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/start as 53
[    5.232843] systemd[1]: Installed new job console-kit-log-system-start.service/start as 54
[    5.232847] systemd[1]: Installed new job alsa-restore.service/start as 55
[    5.232852] systemd[1]: Installed new job dhcpcd at eth0.service/start as 56
[    5.232856] systemd[1]: Installed new job network.target/start as 57
[    5.232861] systemd[1]: Installed new job acpid.service/start as 58
[    5.232865] systemd[1]: Installed new job tftpd.service/start as 59
[    5.232869] systemd[1]: Installed new job smbd.service/start as 60
[    5.232874] systemd[1]: Installed new job remote-fs.target/start as 61
[    5.232879] systemd[1]: Installed new job mnt-fanny_d.automount/start as 62
[    5.232883] systemd[1]: Installed new job mnt-fab.automount/start as 63
[    5.232888] systemd[1]: Installed new job mnt-be.automount/start as 64
[    5.232892] systemd[1]: Installed new job mnt-echange.automount/start as 65
[    5.232896] systemd[1]: Installed new job nmbd.service/start as 66
[    5.232901] systemd[1]: Installed new job laptop-mode-tools.service/start as 67
[    5.232905] systemd[1]: Installed new job ntpd.service/start as 68
[    5.232909] systemd[1]: Installed new job dbus.service/start as 69
[    5.232914] systemd[1]: Installed new job systemd-logind.service/start as 70
[    5.232918] systemd[1]: Installed new job getty.target/start as 71
[    5.232923] systemd[1]: Installed new job getty at tty1.service/start as 72
[    5.232927] systemd[1]: Installed new job systemd-ask-password-wall.path/start as 73
[    5.232932] systemd[1]: Installed new job systemd-user-sessions.service/start as 74
[    5.232937] systemd[1]: Installed new job systemd-update-utmp-runlevel.service/start as 75
[    5.232941] systemd[1]: Installed new job slim.service/start as 78
[    5.232951] systemd[1]: Enqueued job graphical.target/start as 1
[    5.232962] systemd[1]: Loaded units and determined initial transaction in 1s 103ms 299us.
[    5.233077] systemd[1]: Got SIGCHLD for process 106 (switch_root)
[    5.233145] systemd[1]: Child 106 died (code=exited, status=0/SUCCESS)
[    5.233215] systemd[1]: systemd-ask-password-wall.path changed dead -> waiting
[    5.233225] systemd[1]: Job systemd-ask-password-wall.path/start finished, result=done
[    5.247732] systemd[1]: Autofs kernel version 1.0
[    5.247817] systemd[1]: Autofs protocol version 5.2
[    5.247828] systemd[1]: mnt-echange.automount changed dead -> waiting
[    5.247837] systemd[1]: Job mnt-echange.automount/start finished, result=done
[    5.248022] systemd[1]: Autofs protocol version 5.2
[    5.248032] systemd[1]: mnt-be.automount changed dead -> waiting
[    5.248040] systemd[1]: Job mnt-be.automount/start finished, result=done
[    5.248190] systemd[1]: Autofs protocol version 5.2
[    5.248200] systemd[1]: mnt-fab.automount changed dead -> waiting
[    5.248209] systemd[1]: Job mnt-fab.automount/start finished, result=done
[    5.248356] systemd[1]: Autofs protocol version 5.2
[    5.248366] systemd[1]: mnt-fanny_d.automount changed dead -> waiting
[    5.248375] systemd[1]: Job mnt-fanny_d.automount/start finished, result=done
[    5.248458] systemd[1]: remote-fs.target changed dead -> active
[    5.248466] systemd[1]: Job remote-fs.target/start finished, result=done
[    5.248572] systemd[1]: systemd-shutdownd.socket changed dead -> listening
[    5.248581] systemd[1]: Job systemd-shutdownd.socket/start finished, result=done
[    5.248677] systemd[1]: systemd-initctl.socket changed dead -> listening
[    5.248686] systemd[1]: Job systemd-initctl.socket/start finished, result=done
[    5.248870] systemd[1]: Autofs protocol version 5.2
[    5.248881] systemd[1]: proc-sys-fs-binfmt_misc.automount changed dead -> waiting
[    5.248889] systemd[1]: Job proc-sys-fs-binfmt_misc.automount/start finished, result=done
[    5.249023] systemd[1]: systemd-ask-password-console.path changed dead -> waiting
[    5.249032] systemd[1]: Job systemd-ask-password-console.path/start finished, result=done
[    5.249044] systemd[1]: cryptsetup.target changed dead -> active
[    5.249052] systemd[1]: Job cryptsetup.target/start finished, result=done
[    5.249226] systemd[1]: systemd-udevd-kernel.socket changed dead -> listening
[    5.249235] systemd[1]: Job systemd-udevd-kernel.socket/start finished, result=done
[    5.249393] systemd[1]: systemd-udevd-control.socket changed dead -> listening
[    5.249402] systemd[1]: Job systemd-udevd-control.socket/start finished, result=done
[    5.249740] systemd[1]: systemd-journald.socket changed dead -> listening
[    5.249749] systemd[1]: Job systemd-journald.socket/start finished, result=done
[    5.249841] systemd[1]: Starting of systemd-fsck-root.service requested but condition failed. Ignoring.
[    5.249846] systemd[1]: Job systemd-fsck-root.service/start finished, result=done
[    5.249968] systemd[1]: About to execute: /usr/lib/systemd/systemd-remount-fs
[    5.253537] systemd[1]: Forked /usr/lib/systemd/systemd-remount-fs as 111
[    5.253734] systemd[1]: systemd-remount-fs.service changed dead -> start
[    5.253936] systemd[1]: About to execute: /usr/bin/udevadm trigger --type=subsystems --action=add
[    5.266718] systemd[1]: Forked /usr/bin/udevadm as 112
[    5.266820] systemd[1]: systemd-udev-trigger.service changed dead -> start
[    5.488514] systemd[1]: About to execute: /usr/lib/systemd/systemd-sysctl
[    5.501866] systemd[1]: Forked /usr/lib/systemd/systemd-sysctl as 117
[    5.502013] systemd[1]: systemd-sysctl.service changed dead -> start
[    5.520275] systemd[1]: Starting of systemd-binfmt.service requested but condition failed. Ignoring.
[    5.520282] systemd[1]: Job systemd-binfmt.service/start finished, result=done
[    5.534102] systemd[1]: About to execute: /usr/lib/systemd/systemd-modules-load
[    5.537142] systemd[1]: Forked /usr/lib/systemd/systemd-modules-load as 118
[    5.537228] systemd[1]: systemd-modules-load.service changed dead -> start
[    5.537361] systemd[1]: About to execute: /bin/mount hugetlbfs /dev/hugepages -t hugetlbfs
[    5.540307] systemd[1]: Forked /bin/mount as 119
[    5.540331] systemd[1]: dev-hugepages.mount changed dead -> mounting
[    5.540547] systemd[1]: About to execute: /usr/lib/systemd/systemd-udevd
[    5.543410] systemd[1]: Forked /usr/lib/systemd/systemd-udevd as 120
[    5.543497] systemd[1]: systemd-udevd.service changed dead -> start
[    5.543641] systemd[1]: About to execute: /bin/mount mqueue /dev/mqueue -t mqueue
[    5.550075] systemd[1]: Forked /bin/mount as 121
[    5.550100] systemd[1]: dev-mqueue.mount changed dead -> mounting
[    5.550231] systemd[1]: About to execute: /bin/mount debugfs /sys/kernel/debug -t debugfs
[    5.553418] systemd[1]: Forked /bin/mount as 122
[    5.553440] systemd[1]: sys-kernel-debug.mount changed dead -> mounting
[    5.553589] systemd[1]: About to execute: /usr/lib/systemd/systemd-vconsole-setup
[    5.556763] systemd[1]: Forked /usr/lib/systemd/systemd-vconsole-setup as 123
[    5.556856] systemd[1]: systemd-vconsole-setup.service changed dead -> start
[    5.557030] systemd[1]: About to execute: /usr/lib/systemd/systemd-journald
[    5.563159] systemd[1]: Forked /usr/lib/systemd/systemd-journald as 124
[    5.563302] systemd[1]: systemd-journald.service changed dead -> running
[    5.563315] systemd[1]: Job systemd-journald.service/start finished, result=done
[    5.563502] systemd[1]: Running GC...
[    5.563947] systemd[1]: Received SIGCHLD from PID 108 (n/a).
[    5.563988] systemd[1]: Got SIGCHLD for process 112 (udevadm)
[    5.564061] systemd[1]: Child 112 died (code=exited, status=0/SUCCESS)
[    5.564066] systemd[1]: Child 112 belongs to systemd-udev-trigger.service
[    5.564082] systemd[1]: systemd-udev-trigger.service: main process exited, code=exited, status=0
[    5.564087] systemd[1]: systemd-udev-trigger.service running next main command for state start
[    5.564099] systemd[1]: About to execute: /usr/bin/udevadm trigger --type=devices --action=add
[    5.573403] systemd[1]: Forked /usr/bin/udevadm as 125
[    5.573526] systemd[1]: Got SIGCHLD for process 117 (systemd-sysctl)
[    5.573600] systemd[1]: Child 117 died (code=exited, status=0/SUCCESS)
[    5.573606] systemd[1]: Child 117 belongs to systemd-sysctl.service
[    5.573619] systemd[1]: systemd-sysctl.service: main process exited, code=exited, status=0
[    5.580057] systemd[1]: systemd-sysctl.service changed start -> exited
[    5.580070] systemd[1]: Job systemd-sysctl.service/start finished, result=done
[    5.580553] systemd[1]: Incoming traffic on systemd-journald.socket
[    5.580570] systemd[1]: systemd-journald.socket changed listening -> running
[    5.580586] systemd[1]: Incoming traffic on systemd-udevd-kernel.socket
[    5.580596] systemd[1]: systemd-udevd-kernel.socket changed listening -> running
[    5.580725] systemd[1]: Accepted connection on private bus.
[    5.580766] systemd[1]: Received SIGCHLD from PID 117 (n/a).
[    5.580816] systemd[1]: Accepted connection on private bus.
[    5.778997] systemd-udevd[120]: starting version 189
[    6.087644] FS-Cache: Loaded
[    6.365628] RPC: Registered named UNIX socket transport module.
[    6.365633] RPC: Registered udp transport module.
[    6.365635] RPC: Registered tcp transport module.
[    6.365637] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.403407] systemd-journald[124]: Successfully opened /dev/kmsg for logging.
[    6.427291] systemd-journald[124]: Fixed max_use=100.8M max_size=12.6M min_size=64.0K keep_free=50.4M
[    6.427348] systemd-journald[124]: Reserving 22961 entries in hash table.
[    6.508008] systemd-journald[124]: Vacuuming...
[    6.508049] systemd-journald[124]: Flushing /dev/kmsg...
[    6.508118] systemd[1]: Received SIGCHLD from PID 125 (udevadm).
[    6.508157] systemd[1]: Got SIGCHLD for process 119 (mount)
[    6.508177] systemd[1]: Got notification message for unit systemd-udevd.service
[    6.508182] systemd[1]: systemd-udevd.service: Got message
[    6.508188] systemd[1]: systemd-udevd.service: got READY=1
[    6.508248] systemd[1]: systemd-udevd.service changed start -> running
[    6.508260] systemd[1]: Job systemd-udevd.service/start finished, result=done
[    6.508441] systemd[1]: Child 119 died (code=exited, status=0/SUCCESS)
[    6.508446] systemd[1]: Child 119 belongs to dev-hugepages.mount
[    6.508456] systemd[1]: dev-hugepages.mount mount process exited, code=exited status=0
[    6.508467] systemd[1]: dev-hugepages.mount changed mounting -> mounted
[    6.508476] systemd[1]: Job dev-hugepages.mount/start finished, result=done
[    6.508576] systemd[1]: Got SIGCHLD for process 121 (mount)
[    6.508640] systemd[1]: Child 121 died (code=exited, status=0/SUCCESS)
[    6.508644] systemd[1]: Child 121 belongs to dev-mqueue.mount
[    6.508654] systemd[1]: dev-mqueue.mount mount process exited, code=exited status=0
[    6.508663] systemd[1]: dev-mqueue.mount changed mounting -> mounted
[    6.508672] systemd[1]: Job dev-mqueue.mount/start finished, result=done
[    6.508771] systemd[1]: Got SIGCHLD for process 122 (mount)
[    6.508832] systemd[1]: Child 122 died (code=exited, status=0/SUCCESS)
[    6.508837] systemd[1]: Child 122 belongs to sys-kernel-debug.mount
[    6.508845] systemd[1]: sys-kernel-debug.mount mount process exited, code=exited status=0
[    6.508855] systemd[1]: sys-kernel-debug.mount changed mounting -> mounted
[    6.508864] systemd[1]: Job sys-kernel-debug.mount/start finished, result=done
[    6.508958] systemd[1]: Got SIGCHLD for process 125 (udevadm)
[    6.509021] systemd[1]: Child 125 died (code=exited, status=0/SUCCESS)
[    6.509027] systemd[1]: Child 125 belongs to systemd-udev-trigger.service
[    6.509038] systemd[1]: systemd-udev-trigger.service: main process exited, code=exited, status=0
[    6.525507] systemd[1]: systemd-udev-trigger.service changed start -> exited
[    6.525518] systemd[1]: Job systemd-udev-trigger.service/start finished, result=done
[    6.525692] systemd[1]: Accepted connection on private bus.
[    6.526192] systemd[1]: Accepted connection on private bus.
[    6.526344] systemd[1]: Accepted connection on private bus.
[    6.526707] systemd[1]: Accepted connection on private bus.
[    6.527024] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    6.527177] systemd[1]: systemd-udev-trigger.service: cgroup is empty
[    6.527426] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    6.527512] systemd[1]: systemd-sysctl.service: cgroup is empty
[    6.527566] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    6.530079] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    6.530141] systemd[1]: systemd-udev-trigger.service: cgroup is empty
[    6.530186] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    6.530264] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    6.536791] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    6.536869] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    6.537192] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    6.546798] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    6.560607] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    6.560667] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    6.581728] systemd-journald[124]: systemd-journald running as pid 124
[    6.582229] systemd[1]: Got notification message for unit systemd-journald.service
[    6.582235] systemd[1]: systemd-journald.service: Got message
[    6.582243] systemd[1]: systemd-journald.service: got STATUS=Processing requests...
[    6.675188] NFS: Registering the id_resolver key type
[    6.675214] Key type id_resolver registered
[    6.675216] Key type id_legacy registered
[    6.675227] FS-Cache: Netfs 'nfs' registered for caching
[    6.779398] vboxdrv: Found 2 processor cores.
[    6.779563] vboxdrv: fAsync=1 offMin=0xe614e8c4 offMax=0xe614e8c4
[    6.779644] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'.
[    6.779646] vboxdrv: Successfully loaded version 4.1.22_OSE (interface 0x00190000).
[    7.059802] EXT4-fs (sda7): re-mounted. Opts: commit=60
[    7.060357] systemd[1]: Received SIGCHLD from PID 111 (systemd-remount).
[    7.060390] systemd[1]: Got SIGCHLD for process 111 (systemd-remount)
[    7.060462] systemd[1]: Child 111 died (code=exited, status=0/SUCCESS)
[    7.060467] systemd[1]: Child 111 belongs to systemd-remount-fs.service
[    7.060480] systemd[1]: systemd-remount-fs.service: main process exited, code=exited, status=0
[    7.063397] systemd[1]: systemd-remount-fs.service changed start -> exited
[    7.063410] systemd[1]: Job systemd-remount-fs.service/start finished, result=done
[    7.063540] systemd[1]: local-fs-pre.target changed dead -> active
[    7.063549] systemd[1]: Job local-fs-pre.target/start finished, result=done
[    7.063692] systemd[1]: About to execute: /bin/mount tmpfs /tmp -t tmpfs -o nodev,nosuid
[    7.070052] systemd[1]: Forked /bin/mount as 141
[    7.070080] systemd[1]: tmp.mount changed dead -> mounting
[    7.070219] systemd[1]: About to execute: /usr/lib/systemd/systemd-random-seed load
[    7.089075] systemd[1]: Forked /usr/lib/systemd/systemd-random-seed as 142
[    7.089244] systemd[1]: systemd-random-seed-load.service changed dead -> start
[    7.089315] systemd[1]: Received SIGCHLD from PID 141 (mount).
[    7.089347] systemd[1]: Got SIGCHLD for process 141 (mount)
[    7.089415] systemd[1]: Child 141 died (code=exited, status=0/SUCCESS)
[    7.089420] systemd[1]: Child 141 belongs to tmp.mount
[    7.089436] systemd[1]: tmp.mount mount process exited, code=exited status=0
[    7.089448] systemd[1]: tmp.mount changed mounting -> mounted
[    7.089457] systemd[1]: Job tmp.mount/start finished, result=done
[    7.089653] systemd[1]: Accepted connection on private bus.
[    7.090626] systemd[1]: Accepted connection on private bus.
[    7.090845] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    7.090929] systemd[1]: systemd-remount-fs.service: cgroup is empty
[    7.090988] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    7.091078] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    7.093706] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    7.186927] systemd[1]: Received SIGCHLD from PID 142 (systemd-random-).
[    7.186968] systemd[1]: Got SIGCHLD for process 142 (systemd-random-)
[    7.187040] systemd[1]: Child 142 died (code=exited, status=0/SUCCESS)
[    7.187046] systemd[1]: Child 142 belongs to systemd-random-seed-load.service
[    7.187058] systemd[1]: systemd-random-seed-load.service: main process exited, code=exited, status=0
[    7.187251] systemd[1]: systemd-random-seed-load.service changed start -> dead
[    7.193388] systemd[1]: Job systemd-random-seed-load.service/start finished, result=done
[    7.193558] systemd[1]: Accepted connection on private bus.
[    7.193736] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    7.193796] systemd[1]: systemd-random-seed-load.service: cgroup is empty
[    7.193839] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    7.229435] vboxpci: IOMMU not found (not registered)
[    7.229732] systemd[1]: Received SIGCHLD from PID 118 (systemd-modules).
[    7.229764] systemd[1]: Got SIGCHLD for process 118 (systemd-modules)
[    7.229832] systemd[1]: Child 118 died (code=exited, status=0/SUCCESS)
[    7.229837] systemd[1]: Child 118 belongs to systemd-modules-load.service
[    7.229848] systemd[1]: systemd-modules-load.service: main process exited, code=exited, status=0
[    7.233413] systemd[1]: systemd-modules-load.service changed start -> exited
[    7.233425] systemd[1]: Job systemd-modules-load.service/start finished, result=done
[    7.233546] systemd[1]: Starting of sys-kernel-config.mount requested but condition failed. Ignoring.
[    7.233552] systemd[1]: Job sys-kernel-config.mount/start finished, result=done
[    7.233570] systemd[1]: Starting of sys-fs-fuse-connections.mount requested but condition failed. Ignoring.
[    7.233575] systemd[1]: Job sys-fs-fuse-connections.mount/start finished, result=done
[    7.233635] systemd[1]: Accepted connection on private bus.
[    7.233805] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    7.233868] systemd[1]: systemd-modules-load.service: cgroup is empty
[    7.233911] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    7.665597] systemd[1]: dev-ttyS1.device changed dead -> plugged
[    7.665618] systemd[1]: sys-devices-platform-serial8250-tty-ttyS1.device changed dead -> plugged
[    7.668928] systemd[1]: dev-ttyS2.device changed dead -> plugged
[    7.668950] systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device changed dead -> plugged
[    7.679372] systemd[1]: dev-ttyS3.device changed dead -> plugged
[    7.679397] systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device changed dead -> plugged
[    7.685862] systemd[1]: dev-ttyS0.device changed dead -> plugged
[    7.685882] systemd[1]: sys-devices-pnp0-00:0c-tty-ttyS0.device changed dead -> plugged
[    7.685897] systemd[1]: Running GC...
[    7.800624] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    7.906385] ACPI: Requesting acpi_cpufreq
[    7.911123] ACPI: acpi_idle registered with cpuidle
[    7.911173] ACPI: Battery Slot [BAT0] (battery present)
[    7.911213] ACPI: Battery Slot [BAT1] (battery absent)
[    8.012021] systemd[1]: Received SIGCHLD from PID 231 (lmt-udev).
[    8.012057] systemd[1]: Got SIGCHLD for process 231 (lmt-udev)
[    8.012123] systemd[1]: Child 231 died (code=exited, status=1/FAILURE)
[    8.012567] systemd[1]: Received SIGCHLD from PID 232 (lmt-udev).
[    8.012597] systemd[1]: Got SIGCHLD for process 232 (lmt-udev)
[    8.012648] systemd[1]: Child 232 died (code=exited, status=1/FAILURE)
[    8.013976] systemd[1]: Received SIGCHLD from PID 233 (lmt-udev).
[    8.014008] systemd[1]: Got SIGCHLD for process 233 (lmt-udev)
[    8.014064] systemd[1]: Child 233 died (code=exited, status=1/FAILURE)
[    8.158382] systemd[1]: Received SIGCHLD from PID 123 (systemd-vconsol).
[    8.158416] systemd[1]: Got SIGCHLD for process 123 (systemd-vconsol)
[    8.158489] systemd[1]: Child 123 died (code=exited, status=0/SUCCESS)
[    8.158494] systemd[1]: Child 123 belongs to systemd-vconsole-setup.service
[    8.158506] systemd[1]: systemd-vconsole-setup.service: main process exited, code=exited, status=0
[    8.160526] systemd[1]: systemd-vconsole-setup.service changed start -> exited
[    8.160539] systemd[1]: Job systemd-vconsole-setup.service/start finished, result=done
[    8.160982] systemd[1]: Accepted connection on private bus.
[    8.161186] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[    8.161257] systemd[1]: systemd-vconsole-setup.service: cgroup is empty
[    8.161299] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[    8.170811] input: Dell WMI hotkeys as /devices/virtual/input/input5
[    8.182004] ACPI: AC Adapter [AC] (on-line)
[    8.188059] systemd[1]: Received SIGCHLD from PID 236 (lmt-udev).
[    8.188093] systemd[1]: Got SIGCHLD for process 236 (lmt-udev)
[    8.188156] systemd[1]: Child 236 died (code=exited, status=1/FAILURE)
[    8.273660] thermal LNXTHERM:00: registered as thermal_zone0
[    8.273666] ACPI: Thermal Zone [THM] (54 C)
[    8.314488] systemd[1]: Received SIGCHLD from PID 244 (lmt-udev).
[    8.314523] systemd[1]: Got SIGCHLD for process 244 (lmt-udev)
[    8.314587] systemd[1]: Child 244 died (code=exited, status=1/FAILURE)
[    8.423241] cfg80211: Calling CRDA to update world regulatory domain
[    8.435297] intel_rng: FWH not detected
[    8.504962] microcode: CPU0 sig=0x6e8, pf=0x20, revision=0x39
[    8.563151] tg3.c:v3.123 (March 21, 2012)
[    8.574470] tg3 0000:09:00.0: eth0: Tigon3 [partno(BCM5752KFBG) rev 6002] (PCI Express) MAC address 00:15:c5:07:a9:00
[    8.574479] tg3 0000:09:00.0: eth0: attached PHY is 5752 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[    8.574487] tg3 0000:09:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    8.574493] tg3 0000:09:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[    8.620992] leds_ss4200: no LED devices found
[    8.647201] iTCO_vendor_support: vendor-support=0
[    8.649818] gpio_ich: GPIO from 206 to 255 on gpio_ich
[    8.722900] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[    8.722908] cdrom: Uniform CD-ROM driver Revision: 3.20
[    8.723829] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    8.782131] systemd[1]: Received SIGCHLD from PID 262 (lmt-udev).
[    8.782168] systemd[1]: Got SIGCHLD for process 262 (lmt-udev)
[    8.782235] systemd[1]: Child 262 died (code=exited, status=1/FAILURE)
[    8.790152] systemd[1]: Received SIGCHLD from PID 268 (lmt-udev).
[    8.790188] systemd[1]: Got SIGCHLD for process 268 (lmt-udev)
[    8.790253] systemd[1]: Child 268 died (code=exited, status=1/FAILURE)
[    8.791219] systemd[1]: Received SIGCHLD from PID 273 (lmt-udev).
[    8.791249] systemd[1]: Got SIGCHLD for process 273 (lmt-udev)
[    8.791300] systemd[1]: Child 273 died (code=exited, status=1/FAILURE)
[    8.791605] systemd[1]: Received SIGCHLD from PID 274 (lmt-udev).
[    8.791635] systemd[1]: Got SIGCHLD for process 274 (lmt-udev)
[    8.791685] systemd[1]: Child 274 died (code=exited, status=1/FAILURE)
[    8.802519] systemd[1]: Received SIGCHLD from PID 278 (lmt-udev).
[    8.802556] systemd[1]: Got SIGCHLD for process 278 (lmt-udev)
[    8.802622] systemd[1]: Child 278 died (code=exited, status=1/FAILURE)
[    8.804062] systemd[1]: Received SIGCHLD from PID 285 (lmt-udev).
[    8.804097] systemd[1]: Got SIGCHLD for process 285 (lmt-udev)
[    8.804161] systemd[1]: Child 285 died (code=exited, status=1/FAILURE)
[    8.805502] systemd[1]: Received SIGCHLD from PID 282 (lmt-udev).
[    8.805536] systemd[1]: Got SIGCHLD for process 282 (lmt-udev)
[    8.805595] systemd[1]: Child 282 died (code=exited, status=1/FAILURE)
[    8.806634] systemd[1]: Received SIGCHLD from PID 281 (lmt-udev).
[    8.806703] systemd[1]: Got SIGCHLD for process 281 (lmt-udev)
[    8.806761] systemd[1]: Child 281 died (code=exited, status=1/FAILURE)
[    8.807619] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
[    8.807661] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x1060)
[    8.808017] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    8.808452] systemd[1]: Received SIGCHLD from PID 288 (lmt-udev).
[    8.808485] systemd[1]: Got SIGCHLD for process 288 (lmt-udev)
[    8.808547] systemd[1]: Child 288 died (code=exited, status=1/FAILURE)
[    8.808827] systemd[1]: Received SIGCHLD from PID 287 (lmt-udev).
[    8.808856] systemd[1]: Got SIGCHLD for process 287 (lmt-udev)
[    8.808907] systemd[1]: Child 287 died (code=exited, status=1/FAILURE)
[    8.819457] systemd[1]: Received SIGCHLD from PID 303 (lmt-udev).
[    8.819493] systemd[1]: Got SIGCHLD for process 303 (lmt-udev)
[    8.819559] systemd[1]: Child 303 died (code=exited, status=1/FAILURE)
[    8.827274] systemd[1]: Received SIGCHLD from PID 306 (lmt-udev).
[    8.827311] systemd[1]: Got SIGCHLD for process 306 (lmt-udev)
[    8.827380] systemd[1]: Child 306 died (code=exited, status=1/FAILURE)
[    8.829765] systemd[1]: Received SIGCHLD from PID 309 (lmt-udev).
[    8.829799] systemd[1]: Got SIGCHLD for process 309 (lmt-udev)
[    8.829863] systemd[1]: Child 309 died (code=exited, status=1/FAILURE)
[    8.832196] systemd[1]: Received SIGCHLD from PID 302 (lmt-udev).
[    8.832232] systemd[1]: Got SIGCHLD for process 302 (lmt-udev)
[    8.832296] systemd[1]: Child 302 died (code=exited, status=1/FAILURE)
[    8.832565] systemd[1]: Received SIGCHLD from PID 311 (lmt-udev).
[    8.832595] systemd[1]: Got SIGCHLD for process 311 (lmt-udev)
[    8.832646] systemd[1]: Child 311 died (code=exited, status=1/FAILURE)
[    8.834935] systemd[1]: Received SIGCHLD from PID 312 (lmt-udev).
[    8.834968] systemd[1]: Got SIGCHLD for process 312 (lmt-udev)
[    8.835031] systemd[1]: Child 312 died (code=exited, status=1/FAILURE)
[    8.847178] systemd[1]: sys-devices-pci0000:00-0000:00:1c.2-0000:09:00.0-net-eth0.device changed dead -> plugged
[    8.859088] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[    8.859095] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[    8.869189] hda_intel: position_fix set to 1 for device 1028:01cc
[    8.869257] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[    8.892195] microcode: CPU1 sig=0x6e8, pf=0x20, revision=0x39
[    8.893045] microcode: Microcode Update Driver: v2.00 <tigran at aivazian.fsnet.co.uk>, Peter Oruba
[    8.896226] systemd[1]: dev-disk-by\x2did-ata\x2dSONY_DVD\x2b_\x2dRW_DW\x2dQ58A.device changed dead -> plugged
[    8.896248] systemd[1]: dev-cdrom.device changed dead -> plugged
[    8.896257] systemd[1]: dev-sr0.device changed dead -> plugged
[    8.896267] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device changed dead -> plugged
[    8.918315] iwl3945 0000:0c:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels
[    8.918321] iwl3945 0000:0c:00.0: Detected Intel Wireless WiFi Link 3945ABG
[    8.918474] iwl3945 0000:0c:00.0: irq 46 for MSI/MSI-X
[    8.918680] Registered led device: phy0-led
[    8.924288] yenta_cardbus 0000:03:01.0: CardBus bridge found [1028:01cc]
[    8.924317] yenta_cardbus 0000:03:01.0: O2: enabling read prefetch/write burst. If you experience problems or performance issues, use the yenta_socket parameter 'o2_speedup=off'
[    8.976747] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[    8.992704] systemd[1]: sys-devices-pci0000:00-0000:00:1c.1-0000:0c:00.0-net-wlan0.device changed dead -> plugged
[    9.050957] yenta_cardbus 0000:03:01.0: ISA IRQ mask 0x0cb8, PCI irq 19
[    9.050965] yenta_cardbus 0000:03:01.0: Socket status: 30000006
[    9.050973] pci_bus 0000:03: Raising subordinate bus# of parent bus (#03) from #04 to #07
[    9.050990] yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge window: [io  0x5000-0x5fff]
[    9.050997] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x5000-0x5fff:
[    9.052591]  excluding 0x5000-0x50ff 0x5400-0x54ff
[    9.058368] yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge window: [mem 0xecb00000-0xecbfffff]
[    9.058372] pcmcia_socket pcmcia_socket0: cs: memory probe 0xecb00000-0xecbfffff:
[    9.058383]  excluding 0xecbf0000-0xecbfffff
[    9.058388] yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge window: [mem 0x80000000-0x83ffffff pref]
[    9.058392] pcmcia_socket pcmcia_socket0: cs: memory probe 0x80000000-0x83ffffff:
[    9.058403]  excluding 0x80000000-0x83ffffff
[    9.087944] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[    9.088439] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[    9.123463] firewire_ohci 0000:03:01.4: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x10
[    9.204257] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input8
[    9.224659] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input9
[    9.234243] systemd[1]: sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device changed dead -> plugged
[    9.234264] systemd[1]: Trying to enqueue job sound.target/start/fail
[    9.234293] systemd[1]: Installed new job sound.target/start as 79
[    9.234303] systemd[1]: Enqueued job sound.target/start as 79
[    9.234337] systemd[1]: sound.target changed dead -> active
[    9.234351] systemd[1]: Job sound.target/start finished, result=done
[    9.371242] systemd[1]: Received SIGCHLD from PID 366 (lmt-udev).
[    9.371279] systemd[1]: Got SIGCHLD for process 366 (lmt-udev)
[    9.371349] systemd[1]: Child 366 died (code=exited, status=1/FAILURE)
[    9.372194] systemd[1]: Received SIGCHLD from PID 367 (lmt-udev).
[    9.372225] systemd[1]: Got SIGCHLD for process 367 (lmt-udev)
[    9.372280] systemd[1]: Child 367 died (code=exited, status=1/FAILURE)
[    9.373909] systemd[1]: Received SIGCHLD from PID 368 (lmt-udev).
[    9.373940] systemd[1]: Got SIGCHLD for process 368 (lmt-udev)
[    9.373998] systemd[1]: Child 368 died (code=exited, status=1/FAILURE)
[    9.455428] usbcore: registered new interface driver usbhid
[    9.455434] usbhid: USB HID core driver
[    9.460951] systemd[1]: Received SIGCHLD from PID 370 (lmt-udev).
[    9.461010] systemd[1]: Got SIGCHLD for process 370 (lmt-udev)
[    9.461117] systemd[1]: Child 370 died (code=exited, status=1/FAILURE)
[    9.465129] input: DELL DELL USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7.3/1-7.3:1.0/input/input10
[    9.467951] systemd[1]: Received SIGCHLD from PID 373 (lmt-udev).
[    9.468009] systemd[1]: Got SIGCHLD for process 373 (lmt-udev)
[    9.468115] systemd[1]: Child 373 died (code=exited, status=1/FAILURE)
[    9.469942] hid-generic 0003:413C:2005.0001: input,hidraw0: USB HID v1.10 Keyboard [DELL DELL USB Keyboard] on usb-0000:00:1d.7-7.3/input0
[    9.471711] input: PIXART USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7.4/1-7.4:1.0/input/input11
[    9.473582] hid-generic 0003:093A:2510.0002: input,hidraw1: USB HID v1.11 Mouse [PIXART USB OPTICAL MOUSE] on usb-0000:00:1d.7-7.4/input0
[    9.476089] systemd[1]: Received SIGCHLD from PID 374 (lmt-udev).
[    9.476147] systemd[1]: Got SIGCHLD for process 374 (lmt-udev)
[    9.476253] systemd[1]: Child 374 died (code=exited, status=1/FAILURE)
[    9.623573] firewire_core 0000:03:01.4: created device fw0: GUID 464fc00011bea050, S400
[    9.850490] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe.device changed dead -> plugged
[    9.850518] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ.device changed dead -> plugged
[    9.850533] systemd[1]: dev-sda.device changed dead -> plugged
[    9.850549] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device changed dead -> plugged
[    9.869136] systemd[1]: dev-disk-by\x2duuid-f237ff37\x2d4b97\x2d4868\x2d812f\x2d643743616af7.device changed dead -> plugged
[    9.869153] systemd[1]: dev-disk-by\x2dlabel-\x5cx2f.device changed dead -> plugged
[    9.869162] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart7.device changed dead -> plugged
[    9.869172] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart7.device changed dead -> plugged
[    9.869180] systemd[1]: dev-sda7.device changed dead -> plugged
[    9.869190] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device changed dead -> plugged
[    9.869211] systemd[1]: Running GC...
[    9.970566] systemd[1]: dev-disk-by\x2duuid-66CAF559CAF52649.device changed dead -> plugged
[    9.970583] systemd[1]: dev-disk-by\x2dlabel-OS.device changed dead -> plugged
[    9.970593] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart1.device changed dead -> plugged
[    9.970602] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart1.device changed dead -> plugged
[    9.970611] systemd[1]: dev-sda1.device changed dead -> plugged
[    9.970619] systemd[1]: Job dev-sda1.device/start finished, result=done
[    9.971002] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device changed dead -> plugged
[    9.971374] systemd[1]: About to execute: /bin/mount /dev/sda1 /mnt/windows_c -t ntfs-3g -o defaults,uid=5143
[    9.976791] systemd[1]: Forked /bin/mount as 379
[    9.976837] systemd[1]: mnt-windows_c.mount changed dead -> mounting
[   10.000843] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart2.device changed dead -> plugged
[   10.000863] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart2.device changed dead -> plugged
[   10.000872] systemd[1]: dev-sda2.device changed dead -> plugged
[   10.000881] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device changed dead -> plugged
[   10.080838] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.device changed dead -> plugged
[   10.080853] systemd[1]: Job dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.device/start finished, result=done
[   10.081238] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.device changed dead -> plugged
[   10.081250] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.device changed dead -> plugged
[   10.081258] systemd[1]: dev-sda6.device changed dead -> plugged
[   10.081268] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device changed dead -> plugged
[   10.081630] systemd[1]: About to execute: /sbin/swapon /dev/disk/by-uuid/29d01c6a-5dd7-49d0-8a7d-20462dbe5959
[   10.090542] systemd[1]: Forked /sbin/swapon as 383
[   10.090584] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap changed dead -> activating
[   10.171913] fuse init (API version 7.19)
[   10.173099] systemd[1]: sys-module-fuse.device changed dead -> plugged
[   10.173123] systemd[1]: Trying to enqueue job sys-fs-fuse-connections.mount/start/fail
[   10.173201] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 81
[   10.173212] systemd[1]: Enqueued job sys-fs-fuse-connections.mount/start as 81
[   10.173957] systemd[1]: About to execute: /bin/mount fusectl /sys/fs/fuse/connections -t fusectl
[   10.176872] systemd[1]: Forked /bin/mount as 385
[   10.176923] systemd[1]: sys-fs-fuse-connections.mount changed dead -> mounting
[   10.179336] systemd[1]: sys-fs-fuse-connections.mount changed mounting -> mounting-done
[   10.179353] systemd[1]: Job sys-fs-fuse-connections.mount/start finished, result=done
[   10.180101] systemd[1]: Running GC...
[   10.180212] systemd[1]: Received SIGCHLD from PID 385 (mount).
[   10.180269] systemd[1]: Got SIGCHLD for process 385 (mount)
[   10.180373] systemd[1]: Child 385 died (code=exited, status=0/SUCCESS)
[   10.180382] systemd[1]: Child 385 belongs to sys-fs-fuse-connections.mount
[   10.180398] systemd[1]: sys-fs-fuse-connections.mount mount process exited, code=exited status=0
[   10.180419] systemd[1]: sys-fs-fuse-connections.mount changed mounting-done -> mounted
[   10.180536] systemd[1]: Accepted connection on private bus.
[   10.180888] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   10.183751] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   10.201323] Adding 524284k swap on /dev/sda6.  Priority:-1 extents:1 across:524284k 
[   10.202336] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap changed dead -> active
[   10.202392] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap changed dead -> active
[   10.202503] systemd[1]: Received SIGCHLD from PID 383 (swapon).
[   10.202560] systemd[1]: Got SIGCHLD for process 383 (swapon)
[   10.202665] systemd[1]: Child 383 died (code=exited, status=0/SUCCESS)
[   10.202675] systemd[1]: Child 383 belongs to dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap
[   10.202692] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap swap process exited, code=exited status=0
[   10.202713] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap changed activating -> active
[   10.202729] systemd[1]: Job dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap/start finished, result=done
[   10.203471] systemd[1]: swap.target changed dead -> active
[   10.203486] systemd[1]: Job swap.target/start finished, result=done
[   10.204621] systemd[1]: Accepted connection on private bus.
[   10.204964] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   10.207323] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   10.241001] systemd[1]: dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.device changed dead -> plugged
[   10.241015] systemd[1]: Job dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.device/start finished, result=done
[   10.241395] systemd[1]: dev-disk-by\x2dlabel-\x5cx2fboot.device changed dead -> plugged
[   10.241407] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart5.device changed dead -> plugged
[   10.241416] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart5.device changed dead -> plugged
[   10.241425] systemd[1]: dev-sda5.device changed dead -> plugged
[   10.241434] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device changed dead -> plugged
[   10.241838] systemd[1]: About to execute: /usr/lib/systemd/systemd-fsck /dev/disk/by-uuid/0219f1e9-5c3d-496e-ba93-03b6a9bdccd4
[   10.246852] systemd[1]: Forked /usr/lib/systemd/systemd-fsck as 389
[   10.247001] systemd[1]: systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service changed dead -> start
[   10.547542] systemd[1]: mnt-windows_c.mount changed mounting -> mounting-done
[   10.547555] systemd[1]: Job mnt-windows_c.mount/start finished, result=done
[   10.548030] systemd[1]: Received SIGCHLD from PID 379 (mount).
[   10.548063] systemd[1]: Got SIGCHLD for process 379 (mount)
[   10.548128] systemd[1]: Child 379 died (code=exited, status=0/SUCCESS)
[   10.548133] systemd[1]: Child 379 belongs to mnt-windows_c.mount
[   10.548143] systemd[1]: mnt-windows_c.mount mount process exited, code=exited status=0
[   10.548154] systemd[1]: mnt-windows_c.mount changed mounting-done -> mounted
[   10.860501] systemd[1]: Received SIGCHLD from PID 389 (systemd-fsck).
[   10.860559] systemd[1]: Got SIGCHLD for process 389 (systemd-fsck)
[   10.860670] systemd[1]: Child 389 died (code=exited, status=0/SUCCESS)
[   10.860681] systemd[1]: Child 389 belongs to systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service
[   10.860701] systemd[1]: systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service: main process exited, code=exited, status=0
[   10.861079] systemd[1]: systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service changed start -> dead
[   10.874536] systemd[1]: Job systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service/start finished, result=done
[   10.875942] systemd[1]: About to execute: /bin/mount /dev/disk/by-uuid/0219f1e9-5c3d-496e-ba93-03b6a9bdccd4 /boot -t ext3 -o defaults,commit=60
[   10.877359] systemd[1]: Forked /bin/mount as 395
[   10.877402] systemd[1]: boot.mount changed dead -> mounting
[   10.877571] systemd[1]: Accepted connection on private bus.
[   10.877680] systemd[1]: Accepted connection on private bus.
[   10.878274] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   10.878415] systemd[1]: systemd-fsck at dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.service: cgroup is empty
[   10.878496] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   10.879832] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   10.879908] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   10.882000] EXT4-fs (sda5): mounting ext3 file system using the ext4 subsystem
[   10.885912] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: commit=60
[   10.886984] systemd[1]: boot.mount changed mounting -> mounting-done
[   10.887000] systemd[1]: Job boot.mount/start finished, result=done
[   10.887698] systemd[1]: local-fs.target changed dead -> active
[   10.887713] systemd[1]: Job local-fs.target/start finished, result=done
[   10.943200] systemd[1]: About to execute: /usr/bin/systemd-tmpfiles --create --remove
[   10.950100] systemd[1]: Forked /usr/bin/systemd-tmpfiles as 399
[   10.950260] systemd[1]: systemd-tmpfiles-setup.service changed dead -> start
[   10.951016] systemd[1]: About to execute: /usr/bin/systemctl kill --kill-who=main --signal=SIGUSR1 systemd-journald.service
[   10.973467] systemd[1]: Forked /usr/bin/systemctl as 400
[   10.973616] systemd[1]: systemd-journal-flush.service changed dead -> start
[   10.973722] systemd[1]: Received SIGCHLD from PID 395 (mount).
[   10.973778] systemd[1]: Got SIGCHLD for process 395 (mount)
[   10.973879] systemd[1]: Child 395 died (code=exited, status=0/SUCCESS)
[   10.973888] systemd[1]: Child 395 belongs to boot.mount
[   10.973913] systemd[1]: boot.mount mount process exited, code=exited status=0
[   10.973935] systemd[1]: boot.mount changed mounting-done -> mounted
[   10.974099] systemd[1]: Accepted connection on private bus.
[   10.974445] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   10.980263] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.046822] systemd[1]: Accepted connection on private bus.
[   11.047436] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Manager.KillUnit() on /org/freedesktop/systemd1
[   11.047517] systemd-journald[124]: Received SIGUSR1
[   11.047794] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.148834] systemd[1]: Received SIGCHLD from PID 399 (systemd-tmpfile).
[   11.148894] systemd[1]: Got SIGCHLD for process 399 (systemd-tmpfile)
[   11.148998] systemd[1]: Child 399 died (code=exited, status=0/SUCCESS)
[   11.149008] systemd[1]: Child 399 belongs to systemd-tmpfiles-setup.service
[   11.149029] systemd[1]: systemd-tmpfiles-setup.service: main process exited, code=exited, status=0
[   11.164423] systemd[1]: systemd-tmpfiles-setup.service changed start -> exited
[   11.164444] systemd[1]: Job systemd-tmpfiles-setup.service/start finished, result=done
[   11.165215] systemd[1]: Got SIGCHLD for process 400 (systemctl)
[   11.165319] systemd[1]: Child 400 died (code=exited, status=0/SUCCESS)
[   11.165328] systemd[1]: Child 400 belongs to systemd-journal-flush.service
[   11.165344] systemd[1]: systemd-journal-flush.service: main process exited, code=exited, status=0
[   11.165660] systemd[1]: systemd-journal-flush.service changed start -> dead
[   11.167349] systemd[1]: Job systemd-journal-flush.service/start finished, result=done
[   11.168057] systemd[1]: sysinit.target changed dead -> active
[   11.168072] systemd[1]: Job sysinit.target/start finished, result=done
[   11.168769] systemd[1]: cups.socket changed dead -> listening
[   11.168785] systemd[1]: Job cups.socket/start finished, result=done
[   11.178471] systemd[1]: sshd.socket changed dead -> listening
[   11.178488] systemd[1]: Job sshd.socket/start finished, result=done
[   11.179175] systemd[1]: acpid.socket changed dead -> listening
[   11.179190] systemd[1]: Job acpid.socket/start finished, result=done
[   11.179868] systemd[1]: dbus.socket changed dead -> listening
[   11.179883] systemd[1]: Job dbus.socket/start finished, result=done
[   11.180586] systemd[1]: sockets.target changed dead -> active
[   11.180601] systemd[1]: Job sockets.target/start finished, result=done
[   11.181253] systemd[1]: systemd-tmpfiles-clean.timer changed dead -> waiting
[   11.181268] systemd[1]: Job systemd-tmpfiles-clean.timer/start finished, result=done
[   11.181968] systemd[1]: About to execute: /usr/sbin/ck-log-system-start
[   11.186814] systemd[1]: Forked /usr/sbin/ck-log-system-start as 404
[   11.187112] systemd[1]: console-kit-log-system-start.service changed dead -> start
[   11.187864] systemd[1]: About to execute: /usr/sbin/alsactl restore
[   11.195299] systemd[1]: Forked /usr/sbin/alsactl as 405
[   11.195446] systemd[1]: alsa-restore.service changed dead -> start
[   11.195491] systemd[1]: basic.target changed dead -> active
[   11.195505] systemd[1]: Job basic.target/start finished, result=done
[   11.198986] systemd[1]: About to execute: /sbin/dhcpcd -A -q -w eth0
[   11.206834] systemd[1]: Forked /sbin/dhcpcd as 406
[   11.206913] systemd[1]: dhcpcd at eth0.service changed dead -> start
[   11.290533] tg3 0000:09:00.0: irq 47 for MSI/MSI-X
[   11.325199] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   11.383877] systemd[1]: About to execute: /usr/sbin/acpid -f $ACPID_ARGS
[   11.396777] systemd[1]: Forked /usr/sbin/acpid as 410
[   11.397005] systemd[1]: acpid.service changed dead -> running
[   11.397024] systemd[1]: Job acpid.service/start finished, result=done
[   11.398453] systemd[1]: About to execute: /usr/sbin/in.tftpd -l -v -s /var/tftpboot
[   11.421433] systemd[1]: Forked /usr/sbin/in.tftpd as 413
[   11.421497] systemd[1]: tftpd.service changed dead -> start
[   11.458890] systemd[1]: Starting of sshdgenkeys.service requested but condition failed. Ignoring.
[   11.458903] systemd[1]: Job sshdgenkeys.service/start finished, result=done
[   11.459682] systemd[1]: About to execute: /usr/bin/install -d /var/run/laptop-mode-tools
[   11.466792] systemd[1]: Forked /usr/bin/install as 416
[   11.466857] systemd[1]: laptop-mode-tools.service changed dead -> start-pre
[   11.467624] systemd[1]: About to execute: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
[   11.490138] systemd[1]: Forked /usr/bin/dbus-daemon as 417
[   11.490370] systemd[1]: dbus.service changed dead -> running
[   11.490392] systemd[1]: Job dbus.service/start finished, result=done
[   11.492113] systemd[1]: About to execute: /usr/lib/systemd/systemd-logind
[   11.500112] systemd[1]: Forked /usr/lib/systemd/systemd-logind as 418
[   11.500265] systemd[1]: systemd-logind.service changed dead -> start
[   11.501045] systemd[1]: About to execute: /usr/lib/systemd/systemd-user-sessions start
[   11.504310] systemd[1]: Forked /usr/lib/systemd/systemd-user-sessions as 419
[   11.504456] systemd[1]: systemd-user-sessions.service changed dead -> start
[   11.504547] systemd[1]: Received SIGCHLD from PID 400 (n/a).
[   11.504614] systemd[1]: Got SIGCHLD for process 404 (ck-log-system-s)
[   11.504734] systemd[1]: Child 404 died (code=exited, status=0/SUCCESS)
[   11.504743] systemd[1]: Child 404 belongs to console-kit-log-system-start.service
[   11.504770] systemd[1]: console-kit-log-system-start.service: main process exited, code=exited, status=0
[   11.507624] systemd[1]: console-kit-log-system-start.service changed start -> exited
[   11.507642] systemd[1]: Job console-kit-log-system-start.service/start finished, result=done
[   11.508418] systemd[1]: Got SIGCHLD for process 405 (alsactl)
[   11.508523] systemd[1]: Child 405 died (code=exited, status=0/SUCCESS)
[   11.508531] systemd[1]: Child 405 belongs to alsa-restore.service
[   11.508557] systemd[1]: alsa-restore.service: main process exited, code=exited, status=0
[   11.508876] systemd[1]: alsa-restore.service changed start -> dead
[   11.510907] systemd[1]: Job alsa-restore.service/start finished, result=done
[   11.511632] systemd[1]: Running GC...
[   11.511940] systemd[1]: Accepted connection on private bus.
[   11.511964] systemd[1]: Incoming traffic on dbus.socket
[   11.511991] systemd[1]: dbus.socket changed listening -> running
[   11.512080] systemd[1]: Accepted connection on private bus.
[   11.512218] systemd[1]: Accepted connection on private bus.
[   11.512374] systemd[1]: Accepted connection on private bus.
[   11.513060] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.513183] systemd[1]: systemd-tmpfiles-setup.service: cgroup is empty
[   11.513836] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.513934] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.514041] systemd[1]: systemd-journal-flush.service: cgroup is empty
[   11.514122] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.514220] systemd[1]: alsa-restore.service: cgroup is empty
[   11.514302] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.514403] systemd[1]: console-kit-log-system-start.service: cgroup is empty
[   11.514482] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.514559] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.514635] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.614904] systemd[1]: Received SIGCHLD from PID 416 (install).
[   11.614967] systemd[1]: Got SIGCHLD for process 416 (install)
[   11.615081] systemd[1]: Child 416 died (code=exited, status=0/SUCCESS)
[   11.615091] systemd[1]: Child 416 belongs to laptop-mode-tools.service
[   11.615120] systemd[1]: laptop-mode-tools.service: control process exited, code=exited status=0
[   11.636819] systemd[1]: laptop-mode-tools.service running next control command for state start-pre
[   11.636848] systemd[1]: About to execute: /usr/bin/touch /var/run/laptop-mode-tools/enabled
[   11.656423] systemd[1]: Forked /usr/bin/touch as 424
[   11.656588] systemd[1]: Got SIGCHLD for process 413 (in.tftpd)
[   11.656753] systemd[1]: Child 413 died (code=exited, status=0/SUCCESS)
[   11.656763] systemd[1]: Child 413 belongs to tftpd.service
[   11.656789] systemd[1]: tftpd.service: control process exited, code=exited status=0
[   11.656875] systemd[1]: tftpd.service got final SIGCHLD for state start
[   11.657036] systemd[1]: Main PID guessed: 422
[   11.657167] systemd[1]: tftpd.service changed start -> running
[   11.657188] systemd[1]: Job tftpd.service/start finished, result=done
[   11.657962] systemd[1]: Got SIGCHLD for process 419 (systemd-user-se)
[   11.658075] systemd[1]: Child 419 died (code=exited, status=0/SUCCESS)
[   11.658084] systemd[1]: Child 419 belongs to systemd-user-sessions.service
[   11.658116] systemd[1]: systemd-user-sessions.service: main process exited, code=exited, status=0
[   11.658592] systemd[1]: systemd-user-sessions.service changed start -> exited
[   11.658609] systemd[1]: Job systemd-user-sessions.service/start finished, result=done
[   11.659968] systemd[1]: About to execute: /sbin/agetty --noclear tty1 38400
[   11.668885] systemd[1]: Forked /sbin/agetty as 425
[   11.669119] systemd[1]: getty at tty1.service changed dead -> running
[   11.669137] systemd[1]: Job getty at tty1.service/start finished, result=done
[   11.669870] systemd[1]: getty.target changed dead -> active
[   11.669885] systemd[1]: Job getty.target/start finished, result=done
[   11.671301] systemd[1]: About to execute: /usr/bin/slim -nodaemon
[   11.673639] systemd[1]: Forked /usr/bin/slim as 426
[   11.673832] systemd[1]: slim.service changed dead -> running
[   11.673850] systemd[1]: Job slim.service/start finished, result=done
[   11.674594] systemd[1]: Received SIGCHLD from PID 413 (n/a).
[   11.674742] systemd[1]: Accepted connection on private bus.
[   11.674843] systemd[1]: Accepted connection on private bus.
[   11.675489] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.675722] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.675929] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.676008] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.718375] systemd[1]: Received SIGCHLD from PID 424 (touch).
[   11.718433] systemd[1]: Got SIGCHLD for process 424 (touch)
[   11.718564] systemd[1]: Child 424 died (code=exited, status=0/SUCCESS)
[   11.718573] systemd[1]: Child 424 belongs to laptop-mode-tools.service
[   11.718607] systemd[1]: laptop-mode-tools.service: control process exited, code=exited status=0
[   11.721687] systemd[1]: laptop-mode-tools.service got final SIGCHLD for state start-pre
[   11.721777] systemd[1]: About to execute: /usr/sbin/laptop_mode auto
[   11.723949] systemd[1]: Forked /usr/sbin/laptop_mode as 429
[   11.724110] systemd[1]: laptop-mode-tools.service changed start-pre -> start
[   11.724259] systemd[1]: Accepted connection on private bus.
[   11.724356] systemd[1]: Accepted connection on private bus.
[   11.724809] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.724967] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   11.725117] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   11.725245] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   13.063635] systemd[1]: Received name :1.0 in reply to Hello
[   13.063671] systemd[1]: Successfully connected to system D-Bus bus 785f333cdfb9d9ca7a396fd1504f172d as :1.0
[   13.063981] systemd[1]: Successfully initialized API on the system bus
[   13.064011] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameAcquired() on /org/freedesktop/DBus
[   13.064960] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   13.064990] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameAcquired() on /org/freedesktop/DBus
[   13.065012] systemd[1]: Successfully acquired name.
[   13.065905] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   13.065932] systemd[1]: systemd-logind.service's D-Bus name org.freedesktop.login1 now registered by :1.1
[   13.066044] systemd[1]: systemd-logind.service changed start -> running
[   13.066071] systemd[1]: Job systemd-logind.service/start finished, result=done
[   14.409736] tg3 0000:09:00.0: eth0: Link is up at 1000 Mbps, full duplex
[   14.409743] tg3 0000:09:00.0: eth0: Flow control is on for TX and on for RX
[   14.409939] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   15.138930] systemd[1]: Received SIGCHLD from PID 406 (dhcpcd).
[   15.138991] systemd[1]: Got SIGCHLD for process 406 (dhcpcd)
[   15.139108] systemd[1]: Child 406 died (code=exited, status=0/SUCCESS)
[   15.139118] systemd[1]: Child 406 belongs to dhcpcd at eth0.service
[   15.139159] systemd[1]: dhcpcd at eth0.service: control process exited, code=exited status=0
[   15.139253] systemd[1]: dhcpcd at eth0.service got final SIGCHLD for state start
[   15.139312] systemd[1]: Main PID loaded: 888
[   15.139465] systemd[1]: dhcpcd at eth0.service changed start -> running
[   15.139483] systemd[1]: Job dhcpcd at eth0.service/start finished, result=done
[   15.139627] systemd[1]: network.target changed dead -> active
[   15.139641] systemd[1]: Job network.target/start finished, result=done
[   15.139826] systemd[1]: About to execute: /usr/sbin/smbd -F
[   15.146822] systemd[1]: Forked /usr/sbin/smbd as 889
[   15.147027] systemd[1]: smbd.service changed dead -> running
[   15.147045] systemd[1]: Job smbd.service/start finished, result=done
[   15.147292] systemd[1]: About to execute: /usr/sbin/nmbd -F
[   15.153501] systemd[1]: Forked /usr/sbin/nmbd as 890
[   15.153716] systemd[1]: nmbd.service changed dead -> running
[   15.153734] systemd[1]: Job nmbd.service/start finished, result=done
[   15.153986] systemd[1]: About to execute: /usr/bin/ntpd -g -u ntp:ntp
[   15.157241] systemd[1]: Forked /usr/bin/ntpd as 891
[   15.157307] systemd[1]: ntpd.service changed dead -> start
[   15.713548] systemd[1]: Received SIGCHLD from PID 891 (ntpd).
[   15.713613] systemd[1]: Got SIGCHLD for process 891 (ntpd)
[   15.713743] systemd[1]: Child 891 died (code=exited, status=0/SUCCESS)
[   15.713752] systemd[1]: Child 891 belongs to ntpd.service
[   15.713771] systemd[1]: ntpd.service: control process exited, code=exited status=0
[   15.713832] systemd[1]: ntpd.service got final SIGCHLD for state start
[   15.713984] systemd[1]: Main PID guessed: 958
[   15.714117] systemd[1]: ntpd.service changed start -> running
[   15.714135] systemd[1]: Job ntpd.service/start finished, result=done
[   16.553255] EXT4-fs (sda7): re-mounted. Opts: data=ordered,commit=60
[   16.639150] EXT4-fs (sda5): re-mounted. Opts: data=ordered,commit=60
[   16.642881] systemd[1]: Received SIGCHLD from PID 429 (laptop_mode).
[   16.642919] systemd[1]: Got SIGCHLD for process 429 (laptop_mode)
[   16.643011] systemd[1]: Child 429 died (code=exited, status=0/SUCCESS)
[   16.643017] systemd[1]: Child 429 belongs to laptop-mode-tools.service
[   16.643033] systemd[1]: laptop-mode-tools.service: main process exited, code=exited, status=0
[   16.663489] systemd[1]: laptop-mode-tools.service changed start -> exited
[   16.663509] systemd[1]: Job laptop-mode-tools.service/start finished, result=done
[   16.663670] systemd[1]: multi-user.target changed dead -> active
[   16.663685] systemd[1]: Job multi-user.target/start finished, result=done
[   16.663761] systemd[1]: graphical.target changed dead -> active
[   16.663769] systemd[1]: Job graphical.target/start finished, result=done
[   16.663867] systemd[1]: About to execute: /usr/lib/systemd/systemd-update-utmp runlevel
[   16.664839] systemd[1]: Forked /usr/lib/systemd/systemd-update-utmp as 999
[   16.664947] systemd[1]: systemd-update-utmp-runlevel.service changed dead -> start
[   16.665057] systemd[1]: Accepted connection on private bus.
[   16.665277] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   16.665352] systemd[1]: laptop-mode-tools.service: cgroup is empty
[   16.665410] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   17.586814] systemd[1]: Accepted connection on private bus.
[   17.587431] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Properties.Get() on /org/freedesktop/systemd1
[   17.587881] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Manager.GetUnit() on /org/freedesktop/systemd1
[   17.588161] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Properties.Get() on /org/freedesktop/systemd1/unit/graphical_2etarget
[   17.588517] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   17.588811] systemd[1]: Received SIGCHLD from PID 999 (systemd-update-).
[   17.588873] systemd[1]: Got SIGCHLD for process 999 (systemd-update-)
[   17.588997] systemd[1]: Child 999 died (code=exited, status=0/SUCCESS)
[   17.589006] systemd[1]: Child 999 belongs to systemd-update-utmp-runlevel.service
[   17.589024] systemd[1]: systemd-update-utmp-runlevel.service: main process exited, code=exited, status=0
[   17.589359] systemd[1]: systemd-update-utmp-runlevel.service changed start -> dead
[   17.592168] systemd[1]: Job systemd-update-utmp-runlevel.service/start finished, result=done
[   17.592366] systemd[1]: Startup finished in 4s 129ms 30us (kernel) + 13s 463ms 223us (userspace) = 17s 592ms 253us.
[   17.592634] systemd[1]: Accepted connection on private bus.
[   17.592947] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   17.593062] systemd[1]: systemd-update-utmp-runlevel.service: cgroup is empty
[   17.593154] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   18.159305] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 1)
[   18.179722] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 1)
[   18.179727] [drm] nouveau 0000:01:00.0: Output VGA-1 is running on CRTC 1 using output A
[   18.922782] systemd[1]: Incoming traffic on cups.socket
[   18.922803] systemd[1]: Trying to enqueue job cups.service/start/replace
[   18.923181] systemd[1]: Installed new job cups.service/start as 84
[   18.923202] systemd[1]: Enqueued job cups.service/start as 84
[   18.923223] systemd[1]: cups.socket changed listening -> running
[   18.923423] systemd[1]: About to execute: /usr/sbin/cupsd -f
[   18.930200] systemd[1]: Forked /usr/sbin/cupsd as 1006
[   18.930414] systemd[1]: cups.service changed dead -> running
[   18.930426] systemd[1]: Job cups.service/start finished, result=done
[   19.909889] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   19.910310] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   19.910319] systemd[1]: Got D-Bus activation request for colord.service
[   19.946100] systemd[1]: Trying to enqueue job colord.service/start/replace
[   19.946458] systemd[1]: Installed new job colord.service/start as 155
[   19.946479] systemd[1]: Enqueued job colord.service/start as 155
[   19.946628] systemd[1]: About to execute: /usr/lib/colord/colord
[   19.950362] systemd[1]: Forked /usr/lib/colord/colord as 1008
[   19.950516] systemd[1]: colord.service changed dead -> start
[   20.693541] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   20.695302] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   20.695323] systemd[1]: colord.service's D-Bus name org.freedesktop.ColorManager now registered by :1.3
[   20.695426] systemd[1]: colord.service changed start -> running
[   20.695444] systemd[1]: Job colord.service/start finished, result=done
[   21.303391] systemd[1]: Got direct mount request on /mnt/be, triggered by 1008 (colord)
[   21.303419] systemd[1]: Trying to enqueue job mnt-be.mount/start/replace
[   21.303453] systemd[1]: Installed new job mnt-be.mount/start as 226
[   21.303460] systemd[1]: Installed new job remote-fs-pre.target/start as 229
[   21.303471] systemd[1]: Enqueued job mnt-be.mount/start as 226
[   21.303477] systemd[1]: mnt-be.automount changed waiting -> running
[   21.303504] systemd[1]: remote-fs-pre.target changed dead -> active
[   21.303513] systemd[1]: Job remote-fs-pre.target/start finished, result=done
[   21.303564] systemd[1]: About to execute: /bin/mount //192.168.1.37/be /mnt/be -t cifs -o credentials=/home/mlo/.samba/credentials,noauto,user,x-systemd.automount,x-systemd.device-timeout=60
[   21.330127] systemd[1]: Forked /bin/mount as 1011
[   21.330175] systemd[1]: mnt-be.mount changed dead -> mounting
[   21.397312] FS-Cache: Netfs 'cifs' registered for caching
[   21.397484] Key type cifs.spnego registered
[   21.397500] Key type cifs.idmap registered
[   21.398196] CIFS: no cache= option specified, using "cache=loose". This default will change to "cache=strict" in 3.7.
[   21.434210] CIFS VFS: default security mechanism requested.  The default security mechanism will be upgraded from ntlm to ntlmv2 in kernel release 3.3
[   21.784323] systemd[1]: mnt-be.mount changed mounting -> mounting-done
[   21.784343] systemd[1]: Job mnt-be.mount/start finished, result=done
[   21.784523] systemd[1]: Received SIGCHLD from PID 1011 (mount).
[   21.784584] systemd[1]: Got SIGCHLD for process 1011 (mount)
[   21.784708] systemd[1]: Child 1011 died (code=exited, status=0/SUCCESS)
[   21.784717] systemd[1]: Child 1011 belongs to mnt-be.mount
[   21.784733] systemd[1]: mnt-be.mount mount process exited, code=exited status=0
[   21.784772] systemd[1]: Sending success.
[   21.784800] systemd[1]: mnt-be.mount changed mounting-done -> mounted
[   21.785656] systemd[1]: Accepted connection on private bus.
[   21.786044] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   21.799143] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   21.799256] systemd[1]: Got direct mount request on /mnt/echange, triggered by 1008 (colord)
[   21.799286] systemd[1]: Trying to enqueue job mnt-echange.mount/start/replace
[   21.799331] systemd[1]: Installed new job mnt-echange.mount/start as 232
[   21.799351] systemd[1]: Enqueued job mnt-echange.mount/start as 232
[   21.799361] systemd[1]: mnt-echange.automount changed waiting -> running
[   21.799438] systemd[1]: About to execute: /bin/mount //192.168.1.37/echange /mnt/echange -t cifs -o credentials=/home/mlo/.samba/credentials,noauto,user,x-systemd.automount,x-systemd.device-timeout=60
[   21.803480] systemd[1]: Forked /bin/mount as 1055
[   21.803529] systemd[1]: mnt-echange.mount changed dead -> mounting
[   22.067198] systemd[1]: mnt-echange.mount changed mounting -> mounting-done
[   22.067217] systemd[1]: Job mnt-echange.mount/start finished, result=done
[   22.067373] systemd[1]: Received SIGCHLD from PID 1055 (mount).
[   22.067435] systemd[1]: Got SIGCHLD for process 1055 (mount)
[   22.067549] systemd[1]: Child 1055 died (code=exited, status=0/SUCCESS)
[   22.067558] systemd[1]: Child 1055 belongs to mnt-echange.mount
[   22.067574] systemd[1]: mnt-echange.mount mount process exited, code=exited status=0
[   22.067611] systemd[1]: Sending success.
[   22.067640] systemd[1]: mnt-echange.mount changed mounting-done -> mounted
[   22.068338] systemd[1]: Accepted connection on private bus.
[   22.068772] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   22.090243] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   22.090353] systemd[1]: Got direct mount request on /mnt/fab, triggered by 1008 (colord)
[   22.090382] systemd[1]: Trying to enqueue job mnt-fab.mount/start/replace
[   22.090427] systemd[1]: Installed new job mnt-fab.mount/start as 238
[   22.090446] systemd[1]: Enqueued job mnt-fab.mount/start as 238
[   22.090456] systemd[1]: mnt-fab.automount changed waiting -> running
[   22.090530] systemd[1]: About to execute: /bin/mount //192.168.1.37/fab /mnt/fab -t cifs -o credentials=/home/mlo/.samba/credentials,noauto,user,x-systemd.automount,x-systemd.device-timeout=60
[   22.096837] systemd[1]: Forked /bin/mount as 1059
[   22.096877] systemd[1]: mnt-fab.mount changed dead -> mounting
[   22.270501] systemd[1]: mnt-fab.mount changed mounting -> mounting-done
[   22.270519] systemd[1]: Job mnt-fab.mount/start finished, result=done
[   22.270674] systemd[1]: Received SIGCHLD from PID 1059 (mount).
[   22.270736] systemd[1]: Got SIGCHLD for process 1059 (mount)
[   22.270852] systemd[1]: Child 1059 died (code=exited, status=0/SUCCESS)
[   22.270861] systemd[1]: Child 1059 belongs to mnt-fab.mount
[   22.270876] systemd[1]: mnt-fab.mount mount process exited, code=exited status=0
[   22.270913] systemd[1]: Sending success.
[   22.270941] systemd[1]: mnt-fab.mount changed mounting-done -> mounted
[   22.271622] systemd[1]: Accepted connection on private bus.
[   22.272012] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   22.274475] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   22.274592] systemd[1]: Got direct mount request on /mnt/fanny_d, triggered by 1008 (colord)
[   22.274622] systemd[1]: Trying to enqueue job mnt-fanny_d.mount/start/replace
[   22.274668] systemd[1]: Installed new job mnt-fanny_d.mount/start as 244
[   22.274687] systemd[1]: Enqueued job mnt-fanny_d.mount/start as 244
[   22.274697] systemd[1]: mnt-fanny_d.automount changed waiting -> running
[   22.274769] systemd[1]: About to execute: /bin/mount //ug098/d$ /mnt/fanny_d -t cifs -o credentials=/home/mlo/.samba/credentials,noauto,user,x-systemd.automount,x-systemd.device-timeout=60
[   22.284158] systemd[1]: Forked /bin/mount as 1063
[   22.284206] systemd[1]: mnt-fanny_d.mount changed dead -> mounting
[   22.290362] systemd[1]: Received SIGCHLD from PID 1063 (mount).
[   22.290424] systemd[1]: Got SIGCHLD for process 1063 (mount)
[   22.290546] systemd[1]: Child 1063 died (code=exited, status=1/FAILURE)
[   22.290555] systemd[1]: Child 1063 belongs to mnt-fanny_d.mount
[   22.290573] systemd[1]: mnt-fanny_d.mount mount process exited, code=exited status=1
[   22.290619] systemd[1]: Sending failure: No such device
[   22.290649] systemd[1]: mnt-fanny_d.mount changed mounting -> failed
[   22.292586] systemd[1]: Job mnt-fanny_d.mount/start finished, result=failed
[   22.292627] systemd[1]: Unit mnt-fanny_d.mount entered failed state.
[   22.292757] systemd[1]: Accepted connection on private bus.
[   22.293070] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[   22.293273] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[   22.350126] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   22.350136] systemd[1]: Got D-Bus activation request for colord-sane.service
[   22.380836] systemd[1]: Trying to enqueue job colord-sane.service/start/replace
[   22.381189] systemd[1]: Installed new job colord-sane.service/start as 250
[   22.381211] systemd[1]: Enqueued job colord-sane.service/start as 250
[   22.381359] systemd[1]: About to execute: /usr/lib/colord/colord-sane
[   22.386826] systemd[1]: Forked /usr/lib/colord/colord-sane as 1067
[   22.386989] systemd[1]: colord-sane.service changed dead -> start
[   22.811649] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   22.812701] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   22.812713] systemd[1]: colord-sane.service's D-Bus name org.freedesktop.colord-sane now registered by :1.4
[   22.812786] systemd[1]: colord-sane.service changed start -> running
[   22.812797] systemd[1]: Job colord-sane.service/start finished, result=done
[   22.960430] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[   22.999153] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[   23.035805] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[   25.486156] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   25.487863] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   25.487879] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.Avahi.service
[   25.487997] systemd[1]: Failed to load configuration for dbus-org.freedesktop.Avahi.service: No such file or directory
[   25.488010] systemd[1]: Trying to enqueue job dbus-org.freedesktop.Avahi.service/start/replace
[   25.488050] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.Avahi.service: Invalid argument
[   25.489492] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   27.302166] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   27.302204] systemd[1]: Running GC...
[   27.302217] systemd[1]: Collecting dbus-org.freedesktop.Avahi.service
[   27.303970] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   27.303986] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.Avahi.service
[   27.304073] systemd[1]: Failed to load configuration for dbus-org.freedesktop.Avahi.service: No such file or directory
[   27.304085] systemd[1]: Trying to enqueue job dbus-org.freedesktop.Avahi.service/start/replace
[   27.304109] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.Avahi.service: Invalid argument
[   27.325350] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.224512] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.234121] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.236038] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.236520] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   28.236534] systemd[1]: Got D-Bus activation request for console-kit-daemon.service
[   28.248456] systemd[1]: Trying to enqueue job console-kit-daemon.service/start/replace
[   28.248821] systemd[1]: Installed new job console-kit-daemon.service/start as 321
[   28.248842] systemd[1]: Enqueued job console-kit-daemon.service/start as 321
[   28.248987] systemd[1]: About to execute: /usr/sbin/console-kit-daemon --no-daemon
[   28.253537] systemd[1]: Forked /usr/sbin/console-kit-daemon as 1077
[   28.253675] systemd[1]: console-kit-daemon.service changed dead -> start
[   28.275303] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.355621] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.405101] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.406042] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   28.406051] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.Avahi.service
[   28.406068] systemd[1]: Trying to enqueue job dbus-org.freedesktop.Avahi.service/start/replace
[   28.406095] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.Avahi.service: Invalid argument
[   28.406911] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.440607] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.531035] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.536425] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   28.536447] systemd[1]: console-kit-daemon.service's D-Bus name org.freedesktop.ConsoleKit now registered by :1.9
[   28.536603] systemd[1]: console-kit-daemon.service changed start -> running
[   28.536621] systemd[1]: Job console-kit-daemon.service/start finished, result=done
[   28.943120] systemd[1]: Received SIGCHLD from PID 1160 (dbus-launch).
[   28.943186] systemd[1]: Got SIGCHLD for process 1160 (dbus-launch)
[   28.943296] systemd[1]: Child 1160 died (code=exited, status=0/SUCCESS)
[   29.488774] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   29.489637] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   29.489646] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.Avahi.service
[   29.489662] systemd[1]: Trying to enqueue job dbus-org.freedesktop.Avahi.service/start/replace
[   29.489683] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.Avahi.service: Invalid argument
[   30.649902] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 1)
[   30.670206] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 1)
[   30.670211] [drm] nouveau 0000:01:00.0: Output VGA-1 is running on CRTC 1 using output A
[   31.787289] systemd[1]: Received SIGCHLD from PID 1178 (sh).
[   31.787357] systemd[1]: Got SIGCHLD for process 1178 (sh)
[   31.787467] systemd[1]: Child 1178 died (code=exited, status=0/SUCCESS)
[   32.032553] systemd[1]: Received SIGCHLD from PID 1192 (xbindkeys).
[   32.032631] systemd[1]: Got SIGCHLD for process 1183 (xbindkeys)
[   32.032745] systemd[1]: Child 1183 died (code=exited, status=0/SUCCESS)
[   32.032800] systemd[1]: Got SIGCHLD for process 1192 (xbindkeys)
[   32.032889] systemd[1]: Child 1192 died (code=exited, status=0/SUCCESS)
[   38.243558] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   38.243595] systemd[1]: Running GC...
[   38.243609] systemd[1]: Collecting dbus-org.freedesktop.Avahi.service
[   38.524769] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   38.524789] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.NetworkManager.service
[   38.524913] systemd[1]: Failed to load configuration for dbus-org.freedesktop.NetworkManager.service: No such file or directory
[   38.524926] systemd[1]: Trying to enqueue job dbus-org.freedesktop.NetworkManager.service/start/replace
[   38.524951] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.NetworkManager.service: Invalid argument
[   38.528687] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   38.528698] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.NetworkManager.service
[   38.528713] systemd[1]: Trying to enqueue job dbus-org.freedesktop.NetworkManager.service/start/replace
[   38.528732] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.NetworkManager.service: Invalid argument
[   38.529233] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   38.529241] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.NetworkManager.service
[   38.529251] systemd[1]: Trying to enqueue job dbus-org.freedesktop.NetworkManager.service/start/replace
[   38.529265] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.NetworkManager.service: Invalid argument
[   39.001134] systemd[1]: run-user-5143-gvfs.mount changed dead -> mounted
[   40.354943] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   40.357961] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   40.357978] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.NetworkManager.service
[   40.358002] systemd[1]: Trying to enqueue job dbus-org.freedesktop.NetworkManager.service/start/replace
[   40.358037] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.NetworkManager.service: Invalid argument
[   41.078773] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   41.597670] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   41.598738] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   41.598755] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.NetworkManager.service
[   41.598779] systemd[1]: Trying to enqueue job dbus-org.freedesktop.NetworkManager.service/start/replace
[   41.598813] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.NetworkManager.service: Invalid argument
[   44.545046] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[   49.599973] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Activator.ActivationRequest() on /org/freedesktop/DBus
[   49.599989] systemd[1]: Got D-Bus activation request for dbus-org.freedesktop.NetworkManager.service
[   49.600032] systemd[1]: Trying to enqueue job dbus-org.freedesktop.NetworkManager.service/start/replace
[   49.600055] systemd[1]: D-Bus activation failed for dbus-org.freedesktop.NetworkManager.service: Invalid argument
[   49.600145] systemd[1]: Running GC...
[   49.600161] systemd[1]: Collecting dbus-org.freedesktop.NetworkManager.service
[  148.077747] systemd[1]: Received SIGCHLD from PID 1075 (gnome-keyring-d).
[  148.077814] systemd[1]: Got SIGCHLD for process 1075 (gnome-keyring-d)
[  148.077928] systemd[1]: Child 1075 died (code=exited, status=0/SUCCESS)
[  228.363303] systemd[1]: Received SIGCHLD from PID 1475 (gpg).
[  228.363415] systemd[1]: Got SIGCHLD for process 1475 (gpg)
[  228.363533] systemd[1]: Child 1475 died (code=exited, status=0/SUCCESS)
[  228.409797] systemd[1]: Received SIGCHLD from PID 1477 (gpgsm).
[  228.409838] systemd[1]: Got SIGCHLD for process 1477 (gpgsm)
[  228.409906] systemd[1]: Child 1477 died (code=exited, status=0/SUCCESS)
[  228.419909] systemd[1]: Received SIGCHLD from PID 1479 (gpgconf).
[  228.419970] systemd[1]: Got SIGCHLD for process 1479 (gpgconf)
[  228.420116] systemd[1]: Child 1479 died (code=exited, status=0/SUCCESS)
[  228.423538] systemd[1]: Received SIGCHLD from PID 1481 (gpgconf).
[  228.423597] systemd[1]: Got SIGCHLD for process 1481 (gpgconf)
[  228.423693] systemd[1]: Child 1481 died (code=exited, status=0/SUCCESS)
[  228.436585] systemd[1]: Received SIGCHLD from PID 1483 (gpg).
[  228.436684] systemd[1]: Got SIGCHLD for process 1483 (gpg)
[  228.436798] systemd[1]: Child 1483 died (code=exited, status=0/SUCCESS)
[  228.570548] systemd[1]: Received SIGCHLD from PID 1485 (gpg).
[  228.570602] systemd[1]: Got SIGCHLD for process 1485 (gpg)
[  228.570694] systemd[1]: Child 1485 died (code=exited, status=0/SUCCESS)
[  228.582973] systemd[1]: Received SIGCHLD from PID 1487 (gpg).
[  228.583037] systemd[1]: Got SIGCHLD for process 1487 (gpg)
[  228.583148] systemd[1]: Child 1487 died (code=exited, status=0/SUCCESS)
[  228.600309] systemd[1]: Received SIGCHLD from PID 1489 (gpg).
[  228.600349] systemd[1]: Got SIGCHLD for process 1489 (gpg)
[  228.600419] systemd[1]: Child 1489 died (code=exited, status=0/SUCCESS)
[  228.876991] systemd[1]: Got direct mount request on /mnt/fanny_d, triggered by 1473 (pacman)
[  228.877028] systemd[1]: Trying to enqueue job mnt-fanny_d.mount/start/replace
[  228.877072] systemd[1]: Installed new job mnt-fanny_d.mount/start as 392
[  228.877091] systemd[1]: Enqueued job mnt-fanny_d.mount/start as 392
[  228.877185] systemd[1]: About to execute: /bin/mount //ug098/d$ /mnt/fanny_d -t cifs -o credentials=/home/mlo/.samba/credentials,noauto,user,x-systemd.automount,x-systemd.device-timeout=60
[  228.880815] systemd[1]: Forked /bin/mount as 1490
[  228.880852] systemd[1]: mnt-fanny_d.mount changed failed -> mounting
[  228.886849] systemd[1]: Received SIGCHLD from PID 1490 (mount).
[  228.886915] systemd[1]: Got SIGCHLD for process 1490 (mount)
[  228.887043] systemd[1]: Child 1490 died (code=exited, status=1/FAILURE)
[  228.887053] systemd[1]: Child 1490 belongs to mnt-fanny_d.mount
[  228.887070] systemd[1]: mnt-fanny_d.mount mount process exited, code=exited status=1
[  228.887117] systemd[1]: Sending failure: No such device
[  228.887146] systemd[1]: mnt-fanny_d.mount changed mounting -> failed
[  228.888585] systemd[1]: Job mnt-fanny_d.mount/start finished, result=failed
[  228.888631] systemd[1]: Unit mnt-fanny_d.mount entered failed state.
[  228.888759] systemd[1]: Accepted connection on private bus.
[  228.888852] systemd[1]: Got direct mount request on /proc/sys/fs/binfmt_misc, triggered by 1473 (pacman)
[  228.888892] systemd[1]: Trying to enqueue job proc-sys-fs-binfmt_misc.mount/start/replace
[  228.888927] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.mount/start as 398
[  228.888946] systemd[1]: Enqueued job proc-sys-fs-binfmt_misc.mount/start as 398
[  228.888957] systemd[1]: proc-sys-fs-binfmt_misc.automount changed waiting -> running
[  228.889024] systemd[1]: About to execute: /bin/mount binfmt_misc /proc/sys/fs/binfmt_misc -t binfmt_misc
[  228.893472] systemd[1]: Forked /bin/mount as 1494
[  228.893522] systemd[1]: proc-sys-fs-binfmt_misc.mount changed dead -> mounting
[  228.895754] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  228.896800] systemd[1]: proc-sys-fs-binfmt_misc.mount changed mounting -> mounting-done
[  228.896818] systemd[1]: Job proc-sys-fs-binfmt_misc.mount/start finished, result=done
[  228.896948] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  228.897081] systemd[1]: Received SIGCHLD from PID 1494 (mount).
[  228.897144] systemd[1]: Got SIGCHLD for process 1494 (mount)
[  228.897266] systemd[1]: Child 1494 died (code=exited, status=0/SUCCESS)
[  228.897276] systemd[1]: Child 1494 belongs to proc-sys-fs-binfmt_misc.mount
[  228.897291] systemd[1]: proc-sys-fs-binfmt_misc.mount mount process exited, code=exited status=0
[  228.897333] systemd[1]: Sending success.
[  228.897361] systemd[1]: proc-sys-fs-binfmt_misc.mount changed mounting-done -> mounted
[  228.899100] systemd[1]: Accepted connection on private bus.
[  228.899480] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  228.900401] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  239.945913] systemd[1]: Received SIGCHLD from PID 1503 (yaourt).
[  239.945958] systemd[1]: Got SIGCHLD for process 1503 (yaourt)
[  239.946028] systemd[1]: Child 1503 died (code=exited, status=0/SUCCESS)
[  239.946042] systemd[1]: Running GC...
[  255.227029] systemd[1]: Accepted connection on private bus.
[  255.227408] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Manager.Reload() on /org/freedesktop/systemd1
[  255.227433] systemd[1]: Reloading.
[  255.227464] systemd[1]: Serializing state to /run/systemd/dump-1-IeMKFH
[  255.230944] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 1514
[  255.231125] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-system-update-generator as 1515
[  255.231303] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-getty-generator as 1516
[  255.231476] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 1517
[  255.232407] systemd[1]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator exited successfully.
[  255.232429] systemd[1]: /usr/lib/systemd/system-generators/systemd-system-update-generator exited successfully.
[  255.232914] systemd[1]: /usr/lib/systemd/system-generators/systemd-getty-generator exited successfully.
[  255.234634] systemd[1]: /usr/lib/systemd/system-generators/systemd-fstab-generator exited successfully.
[  255.234987] systemd[1]: Looking for unit files in:
[  255.234992] systemd[1]: 	/etc/systemd/system
[  255.234995] systemd[1]: 	/run/systemd/generator
[  255.234998] systemd[1]: 	/usr/lib/systemd/system
[  255.235002] systemd[1]: Disabled SysV init scripts and rcN.d links support
[  255.237086] systemd[1]: Failed to load configuration for syslog.service: No such file or directory
[  255.238663] systemd[1]: Failed to load configuration for plymouth-start.service: No such file or directory
[  255.239337] systemd[1]: Failed to load configuration for rc-local.service: No such file or directory
[  255.239348] systemd[1]: Failed to load configuration for plymouth-quit-wait.service: No such file or directory
[  255.247079] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
[  255.250533] systemd[1]: Deserializing state...
[  255.252722] systemd[1]: sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device changed dead -> plugged
[  255.252732] systemd[1]: sound.target changed dead -> active
[  255.252742] systemd[1]: systemd-journald.socket changed dead -> running
[  255.252748] systemd[1]: sockets.target changed dead -> active
[  255.252756] systemd[1]: systemd-journald.service changed dead -> running
[  255.252763] systemd[1]: local-fs.target changed dead -> active
[  255.252768] systemd[1]: remote-fs.target changed dead -> active
[  255.252775] systemd[1]: systemd-user-sessions.service changed dead -> exited
[  255.252780] systemd[1]: basic.target changed dead -> active
[  255.252786] systemd[1]: sysinit.target changed dead -> active
[  255.252810] systemd[1]: systemd-tmpfiles-clean.timer changed dead -> waiting
[  255.252818] systemd[1]: console-kit-log-system-start.service changed dead -> exited
[  255.252825] systemd[1]: graphical.target changed dead -> active
[  255.252830] systemd[1]: multi-user.target changed dead -> active
[  255.252836] systemd[1]: slim.service changed dead -> running
[  255.252843] systemd[1]: dhcpcd at eth0.service changed dead -> running
[  255.252849] systemd[1]: acpid.service changed dead -> running
[  255.252855] systemd[1]: tftpd.service changed dead -> running
[  255.252861] systemd[1]: smbd.service changed dead -> running
[  255.252866] systemd[1]: nmbd.service changed dead -> running
[  255.252872] systemd[1]: laptop-mode-tools.service changed dead -> exited
[  255.252878] systemd[1]: ntpd.service changed dead -> running
[  255.252884] systemd[1]: dbus.service changed dead -> running
[  255.252891] systemd[1]: systemd-logind.service changed dead -> running
[  255.252896] systemd[1]: getty.target changed dead -> active
[  255.252965] systemd[1]: systemd-ask-password-wall.path changed dead -> waiting
[  255.252974] systemd[1]: getty at tty1.service changed dead -> running
[  255.252981] systemd[1]: dbus.socket changed dead -> running
[  255.252986] systemd[1]: network.target changed dead -> active
[  255.252996] systemd[1]: acpid.socket changed dead -> listening
[  255.253002] systemd[1]: swap.target changed dead -> active
[  255.253008] systemd[1]: systemd-udev-trigger.service changed dead -> exited
[  255.253013] systemd[1]: systemd-sysctl.service changed dead -> exited
[  255.253020] systemd[1]: systemd-modules-load.service changed dead -> exited
[  255.253025] systemd[1]: cryptsetup.target changed dead -> active
[  255.253032] systemd[1]: dev-hugepages.mount changed dead -> mounted
[  255.253038] systemd[1]: sys-fs-fuse-connections.mount changed dead -> mounted
[  255.253044] systemd[1]: systemd-udevd.service changed dead -> running
[  255.253082] systemd[1]: systemd-ask-password-console.path changed dead -> waiting
[  255.253089] systemd[1]: dev-mqueue.mount changed dead -> mounted
[  255.253095] systemd[1]: systemd-tmpfiles-setup.service changed dead -> exited
[  255.253101] systemd[1]: sys-kernel-debug.mount changed dead -> mounted
[  255.253107] systemd[1]: systemd-vconsole-setup.service changed dead -> exited
[  255.253116] systemd[1]: proc-sys-fs-binfmt_misc.automount changed dead -> running
[  255.253122] systemd[1]: proc-sys-fs-binfmt_misc.mount changed dead -> mounted
[  255.253132] systemd[1]: systemd-udevd-control.socket changed dead -> listening
[  255.253139] systemd[1]: systemd-udevd-kernel.socket changed dead -> running
[  255.253144] systemd[1]: systemd-remount-fs.service changed dead -> exited
[  255.253150] systemd[1]: local-fs-pre.target changed dead -> active
[  255.253158] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap changed dead -> active
[  255.253164] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.device changed dead -> plugged
[  255.253173] systemd[1]: mnt-fanny_d.automount changed dead -> running
[  255.253181] systemd[1]: mnt-fab.automount changed dead -> running
[  255.253189] systemd[1]: mnt-be.automount changed dead -> running
[  255.253197] systemd[1]: mnt-echange.automount changed dead -> running
[  255.253203] systemd[1]: mnt-echange.mount changed dead -> mounted
[  255.253209] systemd[1]: remote-fs-pre.target changed dead -> active
[  255.253214] systemd[1]: mnt-be.mount changed dead -> mounted
[  255.253220] systemd[1]: mnt-fab.mount changed dead -> mounted
[  255.253226] systemd[1]: mnt-fanny_d.mount changed dead -> failed
[  255.253232] systemd[1]: mnt-windows_c.mount changed dead -> mounted
[  255.253238] systemd[1]: -.mount changed dead -> mounted
[  255.253243] systemd[1]: boot.mount changed dead -> mounted
[  255.253248] systemd[1]: tmp.mount changed dead -> mounted
[  255.253255] systemd[1]: dev-disk-by\x2duuid-0219f1e9\x2d5c3d\x2d496e\x2dba93\x2d03b6a9bdccd4.device changed dead -> plugged
[  255.253260] systemd[1]: dev-sda1.device changed dead -> plugged
[  255.253266] systemd[1]: cups.socket changed dead -> running
[  255.253275] systemd[1]: sshd.socket changed dead -> listening
[  255.253284] systemd[1]: systemd-initctl.socket changed dead -> listening
[  255.253292] systemd[1]: systemd-shutdownd.socket changed dead -> listening
[  255.253299] systemd[1]: cups.service changed dead -> running
[  255.253338] systemd[1]: sys-devices-pci0000:00-0000:00:1c.1-0000:0c:00.0-net-wlan0.device changed dead -> plugged
[  255.253347] systemd[1]: sys-devices-pci0000:00-0000:00:1c.2-0000:09:00.0-net-eth0.device changed dead -> plugged
[  255.253353] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device changed dead -> plugged
[  255.253359] systemd[1]: dev-sda.device changed dead -> plugged
[  255.253364] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ.device changed dead -> plugged
[  255.253370] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe.device changed dead -> plugged
[  255.253377] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device changed dead -> plugged
[  255.253383] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart1.device changed dead -> plugged
[  255.253389] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart1.device changed dead -> plugged
[  255.253396] systemd[1]: dev-disk-by\x2dlabel-OS.device changed dead -> plugged
[  255.253402] systemd[1]: dev-disk-by\x2duuid-66CAF559CAF52649.device changed dead -> plugged
[  255.253408] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device changed dead -> plugged
[  255.253413] systemd[1]: dev-sda2.device changed dead -> plugged
[  255.253420] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart2.device changed dead -> plugged
[  255.253425] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart2.device changed dead -> plugged
[  255.253432] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device changed dead -> plugged
[  255.253439] systemd[1]: dev-sda5.device changed dead -> plugged
[  255.253445] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart5.device changed dead -> plugged
[  255.253451] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart5.device changed dead -> plugged
[  255.253457] systemd[1]: dev-disk-by\x2dlabel-\x5cx2fboot.device changed dead -> plugged
[  255.253463] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device changed dead -> plugged
[  255.253468] systemd[1]: dev-sda6.device changed dead -> plugged
[  255.253475] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.device changed dead -> plugged
[  255.253481] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.device changed dead -> plugged
[  255.253488] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device changed dead -> plugged
[  255.253493] systemd[1]: dev-sda7.device changed dead -> plugged
[  255.253499] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart7.device changed dead -> plugged
[  255.253505] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart7.device changed dead -> plugged
[  255.253511] systemd[1]: dev-disk-by\x2dlabel-\x5cx2f.device changed dead -> plugged
[  255.253519] systemd[1]: dev-disk-by\x2duuid-f237ff37\x2d4b97\x2d4868\x2d812f\x2d643743616af7.device changed dead -> plugged
[  255.253525] systemd[1]: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device changed dead -> plugged
[  255.253530] systemd[1]: dev-sr0.device changed dead -> plugged
[  255.253535] systemd[1]: dev-cdrom.device changed dead -> plugged
[  255.253541] systemd[1]: dev-disk-by\x2did-ata\x2dSONY_DVD\x2b_\x2dRW_DW\x2dQ58A.device changed dead -> plugged
[  255.253547] systemd[1]: sys-devices-platform-serial8250-tty-ttyS1.device changed dead -> plugged
[  255.253552] systemd[1]: dev-ttyS1.device changed dead -> plugged
[  255.253558] systemd[1]: sys-devices-platform-serial8250-tty-ttyS2.device changed dead -> plugged
[  255.253564] systemd[1]: dev-ttyS2.device changed dead -> plugged
[  255.253569] systemd[1]: sys-devices-platform-serial8250-tty-ttyS3.device changed dead -> plugged
[  255.253574] systemd[1]: dev-ttyS3.device changed dead -> plugged
[  255.253580] systemd[1]: sys-devices-pnp0-00:0c-tty-ttyS0.device changed dead -> plugged
[  255.253585] systemd[1]: dev-ttyS0.device changed dead -> plugged
[  255.253590] systemd[1]: sys-module-fuse.device changed dead -> plugged
[  255.253598] systemd[1]: run-user-5143-gvfs.mount changed dead -> mounted
[  255.253603] systemd[1]: dev-sda6.swap changed dead -> active
[  255.253610] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap changed dead -> active
[  255.253616] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap changed dead -> active
[  255.253622] systemd[1]: colord.service changed dead -> running
[  255.253628] systemd[1]: colord-sane.service changed dead -> running
[  255.253634] systemd[1]: console-kit-daemon.service changed dead -> running
[  255.253640] systemd[1]: Closing left-over fd 53
[  255.253645] systemd[1]: Closing left-over fd 54
[  255.254951] systemd[1]: Running GC...
[  255.254989] systemd[1]: Collecting sshd at 0.service
[  255.256067] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  255.256130] systemd[1]: Received SIGCHLD from PID 1515 (n/a).
[  269.432280] systemd[1]: Accepted connection on private bus.
[  269.432309] systemd[1]: Running GC...
[  269.434520] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Manager.StartUnit() on /org/freedesktop/systemd1
[  269.452998] systemd[1]: Trying to enqueue job poweroff.target/start/replace
[  269.453384] systemd[1]: Installed new job poweroff.target/start as 401
[  269.453397] systemd[1]: Installed new job systemd-poweroff.service/start as 402
[  269.453410] systemd[1]: Installed new job shutdown.target/start as 403
[  269.453419] systemd[1]: Installed new job systemd-update-utmp-shutdown.service/start as 404
[  269.453428] systemd[1]: Installed new job systemd-random-seed-save.service/start as 407
[  269.453436] systemd[1]: Installed new job alsa-store.service/start as 408
[  269.453446] systemd[1]: Installed new job sound.target/stop as 409
[  269.453455] systemd[1]: Installed new job systemd-user-sessions.service/stop as 411
[  269.453465] systemd[1]: Installed new job basic.target/stop as 412
[  269.453473] systemd[1]: Installed new job slim.service/stop as 413
[  269.453482] systemd[1]: Installed new job multi-user.target/stop as 414
[  269.453490] systemd[1]: Installed new job graphical.target/stop as 415
[  269.453498] systemd[1]: Installed new job getty at tty1.service/stop as 417
[  269.453507] systemd[1]: Installed new job systemd-logind.service/stop as 418
[  269.453516] systemd[1]: Installed new job dbus.service/stop as 419
[  269.453524] systemd[1]: Installed new job ntpd.service/stop as 420
[  269.453533] systemd[1]: Installed new job laptop-mode-tools.service/stop as 421
[  269.453541] systemd[1]: Installed new job nmbd.service/stop as 422
[  269.453549] systemd[1]: Installed new job smbd.service/stop as 423
[  269.453557] systemd[1]: Installed new job tftpd.service/stop as 425
[  269.453565] systemd[1]: Installed new job acpid.service/stop as 426
[  269.453574] systemd[1]: Installed new job dhcpcd at eth0.service/stop as 427
[  269.453582] systemd[1]: Installed new job cups.service/stop as 429
[  269.453591] systemd[1]: Installed new job colord.service/stop as 430
[  269.453599] systemd[1]: Installed new job colord-sane.service/stop as 431
[  269.453608] systemd[1]: Installed new job console-kit-daemon.service/stop as 432
[  269.453616] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/stop as 434
[  269.453625] systemd[1]: Installed new job systemd-ask-password-wall.path/stop as 441
[  269.453633] systemd[1]: Installed new job getty.target/stop as 442
[  269.453641] systemd[1]: Installed new job dbus.socket/stop as 443
[  269.453653] systemd[1]: Installed new job network.target/stop as 445
[  269.453661] systemd[1]: Installed new job acpid.socket/stop as 447
[  269.453670] systemd[1]: Installed new job sysinit.target/stop as 448
[  269.453678] systemd[1]: Installed new job sshd.socket/stop as 449
[  269.453686] systemd[1]: Installed new job cups.socket/stop as 450
[  269.453695] systemd[1]: Installed new job systemd-vconsole-setup.service/stop as 451
[  269.453703] systemd[1]: Installed new job systemd-ask-password-console.path/stop as 452
[  269.453714] systemd[1]: Installed new job cryptsetup.target/stop as 454
[  269.453722] systemd[1]: Installed new job systemd-modules-load.service/stop as 455
[  269.453731] systemd[1]: Installed new job systemd-remount-fs.service/stop as 456
[  269.453739] systemd[1]: Installed new job local-fs-pre.target/stop as 457
[  269.453747] systemd[1]: Installed new job systemd-sysctl.service/stop as 459
[  269.453755] systemd[1]: Installed new job swap.target/stop as 460
[  269.453764] systemd[1]: Installed new job remote-fs.target/stop as 463
[  269.453772] systemd[1]: Installed new job remote-fs-pre.target/stop as 464
[  269.453782] systemd[1]: Installed new job local-fs.target/stop as 465
[  269.453790] systemd[1]: Installed new job sockets.target/stop as 466
[  269.453799] systemd[1]: Installed new job umount.target/start as 467
[  269.453810] systemd[1]: Installed new job dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap/stop as 468
[  269.453819] systemd[1]: Installed new job dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap/stop as 469
[  269.453829] systemd[1]: Installed new job dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap/stop as 470
[  269.453838] systemd[1]: Installed new job dev-sda6.swap/stop as 471
[  269.453846] systemd[1]: Installed new job mnt-echange.automount/stop as 472
[  269.453854] systemd[1]: Installed new job mnt-echange.mount/stop as 473
[  269.453862] systemd[1]: Installed new job mnt-be.automount/stop as 474
[  269.453870] systemd[1]: Installed new job mnt-be.mount/stop as 475
[  269.453878] systemd[1]: Installed new job mnt-fab.automount/stop as 476
[  269.453886] systemd[1]: Installed new job mnt-fab.mount/stop as 477
[  269.453894] systemd[1]: Installed new job mnt-fanny_d.automount/stop as 478
[  269.453902] systemd[1]: Installed new job tmp.mount/stop as 480
[  269.453911] systemd[1]: Installed new job boot.mount/stop as 481
[  269.453919] systemd[1]: Installed new job mnt-windows_c.mount/stop as 482
[  269.453927] systemd[1]: Installed new job final.target/start as 483
[  269.453936] systemd[1]: Installed new job console-kit-log-system-stop.service/start as 484
[  269.453954] systemd[1]: Enqueued job poweroff.target/start as 401
[  269.454130] systemd[1]: About to execute: /bin/umount /mnt/fab
[  269.466836] systemd[1]: Forked /bin/umount as 1532
[  269.466881] systemd[1]: mnt-fab.mount changed mounted -> unmounting
[  269.466998] systemd[1]: About to execute: /bin/umount /mnt/be
[  269.473436] systemd[1]: Forked /bin/umount as 1533
[  269.473475] systemd[1]: mnt-be.mount changed mounted -> unmounting
[  269.473588] systemd[1]: About to execute: /bin/umount /mnt/echange
[  269.480121] systemd[1]: Forked /bin/umount as 1534
[  269.480161] systemd[1]: mnt-echange.mount changed mounted -> unmounting
[  269.480288] systemd[1]: About to execute: /sbin/swapoff /dev/sda6
[  269.500042] systemd[1]: Forked /sbin/swapoff as 1535
[  269.500081] systemd[1]: dev-sda6.swap changed active -> deactivating
[  269.500109] systemd[1]: Redirecting stop request from dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap to dev-sda6.swap.
[  269.500167] systemd[1]: Redirecting stop request from dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap to dev-sda6.swap.
[  269.500569] systemd[1]: console-kit-daemon.service changed running -> stop-sigterm
[  269.500737] systemd[1]: colord-sane.service changed running -> stop-sigterm
[  269.500890] systemd[1]: colord.service changed running -> stop-sigterm
[  269.501044] systemd[1]: cups.socket got notified about service death (failed permanently: no)
[  269.501060] systemd[1]: cups.socket changed running -> listening
[  269.501078] systemd[1]: cups.service changed running -> stop-sigterm
[  269.501097] systemd[1]: graphical.target changed active -> dead
[  269.501106] systemd[1]: Job graphical.target/stop finished, result=done
[  269.501164] systemd[1]: multi-user.target changed active -> dead
[  269.501172] systemd[1]: Job multi-user.target/stop finished, result=done
[  269.501356] systemd[1]: tftpd.service changed running -> stop-sigterm
[  269.501543] systemd[1]: smbd.service changed running -> stop-sigterm
[  269.501684] systemd[1]: nmbd.service changed running -> stop-sigterm
[  269.501740] systemd[1]: About to execute: /usr/sbin/laptop_mode stop
[  269.523445] systemd[1]: Forked /usr/sbin/laptop_mode as 1538
[  269.523534] systemd[1]: laptop-mode-tools.service changed exited -> stop
[  269.523807] systemd[1]: ntpd.service changed running -> stop-sigterm
[  269.524019] systemd[1]: dbus.socket got notified about service death (failed permanently: no)
[  269.524036] systemd[1]: dbus.socket changed running -> listening
[  269.524048] systemd[1]: dbus.service changed running -> stop-sigterm
[  269.524200] systemd[1]: systemd-logind.service changed running -> stop-sigterm
[  269.524220] systemd[1]: getty.target changed active -> dead
[  269.524229] systemd[1]: Job getty.target/stop finished, result=done
[  269.524324] systemd[1]: getty at tty1.service changed running -> stop-sigterm
[  269.524509] systemd[1]: slim.service changed running -> stop-sigterm
[  269.524523] systemd[1]: sound.target changed active -> dead
[  269.524531] systemd[1]: Job sound.target/stop finished, result=done
[  269.524674] systemd[1]: About to execute: /usr/sbin/alsactl store
[  269.550253] systemd[1]: Forked /usr/sbin/alsactl as 1542
[  269.550427] systemd[1]: alsa-store.service changed dead -> start
[  269.550716] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Manager.GetUnit() on /org/freedesktop/systemd1
[  269.550759] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.551336] systemd[1]: Received SIGCHLD from PID 1532 (umount).
[  269.551375] systemd[1]: Got SIGCHLD for process 422 (in.tftpd)
[  269.551407] systemd[1]: Child 422 died (code=exited, status=0/SUCCESS)
[  269.551412] systemd[1]: Child 422 belongs to tftpd.service
[  269.551435] systemd[1]: tftpd.service: main process exited, code=exited, status=0
[  269.551561] systemd[1]: tftpd.service changed stop-sigterm -> dead
[  269.551574] systemd[1]: Job tftpd.service/stop finished, result=done
[  269.551702] systemd[1]: Got SIGCHLD for process 425 (agetty)
[  269.551782] systemd[1]: Child 425 died (code=killed, status=1/HUP)
[  269.551787] systemd[1]: Child 425 belongs to getty at tty1.service
[  269.552082] systemd[1]: getty at tty1.service: main process exited, code=killed, status=1
[  269.552094] systemd[1]: getty at tty1.service changed stop-sigterm -> dead
[  269.552104] systemd[1]: Job getty at tty1.service/stop finished, result=done
[  269.552213] systemd[1]: Got SIGCHLD for process 889 (smbd)
[  269.552290] systemd[1]: Child 889 died (code=killed, status=15/TERM)
[  269.552295] systemd[1]: Child 889 belongs to smbd.service
[  269.552311] systemd[1]: smbd.service: main process exited, code=killed, status=15
[  269.552394] systemd[1]: smbd.service changed stop-sigterm -> dead
[  269.552405] systemd[1]: Job smbd.service/stop finished, result=done
[  269.552505] systemd[1]: Got SIGCHLD for process 890 (nmbd)
[  269.552576] systemd[1]: Child 890 died (code=exited, status=0/SUCCESS)
[  269.552580] systemd[1]: Child 890 belongs to nmbd.service
[  269.552590] systemd[1]: nmbd.service: main process exited, code=exited, status=0
[  269.552667] systemd[1]: nmbd.service changed stop-sigterm -> dead
[  269.552678] systemd[1]: Job nmbd.service/stop finished, result=done
[  269.552775] systemd[1]: Got SIGCHLD for process 1008 (colord)
[  269.552857] systemd[1]: Child 1008 died (code=killed, status=15/TERM)
[  269.552862] systemd[1]: Child 1008 belongs to colord.service
[  269.552878] systemd[1]: colord.service: main process exited, code=killed, status=15
[  269.552957] systemd[1]: colord.service changed stop-sigterm -> dead
[  269.552969] systemd[1]: Job colord.service/stop finished, result=done
[  269.553072] systemd[1]: Got SIGCHLD for process 1067 (colord-sane)
[  269.553146] systemd[1]: Child 1067 died (code=killed, status=15/TERM)
[  269.553151] systemd[1]: Child 1067 belongs to colord-sane.service
[  269.553161] systemd[1]: colord-sane.service: main process exited, code=killed, status=15
[  269.553240] systemd[1]: colord-sane.service changed stop-sigterm -> dead
[  269.553250] systemd[1]: Job colord-sane.service/stop finished, result=done
[  269.553776] systemd[1]: Got SIGCHLD for process 958 (ntpd)
[  269.553804] systemd[1]: Child 958 died (code=exited, status=0/SUCCESS)
[  269.553809] systemd[1]: Child 958 belongs to ntpd.service
[  269.553824] systemd[1]: ntpd.service: main process exited, code=exited, status=0
[  269.553871] systemd[1]: ntpd.service changed stop-sigterm -> dead
[  269.553882] systemd[1]: Job ntpd.service/stop finished, result=done
[  269.553977] systemd[1]: Got SIGCHLD for process 1077 (console-kit-dae)
[  269.554056] systemd[1]: Child 1077 died (code=killed, status=15/TERM)
[  269.554061] systemd[1]: Child 1077 belongs to console-kit-daemon.service
[  269.554071] systemd[1]: console-kit-daemon.service: main process exited, code=killed, status=15
[  269.554149] systemd[1]: console-kit-daemon.service changed stop-sigterm -> dead
[  269.554160] systemd[1]: Job console-kit-daemon.service/stop finished, result=done
[  269.554256] systemd[1]: Got SIGCHLD for process 1144 (polkitd)
[  269.554317] systemd[1]: Child 1144 died (code=killed, status=15/TERM)
[  269.554347] systemd[1]: Got SIGCHLD for process 1170 (gnome-keyring-d)
[  269.554400] systemd[1]: Child 1170 died (code=exited, status=0/SUCCESS)
[  269.554432] systemd[1]: Got SIGCHLD for process 1182 (stalonetray)
[  269.554483] systemd[1]: Child 1182 died (code=exited, status=1/FAILURE)
[  269.554514] systemd[1]: Got SIGCHLD for process 1184 (nm-applet)
[  269.554564] systemd[1]: Child 1184 died (code=exited, status=1/FAILURE)
[  269.554595] systemd[1]: Got SIGCHLD for process 1186 (pidgin)
[  269.554646] systemd[1]: Child 1186 died (code=exited, status=1/FAILURE)
[  269.554678] systemd[1]: Got SIGCHLD for process 1193 (xbindkeys)
[  269.554727] systemd[1]: Child 1193 died (code=exited, status=1/FAILURE)
[  269.554759] systemd[1]: Got SIGCHLD for process 1225 (gconfd-2)
[  269.554809] systemd[1]: Child 1225 died (code=exited, status=1/FAILURE)
[  269.554838] systemd[1]: Got SIGCHLD for process 1532 (umount)
[  269.554908] systemd[1]: Child 1532 died (code=exited, status=0/SUCCESS)
[  269.554912] systemd[1]: Child 1532 belongs to mnt-fab.mount
[  269.554923] systemd[1]: mnt-fab.mount mount process exited, code=exited status=0
[  269.554935] systemd[1]: mnt-fab.mount changed unmounting -> dead
[  269.590130] systemd[1]: Job mnt-fab.mount/stop finished, result=done
[  269.590295] systemd[1]: Got SIGCHLD for process 417 (dbus-daemon)
[  269.590389] systemd[1]: Child 417 died (code=exited, status=0/SUCCESS)
[  269.590394] systemd[1]: Child 417 belongs to dbus.service
[  269.590409] systemd[1]: dbus.service: main process exited, code=exited, status=0
[  269.590532] systemd[1]: dbus.service changed stop-sigterm -> dead
[  269.590543] systemd[1]: Job dbus.service/stop finished, result=done
[  269.590662] systemd[1]: Got SIGCHLD for process 1185 (hillman)
[  269.590731] systemd[1]: Child 1185 died (code=exited, status=1/FAILURE)
[  269.590764] systemd[1]: Got SIGCHLD for process 1187 (firefox)
[  269.590822] systemd[1]: Child 1187 died (code=exited, status=1/FAILURE)
[  269.590855] systemd[1]: Got SIGCHLD for process 1190 (thunderbird)
[  269.590912] systemd[1]: Child 1190 died (code=exited, status=1/FAILURE)
[  269.590943] systemd[1]: Got SIGCHLD for process 1533 (umount)
[  269.591027] systemd[1]: Child 1533 died (code=exited, status=32/n/a)
[  269.591032] systemd[1]: Child 1533 belongs to mnt-be.mount
[  269.591042] systemd[1]: mnt-be.mount mount process exited, code=exited status=32
[  269.591056] systemd[1]: mnt-be.mount changed unmounting -> mounted
[  269.591065] systemd[1]: Job mnt-be.mount/stop finished, result=failed
[  269.591228] systemd[1]: Got SIGCHLD for process 1534 (umount)
[  269.591305] systemd[1]: Child 1534 died (code=exited, status=0/SUCCESS)
[  269.591310] systemd[1]: Child 1534 belongs to mnt-echange.mount
[  269.591321] systemd[1]: mnt-echange.mount mount process exited, code=exited status=0
[  269.591333] systemd[1]: mnt-echange.mount changed unmounting -> dead
[  269.600172] systemd[1]: Job mnt-echange.mount/stop finished, result=done
[  269.600308] systemd[1]: Got SIGCHLD for process 418 (systemd-logind)
[  269.600396] systemd[1]: Child 418 died (code=killed, status=15/TERM)
[  269.600401] systemd[1]: Child 418 belongs to systemd-logind.service
[  269.600413] systemd[1]: systemd-logind.service: main process exited, code=killed, status=15
[  269.600524] systemd[1]: systemd-logind.service changed stop-sigterm -> dead
[  269.600534] systemd[1]: Job systemd-logind.service/stop finished, result=done
[  269.600648] systemd[1]: Got SIGCHLD for process 1189 (davmail)
[  269.600708] systemd[1]: Child 1189 died (code=exited, status=1/FAILURE)
[  269.600740] systemd[1]: Got SIGCHLD for process 1535 (swapoff)
[  269.600812] systemd[1]: Child 1535 died (code=exited, status=0/SUCCESS)
[  269.600816] systemd[1]: Child 1535 belongs to dev-sda6.swap
[  269.600826] systemd[1]: dev-sda6.swap swap process exited, code=exited status=0
[  269.600837] systemd[1]: dev-sda6.swap changed deactivating -> dead
[  269.620129] systemd[1]: Job dev-sda6.swap/stop finished, result=done
[  269.620288] systemd[1]: Got SIGCHLD for process 1004 (smbd)
[  269.620360] systemd[1]: Child 1004 died (code=exited, status=0/SUCCESS)
[  269.620394] systemd[1]: Got SIGCHLD for process 1176 (xmobar)
[  269.620445] systemd[1]: Child 1176 died (code=exited, status=0/SUCCESS)
[  269.620477] systemd[1]: Got SIGCHLD for process 1328 (urxvt)
[  269.620530] systemd[1]: Child 1328 died (code=exited, status=1/FAILURE)
[  269.620560] systemd[1]: Got SIGCHLD for process 1529 (sudo)
[  269.620614] systemd[1]: Child 1529 died (code=exited, status=129/n/a)
[  269.620646] systemd[1]: Got SIGCHLD for process 1531 (systemd-tty-ask)
[  269.620705] systemd[1]: Child 1531 died (code=killed, status=1/HUP)
[  269.620740] systemd[1]: Got SIGCHLD for process 1330 (bash)
[  269.620789] systemd[1]: Child 1330 died (code=killed, status=1/HUP)
[  269.620808] systemd[1]: remote-fs-pre.target changed active -> dead
[  269.620818] systemd[1]: Job remote-fs-pre.target/stop finished, result=done
[  269.620869] systemd[1]: network.target changed active -> dead
[  269.620877] systemd[1]: Job network.target/stop finished, result=done
[  269.620966] systemd[1]: About to execute: /sbin/dhcpcd -k eth0
[  269.656738] systemd[1]: Forked /sbin/dhcpcd as 1559
[  269.656799] systemd[1]: dhcpcd at eth0.service changed running -> stop
[  269.656828] systemd[1]: Running GC...
[  269.657094] systemd[1]: Collecting console-kit-daemon.service
[  269.657177] systemd[1]: Collecting colord-sane.service
[  269.657242] systemd[1]: Collecting colord.service
[  269.657761] systemd[1]: dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap changed active -> dead
[  269.657775] systemd[1]: Job dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap/stop finished, result=done
[  269.657853] systemd[1]: dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap changed active -> dead
[  269.657863] systemd[1]: Job dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap/stop finished, result=done
[  269.657989] systemd[1]: dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap changed active -> dead
[  269.657999] systemd[1]: Job dev-disk-by\x2duuid-29d01c6a\x2d5dd7\x2d49d0\x2d8a7d\x2d20462dbe5959.swap/stop finished, result=done
[  269.658280] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658311] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658326] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658339] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658353] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658366] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658380] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658394] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658408] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658417] systemd[1]: systemd-logind.service's D-Bus name org.freedesktop.login1 no longer registered by :1.1
[  269.658429] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658443] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658457] systemd[1]: Got D-Bus request: org.freedesktop.DBus.NameOwnerChanged() on /org/freedesktop/DBus
[  269.658538] systemd[1]: Accepted connection on private bus.
[  269.658658] systemd[1]: Received SIGCHLD from PID 958 (n/a).
[  269.658716] systemd[1]: Got SIGCHLD for process 1542 (alsactl)
[  269.658820] systemd[1]: Child 1542 died (code=exited, status=0/SUCCESS)
[  269.658825] systemd[1]: Child 1542 belongs to alsa-store.service
[  269.658836] systemd[1]: alsa-store.service: main process exited, code=exited, status=0
[  269.659018] systemd[1]: alsa-store.service changed start -> dead
[  269.673421] systemd[1]: Job alsa-store.service/start finished, result=done
[  269.673615] systemd[1]: Got SIGCHLD for process 1188 (emacs)
[  269.673686] systemd[1]: Child 1188 died (code=killed, status=6/ABRT)
[  269.673741] systemd[1]: System D-Bus connection terminated.
[  269.673755] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.673760] systemd[1]: API D-Bus connection terminated.
[  269.673844] systemd[1]: Accepted connection on private bus.
[  269.673915] systemd[1]: Received SIGCHLD from PID 1188 (n/a).
[  269.673978] systemd[1]: Accepted connection on private bus.
[  269.674072] systemd[1]: Accepted connection on private bus.
[  269.674161] systemd[1]: Accepted connection on private bus.
[  269.674248] systemd[1]: Accepted connection on private bus.
[  269.674336] systemd[1]: Accepted connection on private bus.
[  269.674424] systemd[1]: Accepted connection on private bus.
[  269.674510] systemd[1]: Accepted connection on private bus.
[  269.674598] systemd[1]: Accepted connection on private bus.
[  269.674684] systemd[1]: Accepted connection on private bus.
[  269.674774] systemd[1]: Accepted connection on private bus.
[  269.674864] systemd[1]: Accepted connection on private bus.
[  269.674952] systemd[1]: Accepted connection on private bus.
[  269.675837] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.675925] systemd[1]: ntpd.service: cgroup is empty
[  269.676025] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.676180] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.676289] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.676335] systemd[1]: systemd-logind.service: cgroup is empty
[  269.676403] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.676505] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.676603] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.676708] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.676760] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.676811] systemd[1]: dbus.service: cgroup is empty
[  269.676858] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.676907] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.676950] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.676997] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.677045] systemd[1]: tftpd.service: cgroup is empty
[  269.677089] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.677141] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.677187] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.677233] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.677278] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.677376] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.677420] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.678065] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.678121] systemd[1]: smbd.service: cgroup is empty
[  269.678167] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.686847] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.686926] systemd[1]: getty at tty1.service: cgroup is empty
[  269.686979] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.687023] systemd[1]: nmbd.service: cgroup is empty
[  269.687077] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.687133] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.687189] systemd[1]: Received SIGCHLD from PID 1538 (laptop_mode).
[  269.687222] systemd[1]: Got SIGCHLD for process 1538 (laptop_mode)
[  269.687318] systemd[1]: Child 1538 died (code=exited, status=0/SUCCESS)
[  269.687323] systemd[1]: Child 1538 belongs to laptop-mode-tools.service
[  269.687334] systemd[1]: laptop-mode-tools.service: control process exited, code=exited status=0
[  269.693209] systemd[1]: laptop-mode-tools.service got final SIGCHLD for state stop
[  269.693350] systemd[1]: About to execute: /bin/rm -f /var/run/laptop-mode-tools/enabled
[  269.700059] systemd[1]: Forked /bin/rm as 1588
[  269.700111] systemd[1]: laptop-mode-tools.service changed stop -> stop-post
[  269.700283] systemd[1]: Accepted connection on private bus.
[  269.700378] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.700463] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.700524] systemd[1]: Accepted connection on private bus.
[  269.701066] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.701208] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.701323] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.701370] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.702586] systemd[1]: Received SIGCHLD from PID 1588 (rm).
[  269.702620] systemd[1]: Got SIGCHLD for process 1588 (rm)
[  269.702702] systemd[1]: Child 1588 died (code=exited, status=0/SUCCESS)
[  269.702707] systemd[1]: Child 1588 belongs to laptop-mode-tools.service
[  269.702718] systemd[1]: laptop-mode-tools.service: control process exited, code=exited status=0
[  269.706802] systemd[1]: laptop-mode-tools.service got final SIGCHLD for state stop-post
[  269.706818] systemd[1]: laptop-mode-tools.service changed stop-post -> dead
[  269.710297] systemd[1]: Job laptop-mode-tools.service/stop finished, result=done
[  269.710469] systemd[1]: Got SIGCHLD for process 888 (dhcpcd)
[  269.710505] systemd[1]: Child 888 died (code=exited, status=1/FAILURE)
[  269.710510] systemd[1]: Child 888 belongs to dhcpcd at eth0.service
[  269.710528] systemd[1]: dhcpcd at eth0.service: main process exited, code=exited, status=1
[  269.710700] systemd[1]: acpid.service changed running -> stop-sigterm
[  269.710740] systemd[1]: Received SIGCHLD from PID 888 (n/a).
[  269.710814] systemd[1]: Accepted connection on private bus.
[  269.710866] systemd[1]: Accepted connection on private bus.
[  269.711106] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.711172] systemd[1]: laptop-mode-tools.service: cgroup is empty
[  269.711230] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.711426] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.711485] systemd[1]: laptop-mode-tools.service: cgroup is empty
[  269.711527] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.761113] systemd[1]: Received SIGCHLD from PID 1559 (dhcpcd).
[  269.761150] systemd[1]: Got SIGCHLD for process 1559 (dhcpcd)
[  269.761241] systemd[1]: Child 1559 died (code=exited, status=0/SUCCESS)
[  269.761246] systemd[1]: Child 1559 belongs to dhcpcd at eth0.service
[  269.761260] systemd[1]: dhcpcd at eth0.service: control process exited, code=exited status=0
[  269.764151] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 1)
[  269.784548] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 1)
[  269.784551] [drm] nouveau 0000:01:00.0: Output VGA-1 is running on CRTC 1 using output A
[  269.790310] systemd[1]: dhcpcd at eth0.service got final SIGCHLD for state stop
[  269.790502] systemd[1]: dhcpcd at eth0.service changed stop -> failed
[  269.794406] systemd[1]: Job dhcpcd at eth0.service/stop finished, result=done
[  269.794817] systemd[1]: Unit dhcpcd at eth0.service entered failed state.
[  269.794902] systemd[1]: Accepted connection on private bus.
[  269.794956] systemd[1]: Accepted connection on private bus.
[  269.795039] systemd[1]: Accepted connection on private bus.
[  269.795130] systemd[1]: Accepted connection on private bus.
[  269.795304] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.795387] systemd[1]: dhcpcd at eth0.service: cgroup is empty
[  269.795446] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.795568] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.795631] systemd[1]: dhcpcd at eth0.service: cgroup is empty
[  269.795672] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.795774] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.795818] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.795882] systemd[1]: slim.service: cgroup is empty
[  269.795922] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.795998] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.803922] systemd[1]: Received SIGCHLD from PID 410 (acpid).
[  269.803955] systemd[1]: Got SIGCHLD for process 410 (acpid)
[  269.804039] systemd[1]: Child 410 died (code=exited, status=0/SUCCESS)
[  269.804044] systemd[1]: Child 410 belongs to acpid.service
[  269.804055] systemd[1]: acpid.service: main process exited, code=exited, status=0
[  269.804149] systemd[1]: acpid.service changed stop-sigterm -> dead
[  269.804160] systemd[1]: Job acpid.service/stop finished, result=done
[  269.805557] systemd[1]: Accepted connection on private bus.
[  269.805873] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.805931] systemd[1]: acpid.service: cgroup is empty
[  269.805975] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.987920] systemd[1]: Accepted connection on private bus.
[  269.988304] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  269.988415] systemd[1]: cups.service: cgroup is empty
[  269.988491] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  269.990420] systemd[1]: Received SIGCHLD from PID 1006 (cupsd).
[  269.990477] systemd[1]: Got SIGCHLD for process 1006 (cupsd)
[  269.990611] systemd[1]: Child 1006 died (code=exited, status=0/SUCCESS)
[  269.990620] systemd[1]: Child 1006 belongs to cups.service
[  269.990637] systemd[1]: cups.service: main process exited, code=exited, status=0
[  269.990794] systemd[1]: cups.service changed stop-sigterm -> dead
[  269.990811] systemd[1]: Job cups.service/stop finished, result=done
[  270.528766] systemd[1]: Received SIGCHLD from PID 1156 (xmonad-i386-lin).
[  270.528824] systemd[1]: Got SIGCHLD for process 426 (slim)
[  270.528967] systemd[1]: Child 426 died (code=exited, status=1/FAILURE)
[  270.528976] systemd[1]: Child 426 belongs to slim.service
[  270.528993] systemd[1]: slim.service: main process exited, code=exited, status=1
[  270.529158] systemd[1]: slim.service changed stop-sigterm -> failed
[  270.529174] systemd[1]: Job slim.service/stop finished, result=done
[  270.529859] systemd[1]: Unit slim.service entered failed state.
[  270.529924] systemd[1]: Got SIGCHLD for process 1156 (xmonad-i386-lin)
[  270.530080] systemd[1]: Child 1156 died (code=killed, status=1/HUP)
[  270.530741] systemd[1]: About to execute: /usr/lib/systemd/systemd-user-sessions stop
[  270.533807] systemd[1]: Forked /usr/lib/systemd/systemd-user-sessions as 1604
[  270.533872] systemd[1]: systemd-user-sessions.service changed exited -> stop
[  270.536299] systemd[1]: Received SIGCHLD from PID 1203 (gvfsd).
[  270.536358] systemd[1]: Got SIGCHLD for process 1203 (gvfsd)
[  270.536468] systemd[1]: Child 1203 died (code=killed, status=15/TERM)
[  270.536535] systemd[1]: Got SIGCHLD for process 1239 (inotifywait)
[  270.536625] systemd[1]: Child 1239 died (code=killed, status=15/TERM)
[  270.539465] systemd[1]: Received SIGCHLD from PID 1161 (dbus-daemon).
[  270.539526] systemd[1]: Got SIGCHLD for process 1161 (dbus-daemon)
[  270.539633] systemd[1]: Child 1161 died (code=exited, status=0/SUCCESS)
[  270.541410] systemd[1]: run-user-5143-gvfs.mount changed mounted -> dead
[  270.561255] systemd[1]: Received SIGCHLD from PID 1208 (gvfs-fuse-daemo).
[  270.561317] systemd[1]: Got SIGCHLD for process 1208 (gvfs-fuse-daemo)
[  270.561449] systemd[1]: Child 1208 died (code=exited, status=0/SUCCESS)
[  270.562529] systemd[1]: Accepted connection on private bus.
[  270.562926] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  270.563011] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  270.737549] systemd[1]: Accepted connection on private bus.
[  270.737930] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  270.738005] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  270.741381] systemd[1]: Accepted connection on private bus.
[  270.741786] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  270.741862] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  270.763733] systemd[1]: Received SIGCHLD from PID 1604 (systemd-user-se).
[  270.763791] systemd[1]: Got SIGCHLD for process 1604 (systemd-user-se)
[  270.763905] systemd[1]: Child 1604 died (code=exited, status=0/SUCCESS)
[  270.763914] systemd[1]: Child 1604 belongs to systemd-user-sessions.service
[  270.763931] systemd[1]: systemd-user-sessions.service: control process exited, code=exited status=0
[  270.765672] systemd[1]: systemd-user-sessions.service got final SIGCHLD for state stop
[  270.765930] systemd[1]: systemd-user-sessions.service changed stop -> dead
[  270.786744] systemd[1]: Job systemd-user-sessions.service/stop finished, result=done
[  270.787492] systemd[1]: basic.target changed active -> dead
[  270.787508] systemd[1]: Job basic.target/stop finished, result=done
[  270.788189] systemd[1]: systemd-ask-password-console.path changed waiting -> dead
[  270.788205] systemd[1]: Job systemd-ask-password-console.path/stop finished, result=done
[  270.788261] systemd[1]: systemd-ask-password-wall.path changed waiting -> dead
[  270.788275] systemd[1]: Job systemd-ask-password-wall.path/stop finished, result=done
[  270.788302] systemd[1]: systemd-tmpfiles-clean.timer changed waiting -> dead
[  270.788316] systemd[1]: Job systemd-tmpfiles-clean.timer/stop finished, result=done
[  270.788333] systemd[1]: sockets.target changed active -> dead
[  270.788345] systemd[1]: Job sockets.target/stop finished, result=done
[  270.789048] systemd[1]: cups.socket changed listening -> dead
[  270.789063] systemd[1]: Job cups.socket/stop finished, result=done
[  270.789764] systemd[1]: sshd.socket changed listening -> dead
[  270.789780] systemd[1]: Job sshd.socket/stop finished, result=done
[  270.790512] systemd[1]: acpid.socket changed listening -> dead
[  270.790528] systemd[1]: Job acpid.socket/stop finished, result=done
[  270.791206] systemd[1]: dbus.socket changed listening -> dead
[  270.791221] systemd[1]: Job dbus.socket/stop finished, result=done
[  270.791838] systemd[1]: sysinit.target changed active -> dead
[  270.791853] systemd[1]: Job sysinit.target/stop finished, result=done
[  270.793101] systemd[1]: About to execute: /usr/sbin/ck-log-system-stop
[  270.796996] systemd[1]: Forked /usr/sbin/ck-log-system-stop as 1612
[  270.797147] systemd[1]: console-kit-log-system-stop.service changed dead -> start
[  270.797915] systemd[1]: systemd-sysctl.service changed exited -> dead
[  270.797932] systemd[1]: Job systemd-sysctl.service/stop finished, result=done
[  270.799293] systemd[1]: systemd-modules-load.service changed exited -> dead
[  270.799309] systemd[1]: Job systemd-modules-load.service/stop finished, result=done
[  270.799957] systemd[1]: cryptsetup.target changed active -> dead
[  270.800008] systemd[1]: Job cryptsetup.target/stop finished, result=done
[  270.801304] systemd[1]: systemd-vconsole-setup.service changed exited -> dead
[  270.801321] systemd[1]: Job systemd-vconsole-setup.service/stop finished, result=done
[  270.801971] systemd[1]: swap.target changed active -> dead
[  270.801986] systemd[1]: Job swap.target/stop finished, result=done
[  270.802587] systemd[1]: local-fs.target changed active -> dead
[  270.802602] systemd[1]: Job local-fs.target/stop finished, result=done
[  270.803846] systemd[1]: About to execute: /bin/umount /mnt/windows_c
[  270.815325] systemd[1]: Forked /bin/umount as 1613
[  270.815379] systemd[1]: mnt-windows_c.mount changed mounted -> unmounting
[  270.816027] systemd[1]: About to execute: /bin/umount /boot
[  270.829293] systemd[1]: Forked /bin/umount as 1614
[  270.829332] systemd[1]: boot.mount changed mounted -> unmounting
[  270.830009] systemd[1]: About to execute: /bin/umount /tmp
[  270.839683] systemd[1]: Forked /bin/umount as 1616
[  270.839732] systemd[1]: tmp.mount changed mounted -> unmounting
[  270.839878] systemd[1]: remote-fs.target changed active -> dead
[  270.839895] systemd[1]: Job remote-fs.target/stop finished, result=done
[  270.846752] systemd[1]: mnt-fanny_d.automount changed running -> dead
[  270.846774] systemd[1]: Job mnt-fanny_d.automount/stop finished, result=done
[  270.875252] systemd[1]: mnt-fab.automount changed running -> dead
[  270.875271] systemd[1]: Job mnt-fab.automount/stop finished, result=done
[  323.189908] usb 1-7.4: USB disconnect, device number 6
[  324.657001] usb 1-7.4: new low-speed USB device number 7 using ehci_hcd
[  324.749547] input: PIXART USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7.4/1-7.4:1.0/input/input12
[  324.749858] hid-generic 0003:093A:2510.0003: input,hidraw1: USB HID v1.11 Mouse [PIXART USB OPTICAL MOUSE] on usb-0000:00:1d.7-7.4/input0
[  378.224037] usb 1-7.4: USB disconnect, device number 7
[  379.690276] usb 1-7.4: new low-speed USB device number 8 using ehci_hcd
[  379.783043] input: PIXART USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7.4/1-7.4:1.0/input/input13
[  379.783433] hid-generic 0003:093A:2510.0004: input,hidraw1: USB HID v1.11 Mouse [PIXART USB OPTICAL MOUSE] on usb-0000:00:1d.7-7.4/input0
[  395.488741] CIFS VFS: Server 192.168.1.37 has not responded in 120 seconds. Reconnecting...
[  395.496772] systemd[1]: mnt-be.automount changed running -> dead
[  395.496793] systemd[1]: Job mnt-be.automount/stop finished, result=done
[  395.520057] systemd[1]: mnt-echange.automount changed running -> dead
[  395.520074] systemd[1]: Job mnt-echange.automount/stop finished, result=done
[  395.520693] systemd[1]: Running GC...
[  395.521114] systemd[1]: Collecting run-user-5143-gvfs.mount
[  395.521247] systemd[1]: Collecting dev-sda6.swap
[  395.521258] systemd[1]: Collecting dev-disk-by\x2did-ata\x2dHitachi_HTS543225A7A384_E2X22X42038SJJ\x2dpart6.swap
[  395.521267] systemd[1]: Collecting dev-disk-by\x2did-wwn\x2d0x5000cca693c17dfe\x2dpart6.swap
[  395.521528] systemd[1]: Received SIGCHLD from PID 1612 (ck-log-system-s).
[  395.521585] systemd[1]: Got SIGCHLD for process 391 (mount.ntfs-3g)
[  395.521699] systemd[1]: Child 391 died (code=exited, status=0/SUCCESS)
[  395.521751] systemd[1]: Got SIGCHLD for process 1612 (ck-log-system-s)
[  395.521845] systemd[1]: Child 1612 died (code=exited, status=0/SUCCESS)
[  395.521855] systemd[1]: Child 1612 belongs to console-kit-log-system-stop.service
[  395.521876] systemd[1]: console-kit-log-system-stop.service: main process exited, code=exited, status=0
[  395.522178] systemd[1]: console-kit-log-system-stop.service changed start -> dead
[  395.522542] systemd[1]: Job console-kit-log-system-stop.service/start finished, result=done
[  395.523255] systemd[1]: Got SIGCHLD for process 1613 (umount)
[  395.523386] systemd[1]: Child 1613 died (code=exited, status=0/SUCCESS)
[  395.523395] systemd[1]: Child 1613 belongs to mnt-windows_c.mount
[  395.523411] systemd[1]: mnt-windows_c.mount mount process exited, code=exited status=0
[  395.523431] systemd[1]: mnt-windows_c.mount changed unmounting -> dead
[  395.526759] systemd[1]: Job mnt-windows_c.mount/stop finished, result=done
[  395.527427] systemd[1]: Got SIGCHLD for process 1614 (umount)
[  395.527526] systemd[1]: Child 1614 died (code=exited, status=0/SUCCESS)
[  395.527535] systemd[1]: Child 1614 belongs to boot.mount
[  395.527550] systemd[1]: boot.mount mount process exited, code=exited status=0
[  395.527568] systemd[1]: boot.mount changed unmounting -> dead
[  395.530689] systemd[1]: Job boot.mount/stop finished, result=done
[  395.531339] systemd[1]: Got SIGCHLD for process 1616 (umount)
[  395.531440] systemd[1]: Child 1616 died (code=exited, status=0/SUCCESS)
[  395.531448] systemd[1]: Child 1616 belongs to tmp.mount
[  395.531463] systemd[1]: tmp.mount mount process exited, code=exited status=0
[  395.531481] systemd[1]: tmp.mount changed unmounting -> dead
[  395.531824] systemd[1]: Job tmp.mount/stop finished, result=done
[  395.532486] systemd[1]: Got SIGCHLD for process 1642 (lmt-udev)
[  395.532583] systemd[1]: Child 1642 died (code=exited, status=1/FAILURE)
[  395.532646] systemd[1]: Got SIGCHLD for process 1644 (lmt-udev)
[  395.532734] systemd[1]: Child 1644 died (code=exited, status=1/FAILURE)
[  395.532795] systemd[1]: Got SIGCHLD for process 1666 (lmt-udev)
[  395.532882] systemd[1]: Child 1666 died (code=exited, status=1/FAILURE)
[  395.532943] systemd[1]: Got SIGCHLD for process 1668 (lmt-udev)
[  395.533029] systemd[1]: Child 1668 died (code=exited, status=1/FAILURE)
[  395.533059] systemd[1]: umount.target changed dead -> active
[  395.533072] systemd[1]: Job umount.target/start finished, result=done
[  395.533717] systemd[1]: local-fs-pre.target changed active -> dead
[  395.533735] systemd[1]: Job local-fs-pre.target/stop finished, result=done
[  395.535006] systemd[1]: systemd-remount-fs.service changed exited -> dead
[  395.535022] systemd[1]: Job systemd-remount-fs.service/stop finished, result=done
[  395.536300] systemd[1]: About to execute: /usr/lib/systemd/systemd-update-utmp shutdown
[  395.540390] systemd[1]: Forked /usr/lib/systemd/systemd-update-utmp as 1670
[  395.542237] systemd[1]: systemd-update-utmp-shutdown.service changed dead -> start
[  395.542984] systemd[1]: About to execute: /usr/lib/systemd/systemd-random-seed save
[  395.544588] systemd[1]: Forked /usr/lib/systemd/systemd-random-seed as 1671
[  395.546460] systemd[1]: systemd-random-seed-save.service changed dead -> start
[  395.546508] systemd[1]: shutdown.target changed dead -> active
[  395.546522] systemd[1]: Job shutdown.target/start finished, result=done
[  395.547343] systemd[1]: Accepted connection on private bus.
[  395.548111] systemd[1]: mnt-be.mount changed mounted -> failed
[  395.548186] systemd[1]: Unit mnt-be.mount entered failed state.
[  395.548775] systemd[1]: Received SIGCHLD from PID 1671 (systemd-random-).
[  395.548832] systemd[1]: Got SIGCHLD for process 1671 (systemd-random-)
[  395.548920] systemd[1]: Child 1671 died (code=exited, status=0/SUCCESS)
[  395.548929] systemd[1]: Child 1671 belongs to systemd-random-seed-save.service
[  395.548946] systemd[1]: systemd-random-seed-save.service: main process exited, code=exited, status=0
[  395.549270] systemd[1]: systemd-random-seed-save.service changed start -> dead
[  395.570143] systemd[1]: Job systemd-random-seed-save.service/start finished, result=done
[  395.570304] systemd[1]: Accepted connection on private bus.
[  395.570447] systemd[1]: Accepted connection on private bus.
[  395.570601] systemd[1]: Accepted connection on private bus.
[  395.570757] systemd[1]: Accepted connection on private bus.
[  395.570931] systemd[1]: Accepted connection on private bus.
[  395.571388] systemd[1]: Accepted connection on private bus.
[  395.571677] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.571805] systemd[1]: systemd-user-sessions.service: cgroup is empty
[  395.571900] systemd[1]: Accepted connection on private bus.
[  395.572138] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.572245] systemd[1]: systemd-user-sessions.service: cgroup is empty
[  395.572374] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.572621] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.572728] systemd[1]: console-kit-log-system-stop.service: cgroup is empty
[  395.572826] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.572940] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.573152] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.573267] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.573471] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.574121] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.574307] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.574415] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.574750] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.574839] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.574947] systemd[1]: systemd-random-seed-save.service: cgroup is empty
[  395.575041] systemd[1]: Received SIGCHLD from PID 1670 (systemd-update-).
[  395.575096] systemd[1]: Got SIGCHLD for process 1670 (systemd-update-)
[  395.575184] systemd[1]: Child 1670 died (code=exited, status=0/SUCCESS)
[  395.575193] systemd[1]: Child 1670 belongs to systemd-update-utmp-shutdown.service
[  395.575213] systemd[1]: systemd-update-utmp-shutdown.service: main process exited, code=exited, status=0
[  395.575522] systemd[1]: systemd-update-utmp-shutdown.service changed start -> dead
[  395.580147] systemd[1]: Job systemd-update-utmp-shutdown.service/start finished, result=done
[  395.580244] systemd[1]: final.target changed dead -> active
[  395.580259] systemd[1]: Job final.target/start finished, result=done
[  395.580353] systemd[1]: About to execute: /usr/bin/systemctl --force poweroff
[  395.586799] systemd[1]: Forked /usr/bin/systemctl as 1674
[  395.586971] systemd[1]: systemd-poweroff.service changed dead -> start
[  395.587090] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.587222] systemd[1]: Accepted connection on private bus.
[  395.587719] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Agent.Released() on /org/freedesktop/systemd1/agent
[  395.587836] systemd[1]: systemd-update-utmp-shutdown.service: cgroup is empty
[  395.587913] systemd[1]: Got D-Bus request: org.freedesktop.DBus.Local.Disconnected() on /org/freedesktop/DBus/Local
[  395.589068] systemd[1]: Accepted connection on private bus.
[  395.589601] systemd[1]: Got D-Bus request: org.freedesktop.systemd1.Manager.PowerOff() on /org/freedesktop/systemd1
[  395.589660] systemd[1]: Shutting down.
[  395.625580] systemd-journald[124]: Received SIGTERM
[  395.625593] systemd-journald[124]: systemd-journald stopped as pid 124
[  395.835830] EXT4-fs (sda7): re-mounted. Opts: (null)
[  396.313390] EXT4-fs (sda7): re-mounted. Opts: commit=60


More information about the systemd-devel mailing list