Revision 323938646134 () - Diff

Link to this snippet: https://friendpaste.com/41Kzac1wbYDyMD3MYbJjGo
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
-- Logs begin at Tue 2019-09-17 17:35:37 CEST, end at Tue 2019-10-08 12:31:27 CEST. --
paź 07 21:23:09 pudlo kernel: Linux version 4.19.77-1-lts (builduser@andyrtr) (gcc version 9.2.0 (GCC)) #1 SMP Sat Oct 5 18:49:03 CEST 2019
paź 07 21:23:09 pudlo kernel: Command line: BOOT_IMAGE=/vmlinuz-linux-lts root=/dev/mapper/root rw cryptdevice=UUID=f9270323-1946-4560-b7db-af60148a637e:root root=/dev/mapper/root quiet ivrs_ioapic[5]=00:14.0 ivrs_ioapic[6]=00:00.2
paź 07 21:23:09 pudlo kernel: x86/fpu: x87 FPU will use FXSAVE
paź 07 21:23:09 pudlo kernel: BIOS-provided physical RAM map:
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bd94cfff] usable
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bd94d000-0x00000000bd99afff] ACPI NVS
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bd99b000-0x00000000bd9a3fff] ACPI data
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bd9a4000-0x00000000bd9a4fff] ACPI NVS
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bd9a5000-0x00000000bdadcfff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdadd000-0x00000000bdaedfff] ACPI NVS
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdaee000-0x00000000bdb02fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdb03000-0x00000000bdb04fff] ACPI NVS
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdb05000-0x00000000bdb0dfff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdb0e000-0x00000000bdb13fff] ACPI NVS
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdb14000-0x00000000bdb75fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdb76000-0x00000000bdd78fff] ACPI NVS
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000bdd79000-0x00000000bdefffff] usable
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x00000000fef00000-0x00000000ffffffff] reserved
paź 07 21:23:09 pudlo kernel: BIOS-e820: [mem 0x0000000100001000-0x000000023fffffff] usable
paź 07 21:23:09 pudlo kernel: NX (Execute Disable) protection: active
paź 07 21:23:09 pudlo kernel: SMBIOS 2.7 present.
paź 07 21:23:09 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ź 07 21:23:09 pudlo kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
paź 07 21:23:09 pudlo kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
paź 07 21:23:09 pudlo kernel: AGP: No AGP bridge found
paź 07 21:23:09 pudlo kernel: last_pfn = 0x240000 max_arch_pfn = 0x400000000
paź 07 21:23:09 pudlo kernel: MTRR default type: uncachable
paź 07 21:23:09 pudlo kernel: MTRR fixed ranges enabled:
paź 07 21:23:09 pudlo kernel: 00000-9FFFF write-back
paź 07 21:23:09 pudlo kernel: A0000-BFFFF write-through
paź 07 21:23:09 pudlo kernel: C0000-CFFFF write-protect
paź 07 21:23:09 pudlo kernel: D0000-EBFFF uncachable
paź 07 21:23:09 pudlo kernel: EC000-FFFFF write-protect
paź 07 21:23:09 pudlo kernel: MTRR variable ranges enabled:
paź 07 21:23:09 pudlo kernel: 0 base 000000000000 mask FFFF80000000 write-back
paź 07 21:23:09 pudlo kernel: 1 base 000080000000 mask FFFFC0000000 write-back
paź 07 21:23:09 pudlo kernel: 2 base 0000BDF00000 mask FFFFFFF00000 uncachable
paź 07 21:23:09 pudlo kernel: 3 base 0000BE000000 mask FFFFFE000000 uncachable
paź 07 21:23:09 pudlo kernel: 4 disabled
paź 07 21:23:09 pudlo kernel: 5 disabled
paź 07 21:23:09 pudlo kernel: 6 disabled
paź 07 21:23:09 pudlo kernel: 7 disabled
paź 07 21:23:09 pudlo kernel: TOM2: 0000000240000000 aka 9216M
paź 07 21:23:09 pudlo kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
paź 07 21:23:09 pudlo kernel: total RAM covered: 3039M
paź 07 21:23:09 pudlo kernel: Found optimal setting for mtrr clean up
paź 07 21:23:09 pudlo kernel: gran_size: 64K chunk_size: 64M num_reg: 4 lose cover RAM: 0G
paź 07 21:23:09 pudlo kernel: e820: update [mem 0xbdf00000-0xffffffff] usable ==> reserved
paź 07 21:23:09 pudlo kernel: last_pfn = 0xbdf00 max_arch_pfn = 0x400000000
paź 07 21:23:09 pudlo kernel: Scanning 1 areas for low memory corruption
paź 07 21:23:09 pudlo kernel: Using GB pages for direct mapping
paź 07 21:23:09 pudlo kernel: BRK [0x21bc01000, 0x21bc01fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc02000, 0x21bc02fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc03000, 0x21bc03fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc04000, 0x21bc04fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc05000, 0x21bc05fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc06000, 0x21bc06fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc07000, 0x21bc07fff] PGTABLE
paź 07 21:23:09 pudlo kernel: BRK [0x21bc08000, 0x21bc08fff] PGTABLE
paź 07 21:23:09 pudlo kernel: RAMDISK: [mem 0x35656000-0x36b22fff]
paź 07 21:23:09 pudlo kernel: ACPI: Early table checksum verification disabled
paź 07 21:23:09 pudlo kernel: ACPI: RSDP 0x00000000000F0450 000024 (v02 ALASKA)
paź 07 21:23:09 pudlo kernel: ACPI: XSDT 0x00000000BD99B068 00004C (v01 ALASKA A M I 01072009 AMI 00010013)
paź 07 21:23:09 pudlo kernel: ACPI: FACP 0x00000000BD9A2E00 0000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
paź 07 21:23:09 pudlo kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20180810/tbfadt-615)
paź 07 21:23:09 pudlo kernel: ACPI: DSDT 0x00000000BD99B150 007CA9 (v02 ALASKA A M I 00000000 INTL 20051117)
paź 07 21:23:09 pudlo kernel: ACPI: FACS 0x00000000BDB0EF80 000040
paź 07 21:23:09 pudlo kernel: ACPI: APIC 0x00000000BD9A2EF8 00009E (v03 ALASKA A M I 01072009 AMI 00010013)
paź 07 21:23:09 pudlo kernel: ACPI: MCFG 0x00000000BD9A2F98 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
paź 07 21:23:09 pudlo kernel: ACPI: HPET 0x00000000BD9A2FD8 000038 (v01 ALASKA A M I 01072009 AMI 00000004)
paź 07 21:23:09 pudlo kernel: ACPI: IVRS 0x00000000BD9A3068 0000C8 (v01 AMD RD890S 00202031 AMD 00000000)
paź 07 21:23:09 pudlo kernel: ACPI: Local APIC address 0xfee00000
paź 07 21:23:09 pudlo kernel: Scanning NUMA topology in Northbridge 24
paź 07 21:23:09 pudlo kernel: No NUMA configuration found
paź 07 21:23:09 pudlo kernel: Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
paź 07 21:23:09 pudlo kernel: NODE_DATA(0) allocated [mem 0x23fffa000-0x23fffdfff]
paź 07 21:23:09 pudlo kernel: Zone ranges:
paź 07 21:23:09 pudlo kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
paź 07 21:23:09 pudlo kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
paź 07 21:23:09 pudlo kernel: Normal [mem 0x0000000100000000-0x000000023fffffff]
paź 07 21:23:09 pudlo kernel: Device empty
paź 07 21:23:09 pudlo kernel: Movable zone start for each node
paź 07 21:23:09 pudlo kernel: Early memory node ranges
paź 07 21:23:09 pudlo kernel: node 0: [mem 0x0000000000001000-0x000000000009cfff]
paź 07 21:23:09 pudlo kernel: node 0: [mem 0x0000000000100000-0x00000000bd94cfff]
paź 07 21:23:09 pudlo kernel: node 0: [mem 0x00000000bdd79000-0x00000000bdefffff]
paź 07 21:23:09 pudlo kernel: node 0: [mem 0x0000000100001000-0x000000023fffffff]
paź 07 21:23:09 pudlo kernel: Reserved but unavailable: 100 pages
paź 07 21:23:09 pudlo kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
paź 07 21:23:09 pudlo kernel: On node 0 totalpages: 2087535
paź 07 21:23:09 pudlo kernel: DMA zone: 64 pages used for memmap
paź 07 21:23:09 pudlo kernel: DMA zone: 21 pages reserved
paź 07 21:23:09 pudlo kernel: DMA zone: 3996 pages, LIFO batch:0
paź 07 21:23:09 pudlo kernel: DMA32 zone: 12076 pages used for memmap
paź 07 21:23:09 pudlo kernel: DMA32 zone: 772820 pages, LIFO batch:63
paź 07 21:23:09 pudlo kernel: Normal zone: 20480 pages used for memmap
paź 07 21:23:09 pudlo kernel: Normal zone: 1310719 pages, LIFO batch:63
paź 07 21:23:09 pudlo kernel: ACPI: PM-Timer IO Port: 0x808
paź 07 21:23:09 pudlo kernel: ACPI: Local APIC address 0xfee00000
paź 07 21:23:09 pudlo kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
paź 07 21:23:09 pudlo kernel: IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
paź 07 21:23:09 pudlo kernel: IOAPIC[1]: apic_id 6, version 33, address 0xfec20000, GSI 24-55
paź 07 21:23:09 pudlo kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
paź 07 21:23:09 pudlo kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
paź 07 21:23:09 pudlo kernel: ACPI: IRQ0 used by override.
paź 07 21:23:09 pudlo kernel: ACPI: IRQ9 used by override.
paź 07 21:23:09 pudlo kernel: Using ACPI (MADT) for SMP configuration information
paź 07 21:23:09 pudlo kernel: ACPI: HPET id: 0x43538210 base: 0xfed00000
paź 07 21:23:09 pudlo kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbd94d000-0xbd99afff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbd99b000-0xbd9a3fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbd9a4000-0xbd9a4fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbd9a5000-0xbdadcfff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdadd000-0xbdaedfff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdaee000-0xbdb02fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb03000-0xbdb04fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb05000-0xbdb0dfff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb0e000-0xbdb13fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb14000-0xbdb75fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdb76000-0xbdd78fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xbdf00000-0xf7ffffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfec1ffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfec20000-0xfec20fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfec21000-0xfecfffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfed60fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfed61000-0xfed70fff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfed71000-0xfed7ffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfed90000-0xfeefffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0xfef00000-0xffffffff]
paź 07 21:23:09 pudlo kernel: PM: Registered nosave memory: [mem 0x100000000-0x100000fff]
paź 07 21:23:09 pudlo kernel: [mem 0xbdf00000-0xf7ffffff] available for PCI devices
paź 07 21:23:09 pudlo kernel: Booting paravirtualized kernel on bare hardware
paź 07 21:23:09 pudlo kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
paź 07 21:23:09 pudlo kernel: random: get_random_bytes called from start_kernel+0x93/0x530 with crng_init=0
paź 07 21:23:09 pudlo kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
paź 07 21:23:09 pudlo kernel: percpu: Embedded 45 pages/cpu s147456 r8192 d28672 u262144
paź 07 21:23:09 pudlo kernel: pcpu-alloc: s147456 r8192 d28672 u262144 alloc=1*2097152
paź 07 21:23:09 pudlo kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
paź 07 21:23:09 pudlo kernel: Built 1 zonelists, mobility grouping on. Total pages: 2054894
paź 07 21:23:09 pudlo kernel: Policy zone: Normal
paź 07 21:23:09 pudlo kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=/dev/mapper/root rw cryptdevice=UUID=f9270323-1946-4560-b7db-af60148a637e:root root=/dev/mapper/root quiet ivrs_ioapic[5]=00:14.0 ivrs_ioapic[6]=00:00.2
paź 07 21:23:09 pudlo kernel: AGP: Checking aperture...
paź 07 21:23:09 pudlo kernel: AGP: No AGP bridge found
paź 07 21:23:09 pudlo kernel: AGP: Node 0: aperture [bus addr 0xf8000000-0xfbffffff] (64MB)
paź 07 21:23:09 pudlo kernel: Memory: 8101444K/8350140K available (12300K kernel code, 1364K rwdata, 3560K rodata, 1600K init, 3832K bss, 248696K reserved, 0K cma-reserved)
paź 07 21:23:09 pudlo kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
paź 07 21:23:09 pudlo kernel: ftrace: allocating 35506 entries in 139 pages
paź 07 21:23:09 pudlo kernel: rcu: Hierarchical RCU implementation.
paź 07 21:23:09 pudlo kernel: rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
paź 07 21:23:09 pudlo kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
paź 07 21:23:09 pudlo kernel: NR_IRQS: 20736, nr_irqs: 1032, preallocated irqs: 16
paź 07 21:23:09 pudlo kernel: spurious 8259A interrupt: IRQ7.
paź 07 21:23:09 pudlo kernel: Console: colour dummy device 80x25
paź 07 21:23:09 pudlo kernel: console [tty0] enabled
paź 07 21:23:09 pudlo kernel: ACPI: Core revision 20180810
paź 07 21:23:09 pudlo kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
paź 07 21:23:09 pudlo kernel: hpet clockevent registered
paź 07 21:23:09 pudlo kernel: APIC: Switch to symmetric I/O mode setup
paź 07 21:23:09 pudlo kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
paź 07 21:23:09 pudlo kernel: tsc: Unable to calibrate against PIT
paź 07 21:23:09 pudlo kernel: tsc: using HPET reference calibration
paź 07 21:23:09 pudlo kernel: tsc: Detected 3812.710 MHz processor
paź 07 21:23:09 pudlo kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6dea7fc5f14, max_idle_ns: 881590882860 ns
paź 07 21:23:09 pudlo kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7625.42 BogoMIPS (lpj=38127100)
paź 07 21:23:09 pudlo kernel: pid_max: default: 32768 minimum: 301
paź 07 21:23:09 pudlo kernel: Security Framework initialized
paź 07 21:23:09 pudlo kernel: Yama: becoming mindful.
paź 07 21:23:09 pudlo kernel: AppArmor: AppArmor disabled by boot time parameter
paź 07 21:23:09 pudlo kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
paź 07 21:23:09 pudlo kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
paź 07 21:23:09 pudlo kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
paź 07 21:23:09 pudlo kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
paź 07 21:23:09 pudlo kernel: LVT offset 0 assigned for vector 0xf9
paź 07 21:23:09 pudlo kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
paź 07 21:23:09 pudlo kernel: Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
paź 07 21:23:09 pudlo kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
paź 07 21:23:09 pudlo kernel: Spectre V2 : Mitigation: Full AMD retpoline
paź 07 21:23:09 pudlo kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
paź 07 21:23:09 pudlo kernel: Freeing SMP alternatives memory: 28K
paź 07 21:23:09 pudlo kernel: smpboot: CPU0: AMD Phenom(tm) II X4 965 Processor (family: 0x10, model: 0x4, stepping: 0x3)
paź 07 21:23:09 pudlo kernel: Performance Events: AMD PMU driver.
paź 07 21:23:09 pudlo kernel: ... version: 0
paź 07 21:23:09 pudlo kernel: ... bit width: 48
paź 07 21:23:09 pudlo kernel: ... generic registers: 4
paź 07 21:23:09 pudlo kernel: ... value mask: 0000ffffffffffff
paź 07 21:23:09 pudlo kernel: ... max period: 00007fffffffffff
paź 07 21:23:09 pudlo kernel: ... fixed-purpose events: 0
paź 07 21:23:09 pudlo kernel: ... event mask: 000000000000000f
paź 07 21:23:09 pudlo kernel: rcu: Hierarchical SRCU implementation.
paź 07 21:23:09 pudlo kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
paź 07 21:23:09 pudlo kernel: smp: Bringing up secondary CPUs ...
paź 07 21:23:09 pudlo kernel: x86: Booting SMP configuration:
paź 07 21:23:09 pudlo kernel: .... node #0, CPUs: #1 #2 #3
paź 07 21:23:09 pudlo kernel: smp: Brought up 1 node, 4 CPUs
paź 07 21:23:09 pudlo kernel: smpboot: Max logical packages: 2
paź 07 21:23:09 pudlo kernel: smpboot: Total of 4 processors activated (30501.68 BogoMIPS)
paź 07 21:23:09 pudlo kernel: devtmpfs: initialized
paź 07 21:23:09 pudlo kernel: x86/mm: Memory block size: 128MB
paź 07 21:23:09 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbd94d000-0xbd99afff] (319488 bytes)
paź 07 21:23:09 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbd9a4000-0xbd9a4fff] (4096 bytes)
paź 07 21:23:09 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdadd000-0xbdaedfff] (69632 bytes)
paź 07 21:23:09 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdb03000-0xbdb04fff] (8192 bytes)
paź 07 21:23:09 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdb0e000-0xbdb13fff] (24576 bytes)
paź 07 21:23:09 pudlo kernel: PM: Registering ACPI NVS region [mem 0xbdb76000-0xbdd78fff] (2109440 bytes)
paź 07 21:23:09 pudlo kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
paź 07 21:23:09 pudlo kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
paź 07 21:23:09 pudlo kernel: pinctrl core: initialized pinctrl subsystem
paź 07 21:23:09 pudlo kernel: RTC time: 19:22:42, date: 10/07/19
paź 07 21:23:09 pudlo kernel: NET: Registered protocol family 16
paź 07 21:23:09 pudlo kernel: audit: initializing netlink subsys (disabled)
paź 07 21:23:09 pudlo kernel: audit: type=2000 audit(1570476162.230:1): state=initialized audit_enabled=0 res=1
paź 07 21:23:09 pudlo kernel: cpuidle: using governor ladder
paź 07 21:23:09 pudlo kernel: cpuidle: using governor menu
paź 07 21:23:09 pudlo kernel: node 0 link 0: io port [c000, ffff]
paź 07 21:23:09 pudlo kernel: TOM: 00000000c0000000 aka 3072M
paź 07 21:23:09 pudlo kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
paź 07 21:23:09 pudlo kernel: node 0 link 0: mmio [c0000000, fef0ffff] ==> [c0000000, dfffffff] and [f0000000, fef0ffff]
paź 07 21:23:09 pudlo kernel: TOM2: 0000000240000000 aka 9216M
paź 07 21:23:09 pudlo kernel: bus: [bus 00-1f] on node 0 link 0
paź 07 21:23:09 pudlo kernel: bus: 00 [io 0x0000-0xffff]
paź 07 21:23:09 pudlo kernel: bus: 00 [mem 0xc0000000-0xdfffffff]
paź 07 21:23:09 pudlo kernel: bus: 00 [mem 0xf0000000-0xffffffff]
paź 07 21:23:09 pudlo kernel: bus: 00 [mem 0x240000000-0xfcffffffff]
paź 07 21:23:09 pudlo kernel: ACPI: bus type PCI registered
paź 07 21:23:09 pudlo kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
paź 07 21:23:09 pudlo kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
paź 07 21:23:09 pudlo kernel: PCI: not using MMCONFIG
paź 07 21:23:09 pudlo kernel: PCI: Using configuration type 1 for base access
paź 07 21:23:09 pudlo kernel: PCI: Using configuration type 1 for extended access
paź 07 21:23:09 pudlo kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
paź 07 21:23:09 pudlo kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
paź 07 21:23:09 pudlo kernel: ACPI: Added _OSI(Module Device)
paź 07 21:23:09 pudlo kernel: ACPI: Added _OSI(Processor Device)
paź 07 21:23:09 pudlo kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
paź 07 21:23:09 pudlo kernel: ACPI: Added _OSI(Processor Aggregator Device)
paź 07 21:23:09 pudlo kernel: ACPI: Added _OSI(Linux-Dell-Video)
paź 07 21:23:09 pudlo kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
paź 07 21:23:09 pudlo kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
paź 07 21:23:09 pudlo kernel: ACPI: EC: EC started
paź 07 21:23:09 pudlo kernel: ACPI: EC: interrupt blocked
paź 07 21:23:09 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
paź 07 21:23:09 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0xa, EC_CMD/EC_SC=0x66, EC_DATA=0x62
paź 07 21:23:09 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Used as boot DSDT EC to handle transactions
paź 07 21:23:09 pudlo kernel: ACPI: Interpreter enabled
paź 07 21:23:09 pudlo kernel: ACPI: (supports S0 S1 S3 S4 S5)
paź 07 21:23:09 pudlo kernel: ACPI: Using IOAPIC for interrupt routing
paź 07 21:23:09 pudlo kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
paź 07 21:23:09 pudlo kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
paź 07 21:23:09 pudlo kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
paź 07 21:23:09 pudlo kernel: ACPI: Enabled 10 GPEs in block 00 to 1F
paź 07 21:23:09 pudlo kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
paź 07 21:23:09 pudlo kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
paź 07 21:23:09 pudlo kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
paź 07 21:23:09 pudlo kernel: PCI host bridge to bus 0000:00
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:00.0: [1002:5a14] type 00 class 0x060000
paź 07 21:23:09 pudlo kernel: pci 0000:00:00.2: [1002:5a23] type 00 class 0x080600
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: [1002:5a16] type 01 class 0x060400
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: enabling Extended Tags
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: [1002:5a18] type 01 class 0x060400
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: enabling Extended Tags
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: [1002:5a1a] type 01 class 0x060400
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: enabling Extended Tags
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: [1002:5a1b] type 01 class 0x060400
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: enabling Extended Tags
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: reg 0x10: [io 0xf040-0xf047]
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: reg 0x14: [io 0xf030-0xf033]
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: reg 0x18: [io 0xf020-0xf027]
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: reg 0x1c: [io 0xf010-0xf013]
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: reg 0x20: [io 0xf000-0xf00f]
paź 07 21:23:09 pudlo kernel: pci 0000:00:11.0: reg 0x24: [mem 0xfeb0b000-0xfeb0b3ff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.0: reg 0x10: [mem 0xfeb0a000-0xfeb0afff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.2: reg 0x10: [mem 0xfeb09000-0xfeb090ff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.2: supports D1 D2
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.0: reg 0x10: [mem 0xfeb08000-0xfeb08fff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.2: reg 0x10: [mem 0xfeb07000-0xfeb070ff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.2: supports D1 D2
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.2: reg 0x10: [mem 0xfeb00000-0xfeb03fff 64bit]
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.5: reg 0x10: [mem 0xfeb06000-0xfeb06fff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.0: reg 0x10: [mem 0xfeb05000-0xfeb05fff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.2: reg 0x10: [mem 0xfeb04000-0xfeb040ff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.2: supports D1 D2
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
paź 07 21:23:09 pudlo kernel: pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
paź 07 21:23:09 pudlo kernel: pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
paź 07 21:23:09 pudlo kernel: pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
paź 07 21:23:09 pudlo kernel: pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
paź 07 21:23:09 pudlo kernel: pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: [1002:6719] type 00 class 0x030000
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: reg 0x18: [mem 0xfea20000-0xfea3ffff 64bit]
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: reg 0x20: [io 0xe000-0xe0ff]
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfea00000-0xfea1ffff pref]
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: enabling Extended Tags
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: supports D1 D2
paź 07 21:23:09 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ź 07 21:23:09 pudlo kernel: pci 0000:01:00.1: [1002:aa80] type 00 class 0x040300
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfea40000-0xfea43fff 64bit]
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.1: enabling Extended Tags
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.1: supports D1 D2
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
paź 07 21:23:09 pudlo kernel: pci 0000:02:00.0: reg 0x10: [io 0xd000-0xd0ff]
paź 07 21:23:09 pudlo kernel: pci 0000:02:00.0: reg 0x18: [mem 0xd0004000-0xd0004fff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:02:00.0: reg 0x20: [mem 0xd0000000-0xd0003fff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:02:00.0: supports D1 D2
paź 07 21:23:09 pudlo kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: [197b:2362] type 00 class 0x010185
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: reg 0x10: [io 0xc040-0xc047]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: reg 0x14: [io 0xc030-0xc033]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: reg 0x18: [io 0xc020-0xc027]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: reg 0x1c: [io 0xc010-0xc013]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: reg 0x20: [io 0xc000-0xc00f]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: reg 0x24: [mem 0xfe910000-0xfe9101ff]
paź 07 21:23:09 pudlo kernel: pci 0000:03:00.0: PME# supported from D3hot
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: PCI bridge to [bus 03]
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: bridge window [io 0xc000-0xcfff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: bridge window [mem 0xfe900000-0xfe9fffff]
paź 07 21:23:09 pudlo kernel: pci 0000:04:00.0: [1b21:1042] type 00 class 0x0c0330
paź 07 21:23:09 pudlo kernel: pci 0000:04:00.0: reg 0x10: [mem 0xfe800000-0xfe807fff 64bit]
paź 07 21:23:09 pudlo kernel: pci 0000:04:00.0: PME# supported from D3hot D3cold
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: PCI bridge to [bus 04]
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: bridge window [mem 0xfe800000-0xfe8fffff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: extended config space not accessible
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: PCI bridge to [bus 05] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x03af window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x03b0-0x03df window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [io 0x0d00-0xffff window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
paź 07 21:23:09 pudlo kernel: ACPI: EC: interrupt unblocked
paź 07 21:23:09 pudlo kernel: ACPI: EC: event unblocked
paź 07 21:23:09 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0xa, EC_CMD/EC_SC=0x66, EC_DATA=0x62
paź 07 21:23:09 pudlo kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Used as boot DSDT EC to handle transactions and events
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: vgaarb: bridge control possible
paź 07 21:23:09 pudlo kernel: vgaarb: loaded
paź 07 21:23:09 pudlo kernel: ACPI: bus type USB registered
paź 07 21:23:09 pudlo kernel: usbcore: registered new interface driver usbfs
paź 07 21:23:09 pudlo kernel: usbcore: registered new interface driver hub
paź 07 21:23:09 pudlo kernel: usbcore: registered new device driver usb
paź 07 21:23:09 pudlo kernel: pps_core: LinuxPPS API ver. 1 registered
paź 07 21:23:09 pudlo kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
paź 07 21:23:09 pudlo kernel: PTP clock support registered
paź 07 21:23:09 pudlo kernel: EDAC MC: Ver: 3.0.0
paź 07 21:23:09 pudlo kernel: PCI: Using ACPI for IRQ routing
paź 07 21:23:09 pudlo kernel: PCI: pci_cache_line_size set to 64 bytes
paź 07 21:23:09 pudlo kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
paź 07 21:23:09 pudlo kernel: e820: reserve RAM buffer [mem 0xbd94d000-0xbfffffff]
paź 07 21:23:09 pudlo kernel: e820: reserve RAM buffer [mem 0xbdf00000-0xbfffffff]
paź 07 21:23:09 pudlo kernel: NetLabel: Initializing
paź 07 21:23:09 pudlo kernel: NetLabel: domain hash size = 128
paź 07 21:23:09 pudlo kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
paź 07 21:23:09 pudlo kernel: NetLabel: unlabeled traffic allowed by default
paź 07 21:23:09 pudlo kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
paź 07 21:23:09 pudlo kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
paź 07 21:23:09 pudlo kernel: clocksource: Switched to clocksource tsc-early
paź 07 21:23:09 pudlo kernel: VFS: Disk quotas dquot_6.6.0
paź 07 21:23:09 pudlo kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
paź 07 21:23:09 pudlo kernel: pnp: PnP ACPI init
paź 07 21:23:09 pudlo kernel: system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x040b] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x04d6] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0c00-0x0c01] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0c14] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0c50-0x0c51] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0c52] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0c6c] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0c6f] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0cd0-0x0cd1] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0cd2-0x0cd3] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0cd4-0x0cd5] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0cd6-0x0cd7] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0cd8-0x0cdf] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0800-0x089f] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0b20-0x0b3f] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0900-0x090f] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0x0910-0x091f] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [io 0xfe00-0xfefe] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
paź 07 21:23:09 pudlo kernel: system 00:01: [mem 0xffc00000-0xffffffff] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 07 21:23:09 pudlo kernel: system 00:02: [io 0x0290-0x02af] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 07 21:23:09 pudlo kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
paź 07 21:23:09 pudlo kernel: system 00:04: [io 0x04d0-0x04d1] has been reserved
paź 07 21:23:09 pudlo kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 07 21:23:09 pudlo kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 07 21:23:09 pudlo kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
paź 07 21:23:09 pudlo kernel: system 00:07: [mem 0xfeb20000-0xfeb23fff] could not be reserved
paź 07 21:23:09 pudlo kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 07 21:23:09 pudlo kernel: system 00:08: [mem 0xfec20000-0xfec200ff] could not be reserved
paź 07 21:23:09 pudlo kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
paź 07 21:23:09 pudlo kernel: pnp: PnP ACPI: found 9 devices
paź 07 21:23:09 pudlo kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:02.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: PCI bridge to [bus 03]
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: bridge window [io 0xc000-0xcfff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:06.0: bridge window [mem 0xfe900000-0xfe9fffff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: PCI bridge to [bus 04]
paź 07 21:23:09 pudlo kernel: pci 0000:00:07.0: bridge window [mem 0xfe800000-0xfe8fffff]
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.4: PCI bridge to [bus 05]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:04: resource 1 [mem 0xfe800000-0xfe8fffff]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 4 [io 0x0000-0x03af window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 5 [io 0x03e0-0x0cf7 window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 6 [io 0x03b0-0x03df window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 7 [io 0x0d00-0xffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 8 [mem 0x000a0000-0x000bffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 9 [mem 0x000c0000-0x000dffff window]
paź 07 21:23:09 pudlo kernel: pci_bus 0000:05: resource 10 [mem 0xc0000000-0xffffffff window]
paź 07 21:23:09 pudlo kernel: NET: Registered protocol family 2
paź 07 21:23:09 pudlo kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)
paź 07 21:23:09 pudlo kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
paź 07 21:23:09 pudlo kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
paź 07 21:23:09 pudlo kernel: TCP: Hash tables configured (established 65536 bind 65536)
paź 07 21:23:09 pudlo kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
paź 07 21:23:09 pudlo kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
paź 07 21:23:09 pudlo kernel: NET: Registered protocol family 1
paź 07 21:23:09 pudlo kernel: NET: Registered protocol family 44
paź 07 21:23:09 pudlo kernel: pci 0000:00:12.0: quirk_usb_early_handoff+0x0/0x6ab took 845925 usecs
paź 07 21:23:09 pudlo kernel: pci 0000:00:13.0: quirk_usb_early_handoff+0x0/0x6ab took 107315 usecs
paź 07 21:23:09 pudlo kernel: pci 0000:00:14.5: quirk_usb_early_handoff+0x0/0x6ab took 107314 usecs
paź 07 21:23:09 pudlo kernel: pci 0000:00:16.0: quirk_usb_early_handoff+0x0/0x6ab took 107415 usecs
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
paź 07 21:23:09 pudlo kernel: pci 0000:01:00.1: Linked as a consumer to 0000:01:00.0
paź 07 21:23:09 pudlo kernel: PCI: CLS 64 bytes, default 64
paź 07 21:23:09 pudlo kernel: Unpacking initramfs...
paź 07 21:23:09 pudlo kernel: Freeing initrd memory: 21300K
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:00.0 to group 0
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:02.0 to group 1
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:04.0 to group 2
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:06.0 to group 3
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:07.0 to group 4
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:11.0 to group 5
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:12.0 to group 6
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:12.2 to group 6
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:13.0 to group 7
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:13.2 to group 7
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:14.0 to group 8
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:14.2 to group 9
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:14.3 to group 10
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:14.4 to group 11
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:14.5 to group 12
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:16.0 to group 13
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:00:16.2 to group 13
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:01:00.0 to group 14
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:01:00.1 to group 14
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:02:00.0 to group 15
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:03:00.0 to group 16
paź 07 21:23:09 pudlo kernel: iommu: Adding device 0000:04:00.0 to group 17
paź 07 21:23:09 pudlo kernel: AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
paź 07 21:23:09 pudlo kernel: AMD-Vi: Interrupt remapping enabled
paź 07 21:23:09 pudlo kernel: AMD-Vi: Lazy IO/TLB flushing enabled
paź 07 21:23:09 pudlo kernel: LVT offset 1 assigned for vector 0x400
paź 07 21:23:09 pudlo kernel: LVT offset 1 assigned
paź 07 21:23:09 pudlo kernel: perf: AMD IBS detected (0x0000001f)
paź 07 21:23:09 pudlo kernel: Scanning for low memory corruption every 60 seconds
paź 07 21:23:09 pudlo kernel: Initialise system trusted keyrings
paź 07 21:23:09 pudlo kernel: Key type blacklist registered
paź 07 21:23:09 pudlo kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
paź 07 21:23:09 pudlo kernel: zbud: loaded
paź 07 21:23:09 pudlo kernel: Key type asymmetric registered
paź 07 21:23:09 pudlo kernel: Asymmetric key parser 'x509' registered
paź 07 21:23:09 pudlo kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
paź 07 21:23:09 pudlo kernel: io scheduler noop registered
paź 07 21:23:09 pudlo kernel: io scheduler deadline registered (default)
paź 07 21:23:09 pudlo kernel: io scheduler cfq registered
paź 07 21:23:09 pudlo kernel: io scheduler mq-deadline registered (default)
paź 07 21:23:09 pudlo kernel: io scheduler kyber registered
paź 07 21:23:09 pudlo kernel: io scheduler bfq registered
paź 07 21:23:09 pudlo kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
paź 07 21:23:09 pudlo kernel: vesafb: mode is 1400x1050x32, linelength=5632, pages=0
paź 07 21:23:09 pudlo kernel: vesafb: scrolling: redraw
paź 07 21:23:09 pudlo kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
paź 07 21:23:09 pudlo kernel: vesafb: framebuffer at 0xc0000000, mapped to 0x(____ptrval____), using 5824k, total 5824k
paź 07 21:23:09 pudlo kernel: fbcon: Deferring console take-over
paź 07 21:23:09 pudlo kernel: fb0: VESA VGA frame buffer device
paź 07 21:23:09 pudlo kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
paź 07 21:23:09 pudlo kernel: ACPI: Power Button [PWRB]
paź 07 21:23:09 pudlo kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
paź 07 21:23:09 pudlo kernel: ACPI: Power Button [PWRF]
paź 07 21:23:09 pudlo kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
paź 07 21:23:09 pudlo kernel: usbcore: registered new interface driver usbserial_generic
paź 07 21:23:09 pudlo kernel: usbserial: USB Serial support registered for generic
paź 07 21:23:09 pudlo kernel: rtc_cmos 00:03: RTC can wake from S4
paź 07 21:23:09 pudlo kernel: rtc_cmos 00:03: registered as rtc0
paź 07 21:23:09 pudlo kernel: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
paź 07 21:23:09 pudlo kernel: ledtrig-cpu: registered to indicate activity on CPUs
paź 07 21:23:09 pudlo kernel: NET: Registered protocol family 10
paź 07 21:23:09 pudlo kernel: Segment Routing with IPv6
paź 07 21:23:09 pudlo kernel: NET: Registered protocol family 17
paź 07 21:23:09 pudlo kernel: mce: Using 6 MCE banks
paź 07 21:23:09 pudlo kernel: RAS: Correctable Errors collector initialized.
paź 07 21:23:09 pudlo kernel: microcode: CPU0: patch_level=0x010000c8
paź 07 21:23:09 pudlo kernel: microcode: CPU1: patch_level=0x010000c8
paź 07 21:23:09 pudlo kernel: microcode: CPU2: patch_level=0x010000c8
paź 07 21:23:09 pudlo kernel: microcode: CPU3: patch_level=0x010000c8
paź 07 21:23:09 pudlo kernel: microcode: Microcode Update Driver: v2.2.
paź 07 21:23:09 pudlo kernel: sched_clock: Marking stable (1783301401, -89992695)->(1842727926, -149419220)
paź 07 21:23:09 pudlo kernel: registered taskstats version 1
paź 07 21:23:09 pudlo kernel: Loading compiled-in X.509 certificates
paź 07 21:23:09 pudlo kernel: Loaded X.509 cert 'Build time autogenerated kernel key: eb4e495057864478f9fb17ff66d3ca7cd8be9cf7'
paź 07 21:23:09 pudlo kernel: zswap: loaded using pool lzo/zbud
paź 07 21:23:09 pudlo kernel: Key type big_key registered
paź 07 21:23:09 pudlo kernel: Magic number: 7:389:394
paź 07 21:23:09 pudlo kernel: rtc_cmos 00:03: setting system clock to 2019-10-07 19:22:44 UTC (1570476164)
paź 07 21:23:09 pudlo kernel: Freeing unused decrypted memory: 2040K
paź 07 21:23:09 pudlo kernel: Freeing unused kernel image memory: 1600K
paź 07 21:23:09 pudlo kernel: Write protecting the kernel read-only data: 18432k
paź 07 21:23:09 pudlo kernel: Freeing unused kernel image memory: 2008K
paź 07 21:23:09 pudlo kernel: Freeing unused kernel image memory: 536K
paź 07 21:23:09 pudlo kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
paź 07 21:23:09 pudlo kernel: Run /init as init process
paź 07 21:23:09 pudlo kernel: fbcon: Taking over console
paź 07 21:23:09 pudlo kernel: Console: switching to colour frame buffer device 175x65
paź 07 21:23:09 pudlo kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
paź 07 21:23:09 pudlo kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
paź 07 21:23:09 pudlo kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
paź 07 21:23:09 pudlo kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
paź 07 21:23:09 pudlo kernel: SCSI subsystem initialized
paź 07 21:23:09 pudlo kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
paź 07 21:23:09 pudlo kernel: Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
paź 07 21:23:09 pudlo kernel: ehci-pci: EHCI PCI platform driver
paź 07 21:23:09 pudlo kernel: QUIRK: Enable AMD PLL fix
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:12.2: EHCI Host Controller
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:12.2: debug port 1
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb09000
paź 07 21:23:09 pudlo kernel: libata version 3.00 loaded.
paź 07 21:23:09 pudlo kernel: ahci 0000:00:11.0: version 3.0
paź 07 21:23:09 pudlo kernel: ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
paź 07 21:23:09 pudlo kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
paź 07 21:23:09 pudlo kernel: scsi host0: ahci
paź 07 21:23:09 pudlo kernel: scsi host1: ahci
paź 07 21:23:09 pudlo kernel: scsi host2: ahci
paź 07 21:23:09 pudlo kernel: scsi host3: ahci
paź 07 21:23:09 pudlo kernel: scsi host4: ahci
paź 07 21:23:09 pudlo kernel: scsi host5: ahci
paź 07 21:23:09 pudlo kernel: ata1: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b100 irq 19
paź 07 21:23:09 pudlo kernel: ata2: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b180 irq 19
paź 07 21:23:09 pudlo kernel: ata3: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b200 irq 19
paź 07 21:23:09 pudlo kernel: ata4: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b280 irq 19
paź 07 21:23:09 pudlo kernel: ata5: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b300 irq 19
paź 07 21:23:09 pudlo kernel: ata6: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b380 irq 19
paź 07 21:23:09 pudlo kernel: ahci 0000:03:00.0: AHCI 0001.0100 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
paź 07 21:23:09 pudlo kernel: ahci 0000:03:00.0: flags: 64bit ncq pm led clo pmp pio slum part
paź 07 21:23:09 pudlo kernel: scsi host6: ahci
paź 07 21:23:09 pudlo kernel: scsi host7: ahci
paź 07 21:23:09 pudlo kernel: ata7: SATA max UDMA/133 abar m512@0xfe910000 port 0xfe910100 irq 29
paź 07 21:23:09 pudlo kernel: ata8: SATA max UDMA/133 abar m512@0xfe910000 port 0xfe910180 irq 29
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
paź 07 21:23:09 pudlo kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb1: Product: EHCI Host Controller
paź 07 21:23:09 pudlo kernel: usb usb1: Manufacturer: Linux 4.19.77-1-lts ehci_hcd
paź 07 21:23:09 pudlo kernel: usb usb1: SerialNumber: 0000:00:12.2
paź 07 21:23:09 pudlo kernel: hub 1-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 1-0:1.0: 5 ports detected
paź 07 21:23:09 pudlo kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
paź 07 21:23:09 pudlo kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
paź 07 21:23:09 pudlo kernel: xhci_hcd 0000:04:00.0: hcc params 0x0200f180 hci version 0x96 quirks 0x0000000000080000
paź 07 21:23:09 pudlo kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb2: Product: xHCI Host Controller
paź 07 21:23:09 pudlo kernel: usb usb2: Manufacturer: Linux 4.19.77-1-lts xhci-hcd
paź 07 21:23:09 pudlo kernel: usb usb2: SerialNumber: 0000:04:00.0
paź 07 21:23:09 pudlo kernel: hub 2-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 2-0:1.0: 2 ports detected
paź 07 21:23:09 pudlo kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
paź 07 21:23:09 pudlo kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 3
paź 07 21:23:09 pudlo kernel: xhci_hcd 0000:04:00.0: Host supports USB 3.0 SuperSpeed
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:13.2: EHCI Host Controller
paź 07 21:23:09 pudlo kernel: usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
paź 07 21:23:09 pudlo kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb3: Product: xHCI Host Controller
paź 07 21:23:09 pudlo kernel: usb usb3: Manufacturer: Linux 4.19.77-1-lts xhci-hcd
paź 07 21:23:09 pudlo kernel: usb usb3: SerialNumber: 0000:04:00.0
paź 07 21:23:09 pudlo kernel: hub 3-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 3-0:1.0: 2 ports detected
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:13.2: debug port 1
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:13.2: irq 21, io mem 0xfeb07000
paź 07 21:23:09 pudlo kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
paź 07 21:23:09 pudlo kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb4: Product: EHCI Host Controller
paź 07 21:23:09 pudlo kernel: usb usb4: Manufacturer: Linux 4.19.77-1-lts ehci_hcd
paź 07 21:23:09 pudlo kernel: usb usb4: SerialNumber: 0000:00:13.2
paź 07 21:23:09 pudlo kernel: hub 4-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 4-0:1.0: 5 ports detected
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:16.2: EHCI Host Controller
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:16.2: debug port 1
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:16.2: irq 23, io mem 0xfeb04000
paź 07 21:23:09 pudlo kernel: tsc: Refined TSC clocksource calibration: 3812.716 MHz
paź 07 21:23:09 pudlo kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6dea889f3b6, max_idle_ns: 881590615164 ns
paź 07 21:23:09 pudlo kernel: clocksource: Switched to clocksource tsc
paź 07 21:23:09 pudlo kernel: ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
paź 07 21:23:09 pudlo kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb5: Product: EHCI Host Controller
paź 07 21:23:09 pudlo kernel: usb usb5: Manufacturer: Linux 4.19.77-1-lts ehci_hcd
paź 07 21:23:09 pudlo kernel: usb usb5: SerialNumber: 0000:00:16.2
paź 07 21:23:09 pudlo kernel: hub 5-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 5-0:1.0: 4 ports detected
paź 07 21:23:09 pudlo kernel: ohci-pci: OHCI PCI platform driver
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:12.0: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 6
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:12.0: irq 18, io mem 0xfeb0a000
paź 07 21:23:09 pudlo kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb6: Product: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: usb usb6: Manufacturer: Linux 4.19.77-1-lts ohci_hcd
paź 07 21:23:09 pudlo kernel: usb usb6: SerialNumber: 0000:00:12.0
paź 07 21:23:09 pudlo kernel: hub 6-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 6-0:1.0: 5 ports detected
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:13.0: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 7
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:13.0: irq 20, io mem 0xfeb08000
paź 07 21:23:09 pudlo kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb7: Product: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: usb usb7: Manufacturer: Linux 4.19.77-1-lts ohci_hcd
paź 07 21:23:09 pudlo kernel: usb usb7: SerialNumber: 0000:00:13.0
paź 07 21:23:09 pudlo kernel: hub 7-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 7-0:1.0: 5 ports detected
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:14.5: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:14.5: irq 18, io mem 0xfeb06000
paź 07 21:23:09 pudlo kernel: ata8: SATA link down (SStatus 0 SControl 300)
paź 07 21:23:09 pudlo kernel: ata7: SATA link down (SStatus 0 SControl 300)
paź 07 21:23:09 pudlo kernel: ata4: SATA link down (SStatus 0 SControl 300)
paź 07 21:23:09 pudlo kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb8: Product: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: usb usb8: Manufacturer: Linux 4.19.77-1-lts ohci_hcd
paź 07 21:23:09 pudlo kernel: usb usb8: SerialNumber: 0000:00:14.5
paź 07 21:23:09 pudlo kernel: hub 8-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 8-0:1.0: 2 ports detected
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:16.0: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
paź 07 21:23:09 pudlo kernel: ohci-pci 0000:00:16.0: irq 22, io mem 0xfeb05000
paź 07 21:23:09 pudlo kernel: usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.19
paź 07 21:23:09 pudlo kernel: usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
paź 07 21:23:09 pudlo kernel: usb usb9: Product: OHCI PCI host controller
paź 07 21:23:09 pudlo kernel: usb usb9: Manufacturer: Linux 4.19.77-1-lts ohci_hcd
paź 07 21:23:09 pudlo kernel: usb usb9: SerialNumber: 0000:00:16.0
paź 07 21:23:09 pudlo kernel: hub 9-0:1.0: USB hub found
paź 07 21:23:09 pudlo kernel: hub 9-0:1.0: 4 ports detected
paź 07 21:23:09 pudlo kernel: device-mapper: uevent: version 1.0.3
paź 07 21:23:09 pudlo kernel: device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com
paź 07 21:23:09 pudlo kernel: usb 2-2: new low-speed USB device number 2 using xhci_hcd
paź 07 21:23:09 pudlo kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
paź 07 21:23:09 pudlo kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
paź 07 21:23:09 pudlo kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
paź 07 21:23:09 pudlo kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
paź 07 21:23:09 pudlo kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
paź 07 21:23:09 pudlo kernel: ata6.00: ATA-9: GOODRAM, SAFM22.3, max UDMA/133
paź 07 21:23:09 pudlo kernel: ata6.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 07 21:23:09 pudlo kernel: ata6.00: configured for UDMA/133
paź 07 21:23:09 pudlo kernel: ata1.00: ATA-8: WDC WD20EARS-00S8B1, 80.00A80, max UDMA/133
paź 07 21:23:09 pudlo kernel: ata1.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 07 21:23:09 pudlo kernel: ata2.00: ATA-8: WDC WD20EARS-00S8B1, 80.00A80, max UDMA/133
paź 07 21:23:09 pudlo kernel: ata2.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 07 21:23:09 pudlo kernel: ata3.00: ATA-8: WDC WD20EARS-00S8B1, 80.00A80, max UDMA/133
paź 07 21:23:09 pudlo kernel: ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 07 21:23:09 pudlo kernel: ata1.00: configured for UDMA/133
paź 07 21:23:09 pudlo kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD20EARS-00S 0A80 PQ: 0 ANSI: 5
paź 07 21:23:09 pudlo kernel: ata3.00: configured for UDMA/133
paź 07 21:23:09 pudlo kernel: ata2.00: configured for UDMA/133
paź 07 21:23:09 pudlo kernel: scsi 1:0:0:0: Direct-Access ATA WDC WD20EARS-00S 0A80 PQ: 0 ANSI: 5
paź 07 21:23:09 pudlo kernel: sd 0:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
paź 07 21:23:09 pudlo kernel: sd 0:0:0:0: [sda] Write Protect is off
paź 07 21:23:09 pudlo kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
paź 07 21:23:09 pudlo kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 07 21:23:09 pudlo kernel: scsi 2:0:0:0: Direct-Access ATA WDC WD20EARS-00S 0A80 PQ: 0 ANSI: 5
paź 07 21:23:09 pudlo kernel: sd 1:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
paź 07 21:23:09 pudlo kernel: sd 1:0:0:0: [sdb] Write Protect is off
paź 07 21:23:09 pudlo kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
paź 07 21:23:09 pudlo kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 07 21:23:09 pudlo kernel: sd 2:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
paź 07 21:23:09 pudlo kernel: sd 2:0:0:0: [sdc] Write Protect is off
paź 07 21:23:09 pudlo kernel: sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
paź 07 21:23:09 pudlo kernel: sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 07 21:23:09 pudlo kernel: sda: sda1 sda2 sda3
paź 07 21:23:09 pudlo kernel: sd 0:0:0:0: [sda] Attached SCSI disk
paź 07 21:23:09 pudlo kernel: sdc: sdc1 sdc2
paź 07 21:23:09 pudlo kernel: sd 2:0:0:0: [sdc] Attached SCSI disk
paź 07 21:23:09 pudlo kernel: sdb: sdb1 sdb2
paź 07 21:23:09 pudlo kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
paź 07 21:23:09 pudlo kernel: ata5.00: ATA-8: TOSHIBA HDWE140, FP1R, max UDMA/100
paź 07 21:23:09 pudlo kernel: ata5.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
paź 07 21:23:09 pudlo kernel: ata5.00: configured for UDMA/100
paź 07 21:23:09 pudlo kernel: scsi 4:0:0:0: Direct-Access ATA TOSHIBA HDWE140 FP1R PQ: 0 ANSI: 5
paź 07 21:23:09 pudlo kernel: sd 4:0:0:0: [sdd] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
paź 07 21:23:09 pudlo kernel: sd 4:0:0:0: [sdd] 4096-byte physical blocks
paź 07 21:23:09 pudlo kernel: sd 4:0:0:0: [sdd] Write Protect is off
paź 07 21:23:09 pudlo kernel: sd 4:0:0:0: [sdd] Mode Sense: 00 3a 00 00
paź 07 21:23:09 pudlo kernel: sd 4:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 07 21:23:09 pudlo kernel: scsi 5:0:0:0: Direct-Access ATA GOODRAM 22.3 PQ: 0 ANSI: 5
paź 07 21:23:09 pudlo kernel: sd 5:0:0:0: [sde] 468862128 512-byte logical blocks: (240 GB/224 GiB)
paź 07 21:23:09 pudlo kernel: sd 5:0:0:0: [sde] Write Protect is off
paź 07 21:23:09 pudlo kernel: sd 5:0:0:0: [sde] Mode Sense: 00 3a 00 00
paź 07 21:23:09 pudlo kernel: sd 5:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
paź 07 21:23:09 pudlo kernel: sde: sde1
paź 07 21:23:09 pudlo kernel: sd 5:0:0:0: [sde] Attached SCSI disk
paź 07 21:23:09 pudlo kernel: usb 2-2: New USB device found, idVendor=046d, idProduct=c062, bcdDevice=31.00
paź 07 21:23:09 pudlo kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
paź 07 21:23:09 pudlo kernel: usb 2-2: Product: USB Laser Mouse
paź 07 21:23:09 pudlo kernel: usb 2-2: Manufacturer: Logitech
paź 07 21:23:09 pudlo kernel: hidraw: raw HID events driver (C) Jiri Kosina
paź 07 21:23:09 pudlo kernel: usbcore: registered new interface driver usbhid
paź 07 21:23:09 pudlo kernel: usbhid: USB HID core driver
paź 07 21:23:09 pudlo kernel: input: Logitech USB Laser Mouse as /devices/pci0000:00/0000:00:07.0/0000:04:00.0/usb2/2-2/2-2:1.0/0003:046D:C062.0001/input/input3
paź 07 21:23:09 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ź 07 21:23:09 pudlo kernel: random: lvm: uninitialized urandom read (4 bytes read)
paź 07 21:23:09 pudlo kernel: random: lvm: uninitialized urandom read (4 bytes read)
paź 07 21:23:09 pudlo kernel: random: lvm: uninitialized urandom read (4 bytes read)
paź 07 21:23:09 pudlo kernel: sdd: sdd1 sdd2
paź 07 21:23:09 pudlo kernel: sd 4:0:0:0: [sdd] Attached SCSI disk
paź 07 21:23:09 pudlo kernel: urandom_read: 4 callbacks suppressed
paź 07 21:23:09 pudlo kernel: random: lvm: uninitialized urandom read (2 bytes read)
paź 07 21:23:09 pudlo kernel: random: fast init done
paź 07 21:23:09 pudlo kernel: random: crng init done
paź 07 21:23:09 pudlo kernel: cryptd: max_cpu_qlen set to 1000
paź 07 21:23:09 pudlo kernel: SGI XFS with ACLs, security attributes, realtime, scrub, no debug enabled
paź 07 21:23:09 pudlo kernel: XFS (dm-9): Mounting V4 Filesystem
paź 07 21:23:09 pudlo kernel: XFS (dm-9): Ending clean mount
paź 07 21:23:09 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ź 07 21:23:09 pudlo systemd[1]: Detected architecture x86-64.
paź 07 21:23:09 pudlo systemd[1]: Set hostname to <pudlo>.
paź 07 21:23:09 pudlo systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
paź 07 21:23:09 pudlo systemd[1]: Created slice system-systemd\x2dfsck.slice.
paź 07 21:23:09 pudlo systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
paź 07 21:23:09 pudlo systemd[1]: Set up automount home.automount.
paź 07 21:23:09 pudlo systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
paź 07 21:23:09 pudlo systemd[1]: Reached target Paths.
paź 07 21:23:09 pudlo systemd[1]: Reached target Slices.
paź 07 21:23:09 pudlo kernel: vhba: loading out-of-tree module taints kernel.
paź 07 21:23:09 pudlo kernel: vhba: module verification failed: signature and/or required key missing - tainting kernel
paź 07 21:23:09 pudlo kernel: scsi host8: vhba
paź 07 21:23:09 pudlo systemd-journald[355]: Journal started
paź 07 21:23:09 pudlo systemd-journald[355]: Runtime Journal (/run/log/journal/3b1c4163df5b455fbc076f4ef4f25e2c) is 8.0M, max 400.1M, 392.1M free.
paź 07 21:23:09 pudlo systemd-modules-load[340]: Inserted module 'vhba'
paź 07 21:23:09 pudlo systemd-sysctl[351]: Couldn't write '1' to 'net/ipv4/tcp_tw_recycle', ignoring: No such file or directory
paź 07 21:23:09 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ź 07 21:23:09 pudlo kernel: audit: type=1130 audit(1570476189.810: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ź 07 21:23:09 pudlo systemd[1]: Starting Flush Journal to Persistent Storage...
paź 07 21:23:09 pudlo haveged[354]: haveged: listening socket at 3
paź 07 21:23:10 pudlo systemd-journald[355]: Time spent on flushing to /var is 3.047449s for 845 entries.
paź 07 21:23:10 pudlo systemd-journald[355]: System Journal (/var/log/journal/3b1c4163df5b455fbc076f4ef4f25e2c) is 128.0M, max 4.0G, 3.8G free.
paź 07 21:23:14 pudlo kernel: audit: type=1130 audit(1570476193.380:3): 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ź 07 21:23:13 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ź 07 21:23:10 pudlo systemd-udevd[356]: /usr/lib/udev/rules.d/11-dm-lvm.rules:40 Invalid value for OPTIONS key, ignoring: 'event_timeout=180'
paź 07 21:23:14 pudlo haveged[354]: haveged: ver: 1.9.8; arch: x86; vend: ; build: (gcc 9.1.0 ITV); collect: 128K
paź 07 21:23:14 pudlo haveged[354]: haveged: cpu: (VC); data: 64K (V); inst: 64K (V); idx: 39/40; sz: 52623/52623
paź 07 21:23:14 pudlo haveged[354]: haveged: tot tests(BA8): A:1/1 B:1/1 continuous tests(B): last entropy estimate 8.00099
paź 07 21:23:14 pudlo haveged[354]: haveged: fills: 0, generated: 0
paź 07 21:23:10 pudlo systemd-udevd[356]: /usr/lib/udev/rules.d/11-dm-lvm.rules:40 The line takes no effect, ignoring.
paź 07 21:23:13 pudlo systemd[1]: Started udev Kernel Device Manager.
paź 07 21:23:14 pudlo systemd[1]: Started Flush Journal to Persistent Storage.
paź 07 21:23:14 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ź 07 21:23:14 pudlo kernel: audit: type=1130 audit(1570476194.800:4): 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ź 07 21:23:14 pudlo kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
paź 07 21:23:14 pudlo kernel: piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
paź 07 21:23:14 pudlo kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
paź 07 21:23:15 pudlo kernel: input: PC Speaker as /devices/platform/pcspkr/input/input4
paź 07 21:23:15 pudlo kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
paź 07 21:23:15 pudlo kernel: libphy: r8169: probed
paź 07 21:23:15 pudlo kernel: r8169 0000:02:00.0 eth0: RTL8168evl/8111evl, c8:60:00:16:8a:5c, XID 2c900800, IRQ 36
paź 07 21:23:15 pudlo kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
paź 07 21:23:15 pudlo mtp-probe[390]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:07.0/0000:04:00.0/usb2/2-2"
paź 07 21:23:15 pudlo mtp-probe[390]: bus: 2, device: 2 was not an MTP device
paź 07 21:23:15 pudlo systemd-udevd[363]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
paź 07 21:23:15 pudlo kernel: Linux agpgart interface v0.103
paź 07 21:23:15 pudlo kernel: mousedev: PS/2 mouse device common for all mice
paź 07 21:23:15 pudlo systemd[1]: Created slice system-lvm2\x2dpvscan.slice.
paź 07 21:23:15 pudlo systemd[1]: Starting LVM2 PV scan on device 8:1...
paź 07 21:23:15 pudlo systemd[1]: Starting LVM2 PV scan on device 8:2...
paź 07 21:23:15 pudlo kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
paź 07 21:23:15 pudlo lvm[422]: pvscan[422] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:15 pudlo systemd[1]: Starting LVM2 PV scan on device 8:3...
paź 07 21:23:15 pudlo lvm[423]: pvscan[423] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:15 pudlo systemd[1]: Starting LVM2 PV scan on device 8:33...
paź 07 21:23:15 pudlo lvm[424]: pvscan[424] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:15 pudlo systemd[1]: Starting LVM2 PV scan on device 8:34...
paź 07 21:23:15 pudlo lvm[427]: pvscan[427] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:15 pudlo lvm[425]: pvscan[425] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:15 pudlo systemd[1]: Starting LVM2 PV scan on device 8:49...
paź 07 21:23:15 pudlo lvm[438]: pvscan[438] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:16 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ź 07 21:23:16 pudlo systemd-udevd[361]: Using default interface naming scheme 'v243'.
paź 07 21:23:16 pudlo systemd-udevd[361]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
paź 07 21:23:16 pudlo kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
paź 07 21:23:16 pudlo kernel: kvm: Nested Virtualization enabled
paź 07 21:23:16 pudlo kernel: kvm: Nested Paging enabled
paź 07 21:23:16 pudlo systemd-udevd[374]: Using default interface naming scheme 'v243'.
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x1e
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: inputs:
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
paź 07 21:23:16 pudlo kernel: snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input6
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input7
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input8
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card0/input10
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card0/input11
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
paź 07 21:23:16 pudlo kernel: input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
paź 07 21:23:16 pudlo kernel: MCE: In-kernel MCE decoding enabled.
paź 07 21:23:16 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 07 21:23:16 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ź 07 21:23:16 pudlo systemd[1]: Condition check resulted in FUSE Control File System being skipped.
paź 07 21:23:16 pudlo systemd[1]: Condition check resulted in First Boot Wizard being skipped.
paź 07 21:23:16 pudlo systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
paź 07 21:23:16 pudlo systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
paź 07 21:23:16 pudlo systemd[1]: Condition check resulted in Create System Users being skipped.
paź 07 21:23:16 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 07 21:23:16 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ź 07 21:23:16 pudlo kernel: [drm] radeon kernel modesetting enabled.
paź 07 21:23:16 pudlo kernel: checking generic (c0000000 5b0000) vs hw (c0000000 10000000)
paź 07 21:23:16 pudlo kernel: fb: switching to radeondrmfb from VESA VGA
paź 07 21:23:16 pudlo kernel: Console: switching to colour dummy device 80x25
paź 07 21:23:16 pudlo kernel: [drm] initializing kernel modesetting (CAYMAN 0x1002:0x6719 0x1043:0x03BE 0x00).
paź 07 21:23:16 pudlo kernel: ATOM BIOS: 6719.13.10.0.9.AS01.U13
paź 07 21:23:16 pudlo kernel: radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
paź 07 21:23:16 pudlo kernel: radeon 0000:01:00.0: GTT: 1024M 0x0000000080000000 - 0x00000000BFFFFFFF
paź 07 21:23:16 pudlo kernel: [drm] Detected VRAM RAM=2048M, BAR=256M
paź 07 21:23:16 pudlo kernel: [drm] RAM width 256bits DDR
paź 07 21:23:16 pudlo kernel: [TTM] Zone kernel: Available graphics memory: 4097454 kiB
paź 07 21:23:16 pudlo kernel: [TTM] Zone dma32: Available graphics memory: 2097152 kiB
paź 07 21:23:16 pudlo kernel: [TTM] Initializing pool allocator
paź 07 21:23:16 pudlo kernel: [TTM] Initializing DMA pool allocator
paź 07 21:23:16 pudlo kernel: [drm] radeon: 2048M of VRAM memory ready
paź 07 21:23:16 pudlo kernel: [drm] radeon: 1024M of GTT memory ready.
paź 07 21:23:16 pudlo kernel: [drm] Loading CAYMAN Microcode
paź 07 21:23:16 pudlo systemd[1]: Found device /dev/disk/by-uuid/0ede6086-ea31-4a34-8538-238f5db7abc3.
paź 07 21:23:16 pudlo systemd[1]: Starting Cryptography Setup for home...
paź 07 21:23:16 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 07 21:23:16 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ź 07 21:23:16 pudlo kernel: EDAC amd64: Node 0: DRAM ECC disabled.
paź 07 21:23:16 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ź 07 21:23:17 pudlo systemd[1]: Started Dispatch Password Requests to Console.
paź 07 21:23:17 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ź 07 21:23:17 pudlo kernel: audit: type=1130 audit(1570476197.010: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ź 07 21:23:17 pudlo kernel: [drm] Internal thermal controller with fan control
paź 07 21:23:17 pudlo kernel: [drm] radeon: dpm initialized
paź 07 21:23:17 pudlo systemd[1]: Found device /dev/disk/by-id/dm-name-test-swap.
paź 07 21:23:17 pudlo systemd[1]: Starting Cryptography Setup for swap...
paź 07 21:23:17 pudlo systemd-cryptsetup[463]: Set cipher aes, mode xts-plain, key size 512 bits for device /dev/disk/by-id/dm-name-test-swap.
paź 07 21:23:17 pudlo kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
paź 07 21:23:17 pudlo kernel: [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
paź 07 21:23:17 pudlo kernel: [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: WB enabled
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0x00000000391497e7
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0x0000000009dbbb00
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0x000000002401a5dd
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0x000000007f079856
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0x00000000be26558b
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0x00000000e8a47bae
paź 07 21:23:17 pudlo kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
paź 07 21:23:17 pudlo kernel: [drm] Driver supports precise vblank timestamp query.
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: radeon: MSI limited to 32-bit
paź 07 21:23:17 pudlo kernel: radeon 0000:01:00.0: radeon: using MSI.
paź 07 21:23:17 pudlo kernel: [drm] radeon: irq initialized.
paź 07 21:23:17 pudlo kernel: [drm] ring test on 0 succeeded in 3 usecs
paź 07 21:23:17 pudlo kernel: [drm] ring test on 3 succeeded in 4 usecs
paź 07 21:23:17 pudlo kernel: [drm] ring test on 4 succeeded in 4 usecs
paź 07 21:23:17 pudlo kernel: [drm] ring test on 5 succeeded in 2 usecs
paź 07 21:23:17 pudlo kernel: [drm] UVD initialized successfully.
paź 07 21:23:17 pudlo kernel: [drm] ib test on ring 0 succeeded in 0 usecs
paź 07 21:23:17 pudlo kernel: [drm] ib test on ring 3 succeeded in 0 usecs
paź 07 21:23:17 pudlo kernel: [drm] ib test on ring 4 succeeded in 0 usecs
paź 07 21:23:17 pudlo systemd-udevd[381]: controlC0: Process '/usr/bin/alsactl restore 0' failed with exit code 99.
paź 07 21:23:18 pudlo mkswap[475]: Tworzenie obszaru wymiany w wersji 1, rozmiar = 1024 MiB (bajtów: 1073737728)
paź 07 21:23:18 pudlo mkswap[475]: brak etykiety, UUID=982a24cd-e3df-4612-b3b1-018d49d1bc72
paź 07 21:23:18 pudlo systemd[1]: Started Cryptography Setup for swap.
paź 07 21:23:18 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ź 07 21:23:18 pudlo kernel: audit: type=1130 audit(1570476198.030: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ź 07 21:23:18 pudlo kernel: [drm] ib test on ring 5 succeeded
paź 07 21:23:18 pudlo kernel: [drm] Radeon Display Connectors
paź 07 21:23:18 pudlo kernel: [drm] Connector 0:
paź 07 21:23:18 pudlo kernel: [drm] DP-1
paź 07 21:23:18 pudlo kernel: [drm] HPD5
paź 07 21:23:18 pudlo kernel: [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
paź 07 21:23:18 pudlo kernel: [drm] Encoders:
paź 07 21:23:18 pudlo kernel: [drm] DFP1: INTERNAL_UNIPHY2
paź 07 21:23:18 pudlo kernel: [drm] Connector 1:
paź 07 21:23:18 pudlo kernel: [drm] DP-2
paź 07 21:23:18 pudlo kernel: [drm] HPD6
paź 07 21:23:18 pudlo kernel: [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
paź 07 21:23:18 pudlo kernel: [drm] Encoders:
paź 07 21:23:18 pudlo kernel: [drm] DFP2: INTERNAL_UNIPHY1
paź 07 21:23:18 pudlo kernel: [drm] Connector 2:
paź 07 21:23:18 pudlo kernel: [drm] DP-3
paź 07 21:23:18 pudlo kernel: [drm] HPD4
paź 07 21:23:18 pudlo kernel: [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
paź 07 21:23:18 pudlo kernel: [drm] Encoders:
paź 07 21:23:18 pudlo kernel: [drm] DFP3: INTERNAL_UNIPHY2
paź 07 21:23:18 pudlo kernel: [drm] Connector 3:
paź 07 21:23:18 pudlo kernel: [drm] DP-4
paź 07 21:23:18 pudlo kernel: [drm] HPD2
paź 07 21:23:18 pudlo kernel: [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
paź 07 21:23:18 pudlo kernel: [drm] Encoders:
paź 07 21:23:18 pudlo kernel: [drm] DFP4: INTERNAL_UNIPHY
paź 07 21:23:18 pudlo kernel: [drm] Connector 4:
paź 07 21:23:18 pudlo kernel: [drm] DVI-I-1
paź 07 21:23:18 pudlo kernel: [drm] HPD1
paź 07 21:23:18 pudlo kernel: [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
paź 07 21:23:18 pudlo kernel: [drm] Encoders:
paź 07 21:23:18 pudlo kernel: [drm] DFP5: INTERNAL_UNIPHY1
paź 07 21:23:18 pudlo kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
paź 07 21:23:18 pudlo kernel: [drm] Connector 5:
paź 07 21:23:18 pudlo kernel: [drm] DVI-D-1
paź 07 21:23:18 pudlo kernel: [drm] HPD3
paź 07 21:23:18 pudlo kernel: [drm] DDC: 0x6480 0x6480 0x6484 0x6484 0x6488 0x6488 0x648c 0x648c
paź 07 21:23:18 pudlo kernel: [drm] Encoders:
paź 07 21:23:18 pudlo kernel: [drm] DFP6: INTERNAL_UNIPHY
paź 07 21:23:18 pudlo kernel: [drm] fb mappable at 0xC0363000
paź 07 21:23:18 pudlo kernel: [drm] vram apper at 0xC0000000
paź 07 21:23:18 pudlo kernel: [drm] size 8294400
paź 07 21:23:18 pudlo kernel: [drm] fb depth is 24
paź 07 21:23:18 pudlo kernel: [drm] pitch is 7680
paź 07 21:23:18 pudlo kernel: fbcon: radeondrmfb (fb0) is primary device
paź 07 21:23:18 pudlo kernel: Console: switching to colour frame buffer device 240x67
paź 07 21:23:18 pudlo kernel: radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
paź 07 21:23:18 pudlo systemd[1]: Found device /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap.
paź 07 21:23:18 pudlo systemd[1]: Activating swap /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap...
paź 07 21:23:18 pudlo kernel: [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
paź 07 21:23:19 pudlo systemd[1]: Activated swap /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap.
paź 07 21:23:19 pudlo systemd[1]: Reached target Swap.
paź 07 21:23:19 pudlo systemd[1]: Mounting Temporary Directory (/tmp)...
paź 07 21:23:19 pudlo systemd[1]: Mounted Temporary Directory (/tmp).
paź 07 21:23:19 pudlo kernel: Adding 1048572k swap on /dev/mapper/swap. Priority:-2 extents:1 across:1048572k FS
paź 07 21:23:19 pudlo systemd[1]: Starting LVM2 PV scan on device 8:18...
paź 07 21:23:19 pudlo lvm[490]: pvscan[490] WARNING: lvmetad is being updated, retrying (setup) for 10 more seconds.
paź 07 21:23:19 pudlo systemd[1]: Found device WDC_WD20EARS-00S8B1 1.
paź 07 21:23:19 pudlo lvm[338]: WARNING: lvmetad is being updated by another command (pid 425).
paź 07 21:23:19 pudlo lvm[338]: WARNING: lvmetad is being updated by another command (pid 425).
paź 07 21:23:19 pudlo lvm[338]: WARNING: Not using lvmetad because cache update failed.
paź 07 21:23:19 pudlo lvm[425]: pvscan[425] activating all complete VGs for init
paź 07 21:23:19 pudlo lvm[425]: pvscan[425] VG test skip autoactivation.
paź 07 21:23:19 pudlo lvm[338]: 9 logical volume(s) in volume group "test" monitored
paź 07 21:23:19 pudlo systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
paź 07 21:23:19 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ź 07 21:23:19 pudlo systemd[1]: Started LVM2 PV scan on device 8:33.
paź 07 21:23:19 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ź 07 21:23:19 pudlo systemd[1]: Reached target Local File Systems (Pre).
paź 07 21:23:19 pudlo systemd[1]: Mounting /var/lib/sql_tmp...
paź 07 21:23:19 pudlo systemd[1]: Starting File System Check on /dev/disk/by-uuid/5c33e782-eaa8-4cac-9460-415020aef60a...
paź 07 21:23:19 pudlo systemd[1]: Mounted /var/lib/sql_tmp.
paź 07 21:23:19 pudlo kernel: audit: type=1130 audit(1570476199.470: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ź 07 21:23:19 pudlo kernel: audit: type=1130 audit(1570476199.470:8): 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ź 07 21:23:19 pudlo systemd[1]: Started File System Check on /dev/disk/by-uuid/5c33e782-eaa8-4cac-9460-415020aef60a.
paź 07 21:23:19 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ź 07 21:23:19 pudlo systemd[1]: Mounting /boot...
paź 07 21:23:19 pudlo kernel: audit: type=1130 audit(1570476199.690:9): 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ź 07 21:23:20 pudlo kernel: EXT4-fs (sdb1): mounting ext2 file system using the ext4 subsystem
paź 07 21:23:20 pudlo systemd[1]: Mounted /boot.
paź 07 21:23:20 pudlo systemd[1]: Reached target Local File Systems.
paź 07 21:23:20 pudlo systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
paź 07 21:23:20 pudlo systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
paź 07 21:23:20 pudlo systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
paź 07 21:23:20 pudlo systemd[1]: Starting Create Volatile Files and Directories...
paź 07 21:23:20 pudlo kernel: EXT4-fs (sdb1): mounted filesystem without journal. Opts: errors=remount-ro
paź 07 21:23:20 pudlo lvm[438]: pvscan[438] VG test skip autoactivation.
paź 07 21:23:20 pudlo systemd[1]: Started LVM2 PV scan on device 8:49.
paź 07 21:23:20 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ź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.220:10): 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ź 07 21:23:20 pudlo systemd-tmpfiles[502]: Detected autofs mount point /home during canonicalization of /home.
paź 07 21:23:20 pudlo systemd-tmpfiles[502]: Skipping /home
paź 07 21:23:20 pudlo lvm[424]: pvscan[424] VG test skip autoactivation.
paź 07 21:23:20 pudlo lvm[422]: pvscan[422] VG test skip autoactivation.
paź 07 21:23:20 pudlo lvm[490]: pvscan[490] VG test skip autoactivation.
paź 07 21:23:20 pudlo systemd[1]: Started LVM2 PV scan on device 8:1.
paź 07 21:23:20 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ź 07 21:23:20 pudlo systemd[1]: Started LVM2 PV scan on device 8:3.
paź 07 21:23:20 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ź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.420:11): 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ź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.420:12): 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ź 07 21:23:20 pudlo lvm[423]: pvscan[423] VG test skip autoactivation.
paź 07 21:23:20 pudlo systemd[1]: Started LVM2 PV scan on device 8:18.
paź 07 21:23:20 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ź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.510:13): 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ź 07 21:23:20 pudlo systemd[1]: Started LVM2 PV scan on device 8:2.
paź 07 21:23:20 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ź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.560:14): 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ź 07 21:23:20 pudlo systemd-tmpfiles[502]: Detected autofs mount point /home during canonicalization of /home.
paź 07 21:23:20 pudlo systemd-tmpfiles[502]: Skipping /home
paź 07 21:23:20 pudlo systemd[1]: Started Create Volatile Files and Directories.
paź 07 21:23:20 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ź 07 21:23:20 pudlo systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
paź 07 21:23:20 pudlo systemd[1]: Condition check resulted in Update is Completed being skipped.
paź 07 21:23:20 pudlo systemd[1]: Starting Update UTMP about System Boot/Shutdown...
paź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.700:15): 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ź 07 21:23:20 pudlo audit[503]: SYSTEM_BOOT pid=503 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
paź 07 21:23:20 pudlo kernel: audit: type=1127 audit(1570476200.730:16): pid=503 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
paź 07 21:23:20 pudlo systemd[1]: Started Update UTMP about System Boot/Shutdown.
paź 07 21:23:20 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ź 07 21:23:20 pudlo kernel: audit: type=1130 audit(1570476200.870:17): 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ź 07 21:23:21 pudlo lvm[427]: pvscan[427] VG test skip autoactivation.
paź 07 21:23:21 pudlo systemd[1]: Started LVM2 PV scan on device 8:34.
paź 07 21:23:21 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ź 07 21:23:21 pudlo kernel: audit: type=1130 audit(1570476201.220:18): 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ź 07 21:23:32 pudlo systemd-cryptsetup[453]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/0ede6086-ea31-4a34-8538-238f5db7abc3.
paź 07 21:23:32 pudlo systemd[1]: Started Cryptography Setup for home.
paź 07 21:23:32 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ź 07 21:23:32 pudlo kernel: audit: type=1130 audit(1570476212.930: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ź 07 21:23:32 pudlo systemd[1]: Reached target Local Encrypted Volumes.
paź 07 21:23:32 pudlo systemd[1]: Reached target System Initialization.
paź 07 21:23:32 pudlo systemd[1]: Started Daily rotation of log files.
paź 07 21:23:32 pudlo kernel: audit: type=1130 audit(1570476212.960:20): 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ź 07 21:23:32 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ź 07 21:23:32 pudlo systemd[1]: Started Daily verification of password and group files.
paź 07 21:23:32 pudlo systemd[1]: Started Daily Cleanup of Temporary Directories.
paź 07 21:23:32 pudlo systemd[1]: Reached target Timers.
paź 07 21:23:32 pudlo systemd[1]: Listening on D-Bus System Message Bus Socket.
paź 07 21:23:32 pudlo systemd[1]: Reached target Sockets.
paź 07 21:23:32 pudlo systemd[1]: Reached target Basic System.
paź 07 21:23:32 pudlo systemd[1]: Reached target Multi-User System.
paź 07 21:23:32 pudlo systemd[1]: Starting Save/Restore Sound Card State...
paź 07 21:23:32 pudlo systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
paź 07 21:23:32 pudlo systemd[1]: Started Save/Restore Sound Card State.
paź 07 21:23:32 pudlo systemd[1]: Reached target Sound Card.
paź 07 21:23:32 pudlo systemd[1]: Startup finished in 22.051s (kernel) + 28.214s (userspace) = 50.266s.
paź 07 21:24:35 pudlo systemd[1]: Received SIGINT.
paź 07 21:24:35 pudlo systemd[1]: Stopped target Multi-User System.
paź 07 21:24:35 pudlo systemd[1]: Stopped target Sound Card.
paź 07 21:24:35 pudlo systemd[1]: Stopped target Timers.
paź 07 21:24:35 pudlo systemd[1]: logrotate.timer: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped Daily rotation of log files.
paź 07 21:24:35 pudlo systemd[1]: shadow.timer: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped Daily verification of password and group files.
paź 07 21:24:35 pudlo systemd[1]: systemd-tmpfiles-clean.timer: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped Daily Cleanup of Temporary Directories.
paź 07 21:24:35 pudlo systemd[1]: lvm2-lvmpolld.socket: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Closed LVM2 poll daemon socket.
paź 07 21:24:35 pudlo systemd[1]: Deactivating swap dev-mapper-swap.swap...
paź 07 21:24:35 pudlo systemd[1]: Stopping Save/Restore Sound Card State...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:1...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:18...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:2...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:3...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:33...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:34...
paź 07 21:24:35 pudlo systemd[1]: Stopping LVM2 PV scan on device 8:49...
paź 07 21:24:35 pudlo systemd[1]: Condition check resulted in Generate shutdown-ramfs being skipped.
paź 07 21:24:35 pudlo systemd[1]: Stopping Dispatch Password Requests to Console...
paź 07 21:24:35 pudlo systemd[1]: systemd-ask-password-console.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped Dispatch Password Requests to Console.
paź 07 21:24:35 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.790:21): 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ź 07 21:24:35 pudlo systemd[1]: dev-disk-by\x2duuid-982a24cd\x2de3df\x2d4612\x2db3b1\x2d018d49d1bc72.swap: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Deactivated swap /dev/disk/by-uuid/982a24cd-e3df-4612-b3b1-018d49d1bc72.
paź 07 21:24:35 pudlo systemd[1]: dev-disk-by\x2did-dm\x2dname\x2dswap.swap: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Deactivated swap /dev/disk/by-id/dm-name-swap.
paź 07 21:24:35 pudlo systemd[1]: dev-dm\x2d10.swap: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Deactivated swap /dev/dm-10.
paź 07 21:24:35 pudlo systemd[1]: dev-mapper-swap.swap: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Deactivated swap dev-mapper-swap.swap.
paź 07 21:24:35 pudlo systemd[1]: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dPLAIN\x2dswap.swap: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Deactivated swap /dev/disk/by-id/dm-uuid-CRYPT-PLAIN-swap.
paź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:1.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:1.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:2.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:2.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.850:22): 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.850:23): 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ź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:33.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:33.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.870:24): 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ź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:18.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:18.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.880:25): 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ź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:3.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:3.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:34.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:34.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo systemd[1]: lvm2-pvscan@8:49.service: Succeeded.
paź 07 21:24:35 pudlo systemd[1]: Stopped LVM2 PV scan on device 8:49.
paź 07 21:24:35 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:35 pudlo systemd[1]: Removed slice system-lvm2\x2dpvscan.slice.
paź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.920:26): 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.920:27): 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ź 07 21:24:35 pudlo kernel: audit: type=1131 audit(1570476275.920:28): 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ź 07 21:24:36 pudlo systemd[1]: alsa-restore.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Save/Restore Sound Card State.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo systemd[1]: Stopped target Basic System.
paź 07 21:24:36 pudlo systemd[1]: Stopped target Paths.
paź 07 21:24:36 pudlo systemd[1]: Stopped target Slices.
paź 07 21:24:36 pudlo systemd[1]: Stopped target Sockets.
paź 07 21:24:36 pudlo systemd[1]: dbus.socket: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Closed D-Bus System Message Bus Socket.
paź 07 21:24:36 pudlo systemd[1]: Stopped target System Initialization.
paź 07 21:24:36 pudlo systemd[1]: Stopped target Local Encrypted Volumes.
paź 07 21:24:36 pudlo systemd[1]: systemd-ask-password-console.path: Succeeded.
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.160:29): 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ź 07 21:24:36 pudlo systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
paź 07 21:24:36 pudlo systemd[1]: systemd-binfmt.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Set Up Additional Binary Formats.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: Stopping Cryptography Setup for home...
paź 07 21:24:36 pudlo systemd[1]: Stopping Cryptography Setup for swap...
paź 07 21:24:36 pudlo systemd[1]: systemd-sysctl.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Apply Kernel Variables.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: systemd-modules-load.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Load Kernel Modules.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.200:30): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.200:31): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.200:32): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: Stopping Update UTMP about System Boot/Shutdown...
paź 07 21:24:36 pudlo systemd-cryptsetup[538]: device-mapper: remove ioctl on swap failed: Device or resource busy
paź 07 21:24:36 pudlo audit[539]: SYSTEM_SHUTDOWN pid=539 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: systemd-update-utmp.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Update UTMP about System Boot/Shutdown.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo systemd[1]: systemd-tmpfiles-setup.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Create Volatile Files and Directories.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo systemd[1]: Stopped target Local File Systems.
paź 07 21:24:36 pudlo kernel: audit: type=1128 audit(1570476276.210:33): pid=539 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.210:34): 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ź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.210:35): 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ź 07 21:24:36 pudlo systemd[1]: home.automount: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Unset automount home.automount.
paź 07 21:24:36 pudlo systemd[1]: Unmounting /boot...
paź 07 21:24:36 pudlo systemd[1]: Unmounting Temporary Directory (/tmp)...
paź 07 21:24:36 pudlo systemd[1]: Unmounting /var/lib/sql_tmp...
paź 07 21:24:36 pudlo systemd[1]: systemd-cryptsetup@home.service: Succeeded.
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.340:36): 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ź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo systemd[1]: Stopped Cryptography Setup for home.
paź 07 21:24:36 pudlo systemd[1]: var-lib-sql_tmp.mount: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Unmounted /var/lib/sql_tmp.
paź 07 21:24:36 pudlo systemd[1]: tmp.mount: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Unmounted Temporary Directory (/tmp).
paź 07 21:24:36 pudlo systemd[1]: Stopped target Swap.
paź 07 21:24:36 pudlo systemd-cryptsetup[538]: device-mapper: remove ioctl on swap failed: Device or resource busy
paź 07 21:24:36 pudlo systemd[1]: boot.mount: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Unmounted /boot.
paź 07 21:24:36 pudlo systemd[1]: systemd-fsck@dev-disk-by\x2duuid-5c33e782\x2deaa8\x2d4cac\x2d9460\x2d415020aef60a.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped File System Check on /dev/disk/by-uuid/5c33e782-eaa8-4cac-9460-415020aef60a.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo systemd[1]: Removed slice system-systemd\x2dfsck.slice.
paź 07 21:24:36 pudlo systemd[1]: Stopped target Local File Systems (Pre).
paź 07 21:24:36 pudlo systemd[1]: Stopping Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
paź 07 21:24:36 pudlo systemd[1]: systemd-tmpfiles-setup-dev.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Create Static Device Nodes in /dev.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.420:37): 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ź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.420:38): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo lvm[548]: 9 logical volume(s) in volume group "test" unmonitored
paź 07 21:24:36 pudlo systemd[1]: lvm2-monitor.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.530:39): 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ź 07 21:24:36 pudlo systemd[1]: Stopping LVM2 metadata daemon...
paź 07 21:24:36 pudlo systemd[1]: lvm2-lvmetad.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped LVM2 metadata daemon.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-lvmetad comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: lvm2-lvmetad.socket: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Closed LVM2 metadata daemon socket.
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.530:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-lvmetad comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: systemd-cryptsetup@swap.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Cryptography Setup for swap.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP 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ź 07 21:24:36 pudlo systemd[1]: Removed slice system-systemd\x2dcryptsetup.slice.
paź 07 21:24:36 pudlo systemd[1]: Reached target Unmount All Filesystems.
paź 07 21:24:36 pudlo systemd[1]: Stopping Load/Save Random Seed...
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.710:41): 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ź 07 21:24:36 pudlo systemd[1]: systemd-random-seed.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Load/Save Random Seed.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: systemd-remount-fs.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Stopped Remount Root and Kernel File Systems.
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: Reached target Shutdown.
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.750:42): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.750:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: Reached target Final Step.
paź 07 21:24:36 pudlo systemd[1]: systemd-reboot.service: Succeeded.
paź 07 21:24:36 pudlo systemd[1]: Started Reboot.
paź 07 21:24:36 pudlo audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo systemd[1]: Reached target Reboot.
paź 07 21:24:36 pudlo systemd[1]: Shutting down.
paź 07 21:24:36 pudlo kernel: audit: type=1130 audit(1570476276.760:44): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: audit: type=1131 audit(1570476276.760:45): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
paź 07 21:24:36 pudlo kernel: systemd-shutdow: 48 output lines suppressed due to ratelimiting
paź 07 21:24:37 pudlo systemd-shutdown[1]: Syncing filesystems and block devices.
paź 07 21:24:37 pudlo haveged[354]: haveged: Stopping due to signal 15
paź 07 21:24:37 pudlo haveged[354]: haveged starting up
paź 07 21:24:37 pudlo systemd-journald[355]: Journal stopped