1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
| dmesg
[ 0.000000] Linux version 4.10.8-1-ARCH (builduser@tobias) (gcc version 6.3.1 20170306 (GCC) ) #1 SMP PREEMPT Fri Mar 31 16:50:19 CEST 2017
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mmcblk0p4 rw quiet
[ 0.000000] x86/fpu: Legacy x87 FPU detected.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x00000000ba6c0fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ba6c1000-0x00000000bb0d0fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bb0d1000-0x00000000bb0fefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bb0ff000-0x00000000bb71cfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bb71d000-0x00000000bb9edfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bb9ee000-0x00000000bba4cfff] type 20
[ 0.000000] BIOS-e820: [mem 0x00000000bba4d000-0x00000000bbffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed03000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed06000-0x00000000fed06fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed09fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1cfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fedbffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffbe0000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.40 by American Megatrends
[ 0.000000] efi: ESRT=0xbb0cf000 ACPI=0xbb0da000 ACPI 2.0=0xbb0da000 SMBIOS=0xbb8de000 SMBIOS 3.0=0xbb8dd000
[ 0.000000] SMBIOS 3.0.0 present.
[ 0.000000] DMI: MEDION E2228T MD60250/NT16H, BIOS 5.11 02/27/2017
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 base 080000000 mask FC0000000 write-back
[ 0.000000] 2 base 0BE000000 mask FFE000000 uncachable
[ 0.000000] 3 base 0BD000000 mask FFF000000 uncachable
[ 0.000000] 4 base 0BC800000 mask FFF800000 uncachable
[ 0.000000] 5 base 100000000 mask FC0000000 write-back
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] e820: update [mem 0xbc800000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xbc000 max_arch_pfn = 0x400000000
[ 0.000000] efi: requested map not found.
[ 0.000000] esrt: ESRT header is not in the memory map.
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[ 0.000000] BRK [0x02d5f000, 0x02d5ffff] PGTABLE
[ 0.000000] BRK [0x02d60000, 0x02d60fff] PGTABLE
[ 0.000000] BRK [0x02d61000, 0x02d61fff] PGTABLE
[ 0.000000] BRK [0x02d62000, 0x02d62fff] PGTABLE
[ 0.000000] BRK [0x02d63000, 0x02d63fff] PGTABLE
[ 0.000000] BRK [0x02d64000, 0x02d64fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x37327000-0x3798afff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000BB0DA000 000024 (v02 MEDION)
[ 0.000000] ACPI: XSDT 0x00000000BB0DA0A8 0000D4 (v01 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 0x00000000BB0F8218 00010C (v05 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x00000000BB0DA210 01E005 (v02 MEDION MEDIONAG 01072009 INTL 20120913)
[ 0.000000] ACPI: FACS 0x00000000BB71CF80 000040
[ 0.000000] ACPI: APIC 0x00000000BB0F8328 000084 (v03 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 0x00000000BB0F83B0 000044 (v01 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: FIDT 0x00000000BB0F83F8 00009C (v01 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: MSDM 0x00000000BB0F8498 000055 (v03 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 0x00000000BB0F84F0 00003C (v01 MEDION MEDIONAG 01072009 MSFT 00000097)
[ 0.000000] ACPI: SSDT 0x00000000BB0F8530 00412B (v01 DptfTb DptfTab 00001000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x00000000BB0FC660 00062B (v01 CpuDpf CpuDptf 00001000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x00000000BB0FCC90 000058 (v01 LowPM LowPwrM 00001000 INTL 20120913)
[ 0.000000] ACPI: UEFI 0x00000000BB0FCCE8 000042 (v01 MEDION MEDIONAG 00000000 00000000)
[ 0.000000] ACPI: SSDT 0x00000000BB0FCD30 000269 (v01 UsbCTb UsbCTab 00001000 INTL 20120913)
[ 0.000000] ACPI: HPET 0x00000000BB0FCFA0 000038 (v01 MEDION MEDIONAG 01072009 AMI. 00000005)
[ 0.000000] ACPI: SSDT 0x00000000BB0FCFD8 000763 (v01 PmRef CpuPm 00003000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x00000000BB0FD740 000290 (v01 PmRef Cpu0Tst 00003000 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x00000000BB0FD9D0 00017A (v01 PmRef ApTst 00003000 INTL 20120913)
[ 0.000000] ACPI: LPIT 0x00000000BB0FDB50 000104 (v01 MEDION MEDIONAG 00000005 MSFT 0100000D)
[ 0.000000] ACPI: BCFG 0x00000000BB0FDC58 000139 (v01 MEDION BATTCONF 00000001 ACPI 00000000)
[ 0.000000] ACPI: PRAM 0x00000000BB0FDD98 000030 (v01 00000001 00000000)
[ 0.000000] ACPI: BGRT 0x00000000BB0FDDC8 000038 (v01 MEDION MEDIONAG 01072009 AMI 00010013)
[ 0.000000] ACPI: TPM2 0x00000000BB0FDE00 000034 (v03 Tpm2Tabl 00000001 AMI 00000000)
[ 0.000000] ACPI: CSRT 0x00000000BB0FDE38 00014C (v00 MEDION MEDIONAG 00000005 MSFT 0100000D)
[ 0.000000] ACPI: WDAT 0x00000000BB0FDF88 000104 (v01 00000000 00000000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x13fff9000-0x13fffdfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000013fffffff]
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000008efff]
[ 0.000000] node 0: [mem 0x0000000000090000-0x000000000009dfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000001fffffff]
[ 0.000000] node 0: [mem 0x0000000020200000-0x00000000ba6c0fff]
[ 0.000000] node 0: [mem 0x00000000bba4d000-0x00000000bbffffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000013fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[ 0.000000] On node 0 totalpages: 1026576
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 22 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 11882 pages used for memmap
[ 0.000000] DMA32 zone: 760436 pages, LIFO batch:31
[ 0.000000] Normal zone: 4096 pages used for memmap
[ 0.000000] Normal zone: 262144 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics memory at 0x00000000bce00000-0x00000000bedfffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-114
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xba6c1000-0xbb0d0fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbb0d1000-0xbb0fefff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbb0ff000-0xbb71cfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbb71d000-0xbb9edfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbb9ee000-0xbba4cfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbc000000-0xbcdfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbce00000-0xbedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xbee00000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xe3ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe4000000-0xfe9fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfeafffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xfed02fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed03000-0xfed03fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed05fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed06000-0xfed06fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed07000-0xfed07fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed09fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed0a000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1cfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1d000-0xfed7ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfedbffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfedc0000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbdffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffbe0000-0xffffffff]
[ 0.000000] e820: [mem 0xbee00000-0xdfffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] percpu: Embedded 35 pages/cpu @ffff88013fc00000 s103640 r8192 d31528 u524288
[ 0.000000] pcpu-alloc: s103640 r8192 d31528 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1010512
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mmcblk0p4 rw quiet
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 3906904K/4106304K available (6351K kernel code, 1090K rwdata, 1980K rodata, 1292K init, 1032K bss, 199400K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Build-time adjustment of leaf fanout to 64.
[ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[ 0.000000] NR_IRQS:8448 nr_irqs:1024 16
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Detected 1440.000 MHz processor
[ 0.000043] Calibrating delay loop (skipped), value calculated using timer frequency.. 2881.00 BogoMIPS (lpj=4800000)
[ 0.000049] pid_max: default: 32768 minimum: 301
[ 0.000078] ACPI: Core revision 20160930
[ 0.048266] ACPI: 8 ACPI AML tables successfully acquired and loaded
[ 0.049069] Security Framework initialized
[ 0.049073] Yama: becoming mindful.
[ 0.049586] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.052115] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.053268] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.053280] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.053871] CPU: Physical Processor ID: 0
[ 0.053874] CPU: Processor Core ID: 0
[ 0.053881] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.053883] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.053894] mce: CPU supports 6 MCE banks
[ 0.053906] CPU0: Thermal monitoring enabled (TM1)
[ 0.053911] process: using mwait in idle threads
[ 0.053917] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[ 0.053919] Last level dTLB entries: 4KB 256, 2MB 16, 4MB 16, 1GB 0
[ 0.054270] Freeing SMP alternatives memory: 24K
[ 0.059928] ftrace: allocating 25115 entries in 99 pages
[ 0.085748] smpboot: Max logical packages: 1
[ 0.087444] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.120461] TSC deadline timer enabled
[ 0.120467] smpboot: CPU0: Intel(R) Atom(TM) x5-Z8300 CPU @ 1.44GHz (family: 0x6, model: 0x4c, stepping: 0x3)
[ 0.130505] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, 8-deep LBR, full-width counters, Intel PMU driver.
[ 0.130528] ... version: 3
[ 0.130529] ... bit width: 40
[ 0.130531] ... generic registers: 2
[ 0.130532] ... value mask: 000000ffffffffff
[ 0.130534] ... max period: 0000007fffffffff
[ 0.130535] ... fixed-purpose events: 3
[ 0.130536] ... event mask: 0000000700000003
[ 0.154175] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.160585] smp: Bringing up secondary CPUs ...
[ 0.187350] x86: Booting SMP configuration:
[ 0.187353] .... node #0, CPUs: #1 #2 #3
[ 0.491266] smp: Brought up 1 node, 4 CPUs
[ 0.491271] smpboot: Total of 4 processors activated (11532.33 BogoMIPS)
[ 0.493048] devtmpfs: initialized
[ 0.493229] x86/mm: Memory block size: 128MB
[ 0.503101] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[ 0.503105] PM: Registering ACPI NVS region [mem 0xbb0ff000-0xbb71cfff] (6414336 bytes)
[ 0.503508] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.503526] futex hash table entries: 1024 (order: 4, 65536 bytes)
[ 0.503646] pinctrl core: initialized pinctrl subsystem
[ 0.503742] RTC time: 10:00:35, date: 04/08/17
[ 0.504005] NET: Registered protocol family 16
[ 0.521103] cpuidle: using governor ladder
[ 0.534454] cpuidle: using governor menu
[ 0.534458] PCCT header not found.
[ 0.534509] ACPI: bus type PCI registered
[ 0.534513] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.534671] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.534677] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.534682] PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000) (size reduced!)
[ 0.534704] PCI: Using configuration type 1 for base access
[ 0.548202] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.548901] ACPI: Added _OSI(Module Device)
[ 0.548904] ACPI: Added _OSI(Processor Device)
[ 0.548906] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.548907] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.580539] ACPI: Dynamic OEM Table Load:
[ 0.580556] ACPI: SSDT 0xFFFF88013A51D800 00057B (v01 PmRef Cpu0Ist 00003000 INTL 20120913)
[ 0.581235] ACPI: Dynamic OEM Table Load:
[ 0.581247] ACPI: SSDT 0xFFFF88013A6EFC00 0003A5 (v01 PmRef Cpu0Cst 00003001 INTL 20120913)
[ 0.582413] ACPI: Dynamic OEM Table Load:
[ 0.582425] ACPI: SSDT 0xFFFF88013A6AF800 00015F (v01 PmRef ApIst 00003000 INTL 20120913)
[ 0.583015] ACPI: Dynamic OEM Table Load:
[ 0.583026] ACPI: SSDT 0xFFFF88013A745E40 00008D (v01 PmRef ApCst 00003000 INTL 20120913)
[ 0.587903] ACPI: Interpreter enabled
[ 0.587949] ACPI: (supports S0 S4 S5)
[ 0.587952] ACPI: Using IOAPIC for interrupt routing
[ 0.588040] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.589260] ACPI: Power Resource [P06X] (off)
[ 0.591598] ACPI: Power Resource [ID3C] (on)
[ 0.594526] ACPI: Power Resource [USBC] (on)
[ 0.595786] ACPI: Power Resource [WWPR] (off)
[ 0.597174] ACPI: Power Resource [WWPR] (off)
[ 0.597989] ACPI: Power Resource [WWPR] (off)
[ 0.598815] ACPI: Power Resource [WWPR] (off)
[ 0.599713] ACPI: Power Resource [WWPR] (off)
[ 0.613986] ACPI: Power Resource [CLK2] (on)
[ 0.614108] ACPI: Power Resource [CLK4] (on)
[ 0.614220] ACPI: Power Resource [P28P] (off)
[ 0.614337] ACPI: Power Resource [P18P] (off)
[ 0.614451] ACPI: Power Resource [P12P] (off)
[ 0.614578] ACPI: Power Resource [P16P] (off)
[ 0.618010] ACPI: Power Resource [CLK3] (on)
[ 0.618130] ACPI: Power Resource [CLK4] (on)
[ 0.618716] ACPI: Power Resource [P28P] (off)
[ 0.618836] ACPI: Power Resource [P18P] (off)
[ 0.619472] ACPI: Power Resource [P12P] (off)
[ 0.635432] ACPI: Power Resource [CLK2] (on)
[ 0.635553] ACPI: Power Resource [CLK1] (on)
[ 0.639272] ACPI: Power Resource [CLK0] (on)
[ 0.639392] ACPI: Power Resource [CLK1] (on)
[ 0.639898] ACPI: Power Resource [CLK5] (off)
[ 0.640644] ACPI: Power Resource [P33P] (off)
[ 0.640762] ACPI: Power Resource [P65P] (off)
[ 0.655858] ACPI: Power Resource [P28X] (off)
[ 0.655981] ACPI: Power Resource [P18X] (off)
[ 0.656099] ACPI: Power Resource [P12X] (off)
[ 0.656228] ACPI: Power Resource [P19X] (off)
[ 0.656356] ACPI: Power Resource [P12A] (off)
[ 0.656470] ACPI: Power Resource [P28T] (off)
[ 0.656588] ACPI: Power Resource [P18D] (off)
[ 0.656704] ACPI: Power Resource [P18T] (off)
[ 0.656822] ACPI: Power Resource [P3P3] (off)
[ 0.656934] ACPI: Power Resource [P12T] (off)
[ 0.657065] ACPI: Power Resource [P28W] (off)
[ 0.657183] ACPI: Power Resource [P18W] (off)
[ 0.657295] ACPI: Power Resource [P12W] (off)
[ 0.657413] ACPI: Power Resource [P33W] (off)
[ 0.657527] ACPI: Power Resource [P33X] (off)
[ 0.657645] ACPI: Power Resource [P4BW] (off)
[ 0.666690] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.666703] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.667269] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.667301] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 0.668688] PCI host bridge to bus 0000:00
[ 0.668694] pci_bus 0000:00: root bus resource [io 0x0070-0x0077]
[ 0.668698] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window]
[ 0.668701] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window]
[ 0.668705] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.668709] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.668712] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.668715] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[ 0.668719] pci_bus 0000:00: root bus resource [mem 0x20000000-0x201fffff window]
[ 0.668722] pci_bus 0000:00: root bus resource [mem 0xbce00001-0xbee00000 window]
[ 0.668725] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff window]
[ 0.668729] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.668745] pci 0000:00:00.0: [8086:2280] type 00 class 0x060000
[ 0.669350] pci 0000:00:02.0: [8086:22b0] type 00 class 0x030000
[ 0.669380] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd0ffffff 64bit]
[ 0.669396] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
[ 0.669407] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
[ 0.669783] pci 0000:00:03.0: [8086:22b8] type 00 class 0x048000
[ 0.669802] pci 0000:00:03.0: reg 0x10: [mem 0xd1000000-0xd13fffff]
[ 0.670191] pci 0000:00:0b.0: [8086:22dc] type 00 class 0x118000
[ 0.670221] pci 0000:00:0b.0: reg 0x10: [mem 0xd193b000-0xd193bfff 64bit]
[ 0.670687] pci 0000:00:14.0: [8086:22b5] type 00 class 0x0c0330
[ 0.670721] pci 0000:00:14.0: reg 0x10: [mem 0xd1900000-0xd190ffff 64bit]
[ 0.670839] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.671215] pci 0000:00:1a.0: [8086:2298] type 00 class 0x108000
[ 0.671241] pci 0000:00:1a.0: reg 0x10: [mem 0xd1700000-0xd17fffff]
[ 0.671256] pci 0000:00:1a.0: reg 0x14: [mem 0xd1600000-0xd16fffff]
[ 0.671375] pci 0000:00:1a.0: PME# supported from D0 D3hot
[ 0.671936] pci 0000:00:1c.0: [8086:22c8] type 01 class 0x060400
[ 0.673513] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.674182] pci 0000:00:1f.0: [8086:229c] type 00 class 0x060100
[ 0.676154] pci 0000:01:00.0: [8086:3165] type 00 class 0x028000
[ 0.676955] pci 0000:01:00.0: reg 0x10: [mem 0xd1800000-0xd1801fff 64bit]
[ 0.680411] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.691793] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.691882] pci 0000:00:1c.0: bridge window [mem 0xd1800000-0xd18fffff]
[ 0.706995] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.707174] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.707357] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.707531] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.707703] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.707875] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.708048] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.708232] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.765216] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[ 0.798559] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[ 0.798967] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.798972] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.798978] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.798980] vgaarb: loaded
[ 0.799137] Registered efivars operations
[ 0.803539] PCI: Using ACPI for IRQ routing
[ 0.806260] PCI: pci_cache_line_size set to 64 bytes
[ 0.806661] Expanded resource reserved due to conflict with PCI Bus 0000:00
[ 0.806667] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[ 0.806670] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.806672] e820: reserve RAM buffer [mem 0xba6c1000-0xbbffffff]
[ 0.806922] NetLabel: Initializing
[ 0.806925] NetLabel: domain hash size = 128
[ 0.806926] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.806963] NetLabel: unlabeled traffic allowed by default
[ 0.807684] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.807694] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 0.809777] clocksource: Switched to clocksource hpet
[ 0.826012] VFS: Disk quotas dquot_6.6.0
[ 0.826060] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.826284] pnp: PnP ACPI init
[ 0.826716] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.826721] system 00:00: [io 0x0400-0x047f] could not be reserved
[ 0.826725] system 00:00: [io 0x0500-0x05fe] has been reserved
[ 0.826734] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.834229] system 00:01: [mem 0xd1939000-0xd1939fff] has been reserved
[ 0.834235] system 00:01: [mem 0xd1937000-0xd1937fff] has been reserved
[ 0.834239] system 00:01: [mem 0xd1935000-0xd1935fff] has been reserved
[ 0.834243] system 00:01: [mem 0xd1924000-0xd1924fff] has been reserved
[ 0.834246] system 00:01: [mem 0xd1922000-0xd1922fff] has been reserved
[ 0.834250] system 00:01: [mem 0xd1920000-0xd1920fff] has been reserved
[ 0.834254] system 00:01: [mem 0xd191e000-0xd191efff] has been reserved
[ 0.834258] system 00:01: [mem 0xd191c000-0xd191cfff] has been reserved
[ 0.834262] system 00:01: [mem 0xd191a000-0xd191afff] has been reserved
[ 0.834266] system 00:01: [mem 0xd1918000-0xd1918fff] has been reserved
[ 0.834270] system 00:01: [mem 0xd1933000-0xd1933fff] has been reserved
[ 0.834274] system 00:01: [mem 0xd1931000-0xd1931fff] has been reserved
[ 0.834278] system 00:01: [mem 0xd192f000-0xd192ffff] has been reserved
[ 0.834282] system 00:01: [mem 0xd192d000-0xd192dfff] has been reserved
[ 0.834286] system 00:01: [mem 0xd192b000-0xd192bfff] has been reserved
[ 0.834290] system 00:01: [mem 0xd1929000-0xd1929fff] has been reserved
[ 0.834294] system 00:01: [mem 0xd1927000-0xd1927fff] has been reserved
[ 0.834298] system 00:01: [mem 0xd1925000-0xd1925fff] has been reserved
[ 0.834306] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.834557] system 00:02: [mem 0xe0000000-0xefffffff] could not be reserved
[ 0.834562] system 00:02: [mem 0xfea00000-0xfeafffff] has been reserved
[ 0.834566] system 00:02: [mem 0xfed01000-0xfed01fff] has been reserved
[ 0.834569] system 00:02: [mem 0xfed03000-0xfed03fff] has been reserved
[ 0.834573] system 00:02: [mem 0xfed06000-0xfed06fff] has been reserved
[ 0.834577] system 00:02: [mem 0xfed08000-0xfed09fff] has been reserved
[ 0.834581] system 00:02: [mem 0xfed80000-0xfedbffff] could not be reserved
[ 0.834585] system 00:02: [mem 0xfed1c000-0xfed1cfff] has been reserved
[ 0.834589] system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.834596] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.835005] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.836753] pnp: PnP ACPI: found 4 devices
[ 0.847276] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.847429] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.847500] pci 0000:00:1c.0: bridge window [mem 0xd1800000-0xd18fffff]
[ 0.847632] pci_bus 0000:00: resource 4 [io 0x0070-0x0077]
[ 0.847636] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window]
[ 0.847640] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window]
[ 0.847643] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.847647] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 0.847650] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[ 0.847653] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[ 0.847657] pci_bus 0000:00: resource 11 [mem 0x20000000-0x201fffff window]
[ 0.847660] pci_bus 0000:00: resource 12 [mem 0xbce00001-0xbee00000 window]
[ 0.847663] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xdfffffff window]
[ 0.847667] pci_bus 0000:01: resource 1 [mem 0xd1800000-0xd18fffff]
[ 0.848124] NET: Registered protocol family 2
[ 0.848519] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.848698] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.848911] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.848992] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.849041] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.849202] NET: Registered protocol family 1
[ 0.849243] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.849991] PCI: CLS 64 bytes, default 64
[ 0.850123] Unpacking initramfs...
[ 1.048507] Freeing initrd memory: 6544K
[ 1.048515] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.048521] software IO TLB [mem 0xb3b69000-0xb7b69000] (64MB) mapped at [ffff8800b3b69000-ffff8800b7b68fff]
[ 1.048582] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x14c1baf3789, max_idle_ns: 440795266465 ns
[ 1.048633] clocksource: Switched to clocksource tsc
[ 1.048886] Scanning for low memory corruption every 60 seconds
[ 1.050522] Initialise system trusted keyrings
[ 1.050749] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[ 1.055033] zbud: loaded
[ 1.056582] Key type asymmetric registered
[ 1.056692] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 1.056762] io scheduler noop registered
[ 1.056764] io scheduler deadline registered
[ 1.056783] io scheduler cfq registered (default)
[ 1.058922] pcieport 0000:00:1c.0: Signaling PME with IRQ 297
[ 1.059051] efifb: probing for efifb
[ 1.059085] efifb: framebuffer at 0xc0000000, using 8128k, total 8128k
[ 1.059088] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 1.059089] efifb: scrolling: redraw
[ 1.059092] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.076919] Console: switching to colour frame buffer device 240x67
[ 1.094383] fb0: EFI VGA frame buffer device
[ 1.094404] intel_idle: MWAIT substates: 0x33000020
[ 1.094407] intel_idle: v0.4.1 model 0x4C
[ 1.094885] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.099078] GHES: HEST is not enabled!
[ 1.099303] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.119884] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.121790] Linux agpgart interface v0.103
[ 1.123981] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[ 1.124042] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.124064] intel_pstate: Intel P-state driver initializing
[ 1.126420] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.128000] NET: Registered protocol family 10
[ 1.150555] Segment Routing with IPv6
[ 1.150643] NET: Registered protocol family 17
[ 1.155007] microcode: sig=0x406c3, pf=0x1, revision=0x363
[ 1.155982] microcode: Microcode Update Driver: v2.2.
[ 1.157301] registered taskstats version 1
[ 1.157333] Loading compiled-in X.509 certificates
[ 1.157414] zswap: loaded using pool lzo/zbud
[ 1.159201] Magic number: 13:607:21
[ 1.159527] rtc_cmos 00:03: setting system clock to 2017-04-08 10:00:35 UTC (1491645635)
[ 1.159913] PM: Hibernation image not present or could not be loaded.
[ 1.165763] Freeing unused kernel memory: 1292K
[ 1.165769] Write protecting the kernel read-only data: 10240k
[ 1.169078] Freeing unused kernel memory: 1828K
[ 1.170333] Freeing unused kernel memory: 68K
[ 1.222462] random: systemd-tmpfile: uninitialized urandom read (16 bytes read)
[ 1.233079] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.233320] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.240410] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.240475] random: udevadm: uninitialized urandom read (16 bytes read)
[ 1.253337] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.253488] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.253562] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.254743] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.254841] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[ 1.369057] sdhci: Secure Digital Host Controller Interface driver
[ 1.369059] sdhci: Copyright(c) Pierre Ossman
[ 1.385837] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[ 1.402306] mmc1: SDHCI controller on ACPI [80860F14:01] using ADMA
[ 1.414518] ACPI: bus type USB registered
[ 1.414604] usbcore: registered new interface driver usbfs
[ 1.414641] usbcore: registered new interface driver hub
[ 1.414737] usbcore: registered new device driver usb
[ 1.419402] mmc2: SDHCI controller on ACPI [80860F14:03] using ADMA
[ 1.421821] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.421840] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.423494] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x01509810
[ 1.423510] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.424178] hub 1-0:1.0: USB hub found
[ 1.424476] hub 1-0:1.0: 7 ports detected
[ 1.427568] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.427578] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.430364] hub 2-0:1.0: USB hub found
[ 1.430394] hub 2-0:1.0: 6 ports detected
[ 1.554629] mmc0: new HS200 MMC card at address 0001
[ 1.568422] mmcblk0: mmc0:0001 064G38 58.2 GiB
[ 1.573179] mmcblk0boot0: mmc0:0001 064G38 partition 1 4.00 MiB
[ 1.575318] mmcblk0boot1: mmc0:0001 064G38 partition 2 4.00 MiB
[ 1.576948] mmcblk0rpmb: mmc0:0001 064G38 partition 3 4.00 MiB
[ 1.581663] mmcblk0: p1 p2 p3 p4
[ 1.608846] random: fast init done
[ 1.806556] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[ 1.939236] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
[ 1.942174] hub 1-2:1.0: USB hub found
[ 1.942543] hub 1-2:1.0: 4 ports detected
[ 2.113263] usb 1-4: new high-speed USB device number 3 using xhci_hcd
[ 2.159409] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 2.167804] systemd[1]: systemd 232 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 2.168199] systemd[1]: Detected architecture x86-64.
[ 2.171171] systemd[1]: Set hostname to <medion>.
[ 2.312400] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 2.312570] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 2.312693] systemd[1]: Listening on Journal Socket.
[ 2.313611] systemd[1]: Created slice User and Session Slice.
[ 2.313717] systemd[1]: Listening on udev Kernel Socket.
[ 2.313801] systemd[1]: Listening on LVM2 metadata daemon socket.
[ 2.313938] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 2.323163] usb 1-2.1: new full-speed USB device number 4 using xhci_hcd
[ 2.346341] SCSI subsystem initialized
[ 2.351111] EXT4-fs (mmcblk0p4): re-mounted. Opts: data=ordered
[ 2.392537] systemd-journald[183]: File /var/log/journal/0b36fe1b452d40748022faa70c51620f/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 2.489822] usb 1-2.3: new full-speed USB device number 5 using xhci_hcd
[ 2.495416] systemd-journald[183]: Received request to flush runtime journal from PID 1
[ 2.621560] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 2.621570] ACPI: Power Button [PWRB]
[ 2.623489] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 2.623564] ACPI: Lid Switch [LID0]
[ 2.624955] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 2.624976] ACPI: Power Button [PWRF]
[ 2.631925] ACPI: AC Adapter [ADP1] (on-line)
[ 2.659879] usb 1-2.4: new low-speed USB device number 6 using xhci_hcd
[ 2.680313] 8086228A:00: ttyS1 at MMIO 0xd1921000 (irq = 39, base_baud = 2764800) is a 16550A
[ 2.686709] 8086228A:01: ttyS2 at MMIO 0xd191f000 (irq = 40, base_baud = 2764800) is a 16550A
[ 2.720954] Bluetooth: Core ver 2.22
[ 2.720998] NET: Registered protocol family 31
[ 2.721001] Bluetooth: HCI device and connection manager initialized
[ 2.721010] Bluetooth: HCI socket layer initialized
[ 2.721016] Bluetooth: L2CAP socket layer initialized
[ 2.721031] Bluetooth: SCO socket layer initialized
[ 2.737452] usbcore: registered new interface driver btusb
[ 2.754796] FUJITSU Extended Socket Network Device Driver - version 1.2 - Copyright (c) 2015 FUJITSU LIMITED
[ 2.757678] Bluetooth: hci0: read Intel version: 370810011003110e00
[ 2.762273] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
[ 2.785278] intel_sst_acpi 808622A8:00: No matching machine driver found
[ 2.796910] input: Intel HID events as /devices/pci0000:00/INT33D5:00/input/input3
[ 2.798938] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 2.799103] thermal LNXTHERM:00: registered as thermal_zone2
[ 2.799105] ACPI: Thermal Zone [TZ00] (0 C)
[ 2.853624] [drm] Initialized
[ 2.855821] lpc_ich 0000:00:1f.0: No MFD cells added
[ 2.856230] proc_thermal 0000:00:0b.0: enabling device (0000 -> 0002)
[ 2.858732] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 2.862307] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 2.870803] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 2.878240] media: Linux media interface: v0.10
[ 2.891883] Linux video capture interface: v2.00
[ 2.938535] Adding 4194300k swap on /dev/mmcblk0p2. Priority:-1 extents:1 across:4194300k SSFS
[ 2.969890] uvcvideo: Found UVC 1.00 device USB 2.0 PC Cam (090c:037c)
[ 2.977213] uvcvideo 1-4:1.0: Entity type for entity Processing 3 was not initialized!
[ 2.977220] uvcvideo 1-4:1.0: Entity type for entity Extension 2 was not initialized!
[ 2.977224] uvcvideo 1-4:1.0: Entity type for entity Camera 1 was not initialized!
[ 2.977422] input: USB 2.0 PC Cam as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/input/input4
[ 2.977523] usbcore: registered new interface driver uvcvideo
[ 2.977526] USB Video Class driver (1.1.1)
[ 2.980115] [drm] Memory usable by graphics device = 2048M
[ 2.980122] checking generic (c0000000 7f0000) vs hw (c0000000 10000000)
[ 2.980123] fb: switching to inteldrmfb from EFI VGA
[ 2.980174] Console: switching to colour dummy device 80x25
[ 2.980386] [drm] Replacing VGA console driver
[ 2.980584] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.980586] [drm] Driver supports precise vblank timestamp query.
[ 2.985639] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 2.989369] Intel(R) Wireless WiFi driver for Linux
[ 2.989372] Copyright(c) 2003- 2015 Intel Corporation
[ 2.989653] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
[ 2.992471] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-7265D-26.ucode failed with error -2
[ 2.992508] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-7265D-25.ucode failed with error -2
[ 2.992540] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-7265D-24.ucode failed with error -2
[ 2.992573] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-7265D-23.ucode failed with error -2
[ 3.000096] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: data=ordered
[ 3.001251] iwlwifi 0000:01:00.0: loaded firmware version 22.391740.0 op_mode iwlmvm
[ 3.002797] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.004500] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 3.004953] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[ 3.006993] [drm] Initialized i915 1.6.0 20161121 for 0000:00:02.0 on minor 0
[ 3.019708] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
[ 3.025517] fbcon: inteldrmfb (fb0) is primary device
[ 3.046095] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 3165, REV=0x210
[ 3.051269] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.051916] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.136614] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 3.156120] i2c_designware 808622C1:06: I2C bus managed by PUNIT
[ 3.237562] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 3.253136] i2c_designware 808622C1:06: punit semaphore timed out, resetting
[ 3.253150] i2c_designware 808622C1:06: PUNIT SEM: 2
[ 3.253152] ------------[ cut here ]------------
[ 3.253165] WARNING: CPU: 0 PID: 208 at drivers/i2c/busses/i2c-designware-baytrail.c:106 baytrail_i2c_acquire+0x139/0x1f0 [i2c_designware_platform]
[ 3.253166] Modules linked in: pcspkr arc4 iwlmvm mac80211 nls_iso8859_1 iwlwifi nls_cp437 vfat fat uvcvideo videobuf2_vmalloc i915 videobuf2_memops cfg80211 videobuf2_v4l2 videobuf2_core videodev media drm_kms_helper drm shpchp intel_gtt mei_txe syscopyarea sysfillrect sysimgblt mei fb_sys_fops i2c_algo_bit processor_thermal_device lpc_ich intel_soc_dts_iosf thermal fjes snd_intel_sst_acpi snd_intel_sst_core snd_soc_sst_mfld_platform snd_soc_sst_match btusb snd_soc_core btrtl btbcm btintel intel_hid snd_compress sparse_keymap snd_pcm_dmaengine rfkill_gpio bluetooth snd_pcm snd_timer snd i2c_designware_platform(+) soundcore i2c_designware_core ac97_bus spi_pxa2xx_platform 8250_dw tpm_crb int3406_thermal soc_button_array video rfkill dptf_power int3400_thermal int3403_thermal acpi_thermal_rel int340x_thermal_zone
[ 3.253233] ac acpi_pad tpm_tis tpm_tis_core tpm button sch_fq_codel sg scsi_mod ip_tables x_tables ext4 crc16 jbd2 fscrypto mbcache mmc_block xhci_pci xhci_hcd usbcore usb_common sdhci_acpi sdhci led_class mmc_core
[ 3.253261] CPU: 0 PID: 208 Comm: systemd-udevd Not tainted 4.10.8-1-ARCH #1
[ 3.253262] Hardware name: MEDION E2228T MD60250/NT16H, BIOS 5.11 02/27/2017
[ 3.253264] Call Trace:
[ 3.253275] dump_stack+0x63/0x83
[ 3.253281] __warn+0xcb/0xf0
[ 3.253285] warn_slowpath_null+0x1d/0x20
[ 3.253291] baytrail_i2c_acquire+0x139/0x1f0 [i2c_designware_platform]
[ 3.253296] i2c_dw_acquire_lock+0x21/0x50 [i2c_designware_core]
[ 3.253300] i2c_dw_init+0x1e/0x610 [i2c_designware_core]
[ 3.253304] i2c_dw_probe+0x39/0x1d0 [i2c_designware_core]
[ 3.253310] ? pm_runtime_forbid+0x54/0x60
[ 3.253315] dw_i2c_plat_probe+0x299/0x530 [i2c_designware_platform]
[ 3.253319] platform_drv_probe+0x3b/0xa0
[ 3.253323] driver_probe_device+0x2bb/0x460
[ 3.253326] __driver_attach+0xdf/0xf0
[ 3.253330] ? driver_probe_device+0x460/0x460
[ 3.253334] bus_for_each_dev+0x6c/0xc0
[ 3.253338] driver_attach+0x1e/0x20
[ 3.253340] bus_add_driver+0x170/0x270
[ 3.253344] driver_register+0x60/0xe0
[ 3.253346] ? 0xffffffffa027c000
[ 3.253350] __platform_driver_register+0x36/0x40
[ 3.253355] dw_i2c_init_driver+0x17/0x1000 [i2c_designware_platform]
[ 3.253359] do_one_initcall+0x52/0x1a0
[ 3.253363] ? __vunmap+0x81/0xd0
[ 3.253366] ? kfree+0x177/0x190
[ 3.253370] do_init_module+0x5f/0x201
[ 3.253376] load_module+0x239c/0x2a80
[ 3.253380] ? symbol_put_addr+0x50/0x50
[ 3.253383] ? vmap_page_range_noflush+0x25a/0x350
[ 3.253389] SyS_init_module+0x174/0x190
[ 3.253393] do_syscall_64+0x54/0xc0
[ 3.253398] entry_SYSCALL64_slow_path+0x25/0x25
[ 3.253401] RIP: 0033:0x7f31425f6b0a
[ 3.253403] RSP: 002b:00007ffc194cb088 EFLAGS: 00000246 ORIG_RAX: 00000000000000af
[ 3.253406] RAX: ffffffffffffffda RBX: 000055843159f1b0 RCX: 00007f31425f6b0a
[ 3.253408] RDX: 00007f3142ce4cb5 RSI: 0000000000005060 RDI: 00005584319b4050
[ 3.253410] RBP: 00007f3142ce4cb5 R08: 00005584319b90b0 R09: 00005584319b90b0
[ 3.253412] R10: 0000000000000000 R11: 0000000000000246 R12: 00005584319b4050
[ 3.253414] R13: 000055843159f2f0 R14: 0000000000020000 R15: 000055843012f622
[ 3.253417] ---[ end trace 7b4ef54fa8c647e4 ]---
[ 3.253421] i2c_designware 808622C1:06: couldn't acquire bus ownership
[ 3.253465] i2c_designware: probe of 808622C1:06 failed with error -110
[ 3.298210] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.302834] nfc: nfc_init: NFC Core ver 0.1
[ 3.302879] NET: Registered protocol family 39
[ 3.338683] SSE version of gcm_enc/dec engaged.
[ 3.487287] usbcore: registered new interface driver usbhid
[ 3.487289] usbhid: USB HID core driver
[ 3.489623] intel_rapl: Found RAPL domain package
[ 3.489626] intel_rapl: Found RAPL domain core
[ 3.547838] iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
[ 3.566044] input: ELAN ELAN:Fingerprint as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.3/1-2.3:1.1/0003:04F3:0C16.0001/input/input7
[ 3.566888] hid-generic 0003:04F3:0C16.0001: input,hidraw0: USB HID v1.10 Mouse [ELAN ELAN:Fingerprint] on usb-0000:00:14.0-2.3/input1
[ 3.567532] input: Hantick USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.4/1-2.4:1.0/0003:0911:2188.0002/input/input8
[ 3.626232] hid-generic 0003:0911:2188.0002: input,hidraw1: USB HID v1.01 Keyboard [Hantick USB Keyboard] on usb-0000:00:14.0-2.4/input0
[ 3.627573] input: Hantick USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.4/1-2.4:1.1/0003:0911:2188.0003/input/input9
[ 3.686691] hid-generic 0003:0911:2188.0003: input,hiddev0,hidraw2: USB HID v1.01 Mouse [Hantick USB Keyboard] on usb-0000:00:14.0-2.4/input1
[ 3.695822] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 3.698680] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.699371] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.700468] mousedev: PS/2 mouse device common for all mice
[ 3.766758] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.767545] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.801028] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 3.813927] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.814628] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.890162] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.891012] iwlwifi 0000:01:00.0: L1 Enabled - LTR Enabled
[ 3.951155] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 4.057994] input: FTSC1000:00 2808:5012 as /devices/pci0000:00/808622C1:05/i2c-13/i2c-FTSC1000:00/0018:2808:5012.0004/input/input10
[ 4.059281] hid-multitouch 0018:2808:5012.0004: input,hidraw3: I2C HID v1.00 Device [FTSC1000:00 2808:5012] on i2c-FTSC1000:00
[ 4.136481] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 4.604235] Console: switching to colour frame buffer device 240x67
[ 4.678733] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 7.682423] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 7.700418] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 7.706775] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 7.830556] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[ 8.987206] wlp1s0: authenticate with ac:64:62:7e:d9:fc
[ 8.999705] wlp1s0: send auth to ac:64:62:7e:d9:fc (try 1/3)
[ 9.007464] wlp1s0: authenticated
[ 9.009943] wlp1s0: associate with ac:64:62:7e:d9:fc (try 1/3)
[ 9.011150] wlp1s0: RX AssocResp from ac:64:62:7e:d9:fc (capab=0x1011 status=0 aid=6)
[ 9.014865] wlp1s0: associated
[ 9.014957] IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
[ 10.674258] random: crng init done
[ 30.959989] systemd-journald[183]: File /var/log/journal/0b36fe1b452d40748022faa70c51620f/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[ 32.736281] fuse init (API version 7.26)
[ 52.616683] wlp1s0: disconnect from AP ac:64:62:7e:d9:fc for new auth to ac:64:62:7e:d9:fb
[ 52.633624] wlp1s0: authenticate with ac:64:62:7e:d9:fb
[ 52.640899] wlp1s0: send auth to ac:64:62:7e:d9:fb (try 1/3)
[ 52.647241] wlp1s0: authenticated
[ 52.649902] wlp1s0: associate with ac:64:62:7e:d9:fb (try 1/3)
[ 52.654086] wlp1s0: RX AssocResp from ac:64:62:7e:d9:fb (capab=0x1411 status=0 aid=2)
[ 52.658579] wlp1s0: associated |