Paste #160007 |
pasted on 07.01.2021 19:06
- Edit to this paste
- Raw
-
Compare with paste
#
Text paste
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 | [ 0.000000] Linux version 5.4.0-59-generic (buildd@lcy01-amd64-028) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #65-Ubuntu SMP Thu Dec 10 12:01:51 UTC 2020 (Ubuntu 5.4.0-59.65-generic 5.4.78) [ 0.000000] Command line: \\boot\vmlinuz-5.4.0-59-generic root=UUID=03960181-d85b-421b-8640-d9f542e8a2bc ro quiet splash vt.handoff=7 initrd=boot\initrd.img-5.4.0-59-generic [ 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] 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] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009ecffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000009ed0000-0x0000000009ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable [ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000000a20b000-0x00000000da2aafff] usable [ 0.000000] BIOS-e820: [mem 0x00000000da2ab000-0x00000000da3d2fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000da3d3000-0x00000000da459fff] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000da45a000-0x00000000da9c9fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000da9ca000-0x00000000ddab1fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ddab2000-0x00000000deffffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000019effffff] usable [ 0.000000] BIOS-e820: [mem 0x000000019f000000-0x000000021effffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000021f000000-0x000000021f33ffff] usable [ 0.000000] BIOS-e820: [mem 0x000000021f340000-0x000000021fffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] e820: update [mem 0xd6309018-0xd6316457] usable ==> usable [ 0.000000] e820: update [mem 0xd6309018-0xd6316457] usable ==> usable [ 0.000000] extended physical RAM map: [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable [ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009ecffff] usable [ 0.000000] reserve setup_data: [mem 0x0000000009ed0000-0x0000000009ffffff] reserved [ 0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable [ 0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS [ 0.000000] reserve setup_data: [mem 0x000000000a20b000-0x00000000d6309017] usable [ 0.000000] reserve setup_data: [mem 0x00000000d6309018-0x00000000d6316457] usable [ 0.000000] reserve setup_data: [mem 0x00000000d6316458-0x00000000da2aafff] usable [ 0.000000] reserve setup_data: [mem 0x00000000da2ab000-0x00000000da3d2fff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000da3d3000-0x00000000da459fff] ACPI data [ 0.000000] reserve setup_data: [mem 0x00000000da45a000-0x00000000da9c9fff] ACPI NVS [ 0.000000] reserve setup_data: [mem 0x00000000da9ca000-0x00000000ddab1fff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000ddab2000-0x00000000deffffff] usable [ 0.000000] reserve setup_data: [mem 0x00000000df000000-0x00000000dfffffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000fd000000-0x00000000ffffffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000019effffff] usable [ 0.000000] reserve setup_data: [mem 0x000000019f000000-0x000000021effffff] reserved [ 0.000000] reserve setup_data: [mem 0x000000021f000000-0x000000021f33ffff] usable [ 0.000000] reserve setup_data: [mem 0x000000021f340000-0x000000021fffffff] reserved [ 0.000000] efi: EFI v2.70 by American Megatrends [ 0.000000] efi: TPMFinalLog=0xda981000 ACPI 2.0=0xda3f6000 ACPI=0xda3f6000 SMBIOS=0xdd8dc000 SMBIOS 3.0=0xdd8db000 MEMATTR=0xd9129018 ESRT=0xd916dd18 TPMEventLog=0xd63d2018 [ 0.000000] secureboot: Secure boot disabled [ 0.000000] SMBIOS 3.2.0 present. [ 0.000000] DMI: HP HP Laptop 15s-eq0xxx/86FD, BIOS F.22 07/03/2020 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 2095.976 MHz processor [ 0.000446] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000447] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000451] last_pfn = 0x21f340 max_arch_pfn = 0x400000000 [ 0.000456] MTRR default type: uncachable [ 0.000457] MTRR fixed ranges enabled: [ 0.000458] 00000-9FFFF write-back [ 0.000459] A0000-DFFFF uncachable [ 0.000459] E0000-FFFFF write-protect [ 0.000460] MTRR variable ranges enabled: [ 0.000461] 0 base 000000000000 mask FFFF80000000 write-back [ 0.000462] 1 base 000080000000 mask FFFFC0000000 write-back [ 0.000463] 2 base 0000C0000000 mask FFFFE0000000 write-back [ 0.000463] 3 disabled [ 0.000463] 4 disabled [ 0.000464] 5 disabled [ 0.000464] 6 disabled [ 0.000464] 7 disabled [ 0.000465] TOM2: 0000000220000000 aka 8704M [ 0.001005] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.001080] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved [ 0.001086] last_pfn = 0xdf000 max_arch_pfn = 0x400000000 [ 0.004707] esrt: Reserving ESRT space from 0x00000000d916dd18 to 0x00000000d916dd50. [ 0.004717] e820: update [mem 0xd916d000-0xd916dfff] usable ==> reserved [ 0.004800] check: Scanning 1 areas for low memory corruption [ 0.004810] Using GB pages for direct mapping [ 0.005175] secureboot: Secure boot disabled [ 0.005176] RAMDISK: [mem 0x7acde000-0x7fffefff] [ 0.005188] ACPI: Early table checksum verification disabled [ 0.005192] ACPI: RSDP 0x00000000DA3F6000 000024 (v02 HPQOEM) [ 0.005195] ACPI: XSDT 0x00000000DA3F60A8 0000CC (v01 HPQOEM SLIC-MPC 01072009 HP 00010013) [ 0.005200] ACPI: FACP 0x00000000DA40ABD8 000114 (v06 HPQOEM SLIC-MPC 01072009 HP 00010013) [ 0.005204] ACPI: DSDT 0x00000000DA3F6200 0149D1 (v02 HPQOEM 86FD 01072009 ACPI 20120913) [ 0.005207] ACPI: FACS 0x00000000DA980D80 000040 [ 0.005208] ACPI: APIC 0x00000000DA40ACF0 0000DE (v03 HPQOEM 86FD 01072009 HP 00010013) [ 0.005210] ACPI: FPDT 0x00000000DA40ADD0 000044 (v01 HPQOEM 86FD 01072009 HP 00010013) [ 0.005212] ACPI: FIDT 0x00000000DA40AE18 00009C (v01 HPQOEM 86FD 01072009 HP 00010013) [ 0.005214] ACPI: SSDT 0x00000000DA40AEB8 005472 (v02 HPQOEM 86FD 00000002 ACPI 02000002) [ 0.005216] ACPI: MCFG 0x00000000DA410330 00003C (v01 HPQOEM 86FD 01072009 HP 00010013) [ 0.005218] ACPI: HPET 0x00000000DA410370 000038 (v01 HPQOEM 86FD 01072009 HP 00000005) [ 0.005220] ACPI: UEFI 0x00000000DA4103A8 000042 (v01 HPQOEM 86FD 00000002 HP 01000013) [ 0.005222] ACPI: VFCT 0x00000000DA4103F0 00D484 (v01 HPQOEM 86FD 00000001 HP 31504F47) [ 0.005224] ACPI: SSDT 0x00000000DA41D878 000050 (v01 HPQOEM 86FD 00000001 ACPI 20120913) [ 0.005226] ACPI: TPM2 0x00000000DA41D8C8 000038 (v04 HPQOEM 86FD 00000001 HP 00000000) [ 0.005228] ACPI: IVRS 0x00000000DA41D900 00013E (v02 HPQOEM 86FD 00000001 HP 00000000) [ 0.005230] ACPI: SSDT 0x00000000DA41DA40 00119C (v01 HPQOEM 86FD 00000001 ACPI 00000001) [ 0.005232] ACPI: CRAT 0x00000000DA41EBE0 000810 (v01 HPQOEM 86FD 00000001 HP 00000001) [ 0.005234] ACPI: CDIT 0x00000000DA41F3F0 000029 (v01 HPQOEM 86FD 00000001 HP 00000001) [ 0.005236] ACPI: SSDT 0x00000000DA41F420 000C77 (v01 HPQOEM 86FD 00000001 ACPI 20120913) [ 0.005238] ACPI: SSDT 0x00000000DA420098 0010A5 (v01 HPQOEM 86FD 00000001 ACPI 20120913) [ 0.005240] ACPI: SSDT 0x00000000DA421140 002369 (v01 HPQOEM 86FD 00000001 ACPI 20120913) [ 0.005242] ACPI: WSMT 0x00000000DA4234B0 000028 (v01 HPQOEM 86FD 01072009 HP 00010013) [ 0.005244] ACPI: SSDT 0x00000000DA4234D8 0002FE (v01 HPQOEM 86FD 00000001 ACPI 20120913) [ 0.005246] ACPI: BGRT 0x00000000DA4237D8 000038 (v01 HPQOEM 86FD 01072009 HP 00010013) [ 0.005252] ACPI: Local APIC address 0xfee00000 [ 0.005387] No NUMA configuration found [ 0.005388] Faking a node at [mem 0x0000000000000000-0x000000021f33ffff] [ 0.005396] NODE_DATA(0) allocated [mem 0x21f315000-0x21f33ffff] [ 0.005570] Zone ranges: [ 0.005571] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.005572] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.005572] Normal [mem 0x0000000100000000-0x000000021f33ffff] [ 0.005573] Device empty [ 0.005574] Movable zone start for each node [ 0.005576] Early memory node ranges [ 0.005577] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.005578] node 0: [mem 0x0000000000100000-0x0000000009ecffff] [ 0.005578] node 0: [mem 0x000000000a000000-0x000000000a1fffff] [ 0.005579] node 0: [mem 0x000000000a20b000-0x00000000da2aafff] [ 0.005579] node 0: [mem 0x00000000ddab2000-0x00000000deffffff] [ 0.005580] node 0: [mem 0x0000000100000000-0x000000019effffff] [ 0.005580] node 0: [mem 0x000000021f000000-0x000000021f33ffff] [ 0.005884] Zeroed struct page in unavailable ranges: 54883 pages [ 0.005886] Initmem setup node 0 [mem 0x0000000000001000-0x000000021f33ffff] [ 0.005887] On node 0 totalpages: 1550749 [ 0.005888] DMA zone: 64 pages used for memmap [ 0.005888] DMA zone: 26 pages reserved [ 0.005889] DMA zone: 3999 pages, LIFO batch:0 [ 0.005933] DMA32 zone: 13979 pages used for memmap [ 0.005934] DMA32 zone: 894654 pages, LIFO batch:63 [ 0.017940] Normal zone: 10189 pages used for memmap [ 0.017942] Normal zone: 652096 pages, LIFO batch:63 [ 0.028377] ACPI: PM-Timer IO Port: 0x808 [ 0.028381] ACPI: Local APIC address 0xfee00000 [ 0.028389] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.028404] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23 [ 0.028411] IOAPIC[1]: apic_id 10, version 33, address 0xfec01000, GSI 24-55 [ 0.028413] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.028414] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) [ 0.028416] ACPI: IRQ0 used by override. [ 0.028416] ACPI: IRQ9 used by override. [ 0.028418] Using ACPI (MADT) for SMP configuration information [ 0.028420] ACPI: HPET id: 0x10228201 base: 0xfed00000 [ 0.028436] e820: update [mem 0xd7723000-0xd7736fff] usable ==> reserved [ 0.028446] smpboot: Allowing 16 CPUs, 8 hotplug CPUs [ 0.028466] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.028468] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.028469] PM: Registered nosave memory: [mem 0x09ed0000-0x09ffffff] [ 0.028470] PM: Registered nosave memory: [mem 0x0a200000-0x0a20afff] [ 0.028471] PM: Registered nosave memory: [mem 0xd6309000-0xd6309fff] [ 0.028472] PM: Registered nosave memory: [mem 0xd6316000-0xd6316fff] [ 0.028474] PM: Registered nosave memory: [mem 0xd7723000-0xd7736fff] [ 0.028475] PM: Registered nosave memory: [mem 0xd916d000-0xd916dfff] [ 0.028476] PM: Registered nosave memory: [mem 0xda2ab000-0xda3d2fff] [ 0.028477] PM: Registered nosave memory: [mem 0xda3d3000-0xda459fff] [ 0.028477] PM: Registered nosave memory: [mem 0xda45a000-0xda9c9fff] [ 0.028477] PM: Registered nosave memory: [mem 0xda9ca000-0xddab1fff] [ 0.028479] PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff] [ 0.028479] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff] [ 0.028479] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff] [ 0.028480] PM: Registered nosave memory: [mem 0xfc000000-0xfcffffff] [ 0.028480] PM: Registered nosave memory: [mem 0xfd000000-0xffffffff] [ 0.028481] PM: Registered nosave memory: [mem 0x19f000000-0x21effffff] [ 0.028484] [mem 0xe0000000-0xf7ffffff] available for PCI devices [ 0.028485] Booting paravirtualized kernel on bare hardware [ 0.028489] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.028495] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1 [ 0.029398] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144 [ 0.029406] pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152 [ 0.029407] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 [ 0.029436] Built 1 zonelists, mobility grouping on. Total pages: 1526491 [ 0.029437] Policy zone: Normal [ 0.029438] Kernel command line: \\boot\vmlinuz-5.4.0-59-generic root=UUID=03960181-d85b-421b-8640-d9f542e8a2bc ro quiet splash vt.handoff=7 initrd=boot\initrd.img-5.4.0-59-generic [ 0.030735] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.031313] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.031356] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.040557] Calgary: detecting Calgary via BIOS EBDA area [ 0.040559] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.056963] Memory: 5829500K/6202996K available (14339K kernel code, 2399K rwdata, 4960K rodata, 2724K init, 4980K bss, 373496K reserved, 0K cma-reserved) [ 0.056973] random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0 [ 0.057123] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1 [ 0.057142] ftrace: allocating 44555 entries in 175 pages [ 0.070350] rcu: Hierarchical RCU implementation. [ 0.070352] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16. [ 0.070352] Tasks RCU enabled. [ 0.070353] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.070354] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16 [ 0.072314] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16 [ 0.072698] random: crng done (trusting CPU's manufacturer) [ 0.072724] vt handoff: transparent VT on vt#7 [ 0.072729] Console: colour dummy device 80x25 [ 0.072733] printk: console [tty0] enabled [ 0.072752] ACPI: Core revision 20190816 [ 0.072936] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns [ 0.072963] APIC: Switch to symmetric I/O mode setup [ 0.073849] AMD-Vi: ivrs, add hid:PNP0D40, uid:, rdevid:152 [ 0.246099] Switched APIC routing to physical flat. [ 0.247037] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.264975] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e36572f84f, max_idle_ns: 440795290200 ns [ 0.264982] Calibrating delay loop (skipped), value calculated using timer frequency.. 4191.95 BogoMIPS (lpj=8383904) [ 0.264984] pid_max: default: 32768 minimum: 301 [ 0.267628] LSM: Security Framework initializing [ 0.267637] Yama: becoming mindful. [ 0.267720] AppArmor: AppArmor initialized [ 0.267779] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.267804] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.267825] *** VALIDATE tmpfs *** [ 0.267990] *** VALIDATE proc *** [ 0.268058] *** VALIDATE cgroup1 *** [ 0.268060] *** VALIDATE cgroup2 *** [ 0.268135] LVT offset 1 assigned for vector 0xf9 [ 0.268181] LVT offset 2 assigned for vector 0xf4 [ 0.268196] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512 [ 0.268196] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0 [ 0.268200] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.268201] Spectre V2 : Mitigation: Full AMD retpoline [ 0.268202] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.268203] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.268203] Spectre V2 : User space: Vulnerable [ 0.268204] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 0.268410] Freeing SMP alternatives memory: 40K [ 0.379835] smpboot: CPU0: AMD Ryzen 5 3500U with Radeon Vega Mobile Gfx (family: 0x17, model: 0x18, stepping: 0x1) [ 0.379985] Performance Events: Fam17h+ core perfctr, AMD PMU driver. [ 0.379991] ... version: 0 [ 0.379991] ... bit width: 48 [ 0.379992] ... generic registers: 6 [ 0.379992] ... value mask: 0000ffffffffffff [ 0.379992] ... max period: 00007fffffffffff [ 0.379993] ... fixed-purpose events: 0 [ 0.379993] ... event mask: 000000000000003f [ 0.380032] rcu: Hierarchical SRCU implementation. [ 0.380658] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 0.380836] smp: Bringing up secondary CPUs ... [ 0.380953] x86: Booting SMP configuration: [ 0.380954] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 [ 0.393027] smp: Brought up 1 node, 8 CPUs [ 0.393027] smpboot: Max logical packages: 2 [ 0.393027] smpboot: Total of 8 processors activated (33535.61 BogoMIPS) [ 0.393667] devtmpfs: initialized [ 0.393667] x86/mm: Memory block size: 128MB [ 0.393667] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes) [ 0.393667] PM: Registering ACPI NVS region [mem 0xda45a000-0xda9c9fff] (5701632 bytes) [ 0.393667] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.393667] futex hash table entries: 4096 (order: 6, 262144 bytes, linear) [ 0.393667] pinctrl core: initialized pinctrl subsystem [ 0.393667] PM: RTC time: 19:01:14, date: 2021-01-07 [ 0.393667] NET: Registered protocol family 16 [ 0.393667] audit: initializing netlink subsys (disabled) [ 0.393667] audit: type=2000 audit(1610046074.152:1): state=initialized audit_enabled=0 res=1 [ 0.393667] EISA bus registered [ 0.397001] cpuidle: using governor ladder [ 0.397001] cpuidle: using governor menu [ 0.397019] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.397020] ACPI: bus type PCI registered [ 0.397021] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.397080] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.397083] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.397090] PCI: Using configuration type 1 for base access [ 0.398214] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.398214] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.401096] ACPI: Added _OSI(Module Device) [ 0.401097] ACPI: Added _OSI(Processor Device) [ 0.401098] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.401098] ACPI: Added _OSI(Processor Aggregator Device) [ 0.401099] ACPI: Added _OSI(Linux-Dell-Video) [ 0.401100] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 0.401101] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.421459] ACPI: 8 ACPI AML tables successfully acquired and loaded [ 0.422796] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.424507] ACPI: EC: EC started [ 0.424508] ACPI: EC: interrupt blocked [ 0.965014] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC [ 0.965016] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x3, IRQ=-1, EC_CMD/EC_SC=0x66, EC_DATA=0x62 [ 0.965018] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions [ 0.965018] ACPI: Interpreter enabled [ 0.965037] ACPI: (supports S0 S3 S4 S5) [ 0.965038] ACPI: Using IOAPIC for interrupt routing [ 0.965077] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.965426] ACPI: Enabled 2 GPEs in block 00 to 1F [ 0.975660] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.975666] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.975883] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR] [ 0.976088] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability] [ 0.976089] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 0.976103] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge [ 0.976503] PCI host bridge to bus 0000:00 [ 0.976505] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 0.976506] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 0.976507] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] [ 0.976508] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.976508] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.976509] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] [ 0.976510] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfebfffff window] [ 0.976511] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window] [ 0.976512] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.976521] pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000 [ 0.976626] pci 0000:00:00.2: [1022:15d1] type 00 class 0x080600 [ 0.976746] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000 [ 0.976828] pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400 [ 0.976867] pci 0000:00:01.2: enabling Extended Tags [ 0.976916] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold [ 0.977031] pci 0000:00:01.6: [1022:15d3] type 01 class 0x060400 [ 0.977070] pci 0000:00:01.6: enabling Extended Tags [ 0.977117] pci 0000:00:01.6: PME# supported from D0 D3hot D3cold [ 0.977214] pci 0000:00:01.7: [1022:15d3] type 01 class 0x060400 [ 0.977319] pci 0000:00:01.7: PME# supported from D0 D3hot D3cold [ 0.977400] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000 [ 0.977484] pci 0000:00:08.1: [1022:15db] type 01 class 0x060400 [ 0.977523] pci 0000:00:08.1: enabling Extended Tags [ 0.977564] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold [ 0.977676] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 [ 0.977826] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 [ 0.977978] pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000 [ 0.978024] pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000 [ 0.978068] pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000 [ 0.978112] pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000 [ 0.978159] pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000 [ 0.978203] pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000 [ 0.978252] pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000 [ 0.978297] pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000 [ 0.978453] pci 0000:01:00.0: [1e0f:0001] type 00 class 0x010802 [ 0.978478] pci 0000:01:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit] [ 0.978574] pci 0000:01:00.0: PME# supported from D0 D3hot [ 0.978685] pci 0000:00:01.2: PCI bridge to [bus 01] [ 0.978690] pci 0000:00:01.2: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.978746] pci 0000:02:00.0: [10ec:c821] type 00 class 0x028000 [ 0.978781] pci 0000:02:00.0: reg 0x10: [io 0xf000-0xf0ff] [ 0.978804] pci 0000:02:00.0: reg 0x18: [mem 0xfce00000-0xfce0ffff 64bit] [ 0.978924] pci 0000:02:00.0: supports D1 D2 [ 0.978925] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.979070] pci 0000:00:01.6: PCI bridge to [bus 02] [ 0.979073] pci 0000:00:01.6: bridge window [io 0xf000-0xffff] [ 0.979075] pci 0000:00:01.6: bridge window [mem 0xfce00000-0xfcefffff] [ 0.979118] pci 0000:00:01.7: PCI bridge to [bus 03] [ 0.979210] pci 0000:04:00.0: [1002:15d8] type 00 class 0x030000 [ 0.979237] pci 0000:04:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.979248] pci 0000:04:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref] [ 0.979255] pci 0000:04:00.0: reg 0x20: [io 0xe000-0xe0ff] [ 0.979262] pci 0000:04:00.0: reg 0x24: [mem 0xfcd00000-0xfcd7ffff] [ 0.979274] pci 0000:04:00.0: enabling Extended Tags [ 0.979286] pci 0000:04:00.0: BAR 0: assigned to efifb [ 0.979347] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold [ 0.979439] pci 0000:04:00.1: [1002:15de] type 00 class 0x040300 [ 0.979455] pci 0000:04:00.1: reg 0x10: [mem 0xfcdc8000-0xfcdcbfff] [ 0.979486] pci 0000:04:00.1: enabling Extended Tags [ 0.979529] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold [ 0.979588] pci 0000:04:00.2: [1022:15df] type 00 class 0x108000 [ 0.979612] pci 0000:04:00.2: reg 0x18: [mem 0xfcc00000-0xfccfffff] [ 0.979626] pci 0000:04:00.2: reg 0x24: [mem 0xfcdcc000-0xfcdcdfff] [ 0.979636] pci 0000:04:00.2: enabling Extended Tags [ 0.979746] pci 0000:04:00.3: [1022:15e0] type 00 class 0x0c0330 [ 0.979767] pci 0000:04:00.3: reg 0x10: [mem 0xfcb00000-0xfcbfffff 64bit] [ 0.979803] pci 0000:04:00.3: enabling Extended Tags [ 0.979850] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold [ 0.979919] pci 0000:04:00.4: [1022:15e1] type 00 class 0x0c0330 [ 0.979939] pci 0000:04:00.4: reg 0x10: [mem 0xfca00000-0xfcafffff 64bit] [ 0.979975] pci 0000:04:00.4: enabling Extended Tags [ 0.980023] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold [ 0.980088] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000 [ 0.980103] pci 0000:04:00.5: reg 0x10: [mem 0xfcd80000-0xfcdbffff] [ 0.980135] pci 0000:04:00.5: enabling Extended Tags [ 0.980178] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold [ 0.980240] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300 [ 0.980256] pci 0000:04:00.6: reg 0x10: [mem 0xfcdc0000-0xfcdc7fff] [ 0.980288] pci 0000:04:00.6: enabling Extended Tags [ 0.980330] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold [ 0.980429] pci 0000:00:08.1: PCI bridge to [bus 04] [ 0.980433] pci 0000:00:08.1: bridge window [io 0xe000-0xefff] [ 0.980435] pci 0000:00:08.1: bridge window [mem 0xfca00000-0xfcdfffff] [ 0.980439] pci 0000:00:08.1: bridge window [mem 0xe0000000-0xf01fffff 64bit pref] [ 0.980885] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0 [ 0.980940] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0 [ 0.980990] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0 [ 0.981049] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0 [ 0.981103] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0 [ 0.981147] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0 [ 0.981190] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0 [ 0.981233] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0 [ 0.982354] ACPI: EC: interrupt unblocked [ 0.982355] ACPI: EC: event unblocked [ 0.982366] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x3, IRQ=-1, EC_CMD/EC_SC=0x66, EC_DATA=0x62 [ 0.982367] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions and events [ 0.982427] iommu: Default domain type: Translated [ 0.982427] SCSI subsystem initialized [ 0.982427] libata version 3.00 loaded. [ 0.982427] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none [ 0.982427] pci 0000:04:00.0: vgaarb: bridge control possible [ 0.982427] pci 0000:04:00.0: vgaarb: setting as boot device [ 0.982427] vgaarb: loaded [ 0.982427] ACPI: bus type USB registered [ 0.982427] usbcore: registered new interface driver usbfs [ 0.982427] usbcore: registered new interface driver hub [ 0.982427] usbcore: registered new device driver usb [ 0.985121] pps_core: LinuxPPS API ver. 1 registered [ 0.985122] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.985126] PTP clock support registered [ 0.985146] EDAC MC: Ver: 3.0.0 [ 0.985146] Registered efivars operations [ 0.985146] PCI: Using ACPI for IRQ routing [ 0.989446] PCI: pci_cache_line_size set to 64 bytes [ 0.989498] Expanded resource Reserved due to conflict with PCI Bus 0000:00 [ 0.989499] e820: reserve RAM buffer [mem 0x09ed0000-0x0bffffff] [ 0.989500] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff] [ 0.989501] e820: reserve RAM buffer [mem 0xd6309018-0xd7ffffff] [ 0.989501] e820: reserve RAM buffer [mem 0xd7723000-0xd7ffffff] [ 0.989502] e820: reserve RAM buffer [mem 0xd916d000-0xdbffffff] [ 0.989502] e820: reserve RAM buffer [mem 0xda2ab000-0xdbffffff] [ 0.989503] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff] [ 0.989503] e820: reserve RAM buffer [mem 0x19f000000-0x19fffffff] [ 0.989504] e820: reserve RAM buffer [mem 0x21f340000-0x21fffffff] [ 0.989604] NetLabel: Initializing [ 0.989605] NetLabel: domain hash size = 128 [ 0.989605] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.989616] NetLabel: unlabeled traffic allowed by default [ 0.989626] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.989626] hpet0: 3 comparators, 32-bit 14.318180 MHz counter [ 0.991518] clocksource: Switched to clocksource tsc-early [ 0.999001] *** VALIDATE bpf *** [ 0.999108] VFS: Disk quotas dquot_6.6.0 [ 0.999127] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.999157] *** VALIDATE ramfs *** [ 0.999159] *** VALIDATE hugetlbfs *** [ 0.999237] AppArmor: AppArmor Filesystem Enabled [ 0.999275] pnp: PnP ACPI init [ 0.999463] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.999468] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.999632] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.999663] pnp 00:02: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active) [ 0.999861] system 00:03: [io 0x04d0-0x04d1] has been reserved [ 0.999863] system 00:03: [io 0x040b] has been reserved [ 0.999863] system 00:03: [io 0x04d6] has been reserved [ 0.999864] system 00:03: [io 0x0c00-0x0c01] has been reserved [ 0.999865] system 00:03: [io 0x0c14] has been reserved [ 0.999866] system 00:03: [io 0x0c50-0x0c51] has been reserved [ 0.999867] system 00:03: [io 0x0c52] has been reserved [ 0.999867] system 00:03: [io 0x0c6c] has been reserved [ 0.999868] system 00:03: [io 0x0c6f] has been reserved [ 0.999869] system 00:03: [io 0x0cd0-0x0cd1] has been reserved [ 0.999870] system 00:03: [io 0x0cd2-0x0cd3] has been reserved [ 0.999870] system 00:03: [io 0x0cd4-0x0cd5] has been reserved [ 0.999871] system 00:03: [io 0x0cd6-0x0cd7] has been reserved [ 0.999872] system 00:03: [io 0x0cd8-0x0cdf] has been reserved [ 0.999873] system 00:03: [io 0x0800-0x089f] has been reserved [ 0.999873] system 00:03: [io 0x0b00-0x0b0f] has been reserved [ 0.999874] system 00:03: [io 0x0b20-0x0b3f] has been reserved [ 0.999875] system 00:03: [io 0x0900-0x090f] has been reserved [ 0.999876] system 00:03: [io 0x0910-0x091f] has been reserved [ 0.999877] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved [ 0.999878] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved [ 0.999879] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved [ 0.999880] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved [ 0.999880] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved [ 0.999881] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved [ 0.999882] system 00:03: [mem 0xff000000-0xffffffff] has been reserved [ 0.999885] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active) [ 1.000630] pnp: PnP ACPI: found 4 devices [ 1.001973] thermal_sys: Registered thermal governor 'fair_share' [ 1.001973] thermal_sys: Registered thermal governor 'bang_bang' [ 1.001974] thermal_sys: Registered thermal governor 'step_wise' [ 1.001974] thermal_sys: Registered thermal governor 'user_space' [ 1.001975] thermal_sys: Registered thermal governor 'power_allocator' [ 1.006531] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 1.006562] pci 0000:00:01.7: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000 [ 1.006564] pci 0000:00:01.7: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000 [ 1.006565] pci 0000:00:01.7: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000 [ 1.006572] pci 0000:00:01.7: BAR 14: assigned [mem 0xf0200000-0xf03fffff] [ 1.006575] pci 0000:00:01.7: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref] [ 1.006578] pci 0000:00:01.7: BAR 13: assigned [io 0x1000-0x1fff] [ 1.006580] pci 0000:00:01.2: PCI bridge to [bus 01] [ 1.006584] pci 0000:00:01.2: bridge window [mem 0xfcf00000-0xfcffffff] [ 1.006590] pci 0000:00:01.6: PCI bridge to [bus 02] [ 1.006591] pci 0000:00:01.6: bridge window [io 0xf000-0xffff] [ 1.006594] pci 0000:00:01.6: bridge window [mem 0xfce00000-0xfcefffff] [ 1.006600] pci 0000:00:01.7: PCI bridge to [bus 03] [ 1.006601] pci 0000:00:01.7: bridge window [io 0x1000-0x1fff] [ 1.006604] pci 0000:00:01.7: bridge window [mem 0xf0200000-0xf03fffff] [ 1.006606] pci 0000:00:01.7: bridge window [mem 0xf0400000-0xf05fffff 64bit pref] [ 1.006611] pci 0000:00:08.1: PCI bridge to [bus 04] [ 1.006617] pci 0000:00:08.1: bridge window [io 0xe000-0xefff] [ 1.006620] pci 0000:00:08.1: bridge window [mem 0xfca00000-0xfcdfffff] [ 1.006622] pci 0000:00:08.1: bridge window [mem 0xe0000000-0xf01fffff 64bit pref] [ 1.006627] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 1.006628] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 1.006629] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] [ 1.006630] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window] [ 1.006631] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] [ 1.006631] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] [ 1.006632] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfebfffff window] [ 1.006633] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window] [ 1.006634] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff] [ 1.006635] pci_bus 0000:02: resource 0 [io 0xf000-0xffff] [ 1.006636] pci_bus 0000:02: resource 1 [mem 0xfce00000-0xfcefffff] [ 1.006636] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff] [ 1.006637] pci_bus 0000:03: resource 1 [mem 0xf0200000-0xf03fffff] [ 1.006638] pci_bus 0000:03: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref] [ 1.006639] pci_bus 0000:04: resource 0 [io 0xe000-0xefff] [ 1.006640] pci_bus 0000:04: resource 1 [mem 0xfca00000-0xfcdfffff] [ 1.006641] pci_bus 0000:04: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref] [ 1.006711] NET: Registered protocol family 2 [ 1.007182] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 1.007260] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 1.007500] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) [ 1.007614] TCP: Hash tables configured (established 65536 bind 65536) [ 1.007673] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 1.007710] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 1.007793] NET: Registered protocol family 1 [ 1.007798] NET: Registered protocol family 44 [ 1.007862] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0 [ 1.007873] pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec [ 1.008187] pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec [ 1.008269] PCI: CLS 64 bytes, default 64 [ 1.008327] Trying to unpack rootfs image as initramfs... [ 1.201989] Freeing initrd memory: 85124K [ 1.202081] pci 0000:00:00.2: AMD-Vi: Unable to read/write to IOMMU perf counter. [ 1.202220] pci 0000:00:00.2: can't derive routing for PCI INT A [ 1.202221] pci 0000:00:00.2: PCI INT A: not connected [ 1.202564] pci 0000:00:01.0: Adding to iommu group 0 [ 1.202688] pci 0000:00:01.2: Adding to iommu group 1 [ 1.202851] pci 0000:00:01.6: Adding to iommu group 2 [ 1.202963] pci 0000:00:01.7: Adding to iommu group 3 [ 1.203114] pci 0000:00:08.0: Adding to iommu group 4 [ 1.203261] pci 0000:00:08.1: Adding to iommu group 5 [ 1.203365] pci 0000:00:14.0: Adding to iommu group 6 [ 1.203384] pci 0000:00:14.3: Adding to iommu group 6 [ 1.203540] pci 0000:00:18.0: Adding to iommu group 7 [ 1.203556] pci 0000:00:18.1: Adding to iommu group 7 [ 1.203572] pci 0000:00:18.2: Adding to iommu group 7 [ 1.203588] pci 0000:00:18.3: Adding to iommu group 7 [ 1.203605] pci 0000:00:18.4: Adding to iommu group 7 [ 1.203621] pci 0000:00:18.5: Adding to iommu group 7 [ 1.203636] pci 0000:00:18.6: Adding to iommu group 7 [ 1.203651] pci 0000:00:18.7: Adding to iommu group 7 [ 1.203806] pci 0000:01:00.0: Adding to iommu group 8 [ 1.203964] pci 0000:02:00.0: Adding to iommu group 9 [ 1.204184] pci 0000:04:00.0: Adding to iommu group 10 [ 1.204333] pci 0000:04:00.0: Using iommu direct mapping [ 1.204408] pci 0000:04:00.1: Adding to iommu group 11 [ 1.204435] pci 0000:04:00.2: Adding to iommu group 11 [ 1.204462] pci 0000:04:00.3: Adding to iommu group 11 [ 1.204489] pci 0000:04:00.4: Adding to iommu group 11 [ 1.204516] pci 0000:04:00.5: Adding to iommu group 11 [ 1.204542] pci 0000:04:00.6: Adding to iommu group 11 [ 1.204910] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 1.204911] pci 0000:00:00.2: AMD-Vi: Extended features (0x4f77ef22294ada): [ 1.204912] PPR NX GT IA GA PC GA_vAPIC [ 1.204914] AMD-Vi: Interrupt remapping enabled [ 1.204914] AMD-Vi: Virtual APIC enabled [ 1.205086] AMD-Vi: Lazy IO/TLB flushing enabled [ 1.205944] amd_uncore: AMD NB counters detected [ 1.205947] amd_uncore: AMD LLC counters detected [ 1.206204] check: Scanning for low memory corruption every 60 seconds [ 1.206664] Initialise system trusted keyrings [ 1.206683] Key type blacklist registered [ 1.206742] workingset: timestamp_bits=36 max_order=21 bucket_order=0 [ 1.207634] zbud: loaded [ 1.207906] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.208095] fuse: init (API version 7.31) [ 1.208108] *** VALIDATE fuse *** [ 1.208109] *** VALIDATE fuse *** [ 1.208217] Platform Keyring initialized [ 1.211316] Key type asymmetric registered [ 1.211318] Asymmetric key parser 'x509' registered [ 1.211325] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [ 1.211390] io scheduler mq-deadline registered [ 1.212183] pcieport 0000:00:01.2: PME: Signaling with IRQ 26 [ 1.212254] pcieport 0000:00:01.2: AER: enabled with IRQ 26 [ 1.212379] pcieport 0000:00:01.6: PME: Signaling with IRQ 27 [ 1.212446] pcieport 0000:00:01.6: AER: enabled with IRQ 27 [ 1.212567] pcieport 0000:00:01.7: PME: Signaling with IRQ 28 [ 1.212609] pcieport 0000:00:01.7: AER: enabled with IRQ 28 [ 1.212626] pcieport 0000:00:01.7: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ LLActRep+ [ 1.212770] pcieport 0000:00:08.1: PME: Signaling with IRQ 29 [ 1.212826] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 1.212866] efifb: probing for efifb [ 1.212897] efifb: Ignoring BGRT: unexpected or invalid BMP data [ 1.212898] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k [ 1.212898] efifb: mode is 1024x768x32, linelength=4096, pages=1 [ 1.212898] efifb: scrolling: redraw [ 1.212899] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 1.212938] fbcon: Deferring console take-over [ 1.212939] fb0: EFI VGA frame buffer device [ 1.289145] ACPI: AC Adapter [ACAD] (on-line) [ 1.289194] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 1.289208] ACPI: Power Button [PWRB] [ 1.289237] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 [ 1.289249] ACPI: Lid Switch [LID] [ 1.289273] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2 [ 1.289303] ACPI: Power Button [PWRF] [ 1.289349] Monitor-Mwait will be used to enter C-1 state [ 1.292604] thermal LNXTHERM:00: registered as thermal_zone0 [ 1.292606] ACPI: Thermal Zone [THRM] (48 C) [ 1.292732] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 1.294809] Linux agpgart interface v0.103 [ 1.320786] battery: ACPI: Battery Slot [BAT0] (battery present) [ 1.360918] loop: module loaded [ 1.361175] libphy: Fixed MDIO Bus: probed [ 1.361176] tun: Universal TUN/TAP device driver, 1.6 [ 1.361228] PPP generic driver version 2.4.2 [ 1.361303] VFIO - User Level meta-driver version: 0.3 [ 1.361420] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.361423] ehci-pci: EHCI PCI platform driver [ 1.361436] ehci-platform: EHCI generic platform driver [ 1.361446] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.361447] ohci-pci: OHCI PCI platform driver [ 1.361453] ohci-platform: OHCI generic platform driver [ 1.361458] uhci_hcd: USB Universal Host Controller Interface driver [ 1.361634] xhci_hcd 0000:04:00.3: xHCI Host Controller [ 1.361641] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1 [ 1.361809] xhci_hcd 0000:04:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410 [ 1.362224] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 1.362225] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.362227] usb usb1: Product: xHCI Host Controller [ 1.362228] usb usb1: Manufacturer: Linux 5.4.0-59-generic xhci-hcd [ 1.362229] usb usb1: SerialNumber: 0000:04:00.3 [ 1.362316] hub 1-0:1.0: USB hub found [ 1.362332] hub 1-0:1.0: 4 ports detected [ 1.362516] xhci_hcd 0000:04:00.3: xHCI Host Controller [ 1.362518] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2 [ 1.362526] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 1.362550] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.362567] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04 [ 1.362568] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.362569] usb usb2: Product: xHCI Host Controller [ 1.362570] usb usb2: Manufacturer: Linux 5.4.0-59-generic xhci-hcd [ 1.362571] usb usb2: SerialNumber: 0000:04:00.3 [ 1.362634] hub 2-0:1.0: USB hub found [ 1.362646] hub 2-0:1.0: 4 ports detected [ 1.363226] xhci_hcd 0000:04:00.4: xHCI Host Controller [ 1.363229] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3 [ 1.363362] xhci_hcd 0000:04:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410 [ 1.363705] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 1.363706] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.363707] usb usb3: Product: xHCI Host Controller [ 1.363708] usb usb3: Manufacturer: Linux 5.4.0-59-generic xhci-hcd [ 1.363709] usb usb3: SerialNumber: 0000:04:00.4 [ 1.363774] hub 3-0:1.0: USB hub found [ 1.363784] hub 3-0:1.0: 2 ports detected [ 1.363958] xhci_hcd 0000:04:00.4: xHCI Host Controller [ 1.363961] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4 [ 1.363963] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed [ 1.363985] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.364002] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04 [ 1.364003] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.364004] usb usb4: Product: xHCI Host Controller [ 1.364005] usb usb4: Manufacturer: Linux 5.4.0-59-generic xhci-hcd [ 1.364006] usb usb4: SerialNumber: 0000:04:00.4 [ 1.364065] hub 4-0:1.0: USB hub found [ 1.364075] hub 4-0:1.0: 1 port detected [ 1.364158] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1 [ 1.364159] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp [ 1.366515] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.366606] mousedev: PS/2 mouse device common for all mice [ 1.366789] rtc_cmos 00:01: RTC can wake from S4 [ 1.366966] rtc_cmos 00:01: registered as rtc0 [ 1.366978] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 1.366982] i2c /dev entries driver [ 1.367036] device-mapper: uevent: version 1.0.3 [ 1.367076] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 1.367090] platform eisa.0: Probing EISA bus 0 [ 1.367092] platform eisa.0: EISA: Cannot allocate resource for mainboard [ 1.367094] platform eisa.0: Cannot allocate resource for EISA slot 1 [ 1.367094] platform eisa.0: Cannot allocate resource for EISA slot 2 [ 1.367095] platform eisa.0: Cannot allocate resource for EISA slot 3 [ 1.367096] platform eisa.0: Cannot allocate resource for EISA slot 4 [ 1.367097] platform eisa.0: Cannot allocate resource for EISA slot 5 [ 1.367098] platform eisa.0: Cannot allocate resource for EISA slot 6 [ 1.367099] platform eisa.0: Cannot allocate resource for EISA slot 7 [ 1.367099] platform eisa.0: Cannot allocate resource for EISA slot 8 [ 1.367100] platform eisa.0: EISA: Detected 0 cards [ 1.367229] ledtrig-cpu: registered to indicate activity on CPUs [ 1.367232] EFI Variables Facility v0.08 2004-May-17 [ 1.369656] drop_monitor: Initializing network drop monitor service [ 1.369811] NET: Registered protocol family 10 [ 1.374608] Segment Routing with IPv6 [ 1.374637] NET: Registered protocol family 17 [ 1.374674] Key type dns_resolver registered [ 1.375267] RAS: Correctable Errors collector initialized. [ 1.375306] microcode: CPU0: patch_level=0x08108109 [ 1.375313] microcode: CPU1: patch_level=0x08108109 [ 1.375315] microcode: CPU2: patch_level=0x08108109 [ 1.375320] microcode: CPU3: patch_level=0x08108109 [ 1.375325] microcode: CPU4: patch_level=0x08108109 [ 1.375332] microcode: CPU5: patch_level=0x08108109 [ 1.375337] microcode: CPU6: patch_level=0x08108109 [ 1.375344] microcode: CPU7: patch_level=0x08108109 [ 1.375366] microcode: Microcode Update Driver: v2.2. [ 1.375371] IPI shorthand broadcast: enabled [ 1.375378] sched_clock: Marking stable (1206911140, 168451814)->(1381730079, -6367125) [ 1.375448] registered taskstats version 1 [ 1.375458] Loading compiled-in X.509 certificates [ 1.376209] Loaded X.509 cert 'Build time autogenerated kernel key: 3b1b1587024ec1c28fc0d8dc673bb261cd57ce3d' [ 1.376265] zswap: loaded using pool lzo/zbud [ 1.376356] Key type ._fscrypt registered [ 1.376357] Key type .fscrypt registered [ 1.382131] Key type big_key registered [ 1.382136] Key type trusted registered [ 1.384628] Key type encrypted registered [ 1.384631] AppArmor: AppArmor sha1 policy hashing enabled [ 1.384740] ima: Allocated hash algorithm: sha1 [ 1.442174] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 [ 1.493125] ima: No architecture policies found [ 1.493148] evm: Initialising EVM extended attributes: [ 1.493149] evm: security.selinux [ 1.493150] evm: security.SMACK64 [ 1.493151] evm: security.SMACK64EXEC [ 1.493152] evm: security.SMACK64TRANSMUTE [ 1.493153] evm: security.SMACK64MMAP [ 1.493153] evm: security.apparmor [ 1.493154] evm: security.ima [ 1.493155] evm: security.capability [ 1.493156] evm: HMAC attrs: 0x1 [ 1.493839] PM: Magic number: 5:471:40 [ 1.493863] bdi 7:5: hash matches [ 1.494251] rtc_cmos 00:01: setting system clock to 2021-01-07T19:01:15 UTC (1610046075) [ 1.494932] acpi_cpufreq: overriding BIOS provided _PSD data [ 1.496734] Freeing unused decrypted memory: 2040K [ 1.497338] Freeing unused kernel image memory: 2724K [ 1.497341] Write protecting the kernel read-only data: 22528k [ 1.497977] Freeing unused kernel image memory: 2008K [ 1.498297] Freeing unused kernel image memory: 1184K [ 1.507781] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 1.507786] Run /init as init process [ 1.685150] hidraw: raw HID events driver (C) Jiri Kosina [ 1.686874] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no) [ 1.687279] acpi device:02: registered as cooling_device8 [ 1.687343] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input4 [ 1.690877] i2c_hid i2c-ELAN071A:00: i2c-ELAN071A:00 supply vdd not found, using dummy regulator [ 1.690899] i2c_hid i2c-ELAN071A:00: i2c-ELAN071A:00 supply vddl not found, using dummy regulator [ 1.696431] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 [ 1.696433] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection [ 1.696588] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20 [ 1.701006] usb 3-1: new high-speed USB device number 2 using xhci_hcd [ 1.701029] usb 1-2: new low-speed USB device number 2 using xhci_hcd [ 1.705483] cryptd: max_cpu_qlen set to 1000 [ 1.707416] nvme nvme0: pci function 0000:01:00.0 [ 1.711013] AVX2 version of gcm_enc/dec engaged. [ 1.711015] AES CTR mode by8 optimization enabled [ 1.717582] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de> [ 1.778313] [drm] amdgpu kernel modesetting enabled. [ 1.778400] Parsing CRAT table with 1 nodes [ 1.778404] Creating topology SYSFS entries [ 1.778430] Topology: Add APU node [0x0:0x0] [ 1.778430] Finished initializing topology [ 1.778512] amdgpu 0000:04:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xe0000000 -> 0xefffffff [ 1.778513] amdgpu 0000:04:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xf0000000 -> 0xf01fffff [ 1.778515] amdgpu 0000:04:00.0: remove_conflicting_pci_framebuffers: bar 5: 0xfcd00000 -> 0xfcd7ffff [ 1.778517] checking generic (e0000000 300000) vs hw (e0000000 10000000) [ 1.778517] fb0: switching to amdgpudrmfb from EFI VGA [ 1.778582] amdgpu 0000:04:00.0: vgaarb: deactivate vga console [ 1.778630] amdgpu 0000:04:00.0: enabling device (0006 -> 0007) [ 1.778836] [drm] initializing kernel modesetting (RAVEN 0x1002:0x15D8 0x103C:0x86FD 0xC2). [ 1.837235] [drm] register mmio base: 0xFCD00000 [ 1.837236] [drm] register mmio size: 524288 [ 1.837255] [drm] add ip block number 0 <soc15_common> [ 1.837256] [drm] add ip block number 1 <gmc_v9_0> [ 1.837257] [drm] add ip block number 2 <vega10_ih> [ 1.837257] [drm] add ip block number 3 <psp> [ 1.837258] [drm] add ip block number 4 <gfx_v9_0> [ 1.837259] [drm] add ip block number 5 <sdma_v4_0> [ 1.837260] [drm] add ip block number 6 <powerplay> [ 1.837260] [drm] add ip block number 7 <dm> [ 1.837261] [drm] add ip block number 8 <vcn_v1_0> [ 1.837304] ATOM BIOS: 113-PICASSO-116 [ 1.837332] [drm] VCN decode is enabled in VM mode [ 1.837333] [drm] VCN encode is enabled in VM mode [ 1.837333] [drm] VCN jpeg decode is enabled in VM mode [ 1.837372] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit [ 1.837384] amdgpu 0000:04:00.0: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used) [ 1.837385] amdgpu 0000:04:00.0: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF [ 1.837387] amdgpu 0000:04:00.0: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF [ 1.837391] [drm] Detected VRAM RAM=2048M, BAR=2048M [ 1.837392] [drm] RAM width 64bits DDR4 [ 1.837465] [TTM] Zone kernel: Available graphics memory: 3030746 KiB [ 1.837466] [TTM] Zone dma32: Available graphics memory: 2097152 KiB [ 1.837466] [TTM] Initializing pool allocator [ 1.837472] [TTM] Initializing DMA pool allocator [ 1.837559] [drm] amdgpu: 2048M of VRAM memory ready [ 1.837562] [drm] amdgpu: 3072M of GTT memory ready. [ 1.837578] [drm] GART: num cpu pages 262144, num gpu pages 262144 [ 1.838353] [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000). [ 1.840119] [drm] use_doorbell being set to: [true] [ 1.840170] amdgpu: [powerplay] hwmgr_sw_init smu backed is smu10_smu [ 1.840311] [drm] Found VCN firmware Version ENC: 1.9 DEC: 1 VEP: 0 Revision: 28 [ 1.840314] [drm] PSP loading VCN firmware [ 1.858968] usb 3-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=88.32 [ 1.858970] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 1.858972] usb 3-1: Product: USB2.0 Hub [ 1.861258] [drm] reserve 0x400000 from 0xf47f800000 for PSP TMR [ 1.870954] usb 1-2: New USB device found, idVendor=093a, idProduct=2516, bcdDevice= 1.00 [ 1.870957] usb 1-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0 [ 1.870958] usb 1-2: Product: USB OPTICAL MOUSE [ 1.871626] input: ELAN071A:00 04F3:30FD Mouse as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN071A:00/0018:04F3:30FD.0001/input/input5 [ 1.871925] input: ELAN071A:00 04F3:30FD Touchpad as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN071A:00/0018:04F3:30FD.0001/input/input7 [ 1.872040] hid-generic 0018:04F3:30FD.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN071A:00 04F3:30FD] on i2c-ELAN071A:00 [ 1.908483] hub 3-1:1.0: USB hub found [ 1.908944] hub 3-1:1.0: 4 ports detected [ 1.935460] nvme nvme0: allocated 61 MiB host memory buffer. [ 2.013002] usb 1-4: new full-speed USB device number 3 using xhci_hcd [ 2.088288] nvme nvme0: 16/0/0 default/read/poll queues [ 2.091468] nvme0n1: p1 p2 p3 p4 p5 [ 2.095143] [drm] DM_PPLIB: values for F clock [ 2.095145] [drm] DM_PPLIB: 400000 in kHz, 2874 in mV [ 2.095145] [drm] DM_PPLIB: 933000 in kHz, 3224 in mV [ 2.095145] [drm] DM_PPLIB: 1067000 in kHz, 3924 in mV [ 2.095146] [drm] DM_PPLIB: 1200000 in kHz, 4074 in mV [ 2.095147] [drm] DM_PPLIB: values for DCF clock [ 2.095148] [drm] DM_PPLIB: 300000 in kHz, 2874 in mV [ 2.095148] [drm] DM_PPLIB: 600000 in kHz, 3224 in mV [ 2.095148] [drm] DM_PPLIB: 626000 in kHz, 3924 in mV [ 2.095149] [drm] DM_PPLIB: 654000 in kHz, 4074 in mV [ 2.107827] [drm] Display Core initialized with v3.2.48! [ 2.116303] [drm] SADs count is: -2, don't need to read it [ 2.117774] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.117775] [drm] Driver supports precise vblank timestamp query. [ 2.132013] [drm] VCN decode and encode initialized successfully(under SPG Mode). [ 2.133621] kfd kfd: Allocated 3969056 bytes on gart [ 2.134626] Topology: Add APU node [0x15d8:0x1002] [ 2.134629] kfd kfd: added device 1002:15d8 [ 2.135571] [drm] fb mappable at 0x19FBC1000 [ 2.135572] [drm] vram apper at 0x19F000000 [ 2.135572] [drm] size 8294400 [ 2.135573] [drm] fb depth is 24 [ 2.135573] [drm] pitch is 7680 [ 2.135638] fbcon: amdgpudrmfb (fb0) is primary device [ 2.135639] fbcon: Deferring console take-over [ 2.135641] amdgpu 0000:04:00.0: fb0: amdgpudrmfb frame buffer device [ 2.157045] amdgpu 0000:04:00.0: ring gfx uses VM inv eng 0 on hub 0 [ 2.157046] amdgpu 0000:04:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0 [ 2.157048] amdgpu 0000:04:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0 [ 2.157049] amdgpu 0000:04:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0 [ 2.157050] amdgpu 0000:04:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0 [ 2.157051] amdgpu 0000:04:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0 [ 2.157052] amdgpu 0000:04:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0 [ 2.157053] amdgpu 0000:04:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0 [ 2.157054] amdgpu 0000:04:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0 [ 2.157055] amdgpu 0000:04:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0 [ 2.157056] amdgpu 0000:04:00.0: ring sdma0 uses VM inv eng 0 on hub 1 [ 2.157057] amdgpu 0000:04:00.0: ring vcn_dec uses VM inv eng 1 on hub 1 [ 2.157058] amdgpu 0000:04:00.0: ring vcn_enc0 uses VM inv eng 4 on hub 1 [ 2.157059] amdgpu 0000:04:00.0: ring vcn_enc1 uses VM inv eng 5 on hub 1 [ 2.157060] amdgpu 0000:04:00.0: ring vcn_jpeg uses VM inv eng 6 on hub 1 [ 2.166141] [drm] Initialized amdgpu 3.35.0 20150101 for 0000:04:00.0 on minor 0 [ 2.180641] usb 1-4: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10 [ 2.180643] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 2.180645] usb 1-4: Product: Bluetooth Radio [ 2.180646] usb 1-4: Manufacturer: Realtek [ 2.180647] usb 1-4: SerialNumber: 00e04c000001 [ 2.197251] usb 3-1.2: new high-speed USB device number 3 using xhci_hcd [ 2.209926] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2:1.0/0003:093A:2516.0002/input/input8 [ 2.210032] hid-generic 0003:093A:2516.0002: input,hidraw1: USB HID v1.11 Mouse [USB OPTICAL MOUSE] on usb-0000:04:00.3-2/input0 [ 2.210067] usbcore: registered new interface driver usbhid [ 2.210067] usbhid: USB HID core driver [ 2.225002] tsc: Refined TSC clocksource calibration: 2096.061 MHz [ 2.225014] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e36a769ed4, max_idle_ns: 440795206585 ns [ 2.225046] clocksource: Switched to clocksource tsc [ 2.314848] usb 3-1.2: New USB device found, idVendor=04f2, idProduct=b6f1, bcdDevice=27.16 [ 2.314851] usb 3-1.2: New USB device strings: Mfr=3, Product=1, SerialNumber=2 [ 2.314852] usb 3-1.2: Product: HP TrueVision HD Camera [ 2.314854] usb 3-1.2: Manufacturer: Chicony Electronics Co.,Ltd. [ 2.314855] usb 3-1.2: SerialNumber: 0001 [ 2.420993] raid6: avx2x4 gen() 22586 MB/s [ 2.468991] raid6: avx2x4 xor() 12139 MB/s [ 2.516990] raid6: avx2x2 gen() 22448 MB/s [ 2.565422] raid6: avx2x2 xor() 14994 MB/s [ 2.613425] raid6: avx2x1 gen() 17995 MB/s [ 2.661499] raid6: avx2x1 xor() 13989 MB/s [ 2.709617] raid6: sse2x4 gen() 16673 MB/s [ 2.757717] raid6: sse2x4 xor() 9338 MB/s [ 2.805227] raid6: sse2x2 gen() 16159 MB/s [ 2.853232] raid6: sse2x2 xor() 10406 MB/s [ 2.901002] raid6: sse2x1 gen() 7939 MB/s [ 2.949236] raid6: sse2x1 xor() 7662 MB/s [ 2.949236] raid6: using algorithm avx2x4 gen() 22586 MB/s [ 2.949236] raid6: .... xor() 12139 MB/s, rmw enabled [ 2.949237] raid6: using avx2x2 recovery algorithm [ 2.951574] xor: automatically using best checksumming function avx [ 2.966272] Btrfs loaded, crc32c=crc32c-intel [ 34.047418] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Opts: (null) [ 34.172050] systemd[1]: Inserted module 'autofs4' [ 34.187775] systemd[1]: systemd 245.4-4ubuntu3.3 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) [ 34.205336] systemd[1]: Detected architecture x86-64. [ 34.220030] systemd[1]: Set hostname to <teacher01su>. [ 34.279873] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/syncthing@.service target /lib/systemd/system/syncthing@.service has different name [ 34.282121] systemd[1]: /lib/systemd/system/dbus.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/dbus/system_bus_socket → /run/dbus/system_bus_socket; please update the unit file accordingly. [ 34.331706] systemd[1]: Created slice Virtual Machine and Container Slice. [ 34.332175] systemd[1]: Created slice system-modprobe.slice. [ 34.332381] systemd[1]: Created slice system-syncthing.slice. [ 34.332632] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 34.332874] systemd[1]: Created slice system-tor.slice. [ 34.333075] systemd[1]: Created slice User and Session Slice. [ 34.333127] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 34.333389] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 34.333433] systemd[1]: Reached target User and Group Name Lookups. [ 34.333445] systemd[1]: Reached target Remote File Systems. [ 34.333454] systemd[1]: Reached target Slices. [ 34.333465] systemd[1]: Reached target Swap. [ 34.333481] systemd[1]: Reached target Libvirt guests shutdown. [ 34.333532] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ 34.333605] systemd[1]: Listening on LVM2 poll daemon socket. [ 34.333662] systemd[1]: Listening on Syslog Socket. [ 34.333713] systemd[1]: Listening on fsck to fsckd communication Socket. [ 34.333752] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 34.333865] systemd[1]: Listening on Journal Audit Socket. [ 34.333911] systemd[1]: Listening on Journal Socket (/dev/log). [ 34.333973] systemd[1]: Listening on Journal Socket. [ 34.334044] systemd[1]: Listening on Network Service Netlink Socket. [ 34.334104] systemd[1]: Listening on udev Control Socket. [ 34.334141] systemd[1]: Listening on udev Kernel Socket. [ 34.334838] systemd[1]: Mounting Huge Pages File System... [ 34.335623] systemd[1]: Mounting POSIX Message Queue File System... [ 34.336528] systemd[1]: Mounting Kernel Debug File System... [ 34.337609] systemd[1]: Mounting Kernel Trace File System... [ 34.339015] systemd[1]: Starting Journal Service... [ 34.339941] systemd[1]: Starting Availability of block devices... [ 34.340959] systemd[1]: Starting Set the console keyboard layout... [ 34.341999] systemd[1]: Starting Create list of static device nodes for the current kernel... [ 34.343183] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 34.343269] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. [ 34.344235] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 34.344291] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 34.346005] systemd[1]: Starting Load Kernel Modules... [ 34.347510] systemd[1]: Starting Remount Root and Kernel File Systems... [ 34.349255] systemd[1]: Starting udev Coldplug all Devices... [ 34.351032] systemd[1]: Started Read required files in advance. [ 34.353525] systemd[1]: Mounted Huge Pages File System. [ 34.353807] systemd[1]: Mounted POSIX Message Queue File System. [ 34.354025] systemd[1]: Mounted Kernel Debug File System. [ 34.354197] systemd[1]: Mounted Kernel Trace File System. [ 34.354954] systemd[1]: Finished Availability of block devices. [ 34.355678] systemd[1]: Finished Create list of static device nodes for the current kernel. [ 34.358466] EXT4-fs (nvme0n1p4): re-mounted. Opts: errors=remount-ro [ 34.360474] systemd[1]: Finished Remount Root and Kernel File Systems. [ 34.361039] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 34.361087] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 34.362440] systemd[1]: Starting Load/Save Random Seed... [ 34.363832] systemd[1]: Starting Create System Users... [ 34.365280] lp: driver loaded but no devices found [ 34.371723] ppdev: user-space parallel port driver [ 34.376240] systemd[1]: Finished Load Kernel Modules. [ 34.377841] systemd[1]: Mounting FUSE Control File System... [ 34.379020] systemd[1]: Mounting Kernel Configuration File System... [ 34.380223] systemd[1]: Starting Apply Kernel Variables... [ 34.381157] systemd[1]: Finished Load/Save Random Seed. [ 34.383232] systemd[1]: Finished Create System Users. [ 34.383457] systemd[1]: Mounted FUSE Control File System. [ 34.383571] systemd[1]: Mounted Kernel Configuration File System. [ 34.384797] systemd[1]: Starting Create Static Device Nodes in /dev... [ 34.394951] systemd[1]: Finished Apply Kernel Variables. [ 34.398063] systemd[1]: Finished Create Static Device Nodes in /dev. [ 34.399751] systemd[1]: Starting udev Kernel Device Manager... [ 34.415303] systemd[1]: Finished Set the console keyboard layout. [ 34.423099] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling. [ 34.423291] systemd[1]: Reached target Local File Systems (Pre). [ 34.423612] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway. [ 34.424726] systemd[1]: Mounting /tmp... [ 34.424767] systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped. [ 34.424827] systemd[1]: Reached target Containers. [ 34.427963] systemd[1]: Mounted /tmp. [ 34.443196] systemd[1]: Started Journal Service. [ 34.449404] systemd-journald[427]: Received client request to flush runtime journal. [ 34.655110] input: HP Wireless hotkeys as /devices/virtual/input/input9 [ 34.684597] snd_pci_acp3x 0000:04:00.5: enabling device (0000 -> 0002) [ 34.684761] snd_pci_acp3x 0000:04:00.5: Invalid ACP audio mode : 1 [ 34.687314] snd_rn_pci_acp3x: probe of 0000:04:00.5 failed with error -22 [ 34.691055] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 34.700429] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 34.722686] rtl8821ce: loading out-of-tree module taints kernel. [ 34.727638] rtl8821ce: module verification failed: signature and/or required key missing - tainting kernel [ 34.732203] rtl8821ce 0000:02:00.0: enabling device (0000 -> 0003) [ 34.750062] input: HP WMI hotkeys as /devices/virtual/input/input10 [ 34.793230] kvm: Nested Virtualization enabled [ 34.793253] kvm: Nested Paging enabled [ 34.793254] SVM: Virtual VMLOAD VMSAVE supported [ 34.793255] SVM: Virtual GIF supported [ 34.796435] MCE: In-kernel MCE decoding enabled. [ 34.798800] EDAC amd64: Node 0: DRAM ECC disabled. [ 34.798802] 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.) [ 34.873812] input: ELAN071A:00 04F3:30FD Mouse as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN071A:00/0018:04F3:30FD.0001/input/input11 [ 34.874003] input: ELAN071A:00 04F3:30FD Touchpad as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN071A:00/0018:04F3:30FD.0001/input/input13 [ 34.874130] hid-multitouch 0018:04F3:30FD.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN071A:00 04F3:30FD] on i2c-ELAN071A:00 [ 34.879957] rtl8821ce 0000:02:00.0 wlo1: renamed from wlan0 [ 34.882280] EDAC amd64: Node 0: DRAM ECC disabled. [ 34.882282] 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.) [ 34.882621] FAT-fs (nvme0n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ 34.885531] mc: Linux media interface: v0.10 [ 34.893393] videodev: Linux video capture interface: v2.00 [ 34.898976] Bluetooth: Core ver 2.22 [ 34.899006] NET: Registered protocol family 31 [ 34.899007] Bluetooth: HCI device and connection manager initialized [ 34.899013] Bluetooth: HCI socket layer initialized [ 34.899016] Bluetooth: L2CAP socket layer initialized [ 34.899020] Bluetooth: SCO socket layer initialized [ 34.906752] EXT4-fs (nvme0n1p5): mounted filesystem with ordered data mode. Opts: errors=remount-ro [ 34.909082] usbcore: registered new interface driver btusb [ 34.914630] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821 [ 34.917615] Bluetooth: hci0: RTL: rom_version status=0 version=1 [ 34.917619] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin [ 34.918515] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin [ 34.918679] Bluetooth: hci0: RTL: cfg_sz 10, total sz 31298 [ 34.935446] audit: type=1400 audit(1610046108.935:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirtd" pid=734 comm="apparmor_parser" [ 34.935450] audit: type=1400 audit(1610046108.935:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libvirtd//qemu_bridge_helper" pid=734 comm="apparmor_parser" [ 34.937663] audit: type=1400 audit(1610046108.939:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=739 comm="apparmor_parser" [ 34.940802] audit: type=1400 audit(1610046108.939:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=733 comm="apparmor_parser" [ 34.940807] audit: type=1400 audit(1610046108.939:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=733 comm="apparmor_parser" [ 34.942296] audit: type=1400 audit(1610046108.943:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ippusbxd" pid=735 comm="apparmor_parser" [ 34.945375] audit: type=1400 audit(1610046108.947:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=732 comm="apparmor_parser" [ 34.945602] audit: type=1400 audit(1610046108.947:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=736 comm="apparmor_parser" [ 34.945605] audit: type=1400 audit(1610046108.947:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=736 comm="apparmor_parser" [ 34.945608] audit: type=1400 audit(1610046108.947:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=736 comm="apparmor_parser" [ 34.957886] EDAC amd64: Node 0: DRAM ECC disabled. [ 34.957888] 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.) [ 35.021854] EDAC amd64: Node 0: DRAM ECC disabled. [ 35.021857] 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.) [ 35.022329] uvcvideo: Found UVC 1.00 device HP TrueVision HD Camera (04f2:b6f1) [ 35.030210] input: HP TrueVision HD Camera: HP Tru as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-1/3-1.2/3-1.2:1.0/input/input14 [ 35.030332] usbcore: registered new interface driver uvcvideo [ 35.030333] USB Video Class driver (1.1.1) [ 35.077731] EDAC amd64: Node 0: DRAM ECC disabled. [ 35.077733] 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.) [ 35.138381] EDAC amd64: Node 0: DRAM ECC disabled. [ 35.138382] 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.) [ 35.139125] snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002) [ 35.139292] snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client [ 35.139524] snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002) [ 35.177563] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 35.177564] Bluetooth: BNEP filters: protocol multicast [ 35.177571] Bluetooth: BNEP socket layer initialized [ 35.221839] snd_hda_intel 0000:04:00.1: bound 0000:04:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu]) [ 35.224756] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input15 [ 35.225871] EDAC amd64: Node 0: DRAM ECC disabled. [ 35.225874] 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.) [ 35.228932] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker [ 35.228936] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 35.228938] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) [ 35.228939] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0 [ 35.228940] snd_hda_codec_realtek hdaudioC1D0: inputs: [ 35.228943] snd_hda_codec_realtek hdaudioC1D0: Mic=0x19 [ 35.228944] snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12 [ 35.303883] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card1/input16 [ 35.303955] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card1/input17 [ 35.352448] EDAC amd64: Node 0: DRAM ECC disabled. [ 35.352451] 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.) [ 35.617568] Bluetooth: hci0: RTL: fw version 0x829a21e4 [ 35.748778] NET: Registered protocol family 38 [ 36.095028] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 36.106739] virbr0: port 1(virbr0-nic) entered blocking state [ 36.106741] virbr0: port 1(virbr0-nic) entered disabled state [ 36.106851] device virbr0-nic entered promiscuous mode [ 36.119747] bpfilter: Loaded bpfilter_umh pid 1245 [ 36.119992] Started bpfilter [ 36.374521] virbr0: port 1(virbr0-nic) entered blocking state [ 36.374525] virbr0: port 1(virbr0-nic) entered listening state [ 36.416971] virbr0: port 1(virbr0-nic) entered disabled state [ 39.104817] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready [ 39.221036] Bluetooth: RFCOMM TTY layer initialized [ 39.221046] Bluetooth: RFCOMM socket layer initialized [ 39.221055] Bluetooth: RFCOMM ver 1.11 [ 39.274742] vboxdrv: Found 8 processor cores [ 39.306902] vboxdrv: TSC mode is Invariant, tentative frequency 2096054323 Hz [ 39.306903] vboxdrv: Successfully loaded version 6.1.10_Ubuntu (interface 0x002d0001) [ 39.320374] VBoxNetFlt: Successfully started. [ 39.366474] VBoxNetAdp: Successfully started. |