Revision 656332613338 () - Diff

Link to this snippet: https://friendpaste.com/Zinqp0kzmMhXJMSZ1oX0Q
Embed:
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
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
-- Logs begin at Tue 2019-09-17 17:35:37 CEST, end at Tue 2019-10-08 12:47:47 CEST. --
paź 08 11:47:53 pudlo kernel: Linux version 5.3.4-arch1-1-ARCH (builduser@heftig-3894261) (gcc version 9.2.0 (GCC)) #1 SMP PREEMPT Sat Oct 5 13:44:11 UTC 2019
paź 08 11:47:53 pudlo kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/root rw cryptdevice=UUID=f9270323-1946-4560-b7db-af60148a637e:root root=/dev/mapper/root ivrs_ioapic[5]=00:14.0 ivrs_ioapic[6]=00:00.2 systemd.unit=graphical.target
paź 08 11:47:53 pudlo kernel: KERNEL supported cpus:
paź 08 11:47:53 pudlo kernel: Intel GenuineIntel
paź 08 11:47:53 pudlo kernel: AMD AuthenticAMD
paź 08 11:47:53 pudlo kernel: Hygon HygonGenuine
paź 08 11:47:53 pudlo kernel: Centaur CentaurHauls
paź 08 11:47:53 pudlo kernel: zhaoxin Shanghai
paź 08 11:47:53 pudlo kernel: x86/fpu: x87 FPU will use FXSAVE
paź 08 11:47:53 pudlo kernel: BIOS-provided physical RAM map:
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bd94cfff] usable
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bd94d000-0x00000000bd99afff] ACPI NVS
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bd99b000-0x00000000bd9a3fff] ACPI data
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bd9a4000-0x00000000bd9a4fff] ACPI NVS
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bd9a5000-0x00000000bdadcfff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdadd000-0x00000000bdaedfff] ACPI NVS
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdaee000-0x00000000bdb02fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdb03000-0x00000000bdb04fff] ACPI NVS
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdb05000-0x00000000bdb0dfff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdb0e000-0x00000000bdb13fff] ACPI NVS
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdb14000-0x00000000bdb75fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdb76000-0x00000000bdd78fff] ACPI NVS
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000bdd79000-0x00000000bdefffff] usable
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x00000000fef00000-0x00000000ffffffff] reserved
paź 08 11:47:53 pudlo kernel: BIOS-e820: [mem 0x0000000100001000-0x000000023fffffff] usable
paź 08 11:47:53 pudlo kernel: NX (Execute Disable) protection: active
paź 08 11:47:53 pudlo kernel: SMBIOS 2.7 present.
paź 08 11:47:53 pudlo kernel: DMI: To be filled by O.E.M. To be filled by O.E.M./M5A97 PRO, BIOS 1604 10/16/2012
paź 08 11:47:53 pudlo kernel: tsc: Fast TSC calibration using PIT
paź 08 11:47:53 pudlo kernel: tsc: Detected 3812.885 MHz processor
paź 08 11:47:53 pudlo kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
paź 08 11:47:53 pudlo kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
paź 08 11:47:53 pudlo kernel: AGP: No AGP bridge found
paź 08 11:47:53 pudlo kernel: last_pfn = 0x240000 max_arch_pfn = 0x400000000
paź 08 11:47:53 pudlo kernel: MTRR default type: uncachable
paź 08 11:47:53 pudlo kernel: MTRR fixed ranges enabled:
paź 08 11:47:53 pudlo kernel: 00000-9FFFF write-back
paź 08 11:47:53 pudlo kernel: A0000-BFFFF write-through
paź 08 11:47:53 pudlo kernel: C0000-CFFFF write-protect
paź 08 11:47:53 pudlo kernel: D0000-EBFFF uncachable
paź 08 11:47:53 pudlo kernel: EC000-FFFFF write-protect
paź 08 11:47:53 pudlo kernel: MTRR variable ranges enabled:
paź 08 11:47:53 pudlo kernel: 0 base 000000000000 mask FFFF80000000 write-back
paź 08 11:47:53 pudlo kernel: 1 base 000080000000 mask FFFFC0000000 write-back
paź 08 11:47:53 pudlo kernel: 2 base 0000BDF00000 mask FFFFFFF00000 uncachable
paź 08 11:47:53 pudlo kernel: 3 base 0000BE000000 mask FFFFFE000000 uncachable
paź 08 11:47:53 pudlo kernel: 4 disabled
paź 08 11:47:53 pudlo kernel: 5 disabled
paź 08 11:47:53 pudlo kernel: 6 disabled
paź 08 11:47:53 pudlo kernel: 7 disabled
paź 08 11:47:53 pudlo kernel: TOM2: 0000000240000000 aka 9216M
paź 08 11:47:53 pudlo kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
paź 08 11:47:53 pudlo kernel: total RAM covered: 3039M
paź 08 11:47:53 pudlo kernel: Found optimal setting for mtrr clean up
paź 08 11:47:53 pudlo kernel: gran_size: 64K chunk_size: 64M num_reg: 4 lose cover RAM: 0G
paź 08 11:47:53 pudlo kernel: e820: update [mem 0xbdf00000-0xffffffff] usable ==> reserved
paź 08 11:47:53 pudlo kernel: last_pfn = 0xbdf00 max_arch_pfn = 0x400000000
paź 08 11:47:53 pudlo kernel: check: Scanning 1 areas for low memory corruption
paź 08 11:47:53 pudlo kernel: Using GB pages for direct mapping
paź 08 11:47:53 pudlo kernel: BRK [0xb6201000, 0xb6201fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6202000, 0xb6202fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6203000, 0xb6203fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6204000, 0xb6204fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6205000, 0xb6205fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6206000, 0xb6206fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6207000, 0xb6207fff] PGTABLE
paź 08 11:47:53 pudlo kernel: BRK [0xb6208000, 0xb6208fff] PGTABLE
paź 08 11:47:53 pudlo kernel: RAMDISK: [mem 0x35f7c000-0x36fb5fff]
paź 08 11:47:53 pudlo kernel: ACPI: Early table checksum verification disabled
paź 08 11:47:53 pudlo kernel: ACPI: RSDP 0x00000000000F0450 000024 (v02 ALASKA)
paź 08 11:47:53 pudlo kernel: ACPI: XSDT 0x00000000BD99B068 00004C (v01 ALASKA A M I 01072009 AMI 00010013)
paź 08 11:47:53 pudlo kernel: ACPI: FACP 0x00000000BD9A2E00 0000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
paź 08 11:47:53 pudlo kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20190703/tbfadt-615)
paź 08 11:47:53 pudlo kernel: ACPI: DSDT 0x00000000BD99B150 007CA9 (v02 ALASKA A M I 00000000 INTL 20051117)
paź 08 11:47:53 pudlo kernel: ACPI: FACS 0x00000000BDB0EF80 000040
paź 08 11:47:53 pudlo kernel: ACPI: APIC 0x00000000BD9A2EF8 00009E (v03 ALASKA A M I 01072009 AMI 00010013)
paź 08 11:47:53 pudlo kernel: ACPI: MCFG 0x00000000BD9A2F98 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
paź 08 11:47:53 pudlo kernel: ACPI: HPET 0x00000000BD9A2FD8 000038 (v01 ALASKA A M I 01072009 AMI 00000004)
paź 08 11:47:53 pudlo kernel: ACPI: IVRS 0x00000000BD9A3068 0000C8 (v01 AMD RD890S 00202031 AMD 00000000)
paź 08 11:47:53 pudlo kernel: ACPI: Local APIC address 0xfee00000
paź 08 11:47:53 pudlo kernel: Scanning NUMA topology in Northbridge 24
paź 08 11:47:53 pudlo kernel: No NUMA configuration found
paź 08 11:47:53 pudlo kernel: Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
paź 08 11:47:53 pudlo kernel: NODE_DATA(0) allocated [mem 0x23fffa000-0x23fffdfff]
paź 08 11:47:53 pudlo kernel: Zone ranges:
paź 08 11:47:53 pudlo kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
paź 08 11:47:53 pudlo kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
paź 08 11:47:53 pudlo kernel: Normal [mem 0x0000000100000000-0x000000023fffffff]
paź 08 11:47:53 pudlo kernel: Device empty
paź 08 11:47:53 pudlo kernel: Movable zone start for each node
paź 08 11:47:53 pudlo kernel: Early memory node ranges
paź 08 11:47:53 pudlo kernel: node 0: [mem 0x0000000000001000-0x000000000009cfff]
paź 08 11:47:53 pudlo kernel: node 0: [mem 0x0000000000100000-0x00000000bd94cfff]
paź 08 11:47:53 pudlo kernel: node 0: [mem 0x00000000bdd79000-0x00000000bdefffff]
paź 08 11:47:53 pudlo kernel: node 0: [mem 0x0000000100001000-0x000000023fffffff]
paź 08 11:47:53 pudlo kernel: Zeroed struct page in unavailable ranges: 9617 pages
paź 08 11:47:53 pudlo kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
paź 08 11:47:53 pudlo kernel: On node 0 totalpages: 2087535
paź 08 11:47:53 pudlo kernel: DMA zone: 64 pages used for memmap
paź 08 11:47:53 pudlo kernel: DMA zone: 21 pages reserved
paź 08 11:47:53 pudlo kernel: DMA zone: 3996 pages, LIFO batch:0
paź 08 11:47:53 pudlo kernel: DMA32 zone: 12076 pages used for memmap
paź 08 11:47:53 pudlo kernel: DMA32 zone: 772820 pages, LIFO batch:63
paź 08 11:47:53 pudlo kernel: Normal zone: 20480 pages used for memmap
paź 08 11:47:53 pudlo kernel: Normal zone: 1310719 pages, LIFO batch:63
paź 08 11:47:53 pudlo kernel: ACPI: PM-Timer IO Port: 0x808
paź 08 11:47:53 pudlo kernel: ACPI: Local APIC address 0xfee00000
paź 08 11:47:53 pudlo kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
paź 08 11:47:53 pudlo kernel: IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
paź 08 11:47:53 pudlo kernel: IOAPIC[1]: apic_id 6, version 33, address 0xfec20000, GSI 24-55
paź 08 11:47:53 pudlo kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
paź 08 11:47:53 pudlo kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
paź 08 11:47:53 pudlo kernel: ACPI: IRQ0 used by override.
paź 08 11:47:53 pudlo kernel: ACPI: IRQ9 used by override.
paź 08 11:47:53 pudlo kernel: Using ACPI (MADT) for SMP configuration information
paź 08 11:47:53 pudlo kernel: ACPI: HPET id: 0x43538210 base: 0xfed00000
paź 08 11:47:53 pudlo kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbd94d000-0xbd99afff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbd99b000-0xbd9a3fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbd9a4000-0xbd9a4fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbd9a5000-0xbdadcfff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdadd000-0xbdaedfff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdaee000-0xbdb02fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb03000-0xbdb04fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb05000-0xbdb0dfff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb0e000-0xbdb13fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb14000-0xbdb75fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb76000-0xbdd78fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xbdf00000-0xf7ffffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfec1ffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfec20000-0xfec20fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfec21000-0xfecfffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfed60fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfed61000-0xfed70fff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfed71000-0xfed7ffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfed90000-0xfeefffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0xfef00000-0xffffffff]
paź 08 11:47:53 pudlo kernel: PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
paź 08 11:47:53 pudlo kernel: [mem 0xbdf00000-0xf7ffffff] available for PCI devices
paź 08 11:47:53 pudlo kernel: Booting paravirtualized kernel on bare hardware
paź 08 11:47:53 pudlo kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
paź 08 11:47:53 pudlo kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
paź 08 11:47:53 pudlo kernel: percpu: Embedded 54 pages/cpu s184320 r8192 d28672 u262144
paź 08 11:47:53 pudlo kernel: pcpu-alloc: s184320 r8192 d28672 u262144 alloc=1*2097152
paź 08 11:47:53 pudlo kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
paź 08 11:47:53 pudlo kernel: Built 1 zonelists, mobility grouping on. Total pages: 2054894
paź 08 11:47:53 pudlo kernel: Policy zone: Normal
paź 08 11:47:53 pudlo kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/root rw cryptdevice=UUID=f9270323-1946-4560-b7db-af60148a637e:root root=/dev/mapper/root ivrs_ioapic[5]=00:14.0 ivrs_ioapic[6]=00:00.2 systemd.unit=graphical.target
paź 08 11:47:53 pudlo kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
paź 08 11:47:53 pudlo kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
paź 08 11:47:53 pudlo kernel: mem auto-init: stack:byref_all, heap alloc:off, heap free:off
paź 08 11:47:53 pudlo kernel: AGP: Checking aperture...
paź 08 11:47:53 pudlo kernel: AGP: No AGP bridge found
paź 08 11:47:53 pudlo kernel: AGP: Node 0: aperture [bus addr 0xf8000000-0xfbffffff] (64MB)
paź 08 11:47:53 pudlo kernel: Memory: 8093580K/8350140K available (12291K kernel code, 1321K rwdata, 3952K rodata, 1632K init, 3548K bss, 256560K reserved, 0K cma-reserved)
paź 08 11:47:53 pudlo kernel: random: get_random_u64 called from __kmem_cache_create+0x3e/0x4c0 with crng_init=0
paź 08 11:47:53 pudlo kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
paź 08 11:47:53 pudlo kernel: ftrace: allocating 37811 entries in 148 pages
paź 08 11:47:53 pudlo kernel: rcu: Preemptible hierarchical RCU implementation.
paź 08 11:47:53 pudlo kernel: rcu: CONFIG_RCU_FANOUT set to non-default value of 32.
paź 08 11:47:53 pudlo kernel: rcu: RCU dyntick-idle grace-period acceleration is enabled.
paź 08 11:47:53 pudlo kernel: rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
paź 08 11:47:53 pudlo kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
paź 08 11:47:53 pudlo kernel: Tasks RCU enabled.
paź 08 11:47:53 pudlo kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
paź 08 11:47:53 pudlo kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
paź 08 11:47:53 pudlo kernel: NR_IRQS: 20736, nr_irqs: 1032, preallocated irqs: 16
paź 08 11:47:53 pudlo kernel: rcu: Offload RCU callbacks from CPUs: (none).
paź 08 11:47:53 pudlo kernel: spurious 8259A interrupt: IRQ7.
paź 08 11:47:53 pudlo kernel: Console: colour dummy device 80x25
paź 08 11:47:53 pudlo kernel: printk: console [tty0] enabled
paź 08 11:47:53 pudlo kernel: ACPI: Core revision 20190703
paź 08 11:47:53 pudlo kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
paź 08 11:47:53 pudlo kernel: APIC: Switch to symmetric I/O mode setup
paź 08 11:47:53 pudlo kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
paź 08 11:47:53 pudlo kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6debca24878, max_idle_ns: 881590793646 ns
paź 08 11:47:53 pudlo kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7628.51 BogoMIPS (lpj=12709616)
paź 08 11:47:53 pudlo kernel: pid_max: default: 32768 minimum: 301
paź 08 11:47:53 pudlo kernel: LSM: Security Framework initializing
paź 08 11:47:53 pudlo kernel: Yama: becoming mindful.
paź 08 11:47:53 pudlo kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
paź 08 11:47:53 pudlo kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
paź 08 11:47:53 pudlo kernel: *** VALIDATE proc ***
paź 08 11:47:53 pudlo kernel: *** VALIDATE cgroup1 ***
paź 08 11:47:53 pudlo kernel: *** VALIDATE cgroup2 ***
paź 08 11:47:53 pudlo kernel: LVT offset 0 assigned for vector 0xf9
paź 08 11:47:53 pudlo kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
paź 08 11:47:53 pudlo kernel: Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
paź 08 11:47:53 pudlo kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
paź 08 11:47:53 pudlo kernel: Spectre V2 : Mitigation: Full AMD retpoline
paź 08 11:47:53 pudlo kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
paź 08 11:47:53 pudlo kernel: Freeing SMP alternatives memory: 32K
paź 08 11:47:53 pudlo kernel: smpboot: CPU0: AMD Phenom(tm) II X4 965 Processor (family: 0x10, model: 0x4, stepping: 0x3)
paź 08 11:47:53 pudlo kernel: Performance Events: AMD PMU driver.
paź 08 11:47:53 pudlo kernel: ... version: 0
paź 08 11:47:53 pudlo kernel: ... bit width: 48
paź 08 11:47:53 pudlo kernel: ... generic registers: 4
paź 08 11:47:53 pudlo kernel: ... value mask: 0000ffffffffffff
paź 08 11:47:53 pudlo kernel: ... max period: 00007fffffffffff
paź 08 11:47:53 pudlo kernel: ... fixed-purpose events: 0
paź 08 11:47:53 pudlo kernel: ... event mask: 000000000000000f
paź 08 11:47:53 pudlo kernel: rcu: Hierarchical SRCU implementation.
paź 08 11:47:53 pudlo kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
paź 08 11:47:53 pudlo kernel: smp: Bringing up secondary CPUs ...
paź 08 11:47:53 pudlo kernel: x86: Booting SMP configuration:
paź 08 11:47:53 pudlo kernel: .... node #0, CPUs: #1 #2 #3
paź 08 11:47:53 pudlo kernel: smp: Brought up 1 node, 4 CPUs
paź 08 11:47:53 pudlo kernel: smpboot: Max logical packages: 2
paź 08 11:47:53 pudlo kernel: smpboot: Total of 4 processors activated (30515.04 BogoMIPS)
paź 08 11:47:53 pudlo kernel: devtmpfs: initialized
paź 08 11:47:53 pudlo kernel: x86/mm: Memory block size: 128MB
paź 08 11:47:53 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbd94d000-0xbd99afff] (319488 bytes)
paź 08 11:47:53 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbd9a4000-0xbd9a4fff] (4096 bytes)
paź 08 11:47:53 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdadd000-0xbdaedfff] (69632 bytes)
paź 08 11:47:53 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdb03000-0xbdb04fff] (8192 bytes)
paź 08 11:47:53 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdb0e000-0xbdb13fff] (24576 bytes)
paź 08 11:47:53 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdb76000-0xbdd78fff] (2109440 bytes)
paź 08 11:47:53 pudlo kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
paź 08 11:47:53 pudlo kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
paź 08 11:47:53 pudlo kernel: pinctrl core: initialized pinctrl subsystem
paź 08 11:47:53 pudlo kernel: PM: RTC time: 09:47:23, date: 2019-10-08
paź 08 11:47:53 pudlo kernel: NET: Registered protocol family 16
paź 08 11:47:53 pudlo kernel: audit: initializing netlink subsys (disabled)
paź 08 11:47:53 pudlo kernel: audit: type=2000 audit(1570528042.313:1): state=initialized audit_enabled=0 res=1
paź 08 11:47:53 pudlo kernel: cpuidle: using governor ladder
paź 08 11:47:53 pudlo kernel: cpuidle: using governor menu
paź 08 11:47:53 pudlo kernel: node 0 link 0: io port [c000, ffff]
paź 08 11:47:53 pudlo kernel: TOM: 00000000c0000000 aka 3072M
paź 08 11:47:53 pudlo kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
paź 08 11:47:53 pudlo kernel: node 0 link 0: mmio [c0000000, fef0ffff] ==> [c0000000, dfffffff] and [f0000000, fef0ffff]
paź 08 11:47:53 pudlo kernel: TOM2: 0000000240000000 aka 9216M
paź 08 11:47:53 pudlo kernel: bus: [bus 00-1f] on node 0 link 0
paź 08 11:47:53 pudlo kernel: bus: 00 [io 0x0000-0xffff]
paź 08 11:47:53 pudlo kernel: bus: 00 [mem 0xc0000000-0xdfffffff]
paź 08 11:47:53 pudlo kernel: bus: 00 [mem 0xf0000000-0xffffffff]
paź 08 11:47:53 pudlo kernel: bus: 00 [mem 0x240000000-0xfcffffffff]
paź 08 11:47:53 pudlo kernel: ACPI: bus type PCI registered
paź 08 11:47:53 pudlo kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
paź 08 11:47:53 pudlo kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
paź 08 11:47:53 pudlo kernel: PCI: not using MMCONFIG
paź 08 11:47:53 pudlo kernel: PCI: Using configuration type 1 for base access
paź 08 11:47:53 pudlo kernel: PCI: Using configuration type 1 for extended access
paź 08 11:47:53 pudlo kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
paź 08 11:47:53 pudlo kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(Module Device)
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(Processor Device)
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(Processor Aggregator Device)
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(Linux-Dell-Video)
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
paź 08 11:47:53 pudlo kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
paź 08 11:47:53 pudlo kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
paź 08 11:47:53 pudlo kernel: ACPI: EC: EC started
paź 08 11:47:53 pudlo kernel: ACPI: EC: interrupt blocked
paź 08 11:47:53 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
paź 08 11:47:53 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0xa, EC_CMD/EC_SC=0x66, EC_DATA=0x62
paź 08 11:47:53 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
paź 08 11:47:53 pudlo kernel: ACPI: Interpreter enabled
paź 08 11:47:53 pudlo kernel: ACPI: (supports S0 S1 S3 S4 S5)
paź 08 11:47:53 pudlo kernel: ACPI: Using IOAPIC for interrupt routing
paź 08 11:47:53 pudlo kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
paź 08 11:47:53 pudlo kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
paź 08 11:47:53 pudlo kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
paź 08 11:47:53 pudlo kernel: ACPI: Enabled 10 GPEs in block 00 to 1F
paź 08 11:47:53 pudlo kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
paź 08 11:47:53 pudlo kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
paź 08 11:47:53 pudlo kernel: PCI host bridge to bus 0000:00
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:00.0: [1002:5a14] type 00 class 0x060000
paź 08 11:47:53 pudlo kernel: pci 0000:00:00.2: [1002:5a23] type 00 class 0x080600
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: [1002:5a16] type 01 class 0x060400
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: enabling Extended Tags
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: [1002:5a18] type 01 class 0x060400
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: enabling Extended Tags
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: [1002:5a1a] type 01 class 0x060400
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: enabling Extended Tags
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: [1002:5a1b] type 01 class 0x060400
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: enabling Extended Tags
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: reg 0x10: [io 0xf040-0xf047]
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: reg 0x14: [io 0xf030-0xf033]
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: reg 0x18: [io 0xf020-0xf027]
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: reg 0x1c: [io 0xf010-0xf013]
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: reg 0x20: [io 0xf000-0xf00f]
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: reg 0x24: [mem 0xfeb0b000-0xfeb0b3ff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.0: reg 0x10: [mem 0xfeb0a000-0xfeb0afff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.2: reg 0x10: [mem 0xfeb09000-0xfeb090ff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.2: supports D1 D2
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.0: reg 0x10: [mem 0xfeb08000-0xfeb08fff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.2: reg 0x10: [mem 0xfeb07000-0xfeb070ff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.2: supports D1 D2
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.2: reg 0x10: [mem 0xfeb00000-0xfeb03fff 64bit]
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.5: reg 0x10: [mem 0xfeb06000-0xfeb06fff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.0: reg 0x10: [mem 0xfeb05000-0xfeb05fff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.2: reg 0x10: [mem 0xfeb04000-0xfeb040ff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.2: supports D1 D2
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
paź 08 11:47:53 pudlo kernel: pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
paź 08 11:47:53 pudlo kernel: pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
paź 08 11:47:53 pudlo kernel: pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
paź 08 11:47:53 pudlo kernel: pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
paź 08 11:47:53 pudlo kernel: pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: [1002:6719] type 00 class 0x030000
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: reg 0x18: [mem 0xfea20000-0xfea3ffff 64bit]
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: reg 0x20: [io 0xe000-0xe0ff]
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfea00000-0xfea1ffff pref]
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: enabling Extended Tags
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: supports D1 D2
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x8 link at 0000:00:02.0 (capable of 32.000 Gb/s with 2.5 GT/s x16 link)
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.1: [1002:aa80] type 00 class 0x040300
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfea40000-0xfea43fff 64bit]
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.1: enabling Extended Tags
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.1: supports D1 D2
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: reg 0x10: [io 0xd000-0xd0ff]
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: reg 0x18: [mem 0xd0004000-0xd0004fff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: reg 0x20: [mem 0xd0000000-0xd0003fff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: supports D1 D2
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: [197b:2362] type 00 class 0x010185
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: reg 0x10: [io 0xc040-0xc047]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: reg 0x14: [io 0xc030-0xc033]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: reg 0x18: [io 0xc020-0xc027]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: reg 0x1c: [io 0xc010-0xc013]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: reg 0x20: [io 0xc000-0xc00f]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: reg 0x24: [mem 0xfe910000-0xfe9101ff]
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: PME# supported from D3hot
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: PCI bridge to [bus 03]
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: bridge window [io 0xc000-0xcfff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: bridge window [mem 0xfe900000-0xfe9fffff]
paź 08 11:47:53 pudlo kernel: pci 0000:04:00.0: [1b21:1042] type 00 class 0x0c0330
paź 08 11:47:53 pudlo kernel: pci 0000:04:00.0: reg 0x10: [mem 0xfe800000-0xfe807fff 64bit]
paź 08 11:47:53 pudlo kernel: pci 0000:04:00.0: PME# supported from D3hot D3cold
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: PCI bridge to [bus 04]
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: bridge window [mem 0xfe800000-0xfe8fffff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: extended config space not accessible
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: PCI bridge to [bus 05] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x03af window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x03b0-0x03df window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x0d00-0xffff window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
paź 08 11:47:53 pudlo kernel: ACPI: EC: interrupt unblocked
paź 08 11:47:53 pudlo kernel: ACPI: EC: event unblocked
paź 08 11:47:53 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0xa, EC_CMD/EC_SC=0x66, EC_DATA=0x62
paź 08 11:47:53 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions and events
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: vgaarb: bridge control possible
paź 08 11:47:53 pudlo kernel: vgaarb: loaded
paź 08 11:47:53 pudlo kernel: ACPI: bus type USB registered
paź 08 11:47:53 pudlo kernel: usbcore: registered new interface driver usbfs
paź 08 11:47:53 pudlo kernel: usbcore: registered new interface driver hub
paź 08 11:47:53 pudlo kernel: usbcore: registered new device driver usb
paź 08 11:47:53 pudlo kernel: pps_core: LinuxPPS API ver. 1 registered
paź 08 11:47:53 pudlo kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
paź 08 11:47:53 pudlo kernel: PTP clock support registered
paź 08 11:47:53 pudlo kernel: EDAC MC: Ver: 3.0.0
paź 08 11:47:53 pudlo kernel: PCI: Using ACPI for IRQ routing
paź 08 11:47:53 pudlo kernel: PCI: pci_cache_line_size set to 64 bytes
paź 08 11:47:53 pudlo kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
paź 08 11:47:53 pudlo kernel: e820: reserve RAM buffer [mem 0xbd94d000-0xbfffffff]
paź 08 11:47:53 pudlo kernel: e820: reserve RAM buffer [mem 0xbdf00000-0xbfffffff]
paź 08 11:47:53 pudlo kernel: NetLabel: Initializing
paź 08 11:47:53 pudlo kernel: NetLabel: domain hash size = 128
paź 08 11:47:53 pudlo kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
paź 08 11:47:53 pudlo kernel: NetLabel: unlabeled traffic allowed by default
paź 08 11:47:53 pudlo kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
paź 08 11:47:53 pudlo kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
paź 08 11:47:53 pudlo kernel: clocksource: Switched to clocksource tsc-early
paź 08 11:47:53 pudlo kernel: VFS: Disk quotas dquot_6.6.0
paź 08 11:47:53 pudlo kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
paź 08 11:47:53 pudlo kernel: *** VALIDATE hugetlbfs ***
paź 08 11:47:53 pudlo kernel: pnp: PnP ACPI init
paź 08 11:47:53 pudlo kernel: system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x040b] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x04d6] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0c00-0x0c01] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0c14] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0c50-0x0c51] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0c52] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0c6c] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0c6f] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0cd0-0x0cd1] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0cd2-0x0cd3] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0cd4-0x0cd5] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0cd6-0x0cd7] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0cd8-0x0cdf] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0800-0x089f] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0b20-0x0b3f] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0900-0x090f] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0x0910-0x091f] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [io 0xfe00-0xfefe] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
paź 08 11:47:53 pudlo kernel: system 00:01: [mem 0xffc00000-0xffffffff] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 08 11:47:53 pudlo kernel: system 00:02: [io 0x0290-0x02af] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 08 11:47:53 pudlo kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
paź 08 11:47:53 pudlo kernel: system 00:04: [io 0x04d0-0x04d1] has been reserved
paź 08 11:47:53 pudlo kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 08 11:47:53 pudlo kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 08 11:47:53 pudlo kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
paź 08 11:47:53 pudlo kernel: system 00:07: [mem 0xfeb20000-0xfeb23fff] could not be reserved
paź 08 11:47:53 pudlo kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 08 11:47:53 pudlo kernel: system 00:08: [mem 0xfec20000-0xfec200ff] could not be reserved
paź 08 11:47:53 pudlo kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 08 11:47:53 pudlo kernel: pnp: PnP ACPI: found 9 devices
paź 08 11:47:53 pudlo kernel: thermal_sys: Registered thermal governor 'fair_share'
paź 08 11:47:53 pudlo kernel: thermal_sys: Registered thermal governor 'bang_bang'
paź 08 11:47:53 pudlo kernel: thermal_sys: Registered thermal governor 'step_wise'
paź 08 11:47:53 pudlo kernel: thermal_sys: Registered thermal governor 'user_space'
paź 08 11:47:53 pudlo kernel: thermal_sys: Registered thermal governor 'power_allocator'
paź 08 11:47:53 pudlo kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: PCI bridge to [bus 03]
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: bridge window [io 0xc000-0xcfff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: bridge window [mem 0xfe900000-0xfe9fffff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: PCI bridge to [bus 04]
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: bridge window [mem 0xfe800000-0xfe8fffff]
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: PCI bridge to [bus 05]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:04: resource 1 [mem 0xfe800000-0xfe8fffff]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 4 [io 0x0000-0x03af window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 5 [io 0x03e0-0x0cf7 window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 6 [io 0x03b0-0x03df window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 7 [io 0x0d00-0xffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 8 [mem 0x000a0000-0x000bffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 9 [mem 0x000c0000-0x000dffff window]
paź 08 11:47:53 pudlo kernel: pci_bus 0000:05: resource 10 [mem 0xc0000000-0xffffffff window]
paź 08 11:47:53 pudlo kernel: NET: Registered protocol family 2
paź 08 11:47:53 pudlo kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
paź 08 11:47:53 pudlo kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
paź 08 11:47:53 pudlo kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
paź 08 11:47:53 pudlo kernel: TCP: Hash tables configured (established 65536 bind 65536)
paź 08 11:47:53 pudlo kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
paź 08 11:47:53 pudlo kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
paź 08 11:47:53 pudlo kernel: NET: Registered protocol family 1
paź 08 11:47:53 pudlo kernel: NET: Registered protocol family 44
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.0: quirk_usb_early_handoff+0x0/0x63a took 766467 usecs
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.0: quirk_usb_early_handoff+0x0/0x63a took 29174 usecs
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.5: quirk_usb_early_handoff+0x0/0x63a took 25923 usecs
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.0: quirk_usb_early_handoff+0x0/0x63a took 22790 usecs
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
paź 08 11:47:53 pudlo kernel: PCI: CLS 64 bytes, default 64
paź 08 11:47:53 pudlo kernel: Trying to unpack rootfs image as initramfs...
paź 08 11:47:53 pudlo kernel: Freeing initrd memory: 16616K
paź 08 11:47:53 pudlo kernel: pci 0000:00:00.0: Adding to iommu group 0
paź 08 11:47:53 pudlo kernel: pci 0000:00:02.0: Adding to iommu group 1
paź 08 11:47:53 pudlo kernel: pci 0000:00:04.0: Adding to iommu group 2
paź 08 11:47:53 pudlo kernel: pci 0000:00:06.0: Adding to iommu group 3
paź 08 11:47:53 pudlo kernel: pci 0000:00:07.0: Adding to iommu group 4
paź 08 11:47:53 pudlo kernel: pci 0000:00:11.0: Adding to iommu group 5
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.0: Adding to iommu group 6
paź 08 11:47:53 pudlo kernel: pci 0000:00:12.2: Adding to iommu group 6
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.0: Adding to iommu group 7
paź 08 11:47:53 pudlo kernel: pci 0000:00:13.2: Adding to iommu group 7
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.0: Adding to iommu group 8
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.2: Adding to iommu group 9
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.3: Adding to iommu group 10
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.4: Adding to iommu group 11
paź 08 11:47:53 pudlo kernel: pci 0000:00:14.5: Adding to iommu group 12
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.0: Adding to iommu group 13
paź 08 11:47:53 pudlo kernel: pci 0000:00:16.2: Adding to iommu group 13
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.0: Adding to iommu group 14
paź 08 11:47:53 pudlo kernel: pci 0000:01:00.1: Adding to iommu group 14
paź 08 11:47:53 pudlo kernel: pci 0000:02:00.0: Adding to iommu group 15
paź 08 11:47:53 pudlo kernel: pci 0000:03:00.0: Adding to iommu group 16
paź 08 11:47:53 pudlo kernel: pci 0000:04:00.0: Adding to iommu group 17
paź 08 11:47:53 pudlo kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
paź 08 11:47:53 pudlo kernel: AMD-Vi: Interrupt remapping enabled
paź 08 11:47:53 pudlo kernel: AMD-Vi: Lazy IO/TLB flushing enabled
paź 08 11:47:53 pudlo kernel: LVT offset 1 assigned for vector 0x400
paź 08 11:47:53 pudlo kernel: LVT offset 1 assigned
paź 08 11:47:53 pudlo kernel: perf: AMD IBS detected (0x0000001f)
paź 08 11:47:53 pudlo kernel: check: Scanning for low memory corruption every 60 seconds
paź 08 11:47:53 pudlo kernel: Initialise system trusted keyrings
paź 08 11:47:53 pudlo kernel: Key type blacklist registered
paź 08 11:47:53 pudlo kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
paź 08 11:47:53 pudlo kernel: zbud: loaded
paź 08 11:47:53 pudlo kernel: Key type asymmetric registered
paź 08 11:47:53 pudlo kernel: Asymmetric key parser 'x509' registered
paź 08 11:47:53 pudlo kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
paź 08 11:47:53 pudlo kernel: io scheduler mq-deadline registered
paź 08 11:47:53 pudlo kernel: io scheduler kyber registered
paź 08 11:47:53 pudlo kernel: io scheduler bfq registered
paź 08 11:47:53 pudlo kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
paź 08 11:47:53 pudlo kernel: vesafb: mode is 1400x1050x32, linelength=5632, pages=0
paź 08 11:47:53 pudlo kernel: vesafb: scrolling: redraw
paź 08 11:47:53 pudlo kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
paź 08 11:47:53 pudlo kernel: vesafb: framebuffer at 0xc0000000, mapped to 0x(____ptrval____), using 5824k, total 5824k
paź 08 11:47:53 pudlo kernel: fbcon: Deferring console take-over
paź 08 11:47:53 pudlo kernel: fb0: VESA VGA frame buffer device
paź 08 11:47:53 pudlo kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
paź 08 11:47:53 pudlo kernel: ACPI: Power Button [PWRB]
paź 08 11:47:53 pudlo kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
paź 08 11:47:53 pudlo kernel: ACPI: Power Button [PWRF]
paź 08 11:47:53 pudlo kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
paź 08 11:47:53 pudlo kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
paź 08 11:47:53 pudlo kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
paź 08 11:47:53 pudlo kernel: usbcore: registered new interface driver usbserial_generic
paź 08 11:47:53 pudlo kernel: usbserial: USB Serial support registered for generic
paź 08 11:47:53 pudlo kernel: rtc_cmos 00:03: RTC can wake from S4
paź 08 11:47:53 pudlo kernel: rtc_cmos 00:03: registered as rtc0
paź 08 11:47:53 pudlo kernel: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
paź 08 11:47:53 pudlo kernel: ledtrig-cpu: registered to indicate activity on CPUs
paź 08 11:47:53 pudlo kernel: NET: Registered protocol family 10
paź 08 11:47:53 pudlo kernel: Segment Routing with IPv6
paź 08 11:47:53 pudlo kernel: NET: Registered protocol family 17
paź 08 11:47:53 pudlo kernel: RAS: Correctable Errors collector initialized.
paź 08 11:47:53 pudlo kernel: microcode: CPU0: patch_level=0x010000c8
paź 08 11:47:53 pudlo kernel: microcode: CPU1: patch_level=0x010000c8
paź 08 11:47:53 pudlo kernel: microcode: CPU2: patch_level=0x010000c8
paź 08 11:47:53 pudlo kernel: microcode: CPU3: patch_level=0x010000c8
paź 08 11:47:53 pudlo kernel: microcode: Microcode Update Driver: v2.2.
paź 08 11:47:53 pudlo kernel: sched_clock: Marking stable (3334178705, 43515457)->(3525890458, -148196296)
paź 08 11:47:53 pudlo kernel: registered taskstats version 1
paź 08 11:47:53 pudlo kernel: Loading compiled-in X.509 certificates
paź 08 11:47:53 pudlo kernel: Loaded X.509 cert 'Build time autogenerated kernel key: b0570ef86aa12b9197e100924935bb1091fe41e5'
paź 08 11:47:53 pudlo kernel: zswap: loaded using pool lzo/zbud
paź 08 11:47:53 pudlo kernel: Key type big_key registered
paź 08 11:47:53 pudlo kernel: PM: Magic number: 7:813:777
paź 08 11:47:53 pudlo kernel: rtc_cmos 00:03: setting system clock to 2019-10-08T09:47:25 UTC (1570528045)
paź 08 11:47:53 pudlo kernel: Freeing unused decrypted memory: 2040K
paź 08 11:47:53 pudlo kernel: Freeing unused kernel image memory: 1632K
paź 08 11:47:53 pudlo kernel: Write protecting the kernel read-only data: 18432k
paź 08 11:47:53 pudlo kernel: Freeing unused kernel image memory: 2012K
paź 08 11:47:53 pudlo kernel: Freeing unused kernel image memory: 144K
paź 08 11:47:53 pudlo kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
paź 08 11:47:53 pudlo kernel: Run /init as init process
paź 08 11:47:53 pudlo kernel: fbcon: Taking over console
paź 08 11:47:53 pudlo kernel: Console: switching to colour frame buffer device 175x65
paź 08 11:47:53 pudlo kernel: Linux agpgart interface v0.103
paź 08 11:47:53 pudlo kernel: [drm] radeon kernel modesetting enabled.
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xc0000000 -> 0xcfffffff
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xfea20000 -> 0xfea3ffff
paź 08 11:47:53 pudlo kernel: checking generic (c0000000 5b0000) vs hw (c0000000 10000000)
paź 08 11:47:53 pudlo kernel: fb0: switching to radeondrmfb from VESA VGA
paź 08 11:47:53 pudlo kernel: Console: switching to colour dummy device 80x25
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: vgaarb: deactivate vga console
paź 08 11:47:53 pudlo kernel: [drm] initializing kernel modesetting (CAYMAN 0x1002:0x6719 0x1043:0x03BE 0x00).
paź 08 11:47:53 pudlo kernel: ATOM BIOS: 6719.13.10.0.9.AS01.U13
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: GTT: 1024M 0x0000000080000000 - 0x00000000BFFFFFFF
paź 08 11:47:53 pudlo kernel: [drm] Detected VRAM RAM=2048M, BAR=256M
paź 08 11:47:53 pudlo kernel: [drm] RAM width 256bits DDR
paź 08 11:47:53 pudlo kernel: [TTM] Zone kernel: Available graphics memory: 4090988 KiB
paź 08 11:47:53 pudlo kernel: [TTM] Zone dma32: Available graphics memory: 2097152 KiB
paź 08 11:47:53 pudlo kernel: [TTM] Initializing pool allocator
paź 08 11:47:53 pudlo kernel: [TTM] Initializing DMA pool allocator
paź 08 11:47:53 pudlo kernel: [drm] radeon: 2048M of VRAM memory ready
paź 08 11:47:53 pudlo kernel: [drm] radeon: 1024M of GTT memory ready.
paź 08 11:47:53 pudlo kernel: [drm] Loading CAYMAN Microcode
paź 08 11:47:53 pudlo kernel: [drm] Internal thermal controller with fan control
paź 08 11:47:53 pudlo kernel: [drm] radeon: dpm initialized
paź 08 11:47:53 pudlo kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
paź 08 11:47:53 pudlo kernel: [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
paź 08 11:47:53 pudlo kernel: [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: WB enabled
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0x(____ptrval____)
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0x(____ptrval____)
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0x(____ptrval____)
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0x(____ptrval____)
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0x(____ptrval____)
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0x(____ptrval____)
paź 08 11:47:53 pudlo kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
paź 08 11:47:53 pudlo kernel: [drm] Driver supports precise vblank timestamp query.
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: radeon: MSI limited to 32-bit
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: radeon: using MSI.
paź 08 11:47:53 pudlo kernel: [drm] radeon: irq initialized.
paź 08 11:47:53 pudlo kernel: [drm] ring test on 0 succeeded in 3 usecs
paź 08 11:47:53 pudlo kernel: [drm] ring test on 3 succeeded in 4 usecs
paź 08 11:47:53 pudlo kernel: [drm] ring test on 4 succeeded in 4 usecs
paź 08 11:47:53 pudlo kernel: [drm] ring test on 5 succeeded in 2 usecs
paź 08 11:47:53 pudlo kernel: [drm] UVD initialized successfully.
paź 08 11:47:53 pudlo kernel: [drm] ib test on ring 0 succeeded in 0 usecs
paź 08 11:47:53 pudlo kernel: [drm] ib test on ring 3 succeeded in 0 usecs
paź 08 11:47:53 pudlo kernel: [drm] ib test on ring 4 succeeded in 0 usecs
paź 08 11:47:53 pudlo kernel: tsc: Refined TSC clocksource calibration: 3812.713 MHz
paź 08 11:47:53 pudlo kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6dea82b909d, max_idle_ns: 881590793628 ns
paź 08 11:47:53 pudlo kernel: clocksource: Switched to clocksource tsc
paź 08 11:47:53 pudlo kernel: [drm] ib test on ring 5 succeeded
paź 08 11:47:53 pudlo kernel: [drm] Radeon Display Connectors
paź 08 11:47:53 pudlo kernel: [drm] Connector 0:
paź 08 11:47:53 pudlo kernel: [drm] DP-1
paź 08 11:47:53 pudlo kernel: [drm] HPD5
paź 08 11:47:53 pudlo kernel: [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
paź 08 11:47:53 pudlo kernel: [drm] Encoders:
paź 08 11:47:53 pudlo kernel: [drm] DFP1: INTERNAL_UNIPHY2
paź 08 11:47:53 pudlo kernel: [drm] Connector 1:
paź 08 11:47:53 pudlo kernel: [drm] DP-2
paź 08 11:47:53 pudlo kernel: [drm] HPD6
paź 08 11:47:53 pudlo kernel: [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
paź 08 11:47:53 pudlo kernel: [drm] Encoders:
paź 08 11:47:53 pudlo kernel: [drm] DFP2: INTERNAL_UNIPHY1
paź 08 11:47:53 pudlo kernel: [drm] Connector 2:
paź 08 11:47:53 pudlo kernel: [drm] DP-3
paź 08 11:47:53 pudlo kernel: [drm] HPD4
paź 08 11:47:53 pudlo kernel: [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
paź 08 11:47:53 pudlo kernel: [drm] Encoders:
paź 08 11:47:53 pudlo kernel: [drm] DFP3: INTERNAL_UNIPHY2
paź 08 11:47:53 pudlo kernel: [drm] Connector 3:
paź 08 11:47:53 pudlo kernel: [drm] DP-4
paź 08 11:47:53 pudlo kernel: [drm] HPD2
paź 08 11:47:53 pudlo kernel: [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
paź 08 11:47:53 pudlo kernel: [drm] Encoders:
paź 08 11:47:53 pudlo kernel: [drm] DFP4: INTERNAL_UNIPHY
paź 08 11:47:53 pudlo kernel: [drm] Connector 4:
paź 08 11:47:53 pudlo kernel: [drm] DVI-I-1
paź 08 11:47:53 pudlo kernel: [drm] HPD1
paź 08 11:47:53 pudlo kernel: [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
paź 08 11:47:53 pudlo kernel: [drm] Encoders:
paź 08 11:47:53 pudlo kernel: [drm] DFP5: INTERNAL_UNIPHY1
paź 08 11:47:53 pudlo kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
paź 08 11:47:53 pudlo kernel: [drm] Connector 5:
paź 08 11:47:53 pudlo kernel: [drm] DVI-D-1
paź 08 11:47:53 pudlo kernel: [drm] HPD3
paź 08 11:47:53 pudlo kernel: [drm] DDC: 0x6480 0x6480 0x6484 0x6484 0x6488 0x6488 0x648c 0x648c
paź 08 11:47:53 pudlo kernel: [drm] Encoders:
paź 08 11:47:53 pudlo kernel: [drm] DFP6: INTERNAL_UNIPHY
paź 08 11:47:53 pudlo kernel: [drm] fb mappable at 0xC0371000
paź 08 11:47:53 pudlo kernel: [drm] vram apper at 0xC0000000
paź 08 11:47:53 pudlo kernel: [drm] size 8294400
paź 08 11:47:53 pudlo kernel: [drm] fb depth is 24
paź 08 11:47:53 pudlo kernel: [drm] pitch is 7680
paź 08 11:47:53 pudlo kernel: fbcon: radeondrmfb (fb0) is primary device
paź 08 11:47:53 pudlo kernel: Console: switching to colour frame buffer device 240x67
paź 08 11:47:53 pudlo kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
paź 08 11:47:53 pudlo kernel: [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
paź 08 11:47:53 pudlo kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
paź 08 11:47:53 pudlo kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
paź 08 11:47:53 pudlo kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
paź 08 11:47:53 pudlo kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
paź 08 11:47:53 pudlo kernel: SCSI subsystem initialized
paź 08 11:47:53 pudlo kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
paź 08 11:47:53 pudlo kernel: QUIRK: Enable AMD PLL fix
paź 08 11:47:53 pudlo kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
paź 08 11:47:53 pudlo kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
paź 08 11:47:53 pudlo kernel: libata version 3.00 loaded.
paź 08 11:47:53 pudlo kernel: ehci-pci: EHCI PCI platform driver
paź 08 11:47:53 pudlo kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
paź 08 11:47:53 pudlo kernel: xhci_hcd 0000:04:00.0: hcc params 0x0200f180 hci version 0x96 quirks 0x0000000000080000
paź 08 11:47:53 pudlo kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb1: Product: xHCI Host Controller
paź 08 11:47:53 pudlo kernel: usb usb1: Manufacturer: Linux 5.3.4-arch1-1-ARCH xhci-hcd
paź 08 11:47:53 pudlo kernel: usb usb1: SerialNumber: 0000:04:00.0
paź 08 11:47:53 pudlo kernel: hub 1-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 1-0:1.0: 2 ports detected
paź 08 11:47:53 pudlo kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
paź 08 11:47:53 pudlo kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
paź 08 11:47:53 pudlo kernel: xhci_hcd 0000:04:00.0: Host supports USB 3.0 SuperSpeed
paź 08 11:47:53 pudlo kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
paź 08 11:47:53 pudlo kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb2: Product: xHCI Host Controller
paź 08 11:47:53 pudlo kernel: usb usb2: Manufacturer: Linux 5.3.4-arch1-1-ARCH xhci-hcd
paź 08 11:47:53 pudlo kernel: usb usb2: SerialNumber: 0000:04:00.0
paź 08 11:47:53 pudlo kernel: ahci 0000:00:11.0: version 3.0
paź 08 11:47:53 pudlo kernel: ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
paź 08 11:47:53 pudlo kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
paź 08 11:47:53 pudlo kernel: hub 2-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 2-0:1.0: 2 ports detected
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:12.2: EHCI Host Controller
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 3
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:12.2: debug port 1
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb09000
paź 08 11:47:53 pudlo kernel: scsi host0: ahci
paź 08 11:47:53 pudlo kernel: scsi host1: ahci
paź 08 11:47:53 pudlo kernel: scsi host2: ahci
paź 08 11:47:53 pudlo kernel: scsi host3: ahci
paź 08 11:47:53 pudlo kernel: scsi host4: ahci
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
paź 08 11:47:53 pudlo kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb3: Product: EHCI Host Controller
paź 08 11:47:53 pudlo kernel: usb usb3: Manufacturer: Linux 5.3.4-arch1-1-ARCH ehci_hcd
paź 08 11:47:53 pudlo kernel: usb usb3: SerialNumber: 0000:00:12.2
paź 08 11:47:53 pudlo kernel: hub 3-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 3-0:1.0: 5 ports detected
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:13.2: EHCI Host Controller
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:13.2: debug port 1
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:13.2: irq 21, io mem 0xfeb07000
paź 08 11:47:53 pudlo kernel: scsi host5: ahci
paź 08 11:47:53 pudlo kernel: ata1: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b100 irq 19
paź 08 11:47:53 pudlo kernel: ata2: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b180 irq 19
paź 08 11:47:53 pudlo kernel: ata3: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b200 irq 19
paź 08 11:47:53 pudlo kernel: ata4: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b280 irq 19
paź 08 11:47:53 pudlo kernel: ata5: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b300 irq 19
paź 08 11:47:53 pudlo kernel: ata6: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b380 irq 19
paź 08 11:47:53 pudlo kernel: ahci 0000:03:00.0: AHCI 0001.0100 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
paź 08 11:47:53 pudlo kernel: ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part
paź 08 11:47:53 pudlo kernel: scsi host6: ahci
paź 08 11:47:53 pudlo kernel: scsi host7: ahci
paź 08 11:47:53 pudlo kernel: ata7: SATA max UDMA/133 abar m512@0xfe910000 port 0xfe910100 irq 40
paź 08 11:47:53 pudlo kernel: ata8: SATA max UDMA/133 abar m512@0xfe910000 port 0xfe910180 irq 40
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
paź 08 11:47:53 pudlo kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb4: Product: EHCI Host Controller
paź 08 11:47:53 pudlo kernel: usb usb4: Manufacturer: Linux 5.3.4-arch1-1-ARCH ehci_hcd
paź 08 11:47:53 pudlo kernel: usb usb4: SerialNumber: 0000:00:13.2
paź 08 11:47:53 pudlo kernel: hub 4-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 4-0:1.0: 5 ports detected
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:16.2: EHCI Host Controller
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:16.2: debug port 1
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:16.2: irq 23, io mem 0xfeb04000
paź 08 11:47:53 pudlo kernel: ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
paź 08 11:47:53 pudlo kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb5: Product: EHCI Host Controller
paź 08 11:47:53 pudlo kernel: usb usb5: Manufacturer: Linux 5.3.4-arch1-1-ARCH ehci_hcd
paź 08 11:47:53 pudlo kernel: usb usb5: SerialNumber: 0000:00:16.2
paź 08 11:47:53 pudlo kernel: hub 5-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 5-0:1.0: 4 ports detected
paź 08 11:47:53 pudlo kernel: ohci-pci: OHCI PCI platform driver
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:12.0: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 6
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:12.0: irq 18, io mem 0xfeb0a000
paź 08 11:47:53 pudlo kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb6: Product: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: usb usb6: Manufacturer: Linux 5.3.4-arch1-1-ARCH ohci_hcd
paź 08 11:47:53 pudlo kernel: usb usb6: SerialNumber: 0000:00:12.0
paź 08 11:47:53 pudlo kernel: hub 6-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 6-0:1.0: 5 ports detected
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:13.0: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 7
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:13.0: irq 20, io mem 0xfeb08000
paź 08 11:47:53 pudlo kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb7: Product: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: usb usb7: Manufacturer: Linux 5.3.4-arch1-1-ARCH ohci_hcd
paź 08 11:47:53 pudlo kernel: usb usb7: SerialNumber: 0000:00:13.0
paź 08 11:47:53 pudlo kernel: hub 7-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 7-0:1.0: 5 ports detected
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:14.5: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:14.5: irq 18, io mem 0xfeb06000
paź 08 11:47:53 pudlo kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb8: Product: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: usb usb8: Manufacturer: Linux 5.3.4-arch1-1-ARCH ohci_hcd
paź 08 11:47:53 pudlo kernel: usb usb8: SerialNumber: 0000:00:14.5
paź 08 11:47:53 pudlo kernel: hub 8-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 8-0:1.0: 2 ports detected
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:16.0: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
paź 08 11:47:53 pudlo kernel: ohci-pci 0000:00:16.0: irq 22, io mem 0xfeb05000
paź 08 11:47:53 pudlo kernel: usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.03
paź 08 11:47:53 pudlo kernel: usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 08 11:47:53 pudlo kernel: usb usb9: Product: OHCI PCI host controller
paź 08 11:47:53 pudlo kernel: usb usb9: Manufacturer: Linux 5.3.4-arch1-1-ARCH ohci_hcd
paź 08 11:47:53 pudlo kernel: usb usb9: SerialNumber: 0000:00:16.0
paź 08 11:47:53 pudlo kernel: hub 9-0:1.0: USB hub found
paź 08 11:47:53 pudlo kernel: hub 9-0:1.0: 4 ports detected
paź 08 11:47:53 pudlo kernel: device-mapper: uevent: version 1.0.3
paź 08 11:47:53 pudlo kernel: device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com
paź 08 11:47:53 pudlo kernel: ata4: SATA link down (SStatus 0 SControl 300)
paź 08 11:47:53 pudlo kernel: ata7: SATA link down (SStatus 0 SControl 300)
paź 08 11:47:53 pudlo kernel: ata8: SATA link down (SStatus 0 SControl 300)
paź 08 11:47:53 pudlo kernel: usb 1-2: new low-speed USB device number 2 using xhci_hcd
paź 08 11:47:53 pudlo kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
paź 08 11:47:53 pudlo kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
paź 08 11:47:53 pudlo kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
paź 08 11:47:53 pudlo kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
paź 08 11:47:53 pudlo kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
paź 08 11:47:53 pudlo kernel: ata6.00: ATA-9: GOODRAM, SAFM22.3, max UDMA/133
paź 08 11:47:53 pudlo kernel: ata6.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 08 11:47:53 pudlo kernel: ata6.00: configured for UDMA/133
paź 08 11:47:53 pudlo kernel: ata1.00: ATA-8: WDC WD20EARS-00S8B1, 80.00A80, max UDMA/133
paź 08 11:47:53 pudlo kernel: ata1.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 08 11:47:53 pudlo kernel: ata2.00: ATA-8: WDC WD20EARS-00S8B1, 80.00A80, max UDMA/133
paź 08 11:47:53 pudlo kernel: ata2.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 08 11:47:53 pudlo kernel: ata3.00: ATA-8: WDC WD20EARS-00S8B1, 80.00A80, max UDMA/133
paź 08 11:47:53 pudlo kernel: ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 08 11:47:53 pudlo kernel: ata1.00: configured for UDMA/133
paź 08 11:47:53 pudlo kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD20EARS-00S 0A80 PQ: 0 ANSI: 5
paź 08 11:47:53 pudlo kernel: ata2.00: configured for UDMA/133
paź 08 11:47:53 pudlo kernel: scsi 1:0:0:0: Direct-Access ATA WDC WD20EARS-00S 0A80 PQ: 0 ANSI: 5
paź 08 11:47:53 pudlo kernel: ata3.00: configured for UDMA/133
paź 08 11:47:53 pudlo kernel: scsi 2:0:0:0: Direct-Access ATA WDC WD20EARS-00S 0A80 PQ: 0 ANSI: 5
paź 08 11:47:53 pudlo kernel: sd 1:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
paź 08 11:47:53 pudlo kernel: sd 1:0:0:0: [sdb] Write Protect is off
paź 08 11:47:53 pudlo kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
paź 08 11:47:53 pudlo kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 08 11:47:53 pudlo kernel: sd 0:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
paź 08 11:47:53 pudlo kernel: sd 0:0:0:0: [sda] Write Protect is off
paź 08 11:47:53 pudlo kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
paź 08 11:47:53 pudlo kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 08 11:47:53 pudlo kernel: sd 2:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
paź 08 11:47:53 pudlo kernel: sd 2:0:0:0: [sdc] Write Protect is off
paź 08 11:47:53 pudlo kernel: sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
paź 08 11:47:53 pudlo kernel: sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 08 11:47:53 pudlo kernel: sdc: sdc1 sdc2
paź 08 11:47:53 pudlo kernel: sd 2:0:0:0: [sdc] Attached SCSI disk
paź 08 11:47:53 pudlo kernel: sda: sda1 sda2 sda3
paź 08 11:47:53 pudlo kernel: sd 0:0:0:0: [sda] Attached SCSI disk
paź 08 11:47:53 pudlo kernel: sdb: sdb1 sdb2
paź 08 11:47:53 pudlo kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
paź 08 11:47:53 pudlo kernel: usb 1-2: New USB device found, idVendor=046d, idProduct=c062, bcdDevice=31.00
paź 08 11:47:53 pudlo kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
paź 08 11:47:53 pudlo kernel: usb 1-2: Product: USB Laser Mouse
paź 08 11:47:53 pudlo kernel: usb 1-2: Manufacturer: Logitech
paź 08 11:47:53 pudlo kernel: hidraw: raw HID events driver (C) Jiri Kosina
paź 08 11:47:53 pudlo kernel: usbcore: registered new interface driver usbhid
paź 08 11:47:53 pudlo kernel: usbhid: USB HID core driver
paź 08 11:47:53 pudlo kernel: input: Logitech USB Laser Mouse as /devices/pci0000:00/0000:00:07.0/0000:04:00.0/usb1/1-2/1-2:1.0/0003:046D:C062.0001/input/input3
paź 08 11:47:53 pudlo kernel: hid-generic 0003:046D:C062.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB Laser Mouse] on usb-0000:04:00.0-2/input0
paź 08 11:47:53 pudlo kernel: ata5.00: ATA-8: TOSHIBA HDWE140, FP1R, max UDMA/100
paź 08 11:47:53 pudlo kernel: ata5.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 08 11:47:53 pudlo kernel: ata5.00: configured for UDMA/100
paź 08 11:47:53 pudlo kernel: scsi 4:0:0:0: Direct-Access ATA TOSHIBA HDWE140 FP1R PQ: 0 ANSI: 5
paź 08 11:47:53 pudlo kernel: sd 4:0:0:0: [sdd] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
paź 08 11:47:53 pudlo kernel: sd 4:0:0:0: [sdd] 4096-byte physical blocks
paź 08 11:47:53 pudlo kernel: sd 4:0:0:0: [sdd] Write Protect is off
paź 08 11:47:53 pudlo kernel: sd 4:0:0:0: [sdd] Mode Sense: 00 3a 00 00
paź 08 11:47:53 pudlo kernel: sd 4:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 08 11:47:53 pudlo kernel: scsi 5:0:0:0: Direct-Access ATA GOODRAM 22.3 PQ: 0 ANSI: 5
paź 08 11:47:53 pudlo kernel: sd 5:0:0:0: [sde] 468862128 512-byte logical blocks: (240 GB/224 GiB)
paź 08 11:47:53 pudlo kernel: sd 5:0:0:0: [sde] Write Protect is off
paź 08 11:47:53 pudlo kernel: sd 5:0:0:0: [sde] Mode Sense: 00 3a 00 00
paź 08 11:47:53 pudlo kernel: sd 5:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 08 11:47:53 pudlo kernel: sde: sde1
paź 08 11:47:53 pudlo kernel: sd 5:0:0:0: [sde] Attached SCSI disk
paź 08 11:47:53 pudlo kernel: random: lvm: uninitialized urandom read (4 bytes read)
paź 08 11:47:53 pudlo kernel: random: lvm: uninitialized urandom read (4 bytes read)
paź 08 11:47:53 pudlo kernel: random: lvm: uninitialized urandom read (4 bytes read)
paź 08 11:47:53 pudlo kernel: sdd: sdd1 sdd2
paź 08 11:47:53 pudlo kernel: sd 4:0:0:0: [sdd] Attached SCSI disk
paź 08 11:47:53 pudlo kernel: urandom_read: 4 callbacks suppressed
paź 08 11:47:53 pudlo kernel: random: lvm: uninitialized urandom read (2 bytes read)
paź 08 11:47:53 pudlo kernel: random: crng init done
paź 08 11:47:53 pudlo kernel: cryptd: max_cpu_qlen set to 1000
paź 08 11:47:53 pudlo kernel: SGI XFS with ACLs, security attributes, realtime, scrub, repair, no debug enabled
paź 08 11:47:53 pudlo kernel: XFS (dm-9): Mounting V4 Filesystem
paź 08 11:47:53 pudlo kernel: XFS (dm-9): Starting recovery (logdev: internal)
paź 08 11:47:53 pudlo kernel: XFS (dm-9): Ending recovery (logdev: internal)
paź 08 11:47:53 pudlo systemd[1]: systemd 243.51-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
paź 08 11:47:53 pudlo systemd[1]: Detected architecture x86-64.
paź 08 11:47:53 pudlo systemd[1]: Set hostname to <pudlo>.
paź 08 11:47:53 pudlo systemd[1]: Created slice system-getty.slice.
paź 08 11:47:53 pudlo systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
paź 08 11:47:53 pudlo systemd[1]: Created slice system-systemd\x2dfsck.slice.
paź 08 11:47:53 pudlo systemd[1]: Created slice User and Session Slice.
paź 08 11:47:53 pudlo systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
paź 08 11:47:53 pudlo systemd[1]: Started Forward Password Requests to Wall Directory Watch.
paź 08 11:47:53 pudlo systemd[1]: Set up automount home.automount.
paź 08 11:47:53 pudlo kernel: vhba: loading out-of-tree module taints kernel.
paź 08 11:47:53 pudlo kernel: vhba: module verification failed: signature and/or required key missing - tainting kernel
paź 08 11:47:53 pudlo kernel: scsi host8: vhba
paź 08 11:47:53 pudlo systemd-journald[420]: Journal started
paź 08 11:47:53 pudlo systemd-journald[420]: Runtime Journal (/run/log/journal/3b1c4163df5b455fbc076f4ef4f25e2c) is 8.0M, max 399.5M, 391.5M free.
paź 08 11:47:53 pudlo systemd-modules-load[404]: Inserted module 'vhba'
paź 08 11:47:53 pudlo systemd-sysctl[413]: Couldn't write '1' to 'net/ipv4/tcp_tw_recycle', ignoring: No such file or directory
paź 08 11:47:53 pudlo haveged[419]: haveged: listening socket at 3
paź 08 11:47:53 pudlo haveged[419]: haveged: ver: 1.9.8; arch: x86; vend: ; build: (gcc 9.1.0 ITV); collect: 128K
paź 08 11:47:53 pudlo haveged[419]: haveged: cpu: (VC); data: 64K (V); inst: 64K (V); idx: 39/40; sz: 52623/52623
paź 08 11:47:53 pudlo haveged[419]: haveged: tot tests(BA8): A:1/1 B:1/1 continuous tests(B): last entropy estimate 8.00058
paź 08 11:47:53 pudlo haveged[419]: haveged: fills: 0, generated: 0
paź 08 11:47:53 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:53 pudlo systemd[1]: Starting Flush Journal to Persistent Storage...
paź 08 11:47:53 pudlo kernel: audit: type=1130 audit(1570528073.826:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:54 pudlo systemd-udevd[421]: /usr/lib/udev/rules.d/11-dm-lvm.rules:40 Invalid value for OPTIONS key, ignoring: 'event_timeout=180'
paź 08 11:47:54 pudlo systemd-udevd[421]: /usr/lib/udev/rules.d/11-dm-lvm.rules:40 The line takes no effect, ignoring.
paź 08 11:47:54 pudlo systemd-journald[420]: Time spent on flushing to /var is 225.776ms for 961 entries.
paź 08 11:47:54 pudlo systemd-journald[420]: System Journal (/var/log/journal/3b1c4163df5b455fbc076f4ef4f25e2c) is 160.1M, max 4.0G, 3.8G free.
paź 08 11:47:56 pudlo systemd[1]: Started Flush Journal to Persistent Storage.
paź 08 11:47:56 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:56 pudlo kernel: audit: type=1130 audit(1570528076.643:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:56 pudlo systemd[1]: Started udev Kernel Device Manager.
paź 08 11:47:56 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:56 pudlo kernel: audit: type=1130 audit(1570528076.726:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:57 pudlo kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
paź 08 11:47:57 pudlo kernel: piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
paź 08 11:47:57 pudlo kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
paź 08 11:47:57 pudlo kernel: input: PC Speaker as /devices/platform/pcspkr/input/input4
paź 08 11:47:57 pudlo kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
paź 08 11:47:57 pudlo kernel: libphy: r8169: probed
paź 08 11:47:57 pudlo kernel: r8169 0000:02:00.0 eth0: RTL8168evl/8111evl, c8:60:00:16:8a:5c, XID 2c9, IRQ 42
paź 08 11:47:57 pudlo kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
paź 08 11:47:57 pudlo systemd-udevd[445]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
paź 08 11:47:57 pudlo mtp-probe[458]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:07.0/0000:04:00.0/usb1/1-2"
paź 08 11:47:57 pudlo mtp-probe[458]: bus: 1, device: 2 was not an MTP device
paź 08 11:47:58 pudlo kernel: mousedev: PS/2 mouse device common for all mice
paź 08 11:47:58 pudlo kernel: kvm: Nested Virtualization enabled
paź 08 11:47:58 pudlo kernel: kvm: Nested Paging enabled
paź 08 11:47:58 pudlo systemd-udevd[443]: Using default interface naming scheme 'v243'.
paź 08 11:47:58 pudlo systemd-udevd[443]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
paź 08 11:47:58 pudlo kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
paź 08 11:47:58 pudlo kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
paź 08 11:47:58 pudlo systemd-udevd[436]: Using default interface naming scheme 'v243'.
paź 08 11:47:58 pudlo kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input5
paź 08 11:47:58 pudlo kernel: MCE: In-kernel MCE decoding enabled.
paź 08 11:47:58 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 08 11:47:58 pudlo kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
(Note that use of the override may cause unknown side effects.)
paź 08 11:47:58 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 08 11:47:58 pudlo kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
(Note that use of the override may cause unknown side effects.)
paź 08 11:47:58 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 08 11:47:58 pudlo kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
(Note that use of the override may cause unknown side effects.)
paź 08 11:47:58 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 08 11:47:58 pudlo kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
(Note that use of the override may cause unknown side effects.)
paź 08 11:47:58 pudlo systemd[1]: Found device /dev/disk/by-uuid/0ede6086-ea31-4a34-8538-238f5db7abc3.
paź 08 11:47:58 pudlo systemd[1]: Created slice system-lvm2\x2dpvscan.slice.
paź 08 11:47:58 pudlo systemd[1]: Condition check resulted in FUSE Control File System being skipped.
paź 08 11:47:58 pudlo systemd[1]: Starting LVM2 PV scan on device 8:1...
paź 08 11:47:58 pudlo systemd[1]: Starting LVM2 PV scan on device 8:2...
paź 08 11:47:58 pudlo systemd[1]: Starting LVM2 PV scan on device 8:3...
paź 08 11:47:58 pudlo lvm[499]: pvscan[499] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:47:58 pudlo lvm[498]: pvscan[498] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:47:58 pudlo systemd[1]: Starting LVM2 PV scan on device 8:33...
paź 08 11:47:58 pudlo systemd[1]: Starting LVM2 PV scan on device 8:34...
paź 08 11:47:58 pudlo lvm[500]: pvscan[500] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:47:58 pudlo systemd[1]: Starting Cryptography Setup for home...
paź 08 11:47:58 pudlo lvm[502]: pvscan[502] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:47:58 pudlo systemd[1]: Condition check resulted in First Boot Wizard being skipped.
paź 08 11:47:58 pudlo systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
paź 08 11:47:58 pudlo systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
paź 08 11:47:58 pudlo systemd[1]: Condition check resulted in Create System Users being skipped.
paź 08 11:47:58 pudlo lvm[504]: pvscan[504] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:47:59 pudlo systemd[1]: Starting LVM2 PV scan on device 8:49...
paź 08 11:47:59 pudlo lvm[510]: pvscan[510] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x1e
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: inputs:
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
paź 08 11:47:59 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
paź 08 11:47:59 pudlo kernel: input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in FUSE Control File System being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in First Boot Wizard being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in Create System Users being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in FUSE Control File System being skipped.
paź 08 11:47:59 pudlo systemd[1]: Started Dispatch Password Requests to Console.
paź 08 11:47:59 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in First Boot Wizard being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
paź 08 11:47:59 pudlo systemd[1]: Condition check resulted in Create System Users being skipped.
paź 08 11:47:59 pudlo kernel: audit: type=1130 audit(1570528079.159:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:47:59 pudlo systemd[1]: Found device /dev/disk/by-id/dm-name-test-swap.
paź 08 11:47:59 pudlo systemd[1]: Starting Cryptography Setup for swap...
paź 08 11:47:59 pudlo systemd-cryptsetup[523]: Set cipher aes, mode xts-plain, key size 512 bits for device /dev/disk/by-id/dm-name-test-swap.
paź 08 11:47:59 pudlo systemd-udevd[446]: controlC0: Process '/usr/bin/alsactl restore 0' failed with exit code 99.
paź 08 11:48:00 pudlo mkswap[538]: Tworzenie obszaru wymiany w wersji 1, rozmiar = 1024 MiB (bajtów: 1073737728)
paź 08 11:48:00 pudlo mkswap[538]: brak etykiety, UUID=92022713-74fc-47a3-8aaa-f17b94009e4a
paź 08 11:48:00 pudlo systemd[1]: Started Cryptography Setup for swap.
paź 08 11:48:00 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@swap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:00 pudlo kernel: audit: type=1130 audit(1570528080.076:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@swap comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:00 pudlo systemd[1]: Found device /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap.
paź 08 11:48:00 pudlo systemd[1]: Activating swap /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap...
paź 08 11:48:00 pudlo systemd[1]: Activated swap /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap.
paź 08 11:48:00 pudlo systemd[1]: Reached target Swap.
paź 08 11:48:00 pudlo systemd[1]: Mounting Temporary Directory (/tmp)...
paź 08 11:48:00 pudlo kernel: Adding 1048572k swap on /dev/mapper/swap. Priority:-2 extents:1 across:1048572k FS
paź 08 11:48:00 pudlo systemd[1]: Mounted Temporary Directory (/tmp).
paź 08 11:48:01 pudlo systemd[1]: Starting LVM2 PV scan on device 8:18...
paź 08 11:48:01 pudlo lvm[550]: pvscan[550] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 08 11:48:01 pudlo systemd[1]: Found device WDC_WD20EARS-00S8B1 1.
paź 08 11:48:01 pudlo lvm[402]: 9 logical volume(s) in volume group "test" monitored
paź 08 11:48:01 pudlo systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
paź 08 11:48:01 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:01 pudlo systemd[1]: Reached target Local File Systems (Pre).
paź 08 11:48:01 pudlo systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
paź 08 11:48:01 pudlo systemd[1]: Mounting /var/lib/sql_tmp...
paź 08 11:48:01 pudlo systemd[1]: Starting File System Check on /dev/disk/by-uuid/5c33e782-eaa8-4cac-9460-415020aef60a...
paź 08 11:48:01 pudlo kernel: audit: type=1130 audit(1570528081.576:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:01 pudlo systemd[1]: Mounted /var/lib/sql_tmp.
paź 08 11:48:01 pudlo lvm[510]: pvscan[510] VG test skip autoactivation.
paź 08 11:48:01 pudlo systemd[1]: Started LVM2 PV scan on device 8:49.
paź 08 11:48:01 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:49 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:01 pudlo lvm[502]: pvscan[502] VG test skip autoactivation.
paź 08 11:48:01 pudlo kernel: audit: type=1130 audit(1570528081.656:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:49 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:01 pudlo systemd[1]: Started LVM2 PV scan on device 8:33.
paź 08 11:48:01 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:33 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:01 pudlo kernel: audit: type=1130 audit(1570528081.699:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:33 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo lvm[500]: pvscan[500] VG test skip autoactivation.
paź 08 11:48:02 pudlo systemd[1]: Started LVM2 PV scan on device 8:3.
paź 08 11:48:02 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:3 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo kernel: audit: type=1130 audit(1570528082.056:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:3 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo lvm[499]: pvscan[499] VG test skip autoactivation.
paź 08 11:48:02 pudlo systemd[1]: Started LVM2 PV scan on device 8:2.
paź 08 11:48:02 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo kernel: audit: type=1130 audit(1570528082.176:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo lvm[498]: pvscan[498] VG test skip autoactivation.
paź 08 11:48:02 pudlo systemd[1]: Started LVM2 PV scan on device 8:1.
paź 08 11:48:02 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo kernel: audit: type=1130 audit(1570528082.476:12): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo systemd[1]: Started File System Check on /dev/disk/by-uuid/5c33e782-eaa8-4cac-9460-415020aef60a.
paź 08 11:48:02 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-5c33e782\x2deaa8\x2d4cac\x2d9460\x2d415020aef60a comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo systemd[1]: Mounting /boot...
paź 08 11:48:02 pudlo kernel: audit: type=1130 audit(1570528082.493:13): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-5c33e782\x2deaa8\x2d4cac\x2d9460\x2d415020aef60a comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo lvm[504]: pvscan[504] VG test skip autoactivation.
paź 08 11:48:02 pudlo systemd[1]: Started LVM2 PV scan on device 8:34.
paź 08 11:48:02 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:34 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:02 pudlo kernel: audit: type=1130 audit(1570528082.673:14): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:34 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo kernel: EXT4-fs (sdb1): mounting ext2 file system using the ext4 subsystem
paź 08 11:48:03 pudlo systemd[1]: Mounted /boot.
paź 08 11:48:03 pudlo kernel: EXT4-fs (sdb1): mounted filesystem without journal. Opts: errors=remount-ro
paź 08 11:48:03 pudlo systemd[1]: Reached target Local File Systems.
paź 08 11:48:03 pudlo systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
paź 08 11:48:03 pudlo systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
paź 08 11:48:03 pudlo systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
paź 08 11:48:03 pudlo systemd[1]: Starting Create Volatile Files and Directories...
paź 08 11:48:03 pudlo systemd-tmpfiles[561]: Detected autofs mount point /home during canonicalization of /home.
paź 08 11:48:03 pudlo systemd-tmpfiles[561]: Skipping /home
paź 08 11:48:03 pudlo lvm[550]: pvscan[550] VG test skip autoactivation.
paź 08 11:48:03 pudlo systemd[1]: Started LVM2 PV scan on device 8:18.
paź 08 11:48:03 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:18 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo kernel: audit: type=1130 audit(1570528083.323:15): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:18 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo systemd-tmpfiles[561]: Detected autofs mount point /home during canonicalization of /home.
paź 08 11:48:03 pudlo systemd-tmpfiles[561]: Skipping /home
paź 08 11:48:03 pudlo systemd[1]: Started Create Volatile Files and Directories.
paź 08 11:48:03 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo kernel: audit: type=1130 audit(1570528083.686:16): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
paź 08 11:48:03 pudlo systemd[1]: Condition check resulted in Update is Completed being skipped.
paź 08 11:48:03 pudlo systemd[1]: Starting Update UTMP about System Boot/Shutdown...
paź 08 11:48:03 pudlo audit[562]: SYSTEM_BOOT pid=562 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo kernel: audit: type=1127 audit(1570528083.713:17): pid=562 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo systemd[1]: Started Update UTMP about System Boot/Shutdown.
paź 08 11:48:03 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:03 pudlo kernel: audit: type=1130 audit(1570528083.736:18): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:18 pudlo systemd-cryptsetup[506]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/0ede6086-ea31-4a34-8538-238f5db7abc3.
paź 08 11:48:18 pudlo systemd[1]: Started Cryptography Setup for home.
paź 08 11:48:18 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@home comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:18 pudlo systemd[1]: Reached target Local Encrypted Volumes.
paź 08 11:48:18 pudlo systemd[1]: Reached target System Initialization.
paź 08 11:48:18 pudlo kernel: audit: type=1130 audit(1570528098.306:19): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@home comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:18 pudlo systemd[1]: Started Daily rotation of log files.
paź 08 11:48:18 pudlo systemd[1]: Started Daily man-db regeneration.
paź 08 11:48:18 pudlo systemd[1]: Started Daily verification of password and group files.
paź 08 11:48:18 pudlo systemd[1]: Started Daily Cleanup of Temporary Directories.
paź 08 11:48:18 pudlo systemd[1]: Reached target Timers.
paź 08 11:48:18 pudlo systemd[1]: Listening on D-Bus System Message Bus Socket.
paź 08 11:48:18 pudlo systemd[1]: Reached target Sockets.
paź 08 11:48:18 pudlo systemd[1]: Reached target Basic System.
paź 08 11:48:18 pudlo systemd[1]: Starting Save/Restore Sound Card State...
paź 08 11:48:18 pudlo systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
paź 08 11:48:18 pudlo systemd[1]: Starting Apply cpupower configuration...
paź 08 11:48:18 pudlo systemd[1]: Started D-Bus System Message Bus.
paź 08 11:48:18 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:18 pudlo kernel: audit: type=1130 audit(1570528098.353:20): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:18 pudlo systemd[1]: Starting IPv4 Packet Filtering Framework...
paź 08 11:48:18 pudlo systemd[1]: Starting Initialize hardware monitoring sensors...
paź 08 11:48:18 pudlo systemd[1]: Started radeon-profile daemon.
paź 08 11:48:18 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=radeon-profile-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:18 pudlo kernel: audit: type=1130 audit(1570528098.453:21): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=radeon-profile-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo kernel: it87: Found IT8721F chip at 0x290, revision 1
paź 08 11:48:19 pudlo systemd[1]: Starting Login Service...
paź 08 11:48:19 pudlo systemd[1]: Started Save/Restore Sound Card State.
paź 08 11:48:19 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=alsa-restore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo systemd[1]: Started Apply cpupower configuration.
paź 08 11:48:19 pudlo kernel: audit: type=1130 audit(1570528099.553:22): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=alsa-restore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cpupower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo systemd[1]: Reached target Sound Card.
paź 08 11:48:19 pudlo kernel: audit: type=1130 audit(1570528099.556:23): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cpupower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo systemd[1]: Starting Rotate log files...
paź 08 11:48:19 pudlo systemd[1]: Starting Daily man-db regeneration...
paź 08 11:48:19 pudlo systemd[1]: Started Verify integrity of password and group files.
paź 08 11:48:19 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo kernel: audit: type=1130 audit(1570528099.673:24): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:19 pudlo kernel: audit: type=1325 audit(1570528099.836:25): table=mangle family=2 entries=0
paź 08 11:48:19 pudlo audit: NETFILTER_CFG table=mangle family=2 entries=0
paź 08 11:48:19 pudlo audit: NETFILTER_CFG table=mangle family=2 entries=6
paź 08 11:48:19 pudlo kernel: audit: type=1325 audit(1570528099.839:26): table=mangle family=2 entries=6
paź 08 11:48:20 pudlo audit: NETFILTER_CFG table=nat family=2 entries=0
paź 08 11:48:20 pudlo audit: NETFILTER_CFG table=nat family=2 entries=5
paź 08 11:48:20 pudlo kernel: audit: type=1325 audit(1570528100.516:27): table=nat family=2 entries=0
paź 08 11:48:20 pudlo kernel: audit: type=1325 audit(1570528100.516:28): table=nat family=2 entries=5
paź 08 11:48:20 pudlo audit: NETFILTER_CFG table=filter family=2 entries=0
paź 08 11:48:20 pudlo kernel: audit: type=1325 audit(1570528100.516:29): table=filter family=2 entries=0
paź 08 11:48:21 pudlo audit: NETFILTER_CFG table=filter family=2 entries=4
paź 08 11:48:21 pudlo kernel: audit: type=1325 audit(1570528101.526:30): table=filter family=2 entries=4
paź 08 11:48:22 pudlo radeon-profile-daemon[582]: "radeon-profile-daemon (v. 20190603)"
paź 08 11:48:22 pudlo radeon-profile-daemon[582]: Awaiting connections...
paź 08 11:48:22 pudlo systemd[1]: Started IPv4 Packet Filtering Framework.
paź 08 11:48:22 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=iptables comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo systemd[1]: Started Initialize hardware monitoring sensors.
paź 08 11:48:22 pudlo kernel: audit: type=1130 audit(1570528102.566:31): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=iptables comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lm_sensors comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo systemd[1]: logrotate.service: Succeeded.
paź 08 11:48:22 pudlo systemd[1]: Started Rotate log files.
paź 08 11:48:22 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo systemd[1]: home.automount: Got automount request for /home, triggered by 588 (pwck)
paź 08 11:48:22 pudlo systemd[1]: Reached target Network (Pre).
paź 08 11:48:22 pudlo kernel: audit: type=1130 audit(1570528102.569:32): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lm_sensors comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo kernel: audit: type=1130 audit(1570528102.569:33): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo kernel: audit: type=1131 audit(1570528102.569:34): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:22 pudlo systemd[1]: Starting Network Manager...
paź 08 11:48:22 pudlo systemd[1]: Starting File System Check on /dev/disk/by-uuid/b29b4196-cdfa-4dde-b904-fd49562e291c...
paź 08 11:48:23 pudlo systemd[1]: Started File System Check on /dev/disk/by-uuid/b29b4196-cdfa-4dde-b904-fd49562e291c.
paź 08 11:48:23 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-b29b4196\x2dcdfa\x2d4dde\x2db904\x2dfd49562e291c comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:23 pudlo kernel: audit: type=1130 audit(1570528103.646:35): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-b29b4196\x2dcdfa\x2d4dde\x2db904\x2dfd49562e291c comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:23 pudlo systemd[1]: Mounting /home...
paź 08 11:48:23 pudlo kernel: XFS (dm-11): Mounting V4 Filesystem
paź 08 11:48:23 pudlo kernel: XFS (dm-11): Starting recovery (logdev: internal)
paź 08 11:48:24 pudlo systemd[1]: Mounted /home.
paź 08 11:48:24 pudlo kernel: XFS (dm-11): Ending recovery (logdev: internal)
paź 08 11:48:24 pudlo systemd[1]: shadow.service: Succeeded.
paź 08 11:48:24 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:24 pudlo kernel: audit: type=1131 audit(1570528104.479:36): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:24 pudlo systemd-logind[599]: New seat seat0.
paź 08 11:48:24 pudlo systemd-logind[599]: Watching system buttons on /dev/input/event1 (Power Button)
paź 08 11:48:24 pudlo systemd-logind[599]: Watching system buttons on /dev/input/event0 (Power Button)
paź 08 11:48:25 pudlo systemd-logind[599]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
paź 08 11:48:25 pudlo systemd[1]: Started Login Service.
paź 08 11:48:25 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:25 pudlo kernel: audit: type=1130 audit(1570528105.213:37): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo NetworkManager[603]: <info> [1570528108.7541] NetworkManager (version 1.20.4-1) is starting... (for the first time)
paź 08 11:48:28 pudlo NetworkManager[603]: <info> [1570528108.7541] Read config: /etc/NetworkManager/NetworkManager.conf (etc: 20-connectivity.conf)
paź 08 11:48:28 pudlo systemd[1]: Started Network Manager.
paź 08 11:48:28 pudlo NetworkManager[603]: <info> [1570528108.7935] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
paź 08 11:48:28 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo systemd[1]: Reached target Network.
paź 08 11:48:28 pudlo kernel: audit: type=1130 audit(1570528108.789:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo systemd[1]: Starting Permit User Sessions...
paź 08 11:48:28 pudlo systemd[1]: Started Permit User Sessions.
paź 08 11:48:28 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo systemd[1]: Started Getty on tty1.
paź 08 11:48:28 pudlo kernel: audit: type=1130 audit(1570528108.856:39): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo systemd[1]: Reached target Login Prompts.
paź 08 11:48:28 pudlo systemd[1]: Reached target Multi-User System.
paź 08 11:48:28 pudlo kernel: audit: type=1130 audit(1570528108.859:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:28 pudlo systemd[1]: Reached target Graphical Interface.
paź 08 11:48:28 pudlo systemd[1]: Starting Forward Password Requests to Wall...
paź 08 11:48:28 pudlo NetworkManager[603]: <info> [1570528108.8832] manager[0x55b61acd60e0]: monitoring kernel firmware directory '/lib/firmware'.
paź 08 11:48:28 pudlo dbus-daemon[579]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.2' (uid=0 pid=603 comm="/usr/bin/NetworkManager --no-daemon ")
paź 08 11:48:29 pudlo systemd[1]: Starting Hostname Service...
paź 08 11:48:29 pudlo systemd[1]: systemd-ask-password-console.path: Succeeded.
paź 08 11:48:29 pudlo systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
paź 08 11:48:29 pudlo systemd[1]: Stopping Dispatch Password Requests to Console...
paź 08 11:48:29 pudlo systemd[1]: systemd-ask-password-console.service: Succeeded.
paź 08 11:48:29 pudlo systemd[1]: Stopped Dispatch Password Requests to Console.
paź 08 11:48:29 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:29 pudlo systemctl[626]: Failed to stop systemd-ask-password-plymouth.path: Unit systemd-ask-password-plymouth.path not loaded.
paź 08 11:48:29 pudlo systemctl[626]: Failed to stop systemd-ask-password-plymouth.service: Unit systemd-ask-password-plymouth.service not loaded.
paź 08 11:48:29 pudlo kernel: audit: type=1131 audit(1570528109.273:41): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-console comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:29 pudlo systemd[1]: Started Forward Password Requests to Wall.
paź 08 11:48:29 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-wall comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:29 pudlo kernel: audit: type=1130 audit(1570528109.276:42): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-ask-password-wall comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:29 pudlo dbus-daemon[579]: [system] Successfully activated service 'org.freedesktop.hostname1'
paź 08 11:48:29 pudlo systemd[1]: Started Hostname Service.
paź 08 11:48:29 pudlo NetworkManager[603]: <info> [1570528109.7033] hostname: hostname: using hostnamed
paź 08 11:48:29 pudlo NetworkManager[603]: <info> [1570528109.7034] hostname: hostname changed from (none) to "pudlo"
paź 08 11:48:29 pudlo NetworkManager[603]: <info> [1570528109.7036] dns-mgr[0x55b61acb5240]: init: dns=default,systemd-resolved rc-manager=symlink
paź 08 11:48:29 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.hostname1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:29 pudlo kernel: audit: type=1130 audit(1570528109.699:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.hostname1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:30 pudlo NetworkManager[603]: <info> [1570528110.1365] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.20.4-1/libnm-device-plugin-adsl.so)
paź 08 11:48:30 pudlo NetworkManager[603]: <info> [1570528110.4637] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.20.4-1/libnm-device-plugin-bluetooth.so)
paź 08 11:48:30 pudlo NetworkManager[603]: <info> [1570528110.6215] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.20.4-1/libnm-device-plugin-ovs.so)
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.2422] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.20.4-1/libnm-device-plugin-team.so)
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.3341] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.20.4-1/libnm-device-plugin-wifi.so)
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.3789] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.20.4-1/libnm-device-plugin-wwan.so)
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.3792] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.3792] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.3793] manager: Networking is enabled by state file
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.4005] dhcp-init: Using DHCP client 'internal'
paź 08 11:48:31 pudlo dbus-daemon[579]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=603 comm="/usr/bin/NetworkManager --no-daemon ")
paź 08 11:48:31 pudlo NetworkManager[603]: <info> [1570528111.4272] settings: Loaded settings plugin: keyfile (internal)
paź 08 11:48:31 pudlo systemd[1]: Starting Network Manager Script Dispatcher Service...
paź 08 11:48:32 pudlo dbus-daemon[579]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
paź 08 11:48:32 pudlo systemd[1]: Started Network Manager Script Dispatcher Service.
paź 08 11:48:31 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.nm-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:32 pudlo kernel: audit: type=1130 audit(1570528111.999:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.nm-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:32 pudlo NetworkManager[603]: <info> [1570528112.4768] device (lo): carrier: link connected
paź 08 11:48:32 pudlo NetworkManager[603]: <info> [1570528112.4770] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
paź 08 11:48:32 pudlo NetworkManager[603]: <info> [1570528112.4778] manager: (enp2s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
paź 08 11:48:32 pudlo NetworkManager[603]: <info> [1570528112.4787] device (enp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
paź 08 11:48:32 pudlo kernel: RTL8211E Gigabit Ethernet r8169-200:00: attached PHY driver [RTL8211E Gigabit Ethernet] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
paź 08 11:48:32 pudlo kernel: r8169 0000:02:00.0 enp2s0: Link is Down
paź 08 11:48:32 pudlo NetworkManager[603]: <info> [1570528112.9668] ovsdb: Nie można połączyć: Nie ma takiego pliku ani katalogu
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5775] device (enp2s0): carrier: link connected
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5777] device (enp2s0): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5784] policy: auto-activating connection 'Połączenie przewodowe 1' (3ea395b9-ba04-3904-ba27-f4129c15aa36)
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5789] device (enp2s0): Activation: starting connection 'Połączenie przewodowe 1' (3ea395b9-ba04-3904-ba27-f4129c15aa36)
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5790] device (enp2s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5793] manager: NetworkManager state is now CONNECTING
paź 08 11:48:35 pudlo kernel: r8169 0000:02:00.0 enp2s0: Link is Up - 1Gbps/Full - flow control rx/tx
paź 08 11:48:35 pudlo kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5800] device (enp2s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5804] device (enp2s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.5807] dhcp4 (enp2s0): activation: beginning transaction (timeout in 45 seconds)
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6947] dhcp4 (enp2s0): state changed unknown -> bound
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6954] device (enp2s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6969] device (enp2s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6970] device (enp2s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6975] manager: NetworkManager state is now CONNECTED_LOCAL
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6984] manager: NetworkManager state is now CONNECTED_SITE
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.6985] policy: set 'Połączenie przewodowe 1' (enp2s0) as default for IPv4 routing and DNS
paź 08 11:48:35 pudlo dbus-daemon[579]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.2' (uid=0 pid=603 comm="/usr/bin/NetworkManager --no-daemon ")
paź 08 11:48:35 pudlo dbus-daemon[579]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.9747] device (enp2s0): Activation: successful, device activated.
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.9753] manager: NetworkManager state is now CONNECTED_GLOBAL
paź 08 11:48:35 pudlo NetworkManager[603]: <info> [1570528115.9757] manager: startup complete
paź 08 11:48:42 pudlo systemd[1]: dbus-org.freedesktop.nm-dispatcher.service: Succeeded.
paź 08 11:48:42 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.nm-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:42 pudlo kernel: audit: type=1131 audit(1570528122.176:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.nm-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:59 pudlo systemd[1]: dbus-org.freedesktop.hostname1.service: Succeeded.
paź 08 11:48:59 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.hostname1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:48:59 pudlo kernel: audit: type=1131 audit(1570528139.729:46): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-org.freedesktop.hostname1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:28 pudlo systemd[1]: man-db.service: Succeeded.
paź 08 11:49:28 pudlo systemd[1]: Started Daily man-db regeneration.
paź 08 11:49:28 pudlo systemd[1]: Startup finished in 26.377s (kernel) + 1min 39.643s (userspace) = 2min 6.020s.
paź 08 11:49:28 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:28 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:28 pudlo kernel: audit: type=1130 audit(1570528168.173:47): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:28 pudlo kernel: audit: type=1131 audit(1570528168.173:48): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:35 pudlo kernel: audit: type=1006 audit(1570528175.169:49): pid=625 uid=0 old-auid=4294967295 auid=1000 tty=tty1 old-ses=4294967295 ses=1 res=1
paź 08 11:49:35 pudlo login[625]: pam_unix(login:session): session opened for user user by LOGIN(uid=0)
paź 08 11:49:35 pudlo systemd[1]: Created slice User Slice of UID 1000.
paź 08 11:49:35 pudlo systemd[1]: Starting User Runtime Directory /run/user/1000...
paź 08 11:49:35 pudlo systemd-logind[599]: New session 1 of user user.
paź 08 11:49:35 pudlo systemd[1]: Started User Runtime Directory /run/user/1000.
paź 08 11:49:35 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:35 pudlo systemd[1]: Starting User Manager for UID 1000...
paź 08 11:49:35 pudlo kernel: audit: type=1130 audit(1570528175.306:50): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:35 pudlo systemd[5836]: pam_unix(systemd-user:session): session opened for user user by (uid=0)
paź 08 11:49:35 pudlo kernel: audit: type=1006 audit(1570528175.323:51): pid=5836 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
paź 08 11:49:35 pudlo systemd[5836]: Reached target Paths.
paź 08 11:49:35 pudlo kernel: audit: type=1130 audit(1570528175.759:52): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:35 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 11:49:35 pudlo login[625]: LOGIN ON tty1 BY user
paź 08 11:49:35 pudlo systemd[5836]: Reached target Timers.
paź 08 11:49:35 pudlo systemd[5836]: Starting D-Bus User Message Bus Socket.
paź 08 11:49:35 pudlo systemd[5836]: Listening on GnuPG network certificate management daemon.
paź 08 11:49:35 pudlo systemd[5836]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
paź 08 11:49:35 pudlo systemd[5836]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
paź 08 11:49:35 pudlo systemd[5836]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
paź 08 11:49:35 pudlo systemd[5836]: Listening on GnuPG cryptographic agent and passphrase cache.
paź 08 11:49:35 pudlo systemd[5836]: Listening on p11-kit server.
paź 08 11:49:35 pudlo systemd[5836]: Listening on Sound System.
paź 08 11:49:35 pudlo systemd[5836]: Listening on D-Bus User Message Bus Socket.
paź 08 11:49:35 pudlo systemd[5836]: Reached target Sockets.
paź 08 11:49:35 pudlo systemd[5836]: Reached target Basic System.
paź 08 11:49:35 pudlo systemd[5836]: Reached target Main User Target.
paź 08 11:49:35 pudlo systemd[5836]: Startup finished in 431ms.
paź 08 11:49:35 pudlo systemd[1]: Started User Manager for UID 1000.
paź 08 11:49:35 pudlo systemd[1]: Started Session 1 of user user.
paź 08 11:57:13 pudlo kernel: radeon_dp_aux_transfer_native: 326 callbacks suppressed
paź 08 11:57:16 pudlo systemd[5836]: Started D-Bus User Message Bus.
paź 08 12:03:19 pudlo systemd[1]: Starting Cleanup of Temporary Directories...
paź 08 12:03:19 pudlo systemd[1]: systemd-tmpfiles-clean.service: Succeeded.
paź 08 12:03:19 pudlo systemd[1]: Started Cleanup of Temporary Directories.
paź 08 12:03:19 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 12:03:19 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 12:03:19 pudlo kernel: audit: type=1130 audit(1570528999.306:53): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 08 12:03:19 pudlo kernel: audit: type=1131 audit(1570528999.309:54): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'