forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.txt
1920 lines (1920 loc) · 126 KB
/
output.txt
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
[ 0.000000] Linux version 5.15.0-rc7+ (archana@ubuntu) (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #1 SMP Sat Oct 30 20:58:15 PDT 2021
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-rc7+ root=UUID=e240b98d-0f33-4ad6-aa63-1bb7403e9ecf ro find_preseed=/preseed.cfg auto noprompt priority=critical locale=en_US quiet
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] Disabled fast string operations
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[ 0.000000] signal: max sigframe size: 1776
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bfecffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bfed0000-0x00000000bfefefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bfeff000-0x00000000bfefffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bff00000-0x00000000bfffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 11/12/2020
[ 0.000000] vmware: hypercall mode: 0x02
[ 0.000000] Hypervisor detected: VMware
[ 0.000000] vmware: TSC freq read from hypervisor : 2112.003 MHz
[ 0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
[ 0.000000] vmware: using clock offset of 11880819226 ns
[ 0.000016] tsc: Detected 2112.003 MHz processor
[ 0.001378] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001382] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001386] last_pfn = 0x140000 max_arch_pfn = 0x400000000
[ 0.001408] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001419] total RAM covered: 130048M
[ 0.001532] Found optimal setting for mtrr clean up
[ 0.001533] gran_size: 64K chunk_size: 64K num_reg: 7 lose cover RAM: 0G
[ 0.001573] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[ 0.001579] last_pfn = 0xc0000 max_arch_pfn = 0x400000000
[ 0.009882] found SMP MP-table at [mem 0x000f6a70-0x000f6a7f]
[ 0.009903] Using GB pages for direct mapping
[ 0.010172] RAMDISK: [mem 0x31241000-0x34917fff]
[ 0.010179] ACPI: Early table checksum verification disabled
[ 0.010183] ACPI: RSDP 0x00000000000F6A00 000024 (v02 PTLTD )
[ 0.010188] ACPI: XSDT 0x00000000BFEDC5D7 000064 (v01 INTEL 440BX 06040000 VMW 01324272)
[ 0.010193] ACPI: FACP 0x00000000BFEFEE73 0000F4 (v04 INTEL 440BX 06040000 PTL 000F4240)
[ 0.010199] ACPI: DSDT 0x00000000BFEDD9E8 02148B (v01 PTLTD Custom 06040000 MSFT 03000001)
[ 0.010205] ACPI: FACS 0x00000000BFEFFFC0 000040
[ 0.010208] ACPI: FACS 0x00000000BFEFFFC0 000040
[ 0.010211] ACPI: BOOT 0x00000000BFEDD9C0 000028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
[ 0.010214] ACPI: APIC 0x00000000BFEDD27E 000742 (v01 PTLTD ? APIC 06040000 LTP 00000000)
[ 0.010218] ACPI: MCFG 0x00000000BFEDD242 00003C (v01 PTLTD $PCITBL$ 06040000 LTP 00000001)
[ 0.010221] ACPI: SRAT 0x00000000BFEDC72F 0008D0 (v02 VMWARE MEMPLUG 06040000 VMW 00000001)
[ 0.010224] ACPI: HPET 0x00000000BFEDC6F7 000038 (v01 VMWARE VMW HPET 06040000 VMW 00000001)
[ 0.010227] ACPI: WAET 0x00000000BFEDC6CF 000028 (v01 VMWARE VMW WAET 06040000 VMW 00000001)
[ 0.010230] ACPI: DMAR 0x00000000BFEDC67F 000050 (v01 VMWARE VMW DMAR 06040000 VMW 00000001)
[ 0.010232] ACPI: Reserving FACP table memory at [mem 0xbfefee73-0xbfefef66]
[ 0.010234] ACPI: Reserving DSDT table memory at [mem 0xbfedd9e8-0xbfefee72]
[ 0.010234] ACPI: Reserving FACS table memory at [mem 0xbfefffc0-0xbfefffff]
[ 0.010235] ACPI: Reserving FACS table memory at [mem 0xbfefffc0-0xbfefffff]
[ 0.010236] ACPI: Reserving BOOT table memory at [mem 0xbfedd9c0-0xbfedd9e7]
[ 0.010236] ACPI: Reserving APIC table memory at [mem 0xbfedd27e-0xbfedd9bf]
[ 0.010237] ACPI: Reserving MCFG table memory at [mem 0xbfedd242-0xbfedd27d]
[ 0.010238] ACPI: Reserving SRAT table memory at [mem 0xbfedc72f-0xbfedcffe]
[ 0.010238] ACPI: Reserving HPET table memory at [mem 0xbfedc6f7-0xbfedc72e]
[ 0.010239] ACPI: Reserving WAET table memory at [mem 0xbfedc6cf-0xbfedc6f6]
[ 0.010240] ACPI: Reserving DMAR table memory at [mem 0xbfedc67f-0xbfedc6ce]
[ 0.010273] system APIC only can use physical flat
[ 0.010274] Setting APIC routing to physical flat.
[ 0.010337] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[ 0.010338] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[ 0.010339] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[ 0.010339] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[ 0.010340] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[ 0.010340] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[ 0.010341] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[ 0.010341] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[ 0.010342] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[ 0.010342] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[ 0.010343] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[ 0.010344] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[ 0.010344] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[ 0.010345] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[ 0.010345] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[ 0.010346] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[ 0.010346] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[ 0.010347] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[ 0.010348] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[ 0.010348] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[ 0.010349] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[ 0.010349] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[ 0.010350] SRAT: PXM 0 -> APIC 0x1d -> Node 0
[ 0.010350] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[ 0.010351] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[ 0.010351] SRAT: PXM 0 -> APIC 0x21 -> Node 0
[ 0.010352] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[ 0.010352] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[ 0.010353] SRAT: PXM 0 -> APIC 0x25 -> Node 0
[ 0.010354] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[ 0.010354] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[ 0.010355] SRAT: PXM 0 -> APIC 0x29 -> Node 0
[ 0.010355] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[ 0.010356] SRAT: PXM 0 -> APIC 0x2c -> Node 0
[ 0.010356] SRAT: PXM 0 -> APIC 0x2d -> Node 0
[ 0.010357] SRAT: PXM 0 -> APIC 0x2e -> Node 0
[ 0.010357] SRAT: PXM 0 -> APIC 0x30 -> Node 0
[ 0.010358] SRAT: PXM 0 -> APIC 0x31 -> Node 0
[ 0.010359] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[ 0.010359] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[ 0.010360] SRAT: PXM 0 -> APIC 0x35 -> Node 0
[ 0.010360] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[ 0.010361] SRAT: PXM 0 -> APIC 0x38 -> Node 0
[ 0.010361] SRAT: PXM 0 -> APIC 0x39 -> Node 0
[ 0.010362] SRAT: PXM 0 -> APIC 0x3a -> Node 0
[ 0.010362] SRAT: PXM 0 -> APIC 0x3c -> Node 0
[ 0.010363] SRAT: PXM 0 -> APIC 0x3d -> Node 0
[ 0.010363] SRAT: PXM 0 -> APIC 0x3e -> Node 0
[ 0.010364] SRAT: PXM 0 -> APIC 0x40 -> Node 0
[ 0.010365] SRAT: PXM 0 -> APIC 0x41 -> Node 0
[ 0.010365] SRAT: PXM 0 -> APIC 0x42 -> Node 0
[ 0.010366] SRAT: PXM 0 -> APIC 0x44 -> Node 0
[ 0.010366] SRAT: PXM 0 -> APIC 0x45 -> Node 0
[ 0.010367] SRAT: PXM 0 -> APIC 0x46 -> Node 0
[ 0.010367] SRAT: PXM 0 -> APIC 0x48 -> Node 0
[ 0.010368] SRAT: PXM 0 -> APIC 0x49 -> Node 0
[ 0.010368] SRAT: PXM 0 -> APIC 0x4a -> Node 0
[ 0.010369] SRAT: PXM 0 -> APIC 0x4c -> Node 0
[ 0.010369] SRAT: PXM 0 -> APIC 0x4d -> Node 0
[ 0.010370] SRAT: PXM 0 -> APIC 0x4e -> Node 0
[ 0.010371] SRAT: PXM 0 -> APIC 0x50 -> Node 0
[ 0.010371] SRAT: PXM 0 -> APIC 0x51 -> Node 0
[ 0.010372] SRAT: PXM 0 -> APIC 0x52 -> Node 0
[ 0.010372] SRAT: PXM 0 -> APIC 0x54 -> Node 0
[ 0.010373] SRAT: PXM 0 -> APIC 0x55 -> Node 0
[ 0.010373] SRAT: PXM 0 -> APIC 0x56 -> Node 0
[ 0.010374] SRAT: PXM 0 -> APIC 0x58 -> Node 0
[ 0.010374] SRAT: PXM 0 -> APIC 0x59 -> Node 0
[ 0.010375] SRAT: PXM 0 -> APIC 0x5a -> Node 0
[ 0.010376] SRAT: PXM 0 -> APIC 0x5c -> Node 0
[ 0.010376] SRAT: PXM 0 -> APIC 0x5d -> Node 0
[ 0.010377] SRAT: PXM 0 -> APIC 0x5e -> Node 0
[ 0.010377] SRAT: PXM 0 -> APIC 0x60 -> Node 0
[ 0.010378] SRAT: PXM 0 -> APIC 0x61 -> Node 0
[ 0.010378] SRAT: PXM 0 -> APIC 0x62 -> Node 0
[ 0.010379] SRAT: PXM 0 -> APIC 0x64 -> Node 0
[ 0.010379] SRAT: PXM 0 -> APIC 0x65 -> Node 0
[ 0.010380] SRAT: PXM 0 -> APIC 0x66 -> Node 0
[ 0.010380] SRAT: PXM 0 -> APIC 0x68 -> Node 0
[ 0.010381] SRAT: PXM 0 -> APIC 0x69 -> Node 0
[ 0.010382] SRAT: PXM 0 -> APIC 0x6a -> Node 0
[ 0.010382] SRAT: PXM 0 -> APIC 0x6c -> Node 0
[ 0.010383] SRAT: PXM 0 -> APIC 0x6d -> Node 0
[ 0.010383] SRAT: PXM 0 -> APIC 0x6e -> Node 0
[ 0.010384] SRAT: PXM 0 -> APIC 0x70 -> Node 0
[ 0.010384] SRAT: PXM 0 -> APIC 0x71 -> Node 0
[ 0.010385] SRAT: PXM 0 -> APIC 0x72 -> Node 0
[ 0.010385] SRAT: PXM 0 -> APIC 0x74 -> Node 0
[ 0.010386] SRAT: PXM 0 -> APIC 0x75 -> Node 0
[ 0.010386] SRAT: PXM 0 -> APIC 0x76 -> Node 0
[ 0.010387] SRAT: PXM 0 -> APIC 0x78 -> Node 0
[ 0.010388] SRAT: PXM 0 -> APIC 0x79 -> Node 0
[ 0.010388] SRAT: PXM 0 -> APIC 0x7a -> Node 0
[ 0.010389] SRAT: PXM 0 -> APIC 0x7c -> Node 0
[ 0.010389] SRAT: PXM 0 -> APIC 0x7d -> Node 0
[ 0.010390] SRAT: PXM 0 -> APIC 0x7e -> Node 0
[ 0.010390] SRAT: PXM 0 -> APIC 0x80 -> Node 0
[ 0.010391] SRAT: PXM 0 -> APIC 0x81 -> Node 0
[ 0.010391] SRAT: PXM 0 -> APIC 0x82 -> Node 0
[ 0.010392] SRAT: PXM 0 -> APIC 0x84 -> Node 0
[ 0.010393] SRAT: PXM 0 -> APIC 0x85 -> Node 0
[ 0.010393] SRAT: PXM 0 -> APIC 0x86 -> Node 0
[ 0.010394] SRAT: PXM 0 -> APIC 0x88 -> Node 0
[ 0.010394] SRAT: PXM 0 -> APIC 0x89 -> Node 0
[ 0.010395] SRAT: PXM 0 -> APIC 0x8a -> Node 0
[ 0.010395] SRAT: PXM 0 -> APIC 0x8c -> Node 0
[ 0.010396] SRAT: PXM 0 -> APIC 0x8d -> Node 0
[ 0.010396] SRAT: PXM 0 -> APIC 0x8e -> Node 0
[ 0.010397] SRAT: PXM 0 -> APIC 0x90 -> Node 0
[ 0.010397] SRAT: PXM 0 -> APIC 0x91 -> Node 0
[ 0.010398] SRAT: PXM 0 -> APIC 0x92 -> Node 0
[ 0.010399] SRAT: PXM 0 -> APIC 0x94 -> Node 0
[ 0.010399] SRAT: PXM 0 -> APIC 0x95 -> Node 0
[ 0.010400] SRAT: PXM 0 -> APIC 0x96 -> Node 0
[ 0.010400] SRAT: PXM 0 -> APIC 0x98 -> Node 0
[ 0.010401] SRAT: PXM 0 -> APIC 0x99 -> Node 0
[ 0.010401] SRAT: PXM 0 -> APIC 0x9a -> Node 0
[ 0.010402] SRAT: PXM 0 -> APIC 0x9c -> Node 0
[ 0.010402] SRAT: PXM 0 -> APIC 0x9d -> Node 0
[ 0.010403] SRAT: PXM 0 -> APIC 0x9e -> Node 0
[ 0.010403] SRAT: PXM 0 -> APIC 0xa0 -> Node 0
[ 0.010404] SRAT: PXM 0 -> APIC 0xa1 -> Node 0
[ 0.010405] SRAT: PXM 0 -> APIC 0xa2 -> Node 0
[ 0.010405] SRAT: PXM 0 -> APIC 0xa4 -> Node 0
[ 0.010406] SRAT: PXM 0 -> APIC 0xa5 -> Node 0
[ 0.010406] SRAT: PXM 0 -> APIC 0xa6 -> Node 0
[ 0.010407] SRAT: PXM 0 -> APIC 0xa8 -> Node 0
[ 0.010407] SRAT: PXM 0 -> APIC 0xa9 -> Node 0
[ 0.010410] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
[ 0.010412] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xbfffffff]
[ 0.010413] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x13fffffff]
[ 0.010414] ACPI: SRAT: Node 0 PXM 0 [mem 0x140000000-0x103fffffff] hotplug
[ 0.010416] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xbfffffff] -> [mem 0x00000000-0xbfffffff]
[ 0.010418] NUMA: Node 0 [mem 0x00000000-0xbfffffff] + [mem 0x100000000-0x13fffffff] -> [mem 0x00000000-0x13fffffff]
[ 0.010425] NODE_DATA(0) allocated [mem 0x13ffd4000-0x13fffdfff]
[ 0.011342] Zone ranges:
[ 0.011344] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.011346] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.011347] Normal [mem 0x0000000100000000-0x000000013fffffff]
[ 0.011348] Device empty
[ 0.011349] Movable zone start for each node
[ 0.011351] Early memory node ranges
[ 0.011351] node 0: [mem 0x0000000000001000-0x000000000009dfff]
[ 0.011353] node 0: [mem 0x0000000000100000-0x00000000bfecffff]
[ 0.011354] node 0: [mem 0x00000000bff00000-0x00000000bfffffff]
[ 0.011354] node 0: [mem 0x0000000100000000-0x000000013fffffff]
[ 0.011355] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[ 0.011519] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.012304] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.171853] On node 0, zone DMA32: 48 pages in unavailable ranges
[ 0.227575] ACPI: PM-Timer IO Port: 0x1008
[ 0.227587] system APIC only can use physical flat
[ 0.227599] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.227601] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.227602] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.227603] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.227603] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.227604] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.227605] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.227606] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.227606] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.227607] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.227607] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.227608] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.227609] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.227609] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.227610] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.227611] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.227611] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.227612] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.227612] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.227613] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.227614] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.227614] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.227615] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.227616] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.227616] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[ 0.227617] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[ 0.227617] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[ 0.227618] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[ 0.227619] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[ 0.227619] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[ 0.227620] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[ 0.227621] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[ 0.227621] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[ 0.227622] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[ 0.227622] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[ 0.227623] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[ 0.227624] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[ 0.227624] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[ 0.227625] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[ 0.227626] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[ 0.227626] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[ 0.227627] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[ 0.227627] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[ 0.227628] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[ 0.227629] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[ 0.227629] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[ 0.227630] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[ 0.227630] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[ 0.227631] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[ 0.227632] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[ 0.227632] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[ 0.227633] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[ 0.227634] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[ 0.227634] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[ 0.227635] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[ 0.227635] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[ 0.227636] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[ 0.227637] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[ 0.227637] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[ 0.227638] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[ 0.227639] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[ 0.227639] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[ 0.227640] ACPI: LAPIC_NMI (acpi_id[0x3e] high edge lint[0x1])
[ 0.227640] ACPI: LAPIC_NMI (acpi_id[0x3f] high edge lint[0x1])
[ 0.227641] ACPI: LAPIC_NMI (acpi_id[0x40] high edge lint[0x1])
[ 0.227642] ACPI: LAPIC_NMI (acpi_id[0x41] high edge lint[0x1])
[ 0.227642] ACPI: LAPIC_NMI (acpi_id[0x42] high edge lint[0x1])
[ 0.227643] ACPI: LAPIC_NMI (acpi_id[0x43] high edge lint[0x1])
[ 0.227643] ACPI: LAPIC_NMI (acpi_id[0x44] high edge lint[0x1])
[ 0.227644] ACPI: LAPIC_NMI (acpi_id[0x45] high edge lint[0x1])
[ 0.227645] ACPI: LAPIC_NMI (acpi_id[0x46] high edge lint[0x1])
[ 0.227645] ACPI: LAPIC_NMI (acpi_id[0x47] high edge lint[0x1])
[ 0.227646] ACPI: LAPIC_NMI (acpi_id[0x48] high edge lint[0x1])
[ 0.227647] ACPI: LAPIC_NMI (acpi_id[0x49] high edge lint[0x1])
[ 0.227647] ACPI: LAPIC_NMI (acpi_id[0x4a] high edge lint[0x1])
[ 0.227648] ACPI: LAPIC_NMI (acpi_id[0x4b] high edge lint[0x1])
[ 0.227648] ACPI: LAPIC_NMI (acpi_id[0x4c] high edge lint[0x1])
[ 0.227649] ACPI: LAPIC_NMI (acpi_id[0x4d] high edge lint[0x1])
[ 0.227650] ACPI: LAPIC_NMI (acpi_id[0x4e] high edge lint[0x1])
[ 0.227650] ACPI: LAPIC_NMI (acpi_id[0x4f] high edge lint[0x1])
[ 0.227651] ACPI: LAPIC_NMI (acpi_id[0x50] high edge lint[0x1])
[ 0.227652] ACPI: LAPIC_NMI (acpi_id[0x51] high edge lint[0x1])
[ 0.227652] ACPI: LAPIC_NMI (acpi_id[0x52] high edge lint[0x1])
[ 0.227653] ACPI: LAPIC_NMI (acpi_id[0x53] high edge lint[0x1])
[ 0.227653] ACPI: LAPIC_NMI (acpi_id[0x54] high edge lint[0x1])
[ 0.227654] ACPI: LAPIC_NMI (acpi_id[0x55] high edge lint[0x1])
[ 0.227655] ACPI: LAPIC_NMI (acpi_id[0x56] high edge lint[0x1])
[ 0.227655] ACPI: LAPIC_NMI (acpi_id[0x57] high edge lint[0x1])
[ 0.227656] ACPI: LAPIC_NMI (acpi_id[0x58] high edge lint[0x1])
[ 0.227657] ACPI: LAPIC_NMI (acpi_id[0x59] high edge lint[0x1])
[ 0.227657] ACPI: LAPIC_NMI (acpi_id[0x5a] high edge lint[0x1])
[ 0.227658] ACPI: LAPIC_NMI (acpi_id[0x5b] high edge lint[0x1])
[ 0.227658] ACPI: LAPIC_NMI (acpi_id[0x5c] high edge lint[0x1])
[ 0.227659] ACPI: LAPIC_NMI (acpi_id[0x5d] high edge lint[0x1])
[ 0.227660] ACPI: LAPIC_NMI (acpi_id[0x5e] high edge lint[0x1])
[ 0.227660] ACPI: LAPIC_NMI (acpi_id[0x5f] high edge lint[0x1])
[ 0.227661] ACPI: LAPIC_NMI (acpi_id[0x60] high edge lint[0x1])
[ 0.227661] ACPI: LAPIC_NMI (acpi_id[0x61] high edge lint[0x1])
[ 0.227662] ACPI: LAPIC_NMI (acpi_id[0x62] high edge lint[0x1])
[ 0.227663] ACPI: LAPIC_NMI (acpi_id[0x63] high edge lint[0x1])
[ 0.227663] ACPI: LAPIC_NMI (acpi_id[0x64] high edge lint[0x1])
[ 0.227664] ACPI: LAPIC_NMI (acpi_id[0x65] high edge lint[0x1])
[ 0.227665] ACPI: LAPIC_NMI (acpi_id[0x66] high edge lint[0x1])
[ 0.227665] ACPI: LAPIC_NMI (acpi_id[0x67] high edge lint[0x1])
[ 0.227666] ACPI: LAPIC_NMI (acpi_id[0x68] high edge lint[0x1])
[ 0.227666] ACPI: LAPIC_NMI (acpi_id[0x69] high edge lint[0x1])
[ 0.227667] ACPI: LAPIC_NMI (acpi_id[0x6a] high edge lint[0x1])
[ 0.227668] ACPI: LAPIC_NMI (acpi_id[0x6b] high edge lint[0x1])
[ 0.227668] ACPI: LAPIC_NMI (acpi_id[0x6c] high edge lint[0x1])
[ 0.227669] ACPI: LAPIC_NMI (acpi_id[0x6d] high edge lint[0x1])
[ 0.227670] ACPI: LAPIC_NMI (acpi_id[0x6e] high edge lint[0x1])
[ 0.227670] ACPI: LAPIC_NMI (acpi_id[0x6f] high edge lint[0x1])
[ 0.227671] ACPI: LAPIC_NMI (acpi_id[0x70] high edge lint[0x1])
[ 0.227671] ACPI: LAPIC_NMI (acpi_id[0x71] high edge lint[0x1])
[ 0.227672] ACPI: LAPIC_NMI (acpi_id[0x72] high edge lint[0x1])
[ 0.227673] ACPI: LAPIC_NMI (acpi_id[0x73] high edge lint[0x1])
[ 0.227673] ACPI: LAPIC_NMI (acpi_id[0x74] high edge lint[0x1])
[ 0.227674] ACPI: LAPIC_NMI (acpi_id[0x75] high edge lint[0x1])
[ 0.227674] ACPI: LAPIC_NMI (acpi_id[0x76] high edge lint[0x1])
[ 0.227675] ACPI: LAPIC_NMI (acpi_id[0x77] high edge lint[0x1])
[ 0.227676] ACPI: LAPIC_NMI (acpi_id[0x78] high edge lint[0x1])
[ 0.227676] ACPI: LAPIC_NMI (acpi_id[0x79] high edge lint[0x1])
[ 0.227677] ACPI: LAPIC_NMI (acpi_id[0x7a] high edge lint[0x1])
[ 0.227678] ACPI: LAPIC_NMI (acpi_id[0x7b] high edge lint[0x1])
[ 0.227678] ACPI: LAPIC_NMI (acpi_id[0x7c] high edge lint[0x1])
[ 0.227679] ACPI: LAPIC_NMI (acpi_id[0x7d] high edge lint[0x1])
[ 0.227679] ACPI: LAPIC_NMI (acpi_id[0x7e] high edge lint[0x1])
[ 0.227680] ACPI: LAPIC_NMI (acpi_id[0x7f] high edge lint[0x1])
[ 0.227716] IOAPIC[0]: apic_id 3, version 32, address 0xfec00000, GSI 0-23
[ 0.227722] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[ 0.227728] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.227729] ACPI: HPET id: 0x8086af01 base: 0xfed00000
[ 0.227733] TSC deadline timer available
[ 0.227740] smpboot: Allowing 128 CPUs, 125 hotplug CPUs
[ 0.227753] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.227755] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.227756] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.227757] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
[ 0.227757] PM: hibernation: Registered nosave memory: [mem 0x000dc000-0x000fffff]
[ 0.227758] PM: hibernation: Registered nosave memory: [mem 0xbfed0000-0xbfefefff]
[ 0.227759] PM: hibernation: Registered nosave memory: [mem 0xbfeff000-0xbfefffff]
[ 0.227795] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
[ 0.227797] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[ 0.227797] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfebfffff]
[ 0.227798] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
[ 0.227798] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfedfffff]
[ 0.227799] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.227799] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfffdffff]
[ 0.227800] PM: hibernation: Registered nosave memory: [mem 0xfffe0000-0xffffffff]
[ 0.227802] [mem 0xc0000000-0xefffffff] available for PCI devices
[ 0.227803] Booting paravirtualized kernel on VMware hypervisor
[ 0.227806] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.227812] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:1
[ 0.334707] percpu: Embedded 53 pages/cpu s180224 r8192 d28672 u262144
[ 0.334723] pcpu-alloc: s180224 r8192 d28672 u262144 alloc=1*2097152
[ 0.334725] pcpu-alloc: [0] 000 001 002 003 004 005 006 007
[ 0.334730] pcpu-alloc: [0] 008 009 010 011 012 013 014 015
[ 0.334733] pcpu-alloc: [0] 016 017 018 019 020 021 022 023
[ 0.334737] pcpu-alloc: [0] 024 025 026 027 028 029 030 031
[ 0.334740] pcpu-alloc: [0] 032 033 034 035 036 037 038 039
[ 0.334744] pcpu-alloc: [0] 040 041 042 043 044 045 046 047
[ 0.334747] pcpu-alloc: [0] 048 049 050 051 052 053 054 055
[ 0.334750] pcpu-alloc: [0] 056 057 058 059 060 061 062 063
[ 0.334754] pcpu-alloc: [0] 064 065 066 067 068 069 070 071
[ 0.334757] pcpu-alloc: [0] 072 073 074 075 076 077 078 079
[ 0.334761] pcpu-alloc: [0] 080 081 082 083 084 085 086 087
[ 0.334764] pcpu-alloc: [0] 088 089 090 091 092 093 094 095
[ 0.334768] pcpu-alloc: [0] 096 097 098 099 100 101 102 103
[ 0.334771] pcpu-alloc: [0] 104 105 106 107 108 109 110 111
[ 0.334775] pcpu-alloc: [0] 112 113 114 115 116 117 118 119
[ 0.334778] pcpu-alloc: [0] 120 121 122 123 124 125 126 127
[ 0.334857] Built 1 zonelists, mobility grouping on. Total pages: 1031888
[ 0.334860] Policy zone: Normal
[ 0.334862] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-rc7+ root=UUID=e240b98d-0f33-4ad6-aa63-1bb7403e9ecf ro find_preseed=/preseed.cfg auto noprompt priority=critical locale=en_US quiet
[ 0.334984] Unknown command line parameters: auto noprompt BOOT_IMAGE=/boot/vmlinuz-5.15.0-rc7+ find_preseed=/preseed.cfg priority=critical locale=en_US
[ 0.334986] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.334987] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[ 0.334987] printk: log_buf_len min size: 262144 bytes
[ 0.349910] printk: log_buf_len: 1048576 bytes
[ 0.349914] printk: early log buf free: 237568(90%)
[ 0.362974] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.369573] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.371669] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.484110] Memory: 3929720K/4193716K available (16393K kernel code, 3527K rwdata, 5488K rodata, 2876K init, 5740K bss, 263736K reserved, 0K cma-reserved)
[ 0.484118] random: get_random_u64 called from __kmem_cache_create+0x2d/0x450 with crng_init=0
[ 0.484760] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=1
[ 0.484825] ftrace: allocating 48946 entries in 192 pages
[ 0.501656] ftrace: allocated 192 pages with 2 groups
[ 0.503173] rcu: Hierarchical RCU implementation.
[ 0.503174] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[ 0.503176] Rude variant of Tasks RCU enabled.
[ 0.503176] Tracing variant of Tasks RCU enabled.
[ 0.503177] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.503178] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[ 0.508137] NR_IRQS: 524544, nr_irqs: 1448, preallocated irqs: 16
[ 0.508568] random: crng done (trusting CPU's manufacturer)
[ 0.510106] Console: colour VGA+ 80x25
[ 0.510128] printk: console [tty0] enabled
[ 0.510207] ACPI: Core revision 20210730
[ 0.510843] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.510936] APIC: Switch to symmetric I/O mode setup
[ 0.510940] DMAR: Host address width 45
[ 0.510941] DMAR: DRHD base: 0x000000fec10000 flags: 0x1
[ 0.510958] DMAR: dmar0: reg_base_addr fec10000 ver 1:0 cap ff0080f02c0462 ecap f0f15f
[ 0.510964] DMAR: ATSR flags: 0x1
[ 0.510967] DMAR-IR: IOAPIC id 3 under DRHD base 0xfec10000 IOMMU 0
[ 0.510968] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.517718] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.517811] x2apic enabled
[ 0.517823] System requires x2apic physical mode
[ 0.517824] Switched APIC routing to physical x2apic.
[ 0.519153] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.519208] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e717b4f62a, max_idle_ns: 440795208866 ns
[ 0.519216] Calibrating delay loop (skipped) preset value.. 4224.00 BogoMIPS (lpj=8448012)
[ 0.519219] pid_max: default: 131072 minimum: 1024
[ 0.519347] LSM: Security Framework initializing
[ 0.519379] Yama: becoming mindful.
[ 0.519602] AppArmor: AppArmor initialized
[ 0.520013] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.520298] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.521662] Disabled fast string operations
[ 0.521753] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.521756] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.521761] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.522141] Spectre V2 : Mitigation: Enhanced IBRS
[ 0.522144] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.522147] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.522149] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.522151] SRBDS: Mitigation: TSX disabled
[ 0.527518] Freeing SMP alternatives memory: 40K
[ 0.529290] smpboot: CPU0: Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz (family: 0x6, model: 0x8e, stepping: 0xc)
[ 0.530247] Performance Events: Skylake events, Intel PMU driver.
[ 0.530295] ... version: 4
[ 0.530296] ... bit width: 48
[ 0.530296] ... generic registers: 4
[ 0.530296] ... value mask: 0000ffffffffffff
[ 0.530297] ... max period: 000000007fffffff
[ 0.530298] ... fixed-purpose events: 3
[ 0.530298] ... event mask: 000000070000000f
[ 0.530477] rcu: Hierarchical SRCU implementation.
[ 0.531212] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.543761] smp: Bringing up secondary CPUs ...
[ 0.544535] x86: Booting SMP configuration:
[ 0.544536] .... node #0, CPUs: #1
[ 0.010696] Disabled fast string operations
[ 0.545405] #2
[ 0.010696] Disabled fast string operations
[ 0.547538] smp: Brought up 1 node, 3 CPUs
[ 0.547538] smpboot: Max logical packages: 43
[ 0.547538] smpboot: Total of 3 processors activated (12672.01 BogoMIPS)
[ 0.548057] devtmpfs: initialized
[ 0.548057] x86/mm: Memory block size: 128MB
[ 0.551304] ACPI: PM: Registering ACPI NVS region [mem 0xbfeff000-0xbfefffff] (4096 bytes)
[ 0.551425] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.558578] futex hash table entries: 32768 (order: 9, 2097152 bytes, linear)
[ 0.558860] pinctrl core: initialized pinctrl subsystem
[ 0.559206] PM: RTC time: 21:49:00, date: 2021-11-21
[ 0.559999] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.561976] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.562153] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.562230] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.562237] audit: initializing netlink subsys (disabled)
[ 0.562257] audit: type=2000 audit(1637531340.044:1): state=initialized audit_enabled=0 res=1
[ 0.562257] thermal_sys: Registered thermal governor 'fair_share'
[ 0.562257] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.562257] thermal_sys: Registered thermal governor 'step_wise'
[ 0.562257] thermal_sys: Registered thermal governor 'user_space'
[ 0.562257] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.562257] EISA bus registered
[ 0.562257] cpuidle: using governor ladder
[ 0.563304] cpuidle: using governor menu
[ 0.563304] Simple Boot Flag at 0x36 set to 0x80
[ 0.563304] ACPI: bus type PCI registered
[ 0.563304] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.563682] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[ 0.563686] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[ 0.563696] PCI: Using configuration type 1 for base access
[ 0.565629] Kprobes globally optimized
[ 0.567285] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.567287] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.579589] ACPI: Added _OSI(Module Device)
[ 0.579589] ACPI: Added _OSI(Processor Device)
[ 0.579589] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.579589] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.579589] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.579589] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.579589] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.603272] ACPI: 1 ACPI AML tables successfully acquired and loaded
[ 0.605437] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.626182] ACPI: Interpreter enabled
[ 0.626195] ACPI: PM: (supports S0 S1 S4 S5)
[ 0.626197] ACPI: Using IOAPIC for interrupt routing
[ 0.626218] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.627212] ACPI: Enabled 4 GPEs in block 00 to 0F
[ 0.811836] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7f])
[ 0.811846] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.812032] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[ 0.812222] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[ 0.814224] PCI host bridge to bus 0000:00
[ 0.814226] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.814228] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[ 0.814229] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.814230] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.814230] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[ 0.814231] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.814232] pci_bus 0000:00: root bus resource [io 0x0d00-0xfeff window]
[ 0.814233] pci_bus 0000:00: root bus resource [bus 00-7f]
[ 0.814446] pci 0000:00:00.0: [8086:7190] type 00 class 0x060000
[ 0.815471] pci 0000:00:01.0: [8086:7191] type 01 class 0x060400
[ 0.817822] pci 0000:00:07.0: [8086:7110] type 00 class 0x060100
[ 0.818680] pci 0000:00:07.1: [8086:7111] type 00 class 0x01018a
[ 0.819947] pci 0000:00:07.1: reg 0x20: [io 0x1060-0x106f]
[ 0.820373] pci 0000:00:07.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.820374] pci 0000:00:07.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.820375] pci 0000:00:07.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.820376] pci 0000:00:07.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.820858] pci 0000:00:07.3: [8086:7113] type 00 class 0x068000
[ 0.822330] pci 0000:00:07.3: quirk: [io 0x1000-0x103f] claimed by PIIX4 ACPI
[ 0.822343] pci 0000:00:07.3: quirk: [io 0x1040-0x104f] claimed by PIIX4 SMB
[ 0.822862] pci 0000:00:07.7: [15ad:0740] type 00 class 0x088000
[ 0.823219] pci 0000:00:07.7: reg 0x10: [io 0x1080-0x10bf]
[ 0.823629] pci 0000:00:07.7: reg 0x14: [mem 0xfebfe000-0xfebfffff 64bit]
[ 0.828574] pci 0000:00:0f.0: [15ad:0405] type 00 class 0x030000
[ 0.829423] pci 0000:00:0f.0: reg 0x10: [io 0x1070-0x107f]
[ 0.830090] pci 0000:00:0f.0: reg 0x14: [mem 0xe8000000-0xefffffff pref]
[ 0.830742] pci 0000:00:0f.0: reg 0x18: [mem 0xfe000000-0xfe7fffff]
[ 0.833166] pci 0000:00:0f.0: reg 0x30: [mem 0x00000000-0x00007fff pref]
[ 0.834098] pci 0000:00:10.0: [1000:0030] type 00 class 0x010000
[ 0.834509] pci 0000:00:10.0: reg 0x10: [io 0x1400-0x14ff]
[ 0.834906] pci 0000:00:10.0: reg 0x14: [mem 0xfeba0000-0xfebbffff 64bit]
[ 0.835215] pci 0000:00:10.0: reg 0x1c: [mem 0xfebc0000-0xfebdffff 64bit]
[ 0.835919] pci 0000:00:10.0: reg 0x30: [mem 0x00000000-0x00003fff pref]
[ 0.836799] pci 0000:00:11.0: [15ad:0790] type 01 class 0x060401
[ 0.838860] pci 0000:00:15.0: [15ad:07a0] type 01 class 0x060400
[ 0.839658] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[ 0.840233] pci 0000:00:15.1: [15ad:07a0] type 01 class 0x060400
[ 0.841035] pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
[ 0.841678] pci 0000:00:15.2: [15ad:07a0] type 01 class 0x060400
[ 0.842533] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[ 0.843209] pci 0000:00:15.3: [15ad:07a0] type 01 class 0x060400
[ 0.844026] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[ 0.844768] pci 0000:00:15.4: [15ad:07a0] type 01 class 0x060400
[ 0.845621] pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
[ 0.846189] pci 0000:00:15.5: [15ad:07a0] type 01 class 0x060400
[ 0.846987] pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
[ 0.847555] pci 0000:00:15.6: [15ad:07a0] type 01 class 0x060400
[ 0.848337] pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
[ 0.848898] pci 0000:00:15.7: [15ad:07a0] type 01 class 0x060400
[ 0.849691] pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
[ 0.850525] pci 0000:00:16.0: [15ad:07a0] type 01 class 0x060400
[ 0.851324] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.851903] pci 0000:00:16.1: [15ad:07a0] type 01 class 0x060400
[ 0.852700] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[ 0.853260] pci 0000:00:16.2: [15ad:07a0] type 01 class 0x060400
[ 0.854066] pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
[ 0.854754] pci 0000:00:16.3: [15ad:07a0] type 01 class 0x060400
[ 0.855555] pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
[ 0.856092] pci 0000:00:16.4: [15ad:07a0] type 01 class 0x060400
[ 0.856891] pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
[ 0.857452] pci 0000:00:16.5: [15ad:07a0] type 01 class 0x060400
[ 0.858284] pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
[ 0.858861] pci 0000:00:16.6: [15ad:07a0] type 01 class 0x060400
[ 0.859692] pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
[ 0.860328] pci 0000:00:16.7: [15ad:07a0] type 01 class 0x060400
[ 0.861195] pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
[ 0.862024] pci 0000:00:17.0: [15ad:07a0] type 01 class 0x060400
[ 0.862822] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
[ 0.863253] pci 0000:00:17.1: [15ad:07a0] type 01 class 0x060400
[ 0.864079] pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
[ 0.864669] pci 0000:00:17.2: [15ad:07a0] type 01 class 0x060400
[ 0.865465] pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
[ 0.866128] pci 0000:00:17.3: [15ad:07a0] type 01 class 0x060400
[ 0.866916] pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
[ 0.867505] pci 0000:00:17.4: [15ad:07a0] type 01 class 0x060400
[ 0.868288] pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
[ 0.868854] pci 0000:00:17.5: [15ad:07a0] type 01 class 0x060400
[ 0.869635] pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
[ 0.870209] pci 0000:00:17.6: [15ad:07a0] type 01 class 0x060400
[ 0.871031] pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
[ 0.871599] pci 0000:00:17.7: [15ad:07a0] type 01 class 0x060400
[ 0.872409] pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
[ 0.873254] pci 0000:00:18.0: [15ad:07a0] type 01 class 0x060400
[ 0.874033] pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
[ 0.874597] pci 0000:00:18.1: [15ad:07a0] type 01 class 0x060400
[ 0.875387] pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
[ 0.875931] pci 0000:00:18.2: [15ad:07a0] type 01 class 0x060400
[ 0.876729] pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
[ 0.877520] pci 0000:00:18.3: [15ad:07a0] type 01 class 0x060400
[ 0.878337] pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
[ 0.878910] pci 0000:00:18.4: [15ad:07a0] type 01 class 0x060400
[ 0.879707] pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
[ 0.880260] pci 0000:00:18.5: [15ad:07a0] type 01 class 0x060400
[ 0.881077] pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
[ 0.881688] pci 0000:00:18.6: [15ad:07a0] type 01 class 0x060400
[ 0.882498] pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
[ 0.883110] pci 0000:00:18.7: [15ad:07a0] type 01 class 0x060400
[ 0.883884] pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
[ 0.886539] pci_bus 0000:01: extended config space not accessible
[ 0.893273] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.893475] pci_bus 0000:02: extended config space not accessible
[ 0.893739] acpiphp: Slot [32] registered
[ 0.893759] acpiphp: Slot [33] registered
[ 0.893776] acpiphp: Slot [34] registered
[ 0.893793] acpiphp: Slot [35] registered
[ 0.893810] acpiphp: Slot [36] registered
[ 0.893827] acpiphp: Slot [37] registered
[ 0.893860] acpiphp: Slot [38] registered
[ 0.893881] acpiphp: Slot [39] registered
[ 0.893901] acpiphp: Slot [40] registered
[ 0.893918] acpiphp: Slot [41] registered
[ 0.893937] acpiphp: Slot [42] registered
[ 0.893955] acpiphp: Slot [43] registered
[ 0.893993] acpiphp: Slot [44] registered
[ 0.894014] acpiphp: Slot [45] registered
[ 0.894031] acpiphp: Slot [46] registered
[ 0.894051] acpiphp: Slot [47] registered
[ 0.894068] acpiphp: Slot [48] registered
[ 0.894101] acpiphp: Slot [49] registered
[ 0.894137] acpiphp: Slot [50] registered
[ 0.894157] acpiphp: Slot [51] registered
[ 0.894174] acpiphp: Slot [52] registered
[ 0.894192] acpiphp: Slot [53] registered
[ 0.894207] acpiphp: Slot [54] registered
[ 0.894223] acpiphp: Slot [55] registered
[ 0.894239] acpiphp: Slot [56] registered
[ 0.894286] acpiphp: Slot [57] registered
[ 0.894307] acpiphp: Slot [58] registered
[ 0.894324] acpiphp: Slot [59] registered
[ 0.894343] acpiphp: Slot [60] registered
[ 0.894360] acpiphp: Slot [61] registered
[ 0.894379] acpiphp: Slot [62] registered
[ 0.894414] acpiphp: Slot [63] registered
[ 0.894535] pci 0000:02:00.0: [15ad:0774] type 00 class 0x0c0300
[ 0.896303] pci 0000:02:00.0: reg 0x20: [io 0x2080-0x209f]
[ 0.897802] pci 0000:02:01.0: [8086:100f] type 00 class 0x020000
[ 0.898261] pci 0000:02:01.0: reg 0x10: [mem 0xfd5c0000-0xfd5dffff 64bit]
[ 0.898644] pci 0000:02:01.0: reg 0x18: [mem 0xfdff0000-0xfdffffff 64bit]
[ 0.898994] pci 0000:02:01.0: reg 0x20: [io 0x2000-0x203f]
[ 0.899563] pci 0000:02:01.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.899867] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[ 0.900748] pci 0000:02:02.0: [1274:1371] type 00 class 0x040100
[ 0.901023] pci 0000:02:02.0: reg 0x10: [io 0x2040-0x207f]
[ 0.903321] pci 0000:02:03.0: [15ad:0770] type 00 class 0x0c0320
[ 0.903659] pci 0000:02:03.0: reg 0x10: [mem 0xfd5ef000-0xfd5effff]
[ 0.906364] pci 0000:02:04.0: [15ad:07e0] type 00 class 0x010601
[ 0.908083] pci 0000:02:04.0: reg 0x24: [mem 0xfd5ee000-0xfd5eefff]
[ 0.908355] pci 0000:02:04.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.908728] pci 0000:02:04.0: PME# supported from D3hot
[ 0.916874] pci 0000:00:11.0: PCI bridge to [bus 02] (subtractive decode)
[ 0.916895] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff]
[ 0.916914] pci 0000:00:11.0: bridge window [mem 0xfd500000-0xfdffffff]
[ 0.916951] pci 0000:00:11.0: bridge window [mem 0xe7b00000-0xe7ffffff 64bit pref]
[ 0.916953] pci 0000:00:11.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.916954] pci 0000:00:11.0: bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[ 0.916955] pci 0000:00:11.0: bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[ 0.916956] pci 0000:00:11.0: bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[ 0.916956] pci 0000:00:11.0: bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)
[ 0.916957] pci 0000:00:11.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.916958] pci 0000:00:11.0: bridge window [io 0x0d00-0xfeff window] (subtractive decode)
[ 0.924911] pci 0000:00:15.0: PCI bridge to [bus 03]
[ 0.924934] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff]
[ 0.924953] pci 0000:00:15.0: bridge window [mem 0xfd400000-0xfd4fffff]
[ 0.924990] pci 0000:00:15.0: bridge window [mem 0xe7a00000-0xe7afffff 64bit pref]
[ 0.931769] pci 0000:00:15.1: PCI bridge to [bus 04]
[ 0.931790] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff]
[ 0.931808] pci 0000:00:15.1: bridge window [mem 0xfd000000-0xfd0fffff]
[ 0.931844] pci 0000:00:15.1: bridge window [mem 0xe7600000-0xe76fffff 64bit pref]
[ 0.939212] pci 0000:00:15.2: PCI bridge to [bus 05]
[ 0.939225] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff]
[ 0.939244] pci 0000:00:15.2: bridge window [mem 0xfcc00000-0xfccfffff]
[ 0.939280] pci 0000:00:15.2: bridge window [mem 0xe7200000-0xe72fffff 64bit pref]
[ 0.947212] pci 0000:00:15.3: PCI bridge to [bus 06]
[ 0.947240] pci 0000:00:15.3: bridge window [mem 0xfc800000-0xfc8fffff]
[ 0.947275] pci 0000:00:15.3: bridge window [mem 0xe6e00000-0xe6efffff 64bit pref]
[ 0.955212] pci 0000:00:15.4: PCI bridge to [bus 07]
[ 0.955241] pci 0000:00:15.4: bridge window [mem 0xfc400000-0xfc4fffff]
[ 0.955277] pci 0000:00:15.4: bridge window [mem 0xe6a00000-0xe6afffff 64bit pref]
[ 0.963212] pci 0000:00:15.5: PCI bridge to [bus 08]
[ 0.963243] pci 0000:00:15.5: bridge window [mem 0xfc000000-0xfc0fffff]
[ 0.963280] pci 0000:00:15.5: bridge window [mem 0xe6600000-0xe66fffff 64bit pref]
[ 0.971212] pci 0000:00:15.6: PCI bridge to [bus 09]
[ 0.971240] pci 0000:00:15.6: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 0.971274] pci 0000:00:15.6: bridge window [mem 0xe6200000-0xe62fffff 64bit pref]
[ 0.979212] pci 0000:00:15.7: PCI bridge to [bus 0a]
[ 0.979240] pci 0000:00:15.7: bridge window [mem 0xfb800000-0xfb8fffff]
[ 0.979274] pci 0000:00:15.7: bridge window [mem 0xe5e00000-0xe5efffff 64bit pref]
[ 0.987212] pci 0000:00:16.0: PCI bridge to [bus 0b]
[ 0.987224] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff]
[ 0.987243] pci 0000:00:16.0: bridge window [mem 0xfd300000-0xfd3fffff]
[ 0.987276] pci 0000:00:16.0: bridge window [mem 0xe7900000-0xe79fffff 64bit pref]
[ 0.995212] pci 0000:00:16.1: PCI bridge to [bus 0c]
[ 0.995224] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff]
[ 0.995244] pci 0000:00:16.1: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.995281] pci 0000:00:16.1: bridge window [mem 0xe7500000-0xe75fffff 64bit pref]
[ 1.003212] pci 0000:00:16.2: PCI bridge to [bus 0d]
[ 1.003225] pci 0000:00:16.2: bridge window [io 0xd000-0xdfff]
[ 1.003243] pci 0000:00:16.2: bridge window [mem 0xfcb00000-0xfcbfffff]
[ 1.003277] pci 0000:00:16.2: bridge window [mem 0xe7100000-0xe71fffff 64bit pref]
[ 1.011212] pci 0000:00:16.3: PCI bridge to [bus 0e]
[ 1.011242] pci 0000:00:16.3: bridge window [mem 0xfc700000-0xfc7fffff]
[ 1.011278] pci 0000:00:16.3: bridge window [mem 0xe6d00000-0xe6dfffff 64bit pref]
[ 1.019208] pci 0000:00:16.4: PCI bridge to [bus 0f]
[ 1.019241] pci 0000:00:16.4: bridge window [mem 0xfc300000-0xfc3fffff]
[ 1.019279] pci 0000:00:16.4: bridge window [mem 0xe6900000-0xe69fffff 64bit pref]
[ 1.027181] pci 0000:00:16.5: PCI bridge to [bus 10]
[ 1.027226] pci 0000:00:16.5: bridge window [mem 0xfbf00000-0xfbffffff]
[ 1.027263] pci 0000:00:16.5: bridge window [mem 0xe6500000-0xe65fffff 64bit pref]
[ 1.035061] pci 0000:00:16.6: PCI bridge to [bus 11]
[ 1.035099] pci 0000:00:16.6: bridge window [mem 0xfbb00000-0xfbbfffff]
[ 1.035135] pci 0000:00:16.6: bridge window [mem 0xe6100000-0xe61fffff 64bit pref]
[ 1.043559] pci 0000:00:16.7: PCI bridge to [bus 12]
[ 1.043606] pci 0000:00:16.7: bridge window [mem 0xfb700000-0xfb7fffff]
[ 1.043643] pci 0000:00:16.7: bridge window [mem 0xe5d00000-0xe5dfffff 64bit pref]
[ 1.051212] pci 0000:00:17.0: PCI bridge to [bus 13]
[ 1.051226] pci 0000:00:17.0: bridge window [io 0x6000-0x6fff]
[ 1.051245] pci 0000:00:17.0: bridge window [mem 0xfd200000-0xfd2fffff]
[ 1.051281] pci 0000:00:17.0: bridge window [mem 0xe7800000-0xe78fffff 64bit pref]
[ 1.059212] pci 0000:00:17.1: PCI bridge to [bus 14]
[ 1.059224] pci 0000:00:17.1: bridge window [io 0xa000-0xafff]
[ 1.059243] pci 0000:00:17.1: bridge window [mem 0xfce00000-0xfcefffff]
[ 1.059279] pci 0000:00:17.1: bridge window [mem 0xe7400000-0xe74fffff 64bit pref]
[ 1.067212] pci 0000:00:17.2: PCI bridge to [bus 15]
[ 1.067223] pci 0000:00:17.2: bridge window [io 0xe000-0xefff]
[ 1.067242] pci 0000:00:17.2: bridge window [mem 0xfca00000-0xfcafffff]
[ 1.067278] pci 0000:00:17.2: bridge window [mem 0xe7000000-0xe70fffff 64bit pref]
[ 1.075212] pci 0000:00:17.3: PCI bridge to [bus 16]
[ 1.075240] pci 0000:00:17.3: bridge window [mem 0xfc600000-0xfc6fffff]
[ 1.075276] pci 0000:00:17.3: bridge window [mem 0xe6c00000-0xe6cfffff 64bit pref]
[ 1.083212] pci 0000:00:17.4: PCI bridge to [bus 17]
[ 1.083240] pci 0000:00:17.4: bridge window [mem 0xfc200000-0xfc2fffff]
[ 1.083277] pci 0000:00:17.4: bridge window [mem 0xe6800000-0xe68fffff 64bit pref]
[ 1.091128] pci 0000:00:17.5: PCI bridge to [bus 18]
[ 1.091164] pci 0000:00:17.5: bridge window [mem 0xfbe00000-0xfbefffff]
[ 1.091261] pci 0000:00:17.5: bridge window [mem 0xe6400000-0xe64fffff 64bit pref]
[ 1.099198] pci 0000:00:17.6: PCI bridge to [bus 19]
[ 1.099232] pci 0000:00:17.6: bridge window [mem 0xfba00000-0xfbafffff]
[ 1.099269] pci 0000:00:17.6: bridge window [mem 0xe6000000-0xe60fffff 64bit pref]
[ 1.107148] pci 0000:00:17.7: PCI bridge to [bus 1a]
[ 1.107186] pci 0000:00:17.7: bridge window [mem 0xfb600000-0xfb6fffff]
[ 1.107224] pci 0000:00:17.7: bridge window [mem 0xe5c00000-0xe5cfffff 64bit pref]
[ 1.115059] pci 0000:00:18.0: PCI bridge to [bus 1b]
[ 1.115080] pci 0000:00:18.0: bridge window [io 0x7000-0x7fff]
[ 1.115099] pci 0000:00:18.0: bridge window [mem 0xfd100000-0xfd1fffff]
[ 1.115136] pci 0000:00:18.0: bridge window [mem 0xe7700000-0xe77fffff 64bit pref]
[ 1.123072] pci 0000:00:18.1: PCI bridge to [bus 1c]
[ 1.123093] pci 0000:00:18.1: bridge window [io 0xb000-0xbfff]
[ 1.123113] pci 0000:00:18.1: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 1.123150] pci 0000:00:18.1: bridge window [mem 0xe7300000-0xe73fffff 64bit pref]
[ 1.131008] pci 0000:00:18.2: PCI bridge to [bus 1d]
[ 1.131046] pci 0000:00:18.2: bridge window [mem 0xfc900000-0xfc9fffff]
[ 1.131082] pci 0000:00:18.2: bridge window [mem 0xe6f00000-0xe6ffffff 64bit pref]
[ 1.139081] pci 0000:00:18.3: PCI bridge to [bus 1e]
[ 1.139117] pci 0000:00:18.3: bridge window [mem 0xfc500000-0xfc5fffff]
[ 1.139153] pci 0000:00:18.3: bridge window [mem 0xe6b00000-0xe6bfffff 64bit pref]
[ 1.146993] pci 0000:00:18.4: PCI bridge to [bus 1f]
[ 1.147031] pci 0000:00:18.4: bridge window [mem 0xfc100000-0xfc1fffff]
[ 1.147067] pci 0000:00:18.4: bridge window [mem 0xe6700000-0xe67fffff 64bit pref]
[ 1.154852] pci 0000:00:18.5: PCI bridge to [bus 20]
[ 1.154888] pci 0000:00:18.5: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 1.154923] pci 0000:00:18.5: bridge window [mem 0xe6300000-0xe63fffff 64bit pref]
[ 1.163212] pci 0000:00:18.6: PCI bridge to [bus 21]
[ 1.163241] pci 0000:00:18.6: bridge window [mem 0xfb900000-0xfb9fffff]
[ 1.163275] pci 0000:00:18.6: bridge window [mem 0xe5f00000-0xe5ffffff 64bit pref]
[ 1.171212] pci 0000:00:18.7: PCI bridge to [bus 22]
[ 1.171242] pci 0000:00:18.7: bridge window [mem 0xfb500000-0xfb5fffff]
[ 1.171278] pci 0000:00:18.7: bridge window [mem 0xe5b00000-0xe5bfffff 64bit pref]
[ 1.174011] ACPI: PCI: Interrupt link LNKA configured for IRQ 9
[ 1.174098] ACPI: PCI: Interrupt link LNKB configured for IRQ 11
[ 1.174183] ACPI: PCI: Interrupt link LNKC configured for IRQ 10
[ 1.174267] ACPI: PCI: Interrupt link LNKD configured for IRQ 7
[ 1.212437] iommu: Default domain type: Translated
[ 1.212437] iommu: DMA domain TLB invalidation policy: lazy mode
[ 1.212437] pci 0000:00:0f.0: vgaarb: setting as boot VGA device
[ 1.212437] pci 0000:00:0f.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 1.212437] pci 0000:00:0f.0: vgaarb: bridge control possible
[ 1.212437] vgaarb: loaded
[ 1.212437] SCSI subsystem initialized
[ 1.212437] libata version 3.00 loaded.
[ 1.212437] ACPI: bus type USB registered
[ 1.212437] usbcore: registered new interface driver usbfs
[ 1.212437] usbcore: registered new interface driver hub
[ 1.212437] usbcore: registered new device driver usb
[ 1.212437] pps_core: LinuxPPS API ver. 1 registered
[ 1.212437] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[ 1.212437] PTP clock support registered
[ 1.212437] EDAC MC: Ver: 3.0.0
[ 1.215618] NetLabel: Initializing
[ 1.215618] NetLabel: domain hash size = 128
[ 1.215618] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 1.215618] NetLabel: unlabeled traffic allowed by default
[ 1.215618] PCI: Using ACPI for IRQ routing
[ 1.250498] PCI: pci_cache_line_size set to 64 bytes
[ 1.251340] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[ 1.251344] e820: reserve RAM buffer [mem 0xbfed0000-0xbfffffff]
[ 1.252124] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
[ 1.252132] hpet0: 16 comparators, 64-bit 14.318180 MHz counter
[ 1.255298] clocksource: Switched to clocksource tsc-early
[ 1.312272] VFS: Disk quotas dquot_6.6.0
[ 1.312319] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.312781] AppArmor: AppArmor Filesystem Enabled
[ 1.312819] pnp: PnP ACPI init
[ 1.313014] system 00:00: [io 0x1000-0x103f] has been reserved
[ 1.313016] system 00:00: [io 0x1040-0x104f] has been reserved
[ 1.313018] system 00:00: [io 0x0cf0-0x0cf1] has been reserved
[ 1.313389] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[ 1.315391] system 00:06: [io 0xfce0-0xfcff] has been reserved
[ 1.315394] system 00:06: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 1.315395] system 00:06: [mem 0xfe800000-0xfe9fffff] has been reserved
[ 1.315594] system 00:07: [mem 0xfec10000-0xfec10fff] could not be reserved
[ 1.343140] pnp: PnP ACPI: found 8 devices
[ 1.354352] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 1.354473] NET: Registered PF_INET protocol family
[ 1.356377] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 1.366001] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 1.366976] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 1.368885] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 1.368911] TCP: Hash tables configured (established 32768 bind 32768)
[ 1.370899] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[ 1.371151] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 1.371445] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 1.372516] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 1.372521] NET: Registered PF_XDP protocol family
[ 1.372539] pci 0000:00:15.3: bridge window [io 0x1000-0x0fff] to [bus 06] add_size 1000
[ 1.372543] pci 0000:00:15.4: bridge window [io 0x1000-0x0fff] to [bus 07] add_size 1000
[ 1.372544] pci 0000:00:15.5: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
[ 1.372545] pci 0000:00:15.6: bridge window [io 0x1000-0x0fff] to [bus 09] add_size 1000
[ 1.372546] pci 0000:00:15.7: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000
[ 1.372547] pci 0000:00:16.3: bridge window [io 0x1000-0x0fff] to [bus 0e] add_size 1000
[ 1.372548] pci 0000:00:16.4: bridge window [io 0x1000-0x0fff] to [bus 0f] add_size 1000
[ 1.372549] pci 0000:00:16.5: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000
[ 1.372551] pci 0000:00:16.6: bridge window [io 0x1000-0x0fff] to [bus 11] add_size 1000
[ 1.372552] pci 0000:00:16.7: bridge window [io 0x1000-0x0fff] to [bus 12] add_size 1000
[ 1.372554] pci 0000:00:17.3: bridge window [io 0x1000-0x0fff] to [bus 16] add_size 1000
[ 1.372555] pci 0000:00:17.4: bridge window [io 0x1000-0x0fff] to [bus 17] add_size 1000
[ 1.372556] pci 0000:00:17.5: bridge window [io 0x1000-0x0fff] to [bus 18] add_size 1000
[ 1.372557] pci 0000:00:17.6: bridge window [io 0x1000-0x0fff] to [bus 19] add_size 1000
[ 1.372558] pci 0000:00:17.7: bridge window [io 0x1000-0x0fff] to [bus 1a] add_size 1000
[ 1.372559] pci 0000:00:18.2: bridge window [io 0x1000-0x0fff] to [bus 1d] add_size 1000
[ 1.372560] pci 0000:00:18.3: bridge window [io 0x1000-0x0fff] to [bus 1e] add_size 1000
[ 1.372561] pci 0000:00:18.4: bridge window [io 0x1000-0x0fff] to [bus 1f] add_size 1000
[ 1.372562] pci 0000:00:18.5: bridge window [io 0x1000-0x0fff] to [bus 20] add_size 1000
[ 1.372563] pci 0000:00:18.6: bridge window [io 0x1000-0x0fff] to [bus 21] add_size 1000
[ 1.372564] pci 0000:00:18.7: bridge window [io 0x1000-0x0fff] to [bus 22] add_size 1000
[ 1.372576] pci 0000:00:0f.0: BAR 6: assigned [mem 0xc0000000-0xc0007fff pref]
[ 1.372578] pci 0000:00:10.0: BAR 6: assigned [mem 0xc0008000-0xc000bfff pref]
[ 1.372581] pci 0000:00:15.3: BAR 13: no space for [io size 0x1000]
[ 1.372582] pci 0000:00:15.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372583] pci 0000:00:15.4: BAR 13: no space for [io size 0x1000]
[ 1.372584] pci 0000:00:15.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372585] pci 0000:00:15.5: BAR 13: no space for [io size 0x1000]
[ 1.372586] pci 0000:00:15.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372587] pci 0000:00:15.6: BAR 13: no space for [io size 0x1000]
[ 1.372588] pci 0000:00:15.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372589] pci 0000:00:15.7: BAR 13: no space for [io size 0x1000]
[ 1.372589] pci 0000:00:15.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372590] pci 0000:00:16.3: BAR 13: no space for [io size 0x1000]
[ 1.372591] pci 0000:00:16.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372592] pci 0000:00:16.4: BAR 13: no space for [io size 0x1000]
[ 1.372593] pci 0000:00:16.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372594] pci 0000:00:16.5: BAR 13: no space for [io size 0x1000]
[ 1.372594] pci 0000:00:16.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372595] pci 0000:00:16.6: BAR 13: no space for [io size 0x1000]
[ 1.372596] pci 0000:00:16.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372597] pci 0000:00:16.7: BAR 13: no space for [io size 0x1000]
[ 1.372597] pci 0000:00:16.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372598] pci 0000:00:17.3: BAR 13: no space for [io size 0x1000]
[ 1.372599] pci 0000:00:17.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372600] pci 0000:00:17.4: BAR 13: no space for [io size 0x1000]
[ 1.372601] pci 0000:00:17.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372603] pci 0000:00:17.5: BAR 13: no space for [io size 0x1000]
[ 1.372603] pci 0000:00:17.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372604] pci 0000:00:17.6: BAR 13: no space for [io size 0x1000]
[ 1.372605] pci 0000:00:17.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372606] pci 0000:00:17.7: BAR 13: no space for [io size 0x1000]
[ 1.372607] pci 0000:00:17.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372608] pci 0000:00:18.2: BAR 13: no space for [io size 0x1000]
[ 1.372608] pci 0000:00:18.2: BAR 13: failed to assign [io size 0x1000]
[ 1.372609] pci 0000:00:18.3: BAR 13: no space for [io size 0x1000]
[ 1.372610] pci 0000:00:18.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372611] pci 0000:00:18.4: BAR 13: no space for [io size 0x1000]
[ 1.372612] pci 0000:00:18.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372613] pci 0000:00:18.5: BAR 13: no space for [io size 0x1000]
[ 1.372613] pci 0000:00:18.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372614] pci 0000:00:18.6: BAR 13: no space for [io size 0x1000]
[ 1.372615] pci 0000:00:18.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372616] pci 0000:00:18.7: BAR 13: no space for [io size 0x1000]
[ 1.372617] pci 0000:00:18.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372620] pci 0000:00:18.7: BAR 13: no space for [io size 0x1000]
[ 1.372620] pci 0000:00:18.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372621] pci 0000:00:18.6: BAR 13: no space for [io size 0x1000]
[ 1.372622] pci 0000:00:18.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372623] pci 0000:00:18.5: BAR 13: no space for [io size 0x1000]
[ 1.372624] pci 0000:00:18.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372625] pci 0000:00:18.4: BAR 13: no space for [io size 0x1000]
[ 1.372626] pci 0000:00:18.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372627] pci 0000:00:18.3: BAR 13: no space for [io size 0x1000]
[ 1.372627] pci 0000:00:18.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372628] pci 0000:00:18.2: BAR 13: no space for [io size 0x1000]
[ 1.372629] pci 0000:00:18.2: BAR 13: failed to assign [io size 0x1000]
[ 1.372630] pci 0000:00:17.7: BAR 13: no space for [io size 0x1000]
[ 1.372631] pci 0000:00:17.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372632] pci 0000:00:17.6: BAR 13: no space for [io size 0x1000]
[ 1.372632] pci 0000:00:17.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372633] pci 0000:00:17.5: BAR 13: no space for [io size 0x1000]
[ 1.372634] pci 0000:00:17.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372635] pci 0000:00:17.4: BAR 13: no space for [io size 0x1000]
[ 1.372636] pci 0000:00:17.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372637] pci 0000:00:17.3: BAR 13: no space for [io size 0x1000]
[ 1.372637] pci 0000:00:17.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372638] pci 0000:00:16.7: BAR 13: no space for [io size 0x1000]
[ 1.372639] pci 0000:00:16.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372640] pci 0000:00:16.6: BAR 13: no space for [io size 0x1000]
[ 1.372641] pci 0000:00:16.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372642] pci 0000:00:16.5: BAR 13: no space for [io size 0x1000]
[ 1.372642] pci 0000:00:16.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372643] pci 0000:00:16.4: BAR 13: no space for [io size 0x1000]
[ 1.372644] pci 0000:00:16.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372645] pci 0000:00:16.3: BAR 13: no space for [io size 0x1000]
[ 1.372646] pci 0000:00:16.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372647] pci 0000:00:15.7: BAR 13: no space for [io size 0x1000]
[ 1.372648] pci 0000:00:15.7: BAR 13: failed to assign [io size 0x1000]
[ 1.372648] pci 0000:00:15.6: BAR 13: no space for [io size 0x1000]
[ 1.372649] pci 0000:00:15.6: BAR 13: failed to assign [io size 0x1000]
[ 1.372650] pci 0000:00:15.5: BAR 13: no space for [io size 0x1000]
[ 1.372651] pci 0000:00:15.5: BAR 13: failed to assign [io size 0x1000]
[ 1.372652] pci 0000:00:15.4: BAR 13: no space for [io size 0x1000]
[ 1.372652] pci 0000:00:15.4: BAR 13: failed to assign [io size 0x1000]
[ 1.372653] pci 0000:00:15.3: BAR 13: no space for [io size 0x1000]
[ 1.372654] pci 0000:00:15.3: BAR 13: failed to assign [io size 0x1000]
[ 1.372656] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.372780] pci 0000:02:01.0: BAR 6: assigned [mem 0xfd500000-0xfd50ffff pref]
[ 1.372782] pci 0000:02:04.0: BAR 6: assigned [mem 0xfd510000-0xfd51ffff pref]
[ 1.372783] pci 0000:00:11.0: PCI bridge to [bus 02]
[ 1.372798] pci 0000:00:11.0: bridge window [io 0x2000-0x3fff]
[ 1.372836] pci 0000:00:11.0: bridge window [mem 0xfd500000-0xfdffffff]
[ 1.372855] pci 0000:00:11.0: bridge window [mem 0xe7b00000-0xe7ffffff 64bit pref]
[ 1.372892] pci 0000:00:15.0: PCI bridge to [bus 03]
[ 1.372906] pci 0000:00:15.0: bridge window [io 0x4000-0x4fff]
[ 1.372935] pci 0000:00:15.0: bridge window [mem 0xfd400000-0xfd4fffff]
[ 1.372954] pci 0000:00:15.0: bridge window [mem 0xe7a00000-0xe7afffff 64bit pref]
[ 1.373034] pci 0000:00:15.1: PCI bridge to [bus 04]
[ 1.373060] pci 0000:00:15.1: bridge window [io 0x8000-0x8fff]
[ 1.373088] pci 0000:00:15.1: bridge window [mem 0xfd000000-0xfd0fffff]
[ 1.373107] pci 0000:00:15.1: bridge window [mem 0xe7600000-0xe76fffff 64bit pref]
[ 1.373160] pci 0000:00:15.2: PCI bridge to [bus 05]
[ 1.373172] pci 0000:00:15.2: bridge window [io 0xc000-0xcfff]
[ 1.373200] pci 0000:00:15.2: bridge window [mem 0xfcc00000-0xfccfffff]
[ 1.373219] pci 0000:00:15.2: bridge window [mem 0xe7200000-0xe72fffff 64bit pref]
[ 1.373271] pci 0000:00:15.3: PCI bridge to [bus 06]
[ 1.373300] pci 0000:00:15.3: bridge window [mem 0xfc800000-0xfc8fffff]
[ 1.373319] pci 0000:00:15.3: bridge window [mem 0xe6e00000-0xe6efffff 64bit pref]
[ 1.373399] pci 0000:00:15.4: PCI bridge to [bus 07]
[ 1.373441] pci 0000:00:15.4: bridge window [mem 0xfc400000-0xfc4fffff]
[ 1.373461] pci 0000:00:15.4: bridge window [mem 0xe6a00000-0xe6afffff 64bit pref]
[ 1.373512] pci 0000:00:15.5: PCI bridge to [bus 08]
[ 1.373541] pci 0000:00:15.5: bridge window [mem 0xfc000000-0xfc0fffff]
[ 1.373560] pci 0000:00:15.5: bridge window [mem 0xe6600000-0xe66fffff 64bit pref]
[ 1.373618] pci 0000:00:15.6: PCI bridge to [bus 09]
[ 1.373647] pci 0000:00:15.6: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 1.373666] pci 0000:00:15.6: bridge window [mem 0xe6200000-0xe62fffff 64bit pref]
[ 1.373718] pci 0000:00:15.7: PCI bridge to [bus 0a]
[ 1.373746] pci 0000:00:15.7: bridge window [mem 0xfb800000-0xfb8fffff]
[ 1.373765] pci 0000:00:15.7: bridge window [mem 0xe5e00000-0xe5efffff 64bit pref]
[ 1.373817] pci 0000:00:16.0: PCI bridge to [bus 0b]
[ 1.373828] pci 0000:00:16.0: bridge window [io 0x5000-0x5fff]
[ 1.373856] pci 0000:00:16.0: bridge window [mem 0xfd300000-0xfd3fffff]
[ 1.373875] pci 0000:00:16.0: bridge window [mem 0xe7900000-0xe79fffff 64bit pref]
[ 1.373926] pci 0000:00:16.1: PCI bridge to [bus 0c]
[ 1.373938] pci 0000:00:16.1: bridge window [io 0x9000-0x9fff]
[ 1.373966] pci 0000:00:16.1: bridge window [mem 0xfcf00000-0xfcffffff]
[ 1.373985] pci 0000:00:16.1: bridge window [mem 0xe7500000-0xe75fffff 64bit pref]
[ 1.374037] pci 0000:00:16.2: PCI bridge to [bus 0d]