1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
| gg@gg-Linux:~$ sudo su
[sudo] Mot de passe de gg*:
(base) root@gg-Linux:/home/gg# dmesg
[ 0.000000] microcode: microcode updated early to revision 0x60f, date = 2010-09-29
[ 0.000000] Linux version 5.15.0-40-generic (buildd@lcy02-amd64-047) (gcc (Ubuntu 11.2.0-19ubuntu1) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #43-Ubuntu SMP Wed Jun 15 12:54:21 UTC 2022 (Ubuntu 5.15.0-40.43-generic 5.15.35)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-40-generic root=UUID=00544cc8-3c2b-4945-a57e-a81b7f004188 ro quiet splash vt.handoff=7
[ 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: x87 FPU will use FXSAVE
[ 0.000000] signal: max sigframe size: 1440
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000c0000-0x000000007f67efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f67f000-0x000000007f6f4fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007f6f5000-0x000000007f719fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f71a000-0x000000007f744fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007f745000-0x000000007f7fbfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f7fc000-0x000000007f844fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007f845000-0x000000007f929fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f92a000-0x000000007f944fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007f945000-0x000000007f990fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f991000-0x000000007f995fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007f996000-0x000000007fbfffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007fc00000-0x000000007fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fff90000-0x00000000fffbffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x7e5dd018-0x7e5f6257] usable ==> usable
[ 0.000000] e820: update [mem 0x7e5dd018-0x7e5f6257] usable ==> usable
[ 0.000000] e820: update [mem 0x7e5cc018-0x7e5dcc0a] usable ==> usable
[ 0.000000] e820: update [mem 0x7e5cc018-0x7e5dcc0a] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000008efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000000c0000-0x000000007e5cc017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007e5cc018-0x000000007e5dcc0a] usable
[ 0.000000] reserve setup_data: [mem 0x000000007e5dcc0b-0x000000007e5dd017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007e5dd018-0x000000007e5f6257] usable
[ 0.000000] reserve setup_data: [mem 0x000000007e5f6258-0x000000007f67efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007f67f000-0x000000007f6f4fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000007f6f5000-0x000000007f719fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007f71a000-0x000000007f744fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000007f745000-0x000000007f7fbfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007f7fc000-0x000000007f844fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000007f845000-0x000000007f929fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007f92a000-0x000000007f944fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000007f945000-0x000000007f990fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007f991000-0x000000007f995fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000007f996000-0x000000007fbfffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007fc00000-0x000000007fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fff90000-0x00000000fffbffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000027fffffff] usable
[ 0.000000] efi: EFI v1.10 by Apple
[ 0.000000] efi: UGA=0x7f819318 ACPI=0x7f744000 ACPI 2.0=0x7f744014 SMBIOS=0x7f6ec000 MOKvar=0x7e610000
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Apple Inc. MacPro3,1/Mac-F42C88C8, BIOS MP31.88Z.006C.B05.0802291410 02/29/08
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2792.993 MHz processor
[ 0.000018] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000022] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000031] last_pfn = 0x280000 max_arch_pfn = 0x400000000
[ 0.001306] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001899] total RAM covered: 63484M
[ 0.002111] Found optimal setting for mtrr clean up
[ 0.002112] gran_size: 64K chunk_size: 8M num_reg: 6 lose cover RAM: 0G
[ 0.003527] e820: update [mem 0x7fc00000-0xffffffff] usable ==> reserved
[ 0.003543] last_pfn = 0x7fc00 max_arch_pfn = 0x400000000
[ 0.014833] e820: update [mem 0x7e610000-0x7e610fff] usable ==> reserved
[ 0.015488] secureboot: Secure boot disabled
[ 0.015490] RAMDISK: [mem 0x3c484000-0x3fffdfff]
[ 0.015499] ACPI: Early table checksum verification disabled
[ 0.015505] ACPI: RSDP 0x000000007F744014 000024 (v02 APPLE )
[ 0.015510] ACPI: XSDT 0x000000007F7441C0 0000EC (v01 APPLE Apple00 0000006C 01000013)
[ 0.015519] ACPI: FACP 0x000000007F740000 0000F4 (v04 APPLE Apple00 0000006C Loki 0000005F)
[ 0.015529] ACPI: DSDT 0x000000007F737000 0049CC (v01 APPLE Apple00 00010001 Loki 0000005F)
[ 0.015534] ACPI: FACS 0x000000007F68B000 000040
[ 0.015538] ACPI: FACS 0x000000007F68B000 000040
[ 0.015542] ACPI: ECDT 0x000000007F742000 000053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.015547] ACPI: HPET 0x000000007F73F000 000038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.015552] ACPI: APIC 0x000000007F73D000 0000BC (v02 APPLE Apple00 00000000 Loki 0000005F)
[ 0.015556] ACPI: MCFG 0x000000007F73C000 00003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.015561] ACPI: SSDT 0x000000007F736000 000146 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.015566] ACPI: SSDT 0x000000007F735000 00034B (v01 CPUPST Cpu0Ist 00000012 INTL 20061109)
[ 0.015570] ACPI: SSDT 0x000000007F734000 000047 (v01 PmRef Cpu1Cst 00003000 INTL 20061109)
[ 0.015575] ACPI: SSDT 0x000000007F733000 000337 (v01 CPUPST Cpu1Ist 00000012 INTL 20061109)
[ 0.015579] ACPI: SSDT 0x000000007F732000 000047 (v01 PmRef Cpu2Cst 00003000 INTL 20061109)
[ 0.015584] ACPI: SSDT 0x000000007F731000 000337 (v01 CPUPST Cpu2Ist 00000012 INTL 20061109)
[ 0.015589] ACPI: SSDT 0x000000007F730000 000047 (v01 PmRef Cpu3Cst 00003000 INTL 20061109)
[ 0.015593] ACPI: SSDT 0x000000007F72F000 000337 (v01 CPUPST Cpu3Ist 00000012 INTL 20061109)
[ 0.015598] ACPI: SSDT 0x000000007F72E000 000047 (v01 PmRef Cpu4Cst 00003000 INTL 20061109)
[ 0.015602] ACPI: SSDT 0x000000007F72D000 000337 (v01 CPUPST Cpu4Ist 00000012 INTL 20061109)
[ 0.015607] ACPI: SSDT 0x000000007F72C000 000047 (v01 PmRef Cpu5Cst 00003000 INTL 20061109)
[ 0.015611] ACPI: SSDT 0x000000007F72B000 000337 (v01 CPUPST Cpu5Ist 00000012 INTL 20061109)
[ 0.015616] ACPI: SSDT 0x000000007F72A000 000047 (v01 PmRef Cpu6Cst 00003000 INTL 20061109)
[ 0.015621] ACPI: SSDT 0x000000007F729000 000337 (v01 CPUPST Cpu6Ist 00000012 INTL 20061109)
[ 0.015625] ACPI: SSDT 0x000000007F728000 000047 (v01 PmRef Cpu7Cst 00003000 INTL 20061109)
[ 0.015630] ACPI: SSDT 0x000000007F727000 000337 (v01 CPUPST Cpu7Ist 00000012 INTL 20061109)
[ 0.015634] ACPI: SSDT 0x000000007F726000 00003D (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.015639] ACPI: SSDT 0x000000007F722000 000166 (v01 SataRe SataAhci 00001000 INTL 20061109)
[ 0.015643] ACPI: SSDT 0x000000007F71D000 0004BE (v01 PCIRef Pci8844 00001000 INTL 20061109)
[ 0.015648] ACPI: DMAR 0x000000007F71A000 000088 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.015651] ACPI: Reserving FACP table memory at [mem 0x7f740000-0x7f7400f3]
[ 0.015653] ACPI: Reserving DSDT table memory at [mem 0x7f737000-0x7f73b9cb]
[ 0.015655] ACPI: Reserving FACS table memory at [mem 0x7f68b000-0x7f68b03f]
[ 0.015656] ACPI: Reserving FACS table memory at [mem 0x7f68b000-0x7f68b03f]
[ 0.015657] ACPI: Reserving ECDT table memory at [mem 0x7f742000-0x7f742052]
[ 0.015659] ACPI: Reserving HPET table memory at [mem 0x7f73f000-0x7f73f037]
[ 0.015660] ACPI: Reserving APIC table memory at [mem 0x7f73d000-0x7f73d0bb]
[ 0.015661] ACPI: Reserving MCFG table memory at [mem 0x7f73c000-0x7f73c03b]
[ 0.015663] ACPI: Reserving SSDT table memory at [mem 0x7f736000-0x7f736145]
[ 0.015664] ACPI: Reserving SSDT table memory at [mem 0x7f735000-0x7f73534a]
[ 0.015665] ACPI: Reserving SSDT table memory at [mem 0x7f734000-0x7f734046]
[ 0.015667] ACPI: Reserving SSDT table memory at [mem 0x7f733000-0x7f733336]
[ 0.015668] ACPI: Reserving SSDT table memory at [mem 0x7f732000-0x7f732046]
[ 0.015670] ACPI: Reserving SSDT table memory at [mem 0x7f731000-0x7f731336]
[ 0.015671] ACPI: Reserving SSDT table memory at [mem 0x7f730000-0x7f730046]
[ 0.015672] ACPI: Reserving SSDT table memory at [mem 0x7f72f000-0x7f72f336]
[ 0.015674] ACPI: Reserving SSDT table memory at [mem 0x7f72e000-0x7f72e046]
[ 0.015675] ACPI: Reserving SSDT table memory at [mem 0x7f72d000-0x7f72d336]
[ 0.015677] ACPI: Reserving SSDT table memory at [mem 0x7f72c000-0x7f72c046]
[ 0.015678] ACPI: Reserving SSDT table memory at [mem 0x7f72b000-0x7f72b336]
[ 0.015679] ACPI: Reserving SSDT table memory at [mem 0x7f72a000-0x7f72a046]
[ 0.015681] ACPI: Reserving SSDT table memory at [mem 0x7f729000-0x7f729336]
[ 0.015682] ACPI: Reserving SSDT table memory at [mem 0x7f728000-0x7f728046]
[ 0.015684] ACPI: Reserving SSDT table memory at [mem 0x7f727000-0x7f727336]
[ 0.015685] ACPI: Reserving SSDT table memory at [mem 0x7f726000-0x7f72603c]
[ 0.015687] ACPI: Reserving SSDT table memory at [mem 0x7f722000-0x7f722165]
[ 0.015688] ACPI: Reserving SSDT table memory at [mem 0x7f71d000-0x7f71d4bd]
[ 0.015690] ACPI: Reserving DMAR table memory at [mem 0x7f71a000-0x7f71a087]
[ 0.015701] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware
[ 0.015821] No NUMA configuration found
[ 0.015822] Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
[ 0.015836] NODE_DATA(0) allocated [mem 0x27ffd4000-0x27fffdfff]
[ 0.016269] Zone ranges:
[ 0.016270] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.016273] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.016275] Normal [mem 0x0000000100000000-0x000000027fffffff]
[ 0.016277] Device empty
[ 0.016278] Movable zone start for each node
[ 0.016282] Early memory node ranges
[ 0.016283] node 0: [mem 0x0000000000001000-0x000000000008efff]
[ 0.016285] node 0: [mem 0x0000000000090000-0x000000000009ffff]
[ 0.016286] node 0: [mem 0x0000000000100000-0x000000007f67efff]
[ 0.016288] node 0: [mem 0x000000007f6f5000-0x000000007f719fff]
[ 0.016289] node 0: [mem 0x000000007f745000-0x000000007f7fbfff]
[ 0.016290] node 0: [mem 0x000000007f845000-0x000000007f929fff]
[ 0.016292] node 0: [mem 0x000000007f945000-0x000000007f990fff]
[ 0.016293] node 0: [mem 0x000000007f996000-0x000000007fbfffff]
[ 0.016294] node 0: [mem 0x0000000100000000-0x000000027fffffff]
[ 0.016297] Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
[ 0.016307] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.016309] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.016399] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.030321] On node 0, zone DMA32: 118 pages in unavailable ranges
[ 0.030339] On node 0, zone DMA32: 43 pages in unavailable ranges
[ 0.030349] On node 0, zone DMA32: 73 pages in unavailable ranges
[ 0.030353] On node 0, zone DMA32: 27 pages in unavailable ranges
[ 0.030372] On node 0, zone DMA32: 5 pages in unavailable ranges
[ 0.074169] On node 0, zone Normal: 1024 pages in unavailable ranges
[ 0.074602] ACPI: PM-Timer IO Port: 0x408
[ 0.074617] ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1])
[ 0.074619] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
[ 0.074620] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
[ 0.074622] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
[ 0.074623] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
[ 0.074624] ACPI: LAPIC_NMI (acpi_id[0x05] high level lint[0x1])
[ 0.074625] ACPI: LAPIC_NMI (acpi_id[0x06] high level lint[0x1])
[ 0.074626] ACPI: LAPIC_NMI (acpi_id[0x07] high level lint[0x1])
[ 0.074639] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.074642] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.074645] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.074650] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.074652] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.074660] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.074690] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.074693] PM: hibernation: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[ 0.074695] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[ 0.074696] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.074699] PM: hibernation: Registered nosave memory: [mem 0x7e5cc000-0x7e5ccfff]
[ 0.074701] PM: hibernation: Registered nosave memory: [mem 0x7e5dc000-0x7e5dcfff]
[ 0.074702] PM: hibernation: Registered nosave memory: [mem 0x7e5dd000-0x7e5ddfff]
[ 0.074705] PM: hibernation: Registered nosave memory: [mem 0x7e5f6000-0x7e5f6fff]
[ 0.074707] PM: hibernation: Registered nosave memory: [mem 0x7e610000-0x7e610fff]
[ 0.074710] PM: hibernation: Registered nosave memory: [mem 0x7f67f000-0x7f6f4fff]
[ 0.074712] PM: hibernation: Registered nosave memory: [mem 0x7f71a000-0x7f744fff]
[ 0.074715] PM: hibernation: Registered nosave memory: [mem 0x7f7fc000-0x7f844fff]
[ 0.074718] PM: hibernation: Registered nosave memory: [mem 0x7f92a000-0x7f944fff]
[ 0.074720] PM: hibernation: Registered nosave memory: [mem 0x7f991000-0x7f995fff]
[ 0.074723] PM: hibernation: Registered nosave memory: [mem 0x7fc00000-0x7fffffff]
[ 0.074724] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfff8ffff]
[ 0.074725] PM: hibernation: Registered nosave memory: [mem 0xfff90000-0xfffbffff]
[ 0.074726] PM: hibernation: Registered nosave memory: [mem 0xfffc0000-0xffffffff]
[ 0.074729] [mem 0x80000000-0xfff8ffff] available for PCI devices
[ 0.074733] Booting paravirtualized kernel on bare hardware
[ 0.074737] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.074749] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.075608] percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u262144
[ 0.075619] pcpu-alloc: s208896 r8192 d28672 u262144 alloc=1*2097152
[ 0.075623] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.075677] Built 1 zonelists, mobility grouping on. Total pages: 2062858
[ 0.075679] Policy zone: Normal
[ 0.075681] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-40-generic root=UUID=00544cc8-3c2b-4945-a57e-a81b7f004188 ro quiet splash vt.handoff=7
[ 0.075780] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.0-40-generic", will be passed to user space.
[ 0.078069] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.079277] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.079396] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.188964] Memory: 8021360K/8383056K available (16393K kernel code, 4382K rwdata, 10796K rodata, 2904K init, 4844K bss, 361436K reserved, 0K cma-reserved)
[ 0.188979] random: get_random_u64 called from kmem_cache_open+0x2b/0x320 with crng_init=0
[ 0.189205] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.189227] Kernel/User page tables isolation: enabled
[ 0.189256] ftrace: allocating 50444 entries in 198 pages
[ 0.209293] ftrace: allocated 198 pages with 4 groups
[ 0.209565] rcu: Hierarchical RCU implementation.
[ 0.209567] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.209569] Rude variant of Tasks RCU enabled.
[ 0.209570] Tracing variant of Tasks RCU enabled.
[ 0.209571] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.209573] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.214671] NR_IRQS: 524544, nr_irqs: 488, preallocated irqs: 16
[ 0.214955] Console: colour dummy device 80x25
[ 0.214980] printk: console [tty0] enabled
[ 0.215019] ACPI: Core revision 20210730
[ 0.215201] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.215218] APIC: Switch to symmetric I/O mode setup
[ 0.215221] DMAR: Host address width 38
[ 0.215223] DMAR: DRHD base: 0x000000fe710000 flags: 0x0
[ 0.215229] DMAR: dmar0: reg_base_addr fe710000 ver 1:0 cap 900000c2f0462 ecap e01
[ 0.215232] DMAR: DRHD base: 0x000000fe714000 flags: 0x0
[ 0.215236] DMAR: dmar1: reg_base_addr fe714000 ver 1:0 cap 900000c2f0462 ecap e01
[ 0.215238] DMAR: DRHD base: 0x000000fe719000 flags: 0x0
[ 0.215245] DMAR: dmar2: reg_base_addr fe719000 ver 1:0 cap 900000c2f0462 ecap e01
[ 0.215247] DMAR: DRHD base: 0x000000fe718000 flags: 0x1
[ 0.215251] DMAR: dmar3: reg_base_addr fe718000 ver 1:0 cap 900000c2f0462 ecap e01
[ 0.215617] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.235217] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2842658cc17, max_idle_ns: 440795268978 ns
[ 0.235227] Calibrating delay loop (skipped), value calculated using timer frequency.. 5585.98 BogoMIPS (lpj=11171972)
[ 0.235231] pid_max: default: 32768 minimum: 301
[ 0.239800] LSM: Security Framework initializing
[ 0.239818] landlock: Up and running.
[ 0.239819] Yama: becoming mindful.
[ 0.239858] AppArmor: AppArmor initialized
[ 0.239943] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.239992] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.240378] CPU0: Thermal monitoring enabled (TM2)
[ 0.240392] process: using mwait in idle threads
[ 0.240396] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[ 0.240398] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[ 0.240402] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.240405] Spectre V2 : Mitigation: Retpolines
[ 0.240406] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.240407] Speculative Store Bypass: Vulnerable
[ 0.240411] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 0.246044] Freeing SMP alternatives memory: 40K
[ 0.354755] smpboot: CPU0: Intel(R) Xeon(R) CPU E5462 @ 2.80GHz (family: 0x6, model: 0x17, stepping: 0x6)
[ 0.355006] Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
[ 0.355018] ... version: 2
[ 0.355019] ... bit width: 40
[ 0.355020] ... generic registers: 2
[ 0.355021] ... value mask: 000000ffffffffff
[ 0.355022] ... max period: 000000007fffffff
[ 0.355023] ... fixed-purpose events: 3
[ 0.355024] ... event mask: 0000000700000003
[ 0.355154] rcu: Hierarchical SRCU implementation.
[ 0.355221] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.355221] smp: Bringing up secondary CPUs ...
[ 0.355221] x86: Booting SMP configuration:
[ 0.355221] .... node #0, CPUs: #1 #2 #3 #4
[ 0.004335] smpboot: CPU 4 Converting physical 0 to logical die 1
[ 0.467412] #5 #6 #7
[ 0.491337] smp: Brought up 1 node, 8 CPUs
[ 0.491337] smpboot: Max logical packages: 2
[ 0.491337] smpboot: Total of 8 processors activated (44688.04 BogoMIPS)
[ 0.496066] devtmpfs: initialized
[ 0.496066] x86/mm: Memory block size: 128MB
[ 0.496308] ACPI: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[ 0.496308] ACPI: PM: Registering ACPI NVS region [mem 0x7f67f000-0x7f6f4fff] (483328 bytes)
[ 0.496308] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.496308] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.496308] pinctrl core: initialized pinctrl subsystem
[ 0.496308] PM: RTC time: 11:03:42, date: 2022-07-12
[ 0.499430] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.499760] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[ 0.499968] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.500180] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.500198] audit: initializing netlink subsys (disabled)
[ 0.500221] audit: type=2000 audit(1657623821.284:1): state=initialized audit_enabled=0 res=1
[ 0.500221] thermal_sys: Registered thermal governor 'fair_share'
[ 0.500221] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.500221] thermal_sys: Registered thermal governor 'step_wise'
[ 0.500221] thermal_sys: Registered thermal governor 'user_space'
[ 0.500221] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.500221] EISA bus registered
[ 0.500221] cpuidle: using governor ladder
[ 0.500221] cpuidle: using governor menu
[ 0.500221] ACPI: bus type PCI registered
[ 0.500221] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.500221] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.500221] PCI: not using MMCONFIG
[ 0.500221] PCI: Using configuration type 1 for base access
[ 0.502006] Kprobes globally optimized
[ 0.503320] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.503360] ACPI: Disabled all _OSI OS vendors
[ 0.503363] ACPI: Added _OSI(Module Device)
[ 0.503365] ACPI: Added _OSI(Processor Device)
[ 0.503366] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.503367] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.503369] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.503371] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.503372] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.503374] ACPI: Added _OSI(Darwin)
[ 0.509413] ACPI: 20 ACPI AML tables successfully acquired and loaded
[ 0.509749] ACPI: EC: EC started
[ 0.509750] ACPI: EC: interrupt blocked
[ 0.510605] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.510608] ACPI: EC: Boot ECDT EC used to handle transactions
[ 0.510773] ACPI: BIOS _OSI(Darwin) query honored via DMI
[ 0.621638] ACPI: Interpreter enabled
[ 0.621664] ACPI: PM: (supports S0 S1 S3 S4 S5)
[ 0.621666] ACPI: Using IOAPIC for interrupt routing
[ 0.621694] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.621865] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[ 0.621885] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.622095] ACPI: Enabled 9 GPEs in block 00 to 1F
[ 0.630110] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.630118] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR DPC]
[ 0.630951] PCI host bridge to bus 0000:00
[ 0.630956] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.630958] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.630960] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.630962] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.630964] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.630966] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfe000000 window]
[ 0.631022] pci 0000:00:00.0: [8086:4003] type 00 class 0x060000
[ 0.631070] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 0.631258] pci 0000:00:01.0: [8086:4021] type 01 class 0x060400
[ 0.631305] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.631476] pci 0000:00:05.0: [8086:4025] type 01 class 0x060400
[ 0.631520] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[ 0.631687] pci 0000:00:09.0: [8086:4029] type 01 class 0x060400
[ 0.631733] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
[ 0.631871] pci 0000:00:0f.0: [8086:402f] type 00 class 0x088000
[ 0.631881] pci 0000:00:0f.0: reg 0x10: [mem 0x90d00000-0x90d03fff 64bit]
[ 0.632069] pci 0000:00:10.0: [8086:4030] type 00 class 0x060000
[ 0.632232] pci 0000:00:10.1: [8086:4030] type 00 class 0x060000
[ 0.632368] pci 0000:00:10.2: [8086:4030] type 00 class 0x060000
[ 0.632509] pci 0000:00:10.3: [8086:4030] type 00 class 0x060000
[ 0.632644] pci 0000:00:10.4: [8086:4030] type 00 class 0x060000
[ 0.632778] pci 0000:00:11.0: [8086:4031] type 00 class 0x060000
[ 0.632912] pci 0000:00:15.0: [8086:4035] type 00 class 0x060000
[ 0.633044] pci 0000:00:15.1: [8086:4035] type 00 class 0x060000
[ 0.633181] pci 0000:00:16.0: [8086:4036] type 00 class 0x060000
[ 0.633315] pci 0000:00:16.1: [8086:4036] type 00 class 0x060000
[ 0.633499] pci 0000:00:1b.0: [8086:269a] type 00 class 0x040300
[ 0.633514] pci 0000:00:1b.0: reg 0x10: [mem 0x90d04000-0x90d07fff 64bit]
[ 0.633576] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.633720] pci 0000:00:1c.0: [8086:2690] type 01 class 0x060400
[ 0.633751] pci 0000:00:1c.0: enabling Extended Tags
[ 0.633794] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.633947] pci 0000:00:1c.1: [8086:2692] type 01 class 0x060400
[ 0.633978] pci 0000:00:1c.1: enabling Extended Tags
[ 0.634021] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.634203] pci 0000:00:1c.2: [8086:2694] type 01 class 0x060400
[ 0.634238] pci 0000:00:1c.2: enabling Extended Tags
[ 0.634281] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.634455] pci 0000:00:1c.3: [8086:2696] type 01 class 0x060400
[ 0.634490] pci 0000:00:1c.3: enabling Extended Tags
[ 0.634534] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.634707] pci 0000:00:1d.0: [8086:2688] type 00 class 0x0c0300
[ 0.634744] pci 0000:00:1d.0: reg 0x20: [io 0x30a0-0x30bf]
[ 0.634912] pci 0000:00:1d.1: [8086:2689] type 00 class 0x0c0300
[ 0.634950] pci 0000:00:1d.1: reg 0x20: [io 0x3080-0x309f]
[ 0.635120] pci 0000:00:1d.2: [8086:268a] type 00 class 0x0c0300
[ 0.635157] pci 0000:00:1d.2: reg 0x20: [io 0x3060-0x307f]
[ 0.635327] pci 0000:00:1d.3: [8086:268b] type 00 class 0x0c0300
[ 0.635365] pci 0000:00:1d.3: reg 0x20: [io 0x3040-0x305f]
[ 0.635551] pci 0000:00:1d.7: [8086:268c] type 00 class 0x0c0320
[ 0.635564] pci 0000:00:1d.7: reg 0x10: [mem 0x90d08400-0x90d087ff]
[ 0.635625] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.636109] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[ 0.636301] pci 0000:00:1f.0: [8086:2670] type 00 class 0x060100
[ 0.636821] pci 0000:00:1f.1: [8086:269e] type 00 class 0x01018f
[ 0.636836] pci 0000:00:1f.1: reg 0x10: [io 0x30e8-0x30ef]
[ 0.636844] pci 0000:00:1f.1: reg 0x14: [io 0x30fc-0x30ff]
[ 0.636852] pci 0000:00:1f.1: reg 0x18: [io 0x30e0-0x30e7]
[ 0.636860] pci 0000:00:1f.1: reg 0x1c: [io 0x30f8-0x30fb]
[ 0.636868] pci 0000:00:1f.1: reg 0x20: [io 0x30c0-0x30cf]
[ 0.637325] pci 0000:00:1f.2: [8086:2681] type 00 class 0x010601
[ 0.637338] pci 0000:00:1f.2: reg 0x10: [io 0x30d8-0x30df]
[ 0.637345] pci 0000:00:1f.2: reg 0x14: [io 0x30f4-0x30f7]
[ 0.637352] pci 0000:00:1f.2: reg 0x18: [io 0x30d0-0x30d7]
[ 0.637359] pci 0000:00:1f.2: reg 0x1c: [io 0x30f0-0x30f3]
[ 0.637366] pci 0000:00:1f.2: reg 0x20: [io 0x3020-0x303f]
[ 0.637372] pci 0000:00:1f.2: reg 0x24: [mem 0x90d08000-0x90d083ff]
[ 0.637404] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.637564] pci 0000:00:1f.3: [8086:269b] type 00 class 0x0c0500
[ 0.637613] pci 0000:00:1f.3: reg 0x20: [io 0x3000-0x301f]
[ 0.637770] pci 0000:01:00.0: [1002:9588] type 00 class 0x030000
[ 0.637783] pci 0000:01:00.0: reg 0x10: [mem 0x80000000-0x8fffffff 64bit pref]
[ 0.637792] pci 0000:01:00.0: reg 0x18: [mem 0x90c20000-0x90c2ffff 64bit]
[ 0.637798] pci 0000:01:00.0: reg 0x20: [io 0x2000-0x20ff]
[ 0.637808] pci 0000:01:00.0: reg 0x30: [mem 0x90c00000-0x90c1ffff pref]
[ 0.637814] pci 0000:01:00.0: enabling Extended Tags
[ 0.637844] pci 0000:01:00.0: supports D1 D2
[ 0.651238] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.651243] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.651246] pci 0000:00:01.0: bridge window [mem 0x90c00000-0x90cfffff]
[ 0.651250] pci 0000:00:01.0: bridge window [mem 0x80000000-0x8fffffff 64bit pref]
[ 0.651306] pci 0000:00:05.0: PCI bridge to [bus 02]
[ 0.651376] pci 0000:03:00.0: [8086:3500] type 01 class 0x060400
[ 0.651443] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.651463] pci 0000:03:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:00:09.0 (capable of 16.000 Gb/s with 2.5 GT/s PCIe x8 link)
[ 0.651564] pci 0000:03:00.3: [8086:350c] type 01 class 0x060400
[ 0.651625] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[ 0.651690] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.651700] pci 0000:00:09.0: PCI bridge to [bus 03-08]
[ 0.651703] pci 0000:00:09.0: bridge window [io 0x1000-0x1fff]
[ 0.651706] pci 0000:00:09.0: bridge window [mem 0x90000000-0x908fffff]
[ 0.651805] pci 0000:04:00.0: [8086:3510] type 01 class 0x060400
[ 0.651874] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 0.651963] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.651990] pci 0000:04:01.0: [8086:3514] type 01 class 0x060400
[ 0.652058] pci 0000:04:01.0: PME# supported from D0 D3hot D3cold
[ 0.652148] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.652175] pci 0000:04:02.0: [8086:3518] type 01 class 0x060400
[ 0.652247] pci 0000:04:02.0: PME# supported from D0 D3hot D3cold
[ 0.652346] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.652369] pci 0000:03:00.0: PCI bridge to [bus 04-07]
[ 0.652373] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
[ 0.652376] pci 0000:03:00.0: bridge window [mem 0x90000000-0x908fffff]
[ 0.652436] pci 0000:04:00.0: PCI bridge to [bus 05]
[ 0.652499] pci 0000:04:01.0: PCI bridge to [bus 06]
[ 0.652610] pci 0000:07:00.0: [8086:1096] type 00 class 0x020000
[ 0.652627] pci 0000:07:00.0: reg 0x10: [mem 0x90820000-0x9083ffff]
[ 0.652637] pci 0000:07:00.0: reg 0x14: [mem 0x90400000-0x907fffff]
[ 0.652646] pci 0000:07:00.0: reg 0x18: [io 0x1020-0x103f]
[ 0.652733] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[ 0.653163] pci 0000:07:00.1: [8086:1096] type 00 class 0x020000
[ 0.653181] pci 0000:07:00.1: reg 0x10: [mem 0x90800000-0x9081ffff]
[ 0.653190] pci 0000:07:00.1: reg 0x14: [mem 0x90000000-0x903fffff]
[ 0.653200] pci 0000:07:00.1: reg 0x18: [io 0x1000-0x101f]
[ 0.653286] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[ 0.653677] pci 0000:07:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.653690] pci 0000:04:02.0: PCI bridge to [bus 07]
[ 0.653693] pci 0000:04:02.0: bridge window [io 0x1000-0x1fff]
[ 0.653697] pci 0000:04:02.0: bridge window [mem 0x90000000-0x908fffff]
[ 0.653734] pci_bus 0000:08: extended config space not accessible
[ 0.653780] pci 0000:03:00.3: PCI bridge to [bus 08]
[ 0.653828] pci 0000:00:1c.0: PCI bridge to [bus 09]
[ 0.653871] pci 0000:00:1c.1: PCI bridge to [bus 0a]
[ 0.653956] pci 0000:0b:00.0: [104c:823e] type 01 class 0x060400
[ 0.654091] pci 0000:0b:00.0: supports D1 D2
[ 0.667247] pci 0000:00:1c.2: PCI bridge to [bus 0b-0c]
[ 0.667254] pci 0000:00:1c.2: bridge window [mem 0x90b00000-0x90bfffff]
[ 0.667307] pci_bus 0000:0c: extended config space not accessible
[ 0.667365] pci 0000:0c:00.0: [104c:823f] type 00 class 0x0c0010
[ 0.667390] pci 0000:0c:00.0: reg 0x10: [mem 0x90b04000-0x90b047ff]
[ 0.667405] pci 0000:0c:00.0: reg 0x14: [mem 0x90b00000-0x90b03fff]
[ 0.667511] pci 0000:0c:00.0: supports D1 D2
[ 0.667512] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot
[ 0.667952] pci 0000:0b:00.0: PCI bridge to [bus 0c]
[ 0.667964] pci 0000:0b:00.0: bridge window [mem 0x90b00000-0x90bfffff]
[ 0.668068] pci 0000:0d:00.0: [14e4:4328] type 00 class 0x028000
[ 0.668092] pci 0000:0d:00.0: reg 0x10: [mem 0x90a00000-0x90a03fff 64bit]
[ 0.668106] pci 0000:0d:00.0: reg 0x18: [mem 0x90900000-0x909fffff 64bit pref]
[ 0.668136] pci 0000:0d:00.0: enabling Extended Tags
[ 0.668219] pci 0000:0d:00.0: supports D1 D2
[ 0.668362] pci 0000:00:1c.3: PCI bridge to [bus 0d]
[ 0.668367] pci 0000:00:1c.3: bridge window [mem 0x90a00000-0x90afffff]
[ 0.668372] pci 0000:00:1c.3: bridge window [mem 0x90900000-0x909fffff 64bit pref]
[ 0.668388] pci_bus 0000:0e: extended config space not accessible
[ 0.668453] pci 0000:00:1e.0: PCI bridge to [bus 0e] (subtractive decode)
[ 0.668461] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.668464] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.668466] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.668468] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[ 0.668470] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfe000000 window] (subtractive decode)
[ 0.668713] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.668716] ACPI: PCI: Interrupt link LNKA disabled
[ 0.668821] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.668823] ACPI: PCI: Interrupt link LNKB disabled
[ 0.668927] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.668929] ACPI: PCI: Interrupt link LNKC disabled
[ 0.669033] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.669035] ACPI: PCI: Interrupt link LNKD disabled
[ 0.669139] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.669141] ACPI: PCI: Interrupt link LNKE disabled
[ 0.669246] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.669248] ACPI: PCI: Interrupt link LNKF disabled
[ 0.669351] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.669353] ACPI: PCI: Interrupt link LNKG disabled
[ 0.669457] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.669459] ACPI: PCI: Interrupt link LNKH disabled
[ 0.670010] ACPI: EC: interrupt unblocked
[ 0.670012] ACPI: EC: event unblocked
[ 0.670018] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.670019] ACPI: EC: GPE=0x11
[ 0.670021] ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
[ 0.670024] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[ 0.671255] iommu: Default domain type: Translated
[ 0.671255] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.671532] SCSI subsystem initialized
[ 0.671542] libata version 3.00 loaded.
[ 0.671542] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.671542] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.671542] pci 0000:01:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[ 0.671542] vgaarb: loaded
[ 0.671542] ACPI: bus type USB registered
[ 0.671542] usbcore: registered new interface driver usbfs
[ 0.671542] usbcore: registered new interface driver hub
[ 0.671542] usbcore: registered new device driver usb
[ 0.671542] pps_core: LinuxPPS API ver. 1 registered
[ 0.671542] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.671542] PTP clock support registered
[ 0.671542] EDAC MC: Ver: 3.0.0
[ 0.671542] Registered efivars operations
[ 0.671542] NetLabel: Initializing
[ 0.671542] NetLabel: domain hash size = 128
[ 0.671542] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.671542] NetLabel: unlabeled traffic allowed by default
[ 0.671542] PCI: Using ACPI for IRQ routing
[ 0.676621] PCI: pci_cache_line_size set to 64 bytes
[ 0.676697] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[ 0.676699] e820: reserve RAM buffer [mem 0x7e5cc018-0x7fffffff]
[ 0.676701] e820: reserve RAM buffer [mem 0x7e5dd018-0x7fffffff]
[ 0.676703] e820: reserve RAM buffer [mem 0x7e610000-0x7fffffff]
[ 0.676705] e820: reserve RAM buffer [mem 0x7f67f000-0x7fffffff]
[ 0.676707] e820: reserve RAM buffer [mem 0x7f71a000-0x7fffffff]
[ 0.676709] e820: reserve RAM buffer [mem 0x7f7fc000-0x7fffffff]
[ 0.676710] e820: reserve RAM buffer [mem 0x7f92a000-0x7fffffff]
[ 0.676712] e820: reserve RAM buffer [mem 0x7f991000-0x7fffffff]
[ 0.676713] e820: reserve RAM buffer [mem 0x7fc00000-0x7fffffff]
[ 0.681063] hpet: 3 channels of 0 reserved for per-cpu timers
[ 0.681069] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.681076] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[ 0.683226] clocksource: Switched to clocksource tsc-early
[ 0.699733] VFS: Disk quotas dquot_6.6.0
[ 0.699763] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.699941] AppArmor: AppArmor Filesystem Enabled
[ 0.699974] pnp: PnP ACPI init
[ 0.700139] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.700144] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.700147] system 00:00: [mem 0xffc00000-0xffffffff] could not be reserved
[ 0.700149] system 00:00: [mem 0xfec00000-0xfecfffff] could not be reserved
[ 0.700151] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.700153] system 00:00: [mem 0xfe700000-0xfe7003ff] has been reserved
[ 0.700155] system 00:00: [mem 0xfe600000-0xfe6fffff] has been reserved
[ 0.700158] system 00:00: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.700598] system 00:02: [io 0x0320-0x037f] has been reserved
[ 0.700601] system 00:02: [io 0x0400-0x047f] has been reserved
[ 0.700603] system 00:02: [io 0x0500-0x053f] has been reserved
[ 0.700605] system 00:02: [io 0x0872-0x0875] has been reserved
[ 0.700663] pnp: PnP ACPI: found 3 devices
[ 0.703645] pci 0000:0c:00.0: assigning 1 device properties
[ 0.703661] pci 0000:00:1b.0: assigning 4 device properties
[ 0.703687] pci 0000:01:00.0: assigning 48 device properties
[ 0.708240] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.708316] NET: Registered PF_INET protocol family
[ 0.708622] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.710046] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 0.710193] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.710536] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.710666] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.710845] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[ 0.710914] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.710967] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.711030] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.711038] NET: Registered PF_XDP protocol family
[ 0.711064] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 09] add_size 1000
[ 0.711069] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 09] add_size 200000 add_align 100000
[ 0.711072] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 09] add_size 200000 add_align 100000
[ 0.711076] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000
[ 0.711078] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0a] add_size 200000 add_align 100000
[ 0.711081] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff] to [bus 0a] add_size 200000 add_align 100000
[ 0.711085] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 0b-0c] add_size 1000
[ 0.711088] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b-0c] add_size 200000 add_align 100000
[ 0.711091] pci 0000:00:1c.3: bridge window [io 0x1000-0x0fff] to [bus 0d] add_size 1000
[ 0.711109] pci 0000:00:1c.0: BAR 14: assigned [mem 0x90e00000-0x90ffffff]
[ 0.711114] pci 0000:00:1c.0: BAR 15: assigned [mem 0x91000000-0x911fffff 64bit pref]
[ 0.711117] pci 0000:00:1c.1: BAR 14: assigned [mem 0x91200000-0x913fffff]
[ 0.711120] pci 0000:00:1c.1: BAR 15: assigned [mem 0x91400000-0x915fffff 64bit pref]
[ 0.711124] pci 0000:00:1c.2: BAR 15: assigned [mem 0x91600000-0x917fffff 64bit pref]
[ 0.711128] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
[ 0.711131] pci 0000:00:1c.1: BAR 13: assigned [io 0x5000-0x5fff]
[ 0.711133] pci 0000:00:1c.2: BAR 13: assigned [io 0x6000-0x6fff]
[ 0.711136] pci 0000:00:1c.3: BAR 13: assigned [io 0x7000-0x7fff]
[ 0.711141] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.711145] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.711149] pci 0000:00:01.0: bridge window [mem 0x90c00000-0x90cfffff]
[ 0.711152] pci 0000:00:01.0: bridge window [mem 0x80000000-0x8fffffff 64bit pref]
[ 0.711156] pci 0000:00:05.0: PCI bridge to [bus 02]
[ 0.711162] pci 0000:04:00.0: PCI bridge to [bus 05]
[ 0.711171] pci 0000:04:01.0: PCI bridge to [bus 06]
[ 0.711180] pci 0000:04:02.0: PCI bridge to [bus 07]
[ 0.711183] pci 0000:04:02.0: bridge window [io 0x1000-0x1fff]
[ 0.711186] pci 0000:04:02.0: bridge window [mem 0x90000000-0x908fffff]
[ 0.711193] pci 0000:03:00.0: PCI bridge to [bus 04-07]
[ 0.711195] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
[ 0.711199] pci 0000:03:00.0: bridge window [mem 0x90000000-0x908fffff]
[ 0.711206] pci 0000:03:00.3: PCI bridge to [bus 08]
[ 0.711214] pci 0000:00:09.0: PCI bridge to [bus 03-08]
[ 0.711216] pci 0000:00:09.0: bridge window [io 0x1000-0x1fff]
[ 0.711219] pci 0000:00:09.0: bridge window [mem 0x90000000-0x908fffff]
[ 0.711226] pci 0000:00:1c.0: PCI bridge to [bus 09]
[ 0.711228] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.711232] pci 0000:00:1c.0: bridge window [mem 0x90e00000-0x90ffffff]
[ 0.711235] pci 0000:00:1c.0: bridge window [mem 0x91000000-0x911fffff 64bit pref]
[ 0.711240] pci 0000:00:1c.1: PCI bridge to [bus 0a]
[ 0.711242] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.711246] pci 0000:00:1c.1: bridge window [mem 0x91200000-0x913fffff]
[ 0.711249] pci 0000:00:1c.1: bridge window [mem 0x91400000-0x915fffff 64bit pref]
[ 0.711255] pci 0000:0b:00.0: PCI bridge to [bus 0c]
[ 0.711261] pci 0000:0b:00.0: bridge window [mem 0x90b00000-0x90bfffff]
[ 0.711271] pci 0000:00:1c.2: PCI bridge to [bus 0b-0c]
[ 0.711274] pci 0000:00:1c.2: bridge window [io 0x6000-0x6fff]
[ 0.711278] pci 0000:00:1c.2: bridge window [mem 0x90b00000-0x90bfffff]
[ 0.711281] pci 0000:00:1c.2: bridge window [mem 0x91600000-0x917fffff 64bit pref]
[ 0.711286] pci 0000:00:1c.3: PCI bridge to [bus 0d]
[ 0.711288] pci 0000:00:1c.3: bridge window [io 0x7000-0x7fff]
[ 0.711292] pci 0000:00:1c.3: bridge window [mem 0x90a00000-0x90afffff]
[ 0.711295] pci 0000:00:1c.3: bridge window [mem 0x90900000-0x909fffff 64bit pref]
[ 0.711300] pci 0000:00:1e.0: PCI bridge to [bus 0e]
[ 0.711309] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.711311] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.711313] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.711315] pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dbfff window]
[ 0.711317] pci_bus 0000:00: resource 8 [mem 0x80000000-0xfe000000 window]
[ 0.711319] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.711321] pci_bus 0000:01: resource 1 [mem 0x90c00000-0x90cfffff]
[ 0.711322] pci_bus 0000:01: resource 2 [mem 0x80000000-0x8fffffff 64bit pref]
[ 0.711325] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
[ 0.711326] pci_bus 0000:03: resource 1 [mem 0x90000000-0x908fffff]
[ 0.711328] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 0.711330] pci_bus 0000:04: resource 1 [mem 0x90000000-0x908fffff]
[ 0.711333] pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
[ 0.711334] pci_bus 0000:07: resource 1 [mem 0x90000000-0x908fffff]
[ 0.711337] pci_bus 0000:09: resource 0 [io 0x4000-0x4fff]
[ 0.711338] pci_bus 0000:09: resource 1 [mem 0x90e00000-0x90ffffff]
[ 0.711340] pci_bus 0000:09: resource 2 [mem 0x91000000-0x911fffff 64bit pref]
[ 0.711342] pci_bus 0000:0a: resource 0 [io 0x5000-0x5fff]
[ 0.711344] pci_bus 0000:0a: resource 1 [mem 0x91200000-0x913fffff]
[ 0.711346] pci_bus 0000:0a: resource 2 [mem 0x91400000-0x915fffff 64bit pref]
[ 0.711347] pci_bus 0000:0b: resource 0 [io 0x6000-0x6fff]
[ 0.711349] pci_bus 0000:0b: resource 1 [mem 0x90b00000-0x90bfffff]
[ 0.711351] pci_bus 0000:0b: resource 2 [mem 0x91600000-0x917fffff 64bit pref]
[ 0.711353] pci_bus 0000:0c: resource 1 [mem 0x90b00000-0x90bfffff]
[ 0.711355] pci_bus 0000:0d: resource 0 [io 0x7000-0x7fff]
[ 0.711357] pci_bus 0000:0d: resource 1 [mem 0x90a00000-0x90afffff]
[ 0.711358] pci_bus 0000:0d: resource 2 [mem 0x90900000-0x909fffff 64bit pref]
[ 0.711361] pci_bus 0000:0e: resource 4 [io 0x0000-0x0cf7 window]
[ 0.711362] pci_bus 0000:0e: resource 5 [io 0x0d00-0xffff window]
[ 0.711364] pci_bus 0000:0e: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.711366] pci_bus 0000:0e: resource 7 [mem 0x000d8000-0x000dbfff window]
[ 0.711367] pci_bus 0000:0e: resource 8 [mem 0x80000000-0xfe000000 window]
[ 0.713361] pci 0000:00:1d.7: enabling device (0000 -> 0002)
[ 0.713879] pci 0000:00:1f.0: rerouting interrupts for [8086:2670]
[ 0.713919] pci 0000:0c:00.0: CLS mismatch (256 != 64), using 64 bytes
[ 0.713975] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.713976] software IO TLB: mapped [mem 0x0000000078a52000-0x000000007ca52000] (64MB)
[ 0.714020] Trying to unpack rootfs image as initramfs...
[ 0.714665] Initialise system trusted keyrings
[ 0.714685] Key type blacklist registered
[ 0.714758] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[ 0.716769] zbud: loaded
[ 0.717236] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.717555] fuse: init (API version 7.34)
[ 0.717916] integrity: Platform Keyring initialized
[ 0.728267] Key type asymmetric registered
[ 0.728273] Asymmetric key parser 'x509' registered
[ 0.728318] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.728714] io scheduler mq-deadline registered
[ 0.729710] pcieport 0000:00:01.0: AER: enabled with IRQ 24
[ 0.730133] pcieport 0000:00:05.0: AER: enabled with IRQ 25
[ 0.730533] pcieport 0000:00:09.0: AER: enabled with IRQ 26
[ 0.730594] pcieport 0000:00:1c.0: enabling device (0000 -> 0003)
[ 0.730886] pcieport 0000:00:1c.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep- (with Cmd Compl erratum)
[ 0.731020] pcieport 0000:00:1c.1: enabling device (0000 -> 0003)
[ 0.731293] pcieport 0000:00:1c.1: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep- (with Cmd Compl erratum)
[ 0.731810] pcieport 0000:00:1c.2: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep- (with Cmd Compl erratum)
[ 0.732215] pcieport 0000:00:1c.3: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep- (with Cmd Compl erratum)
[ 0.733156] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.733589] Monitor-Mwait will be used to enter C-1 state
[ 0.733598] ACPI: \_PR_.CPU0: Found 1 idle states
[ 0.734168] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.734203] ACPI: button: Power Button [PWRB]
[ 0.734246] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.734295] ACPI: button: Power Button [PWRF]
[ 0.735030] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.737779] Linux agpgart interface v0.103
[ 0.741138] loop: module loaded
[ 0.741340] ata_piix 0000:00:1f.1: version 2.13
[ 0.742712] scsi host0: ata_piix
[ 0.742895] scsi host1: ata_piix
[ 0.742950] ata1: PATA max UDMA/100 cmd 0x30e8 ctl 0x30fc bmdma 0x30c0 irq 20
[ 0.742953] ata2: PATA max UDMA/100 cmd 0x30e0 ctl 0x30f8 bmdma 0x30c8 irq 20
[ 0.743132] tun: Universal TUN/TAP device driver, 1.6
[ 0.743195] PPP generic driver version 2.4.2
[ 0.743265] VFIO - User Level meta-driver version: 0.3
[ 0.743350] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.743355] ehci-pci: EHCI PCI platform driver
[ 0.743631] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 0.743640] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 0.743652] ehci-pci 0000:00:1d.7: debug port 1
[ 0.747565] ehci-pci 0000:00:1d.7: irq 19, io mem 0x90d08400
[ 0.761642] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 0.761702] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.761706] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.761708] usb usb1: Product: EHCI Host Controller
[ 0.761710] usb usb1: Manufacturer: Linux 5.15.0-40-generic ehci_hcd
[ 0.761711] usb usb1: SerialNumber: 0000:00:1d.7
[ 0.761854] hub 1-0:1.0: USB hub found
[ 0.761863] hub 1-0:1.0: 8 ports detected
[ 0.762103] ehci-platform: EHCI generic platform driver
[ 0.762115] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.762120] ohci-pci: OHCI PCI platform driver
[ 0.762136] ohci-platform: OHCI generic platform driver
[ 0.762145] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.762396] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 0.762402] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.762408] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 0.762425] uhci_hcd 0000:00:1d.0: irq 19, io base 0x000030a0
[ 0.762485] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[ 0.762488] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.762490] usb usb2: Product: UHCI Host Controller
[ 0.762492] usb usb2: Manufacturer: Linux 5.15.0-40-generic uhci_hcd
[ 0.762493] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.762590] hub 2-0:1.0: USB hub found
[ 0.762599] hub 2-0:1.0: 2 ports detected
[ 0.762952] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 0.762961] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 0.762967] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 0.762984] uhci_hcd 0000:00:1d.1: irq 20, io base 0x00003080
[ 0.763040] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[ 0.763043] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.763045] usb usb3: Product: UHCI Host Controller
[ 0.763046] usb usb3: Manufacturer: Linux 5.15.0-40-generic uhci_hcd
[ 0.763048] usb usb3: SerialNumber: 0000:00:1d.1
[ 0.763139] hub 3-0:1.0: USB hub found
[ 0.763167] hub 3-0:1.0: 2 ports detected
[ 0.763527] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 0.763532] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 0.763538] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 0.763560] uhci_hcd 0000:00:1d.2: irq 21, io base 0x00003060
[ 0.763624] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[ 0.763628] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.763630] usb usb4: Product: UHCI Host Controller
[ 0.763631] usb usb4: Manufacturer: Linux 5.15.0-40-generic uhci_hcd
[ 0.763633] usb usb4: SerialNumber: 0000:00:1d.2
[ 0.763730] hub 4-0:1.0: USB hub found
[ 0.763737] hub 4-0:1.0: 2 ports detected
[ 0.764097] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[ 0.764102] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[ 0.764120] uhci_hcd 0000:00:1d.3: detected 2 ports
[ 0.764143] uhci_hcd 0000:00:1d.3: irq 22, io base 0x00003040
[ 0.764200] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15
[ 0.764203] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.764205] usb usb5: Product: UHCI Host Controller
[ 0.764206] usb usb5: Manufacturer: Linux 5.15.0-40-generic uhci_hcd
[ 0.764208] usb usb5: SerialNumber: 0000:00:1d.3
[ 0.764302] hub 5-0:1.0: USB hub found
[ 0.764309] hub 5-0:1.0: 2 ports detected
[ 0.764465] i8042: PNP: No PS/2 controller found.
[ 0.764535] mousedev: PS/2 mouse device common for all mice
[ 0.764668] rtc_cmos 00:01: RTC can wake from S4
[ 0.764900] rtc_cmos 00:01: registered as rtc0
[ 0.764930] rtc_cmos 00:01: setting system clock to 2022-07-12T11:03:42 UTC (1657623822)
[ 0.764953] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.764964] i2c_dev: i2c /dev entries driver
[ 0.765246] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.765286] device-mapper: uevent: version 1.0.3
[ 0.765346] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[ 0.765374] platform eisa.0: Probing EISA bus 0
[ 0.765377] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.765379] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.765381] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.765383] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.765384] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.765386] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.765388] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.765389] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.765391] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.765392] platform eisa.0: EISA: Detected 0 cards
[ 0.765396] intel_pstate: CPU model not supported
[ 0.765616] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.765679] EFI Variables Facility v0.08 2004-May-17
[ 0.792895] drop_monitor: Initializing network drop monitor service
[ 0.793090] NET: Registered PF_INET6 protocol family
[ 1.101641] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.260486] usb 1-1: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=77.64
[ 1.260490] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.260493] usb 1-1: Product: USB2.0 Hub
[ 1.260898] hub 1-1:1.0: USB hub found
[ 1.261234] hub 1-1:1.0: 4 ports detected
[ 1.300128] Freeing initrd memory: 60904K
[ 1.308120] Segment Routing with IPv6
[ 1.308139] In-situ OAM (IOAM) with IPv6
[ 1.308170] NET: Registered PF_PACKET protocol family
[ 1.308240] Key type dns_resolver registered
[ 1.308921] microcode: sig=0x10676, pf=0x40, revision=0x60f
[ 1.309017] microcode: Microcode Update Driver: v2.2.
[ 1.309023] IPI shorthand broadcast: enabled
[ 1.309035] sched_clock: Marking stable (1308676372, 335836)->(1337443569, -28431361)
[ 1.309409] registered taskstats version 1
[ 1.309615] Loading compiled-in X.509 certificates
[ 1.310766] Loaded X.509 cert 'Build time autogenerated kernel key: 7f2e266096ca6df1a1e0bcd33100abd18aeaa3ca'
[ 1.311696] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.312613] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.312615] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.312640] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.313062] zswap: loaded using pool lzo/zbud
[ 1.313565] Key type ._fscrypt registered
[ 1.313568] Key type .fscrypt registered
[ 1.313569] Key type fscrypt-provisioning registered
[ 1.317381] Key type encrypted registered
[ 1.317385] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.323462] integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
[ 1.323892] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
[ 1.323896] ima: No TPM chip found, activating TPM-bypass!
[ 1.323899] Loading compiled-in module X.509 certificates
[ 1.324815] Loaded X.509 cert 'Build time autogenerated kernel key: 7f2e266096ca6df1a1e0bcd33100abd18aeaa3ca'
[ 1.324818] ima: Allocated hash algorithm: sha1
[ 1.324832] ima: No architecture policies found
[ 1.324844] evm: Initialising EVM extended attributes:
[ 1.324845] evm: security.selinux
[ 1.324847] evm: security.SMACK64
[ 1.324848] evm: security.SMACK64EXEC
[ 1.324849] evm: security.SMACK64TRANSMUTE
[ 1.324850] evm: security.SMACK64MMAP
[ 1.324851] evm: security.apparmor
[ 1.324852] evm: security.ima
[ 1.324853] evm: security.capability
[ 1.324854] evm: HMAC attrs: 0x1
[ 1.325247] PM: Magic number: 14:585:74
[ 1.326210] RAS: Correctable Errors collector initialized.
[ 1.328427] Freeing unused decrypted memory: 2036K
[ 1.329437] Freeing unused kernel image (initmem) memory: 2904K
[ 1.367235] Write protecting the kernel read-only data: 30720k
[ 1.368204] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 1.368787] Freeing unused kernel image (rodata/data gap) memory: 1492K
[ 1.429110] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.429139] x86/mm: Checking user space page tables
[ 1.481046] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.481054] Run /init as init process
[ 1.481056] with arguments:
[ 1.481058] /init
[ 1.481060] splash
[ 1.481061] with environment:
[ 1.481062] HOME=/
[ 1.481063] TERM=linux
[ 1.481064] BOOT_IMAGE=/boot/vmlinuz-5.15.0-40-generic
[ 1.527258] usb 3-1: new low-speed USB device number 2 using uhci_hcd
[ 1.618329] e1000e: Intel(R) PRO/1000 Network Driver
[ 1.618339] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.618394] b43-pci-bridge 0000:0d:00.0: enabling device (0000 -> 0002)
[ 1.618577] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x000000000000042C-0x000000000000042F (\GPE0) (20210730/utaddress-204)
[ 1.618586] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20210730/utaddress-204)
[ 1.618592] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.618715] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000053B (\GPIO) (20210730/utaddress-204)
[ 1.618726] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.618735] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000053B (\GPIO) (20210730/utaddress-204)
[ 1.618739] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.618740] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 1.620672] ahci 0000:00:1f.2: version 3.0
[ 1.620875] e1000e 0000:07:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.621358] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 1.621398] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[ 1.621407] ahci 0000:00:1f.2: flags: 64bit ncq pm led slum part
[ 1.621747] i2c i2c-0: 6/8 memory slots populated (from DMI)
[ 1.621750] i2c i2c-0: Systems with more than 4 memory slots not supported yet, not instantiating SPD
[ 1.622832] scsi host2: ahci
[ 1.623046] scsi host3: ahci
[ 1.623614] scsi host4: ahci
[ 1.623829] scsi host5: ahci
[ 1.624036] scsi host6: ahci
[ 1.624278] scsi host7: ahci
[ 1.624364] ata3: SATA max UDMA/133 abar m1024@0x90d08000 port 0x90d08100 irq 21
[ 1.624368] ata4: SATA max UDMA/133 abar m1024@0x90d08000 port 0x90d08180 irq 21
[ 1.624370] ata5: SATA max UDMA/133 abar m1024@0x90d08000 port 0x90d08200 irq 21
[ 1.624372] ata6: SATA max UDMA/133 abar m1024@0x90d08000 port 0x90d08280 irq 21
[ 1.624374] ata7: SATA max UDMA/133 abar m1024@0x90d08000 port 0x90d08300 irq 21
[ 1.624376] ata8: SATA max UDMA/133 abar m1024@0x90d08000 port 0x90d08380 irq 21
[ 1.651277] ssb: Found chip with id 0x4321, rev 0x03 and package 0x00
[ 1.658805] e1000e 0000:07:00.0 eth0: (PCI Express:2.5GT/s:Width x4) 00:1d:4f:46:42:fc
[ 1.658810] e1000e 0000:07:00.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.658891] e1000e 0000:07:00.0 eth0: MAC: 5, PHY: 5, PBA No: 3070FF-0FF
[ 1.659122] e1000e 0000:07:00.1: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.687699] firewire_ohci 0000:0c:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
[ 1.697458] e1000e 0000:07:00.1 eth1: (PCI Express:2.5GT/s:Width x4) 00:1d:4f:46:42:fd
[ 1.697462] e1000e 0000:07:00.1 eth1: Intel(R) PRO/1000 Network Connection
[ 1.697540] e1000e 0000:07:00.1 eth1: MAC: 5, PHY: 5, PBA No: 3070FF-0FF
[ 1.719243] tsc: Refined TSC clocksource calibration: 2793.007 MHz
[ 1.719258] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2842729bb4a, max_idle_ns: 440795224410 ns
[ 1.719298] clocksource: Switched to clocksource tsc
[ 1.724252] usb 3-1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
[ 1.724258] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.724261] usb 3-1: Product: USB Keyboard
[ 1.724263] usb 3-1: Manufacturer: Logitech
[ 1.743452] b43-pci-bridge 0000:0d:00.0: Sonics Silicon Backplane found on PCI device 0000:0d:00.0
[ 1.745315] e1000e 0000:07:00.1 enp7s0f1: renamed from eth1
[ 1.758937] hid: raw HID events driver (C) Jiri Kosina
[ 1.937347] ata3: SATA link down (SStatus 0 SControl 300)
[ 1.937397] ata8: SATA link down (SStatus 0 SControl 300)
[ 1.937417] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.937444] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.937467] ata7: SATA link down (SStatus 0 SControl 300)
[ 1.937488] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.938999] ata6.00: ATA-8: WD1003FBYX-88 LEN, WB33, max UDMA/133
[ 1.939305] ata6.00: ATA Identify Device Log not supported
[ 1.939308] ata6.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 1.942191] ata6.00: ATA Identify Device Log not supported
[ 1.942195] ata6.00: configured for UDMA/133
[ 1.952403] ata5.00: ATA-9: WDC WD20EFRX-68EUZN0, 82.00A82, max UDMA/133
[ 1.952649] ata5.00: ATA Identify Device Log not supported
[ 1.952651] ata5.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 32), AA
[ 1.953378] ata5.00: ATA Identify Device Log not supported
[ 1.953383] ata5.00: configured for UDMA/133
[ 2.077279] ata4.00: ATA-8: TOSHIBA MD04ACA400, FP2A, max UDMA/100
[ 2.077476] ata4.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 2.078383] ata4.00: configured for UDMA/100
[ 2.078594] scsi 3:0:0:0: Direct-Access ATA TOSHIBA MD04ACA4 FP2A PQ: 0 ANSI: 5
[ 2.078886] sd 3:0:0:0: Attached scsi generic sg0 type 0
[ 2.079048] sd 3:0:0:0: [sda] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
[ 2.079052] sd 3:0:0:0: [sda] 4096-byte physical blocks
[ 2.079069] sd 3:0:0:0: [sda] Write Protect is off
[ 2.079073] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.079104] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.079110] scsi 4:0:0:0: Direct-Access ATA WDC WD20EFRX-68E 0A82 PQ: 0 ANSI: 5
[ 2.079472] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 2.079601] sd 4:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 2.079605] sd 4:0:0:0: [sdb] 4096-byte physical blocks
[ 2.079621] sd 4:0:0:0: [sdb] Write Protect is off
[ 2.079624] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 2.079648] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.079654] scsi 5:0:0:0: Direct-Access ATA WD1003FBYX-88 WB33 PQ: 0 ANSI: 5
[ 2.079974] sd 5:0:0:0: Attached scsi generic sg2 type 0
[ 2.080047] sd 5:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 2.080065] sd 5:0:0:0: [sdc] Write Protect is off
[ 2.080068] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 2.080095] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.134221] sdc: sdc1 sdc2
[ 2.135236] usb 1-1.4: new low-speed USB device number 4 using ehci-pci
[ 2.147318] sd 5:0:0:0: [sdc] Attached SCSI disk
[ 2.167248] sdb: sdb1 sdb2
[ 2.183318] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 2.199338] firewire_core 0000:0c:00.0: created device fw0: GUID 001e52fffe6234a4, S800
[ 2.199350] firewire_core 0000:0c:00.0: phy config: new root=ffc1, gap_count=5
[ 2.247361] usb 1-1.4: New USB device found, idVendor=046d, idProduct=c05b, bcdDevice=54.00
[ 2.247366] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.247369] usb 1-1.4: Product: USB Optical Mouse
[ 2.247371] usb 1-1.4: Manufacturer: Logitech
[ 2.353264] sda: sda1 sda2
[ 2.367318] sd 3:0:0:0: [sda] Attached SCSI disk
[ 2.373803] e1000e 0000:07:00.0 enp7s0f0: renamed from eth0
[ 2.380402] random: fast init done
[ 2.415488] usbcore: registered new interface driver usbhid
[ 2.415495] usbhid: USB HID core driver
[ 2.418993] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/0003:046D:C31C.0001/input/input2
[ 2.475385] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.1-1/input0
[ 2.475785] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.1/0003:046D:C31C.0002/input/input3
[ 2.535332] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.1/0003:046D:C31C.0002/input/input4
[ 2.535440] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.1-1/input1
[ 2.535716] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.4/1-1.4:1.0/0003:046D:C05B.0003/input/input5
[ 2.535842] hid-generic 0003:046D:C05B.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.7-1.4/input0
[ 2.579242] usb 4-2: new full-speed USB device number 2 using uhci_hcd
[ 2.799255] usb 4-2: New USB device found, idVendor=05ac, idProduct=1000, bcdDevice=19.65
[ 2.799264] usb 4-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.804302] usbhid 4-2:1.0: couldn't find an input interrupt endpoint
[ 2.804311] fbcon: Taking over console
[ 3.669578] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 4.540338] random: crng init done
[ 7.323438] systemd[1]: Inserted module 'autofs4'
[ 9.125113] systemd[1]: systemd 249.11-0ubuntu3.3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 9.143305] systemd[1]: Detected architecture x86-64.
[ 9.382694] systemd[1]: Hostname set to <gg-Linux>.
[ 11.061081] systemd-fstab-generator[307]: Mount point -t is not a valid path, ignoring.
[ 13.442255] systemd[1]: Queued start job for default target Graphical Interface.
[ 13.443741] systemd[1]: Created slice Slice /system/modprobe.
[ 13.444185] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 13.444526] systemd[1]: Created slice User and Session Slice.
[ 13.444627] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 13.444865] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 13.444944] systemd[1]: Reached target User and Group Name Lookups.
[ 13.444968] systemd[1]: Reached target Remote File Systems.
[ 13.444985] systemd[1]: Reached target Slice Units.
[ 13.445020] systemd[1]: Reached target Local Verity Protected Volumes.
[ 13.445291] systemd[1]: Listening on Syslog Socket.
[ 13.445431] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 13.445506] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 13.445794] systemd[1]: Listening on Journal Audit Socket.
[ 13.445923] systemd[1]: Listening on Journal Socket (/dev/log).
[ 13.446077] systemd[1]: Listening on Journal Socket.
[ 13.455231] systemd[1]: Listening on udev Control Socket.
[ 13.455371] systemd[1]: Listening on udev Kernel Socket.
[ 13.456427] systemd[1]: Mounting Huge Pages File System...
[ 13.457525] systemd[1]: Mounting POSIX Message Queue File System...
[ 13.458784] systemd[1]: Mounting Kernel Debug File System...
[ 13.459951] systemd[1]: Mounting Kernel Trace File System...
[ 13.462105] systemd[1]: Starting Journal Service...
[ 13.463417] systemd[1]: Starting Set the console keyboard layout...
[ 13.464591] systemd[1]: Starting Create List of Static Device Nodes...
[ 13.465929] systemd[1]: Starting Load Kernel Module configfs...
[ 13.467299] systemd[1]: Starting Load Kernel Module drm...
[ 13.468717] systemd[1]: Starting Load Kernel Module fuse...
[ 13.468958] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 13.480524] systemd[1]: Starting Load Kernel Modules...
[ 13.481630] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 13.482769] systemd[1]: Starting Coldplug All udev Devices...
[ 13.487394] systemd[1]: Mounted Huge Pages File System.
[ 13.487551] systemd[1]: Mounted POSIX Message Queue File System.
[ 13.487685] systemd[1]: Mounted Kernel Debug File System.
[ 13.489336] systemd[1]: Mounted Kernel Trace File System.
[ 13.496715] systemd[1]: Finished Create List of Static Device Nodes.
[ 13.530266] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 13.530583] systemd[1]: Finished Load Kernel Module configfs.
[ 13.530990] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 13.531304] systemd[1]: Finished Load Kernel Module fuse.
[ 13.532566] systemd[1]: Mounting FUSE Control File System...
[ 13.533748] systemd[1]: Mounting Kernel Configuration File System...
[ 13.535991] systemd[1]: Mounted FUSE Control File System.
[ 13.537245] systemd[1]: Mounted Kernel Configuration File System.
[ 13.683094] systemd[1]: Finished Coldplug All udev Devices.
[ 13.721441] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 13.721749] systemd[1]: Finished Load Kernel Module drm.
[ 13.832687] systemd[1]: Started Journal Service.
[ 13.838677] EXT4-fs (sdb2): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[ 13.892357] systemd-journald[323]: Received client request to flush runtime journal.
[ 13.988956] lp: driver loaded but no devices found
[ 14.084767] Adding 2097148k swap on /swapfile. Priority:-2 extents:6 across:2260988k FS
[ 14.088717] ppdev: user-space parallel port driver
[ 14.493981] IPMI message handler: version 39.2
[ 14.495805] ipmi device interface
[ 15.072797] loop0: detected capacity change from 0 to 8
[ 15.091049] loop1: detected capacity change from 0 to 151760
[ 15.171598] loop2: detected capacity change from 0 to 151760
[ 15.227009] loop3: detected capacity change from 0 to 55568
[ 15.327445] loop4: detected capacity change from 0 to 233240
[ 15.357262] loop5: detected capacity change from 0 to 233448
[ 15.359067] loop6: detected capacity change from 0 to 113736
[ 15.501695] loop7: detected capacity change from 0 to 126760
[ 15.580240] loop8: detected capacity change from 0 to 126824
[ 15.581785] loop9: detected capacity change from 0 to 7792
[ 15.624556] loop10: detected capacity change from 0 to 330816
[ 15.626233] loop11: detected capacity change from 0 to 337424
[ 15.628124] loop12: detected capacity change from 0 to 520384
[ 15.629278] loop13: detected capacity change from 0 to 820832
[ 15.632762] loop14: detected capacity change from 0 to 330792
[ 15.657898] loop15: detected capacity change from 0 to 166424
[ 15.659496] loop16: detected capacity change from 0 to 187776
[ 15.681126] loop17: detected capacity change from 0 to 533936
[ 15.715097] loop18: detected capacity change from 0 to 868688
[ 15.825842] loop19: detected capacity change from 0 to 362344
[ 16.014492] loop20: detected capacity change from 0 to 93920
[ 16.017528] loop21: detected capacity change from 0 to 98184
[ 16.041874] loop22: detected capacity change from 0 to 93928
[ 16.046988] loop23: detected capacity change from 0 to 1158104
[ 16.083944] loop24: detected capacity change from 0 to 98176
[ 16.085872] loop25: detected capacity change from 0 to 568
[ 16.087216] loop26: detected capacity change from 0 to 568
[ 16.172975] loop27: detected capacity change from 0 to 605624
[ 19.344805] intel_rng: FWH not detected
[ 19.459281] i5k_amb: probe of i5k_amb.0 failed with error -16
[ 19.477448] pstore: Using crash dump compression: deflate
[ 19.477461] pstore: Registered efi as persistent store backend
[ 19.744503] EDAC MC0: Giving out device to module i5400_edac.c controller I5400: DEV 0000:00:10.0 (POLLED)
[ 19.744522] EDAC PCI0: Giving out device to module i5400_edac controller EDAC PCI controller: DEV 0000:00:10.0 (POLLED)
[ 19.786227] usb 4-2: usbfs: USBDEVFS_CONTROL failed cmd hid2hci rqt 64 rq 0 len 0 ret -84
[ 19.963289] usb 4-2: USB disconnect, device number 2
[ 20.063050] usbcore: registered new device driver apple-mfi-fastcharge
[ 20.251150] applesmc: key=274 fan=4 temp=40 index=40 acc=1 lux=0 kbd=0
[ 20.251935] input: applesmc as /devices/platform/applesmc.768/input/input6
[ 20.252032] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 20.359235] usb 4-2: new full-speed USB device number 3 using uhci_hcd
[ 20.581219] usb 4-2: New USB device found, idVendor=05ac, idProduct=8206, bcdDevice=19.65
[ 20.581229] usb 4-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 20.677021] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 20.677391] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 21.659829] intel_powerclamp: No package C-state available
[ 21.735676] intel_powerclamp: No package C-state available
[ 21.783946] intel_powerclamp: No package C-state available
[ 21.855559] intel_powerclamp: No package C-state available
[ 21.907613] intel_powerclamp: No package C-state available
[ 21.955498] intel_powerclamp: No package C-state available
[ 21.999540] intel_powerclamp: No package C-state available
[ 22.043540] intel_powerclamp: No package C-state available
[ 22.278377] [drm] radeon kernel modesetting enabled.
[ 22.278493] radeon 0000:01:00.0: vgaarb: deactivate vga console
[ 22.278873] [drm] initializing kernel modesetting (RV630 0x1002:0x9588 0x106B:0x00A6 0x00).
[ 22.278938] radeon 0000:01:00.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0xd52a
[ 22.301867] Bluetooth: Core ver 2.22
[ 22.301917] NET: Registered PF_BLUETOOTH protocol family
[ 22.301920] Bluetooth: HCI device and connection manager initialized
[ 22.301926] Bluetooth: HCI socket layer initialized
[ 22.301929] Bluetooth: L2CAP socket layer initialized
[ 22.301935] Bluetooth: SCO socket layer initialized
[ 22.326658] b43-phy0: Broadcom 4321 WLAN found (core revision 12)
[ 22.367237] b43-phy0: Found PHY: Analog 5, Type 4 (N), Revision 2
[ 22.367264] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2055, Revision 4, Version 0
[ 22.383361] b43 ssb0:0: Direct firmware load for b43/ucode11.fw failed with error -2
[ 22.383389] b43 ssb0:0: Direct firmware load for b43/ucode11.fw failed with error -2
[ 22.383479] Broadcom 43xx driver loaded [ Features: PNL ]
[ 22.383530] b43 ssb0:0: Direct firmware load for b43-open/ucode11.fw failed with error -2
[ 22.383555] b43 ssb0:0: Direct firmware load for b43-open/ucode11.fw failed with error -2
[ 22.383559] b43-phy0 ERROR: Firmware file "b43/ucode11.fw" not found
[ 22.383567] b43-phy0 ERROR: Firmware file "b43-open/ucode11.fw" not found
[ 22.383570] b43-phy0 ERROR: You must go to https://wireless.wiki.kernel.org/en/...devicefirmware and download the correct firmware for this driver version. Please carefully read all instructions on this website.
[ 22.414583] ATOM BIOS: 113
[ 22.414613] radeon 0000:01:00.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
[ 22.414618] radeon 0000:01:00.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
[ 22.414626] [drm] Detected VRAM RAM=256M, BAR=256M
[ 22.414627] [drm] RAM width 128bits DDR
[ 22.414673] [drm] radeon: 256M of VRAM memory ready
[ 22.414675] [drm] radeon: 512M of GTT memory ready.
[ 22.414685] [drm] Loading RV630 Microcode
[ 22.648025] [drm] Internal thermal controller with fan control
[ 22.648216] [drm] radeon: power management initialized
[ 22.828228] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 22.828940] [drm] PCIE gen 2 link speeds already enabled
[ 22.842005] [drm] PCIE GART of 512M enabled (table at 0x0000000000142000).
[ 22.842041] radeon 0000:01:00.0: WB enabled
[ 22.842045] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000010000c00
[ 22.842333] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x00000000000521d0
[ 22.842439] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[ 22.842500] radeon 0000:01:00.0: radeon: using MSI.
[ 22.842536] [drm] radeon: irq initialized.
[ 22.842689] usbcore: registered new interface driver btusb
[ 22.844218] Bluetooth: hci0: unexpected event for opcode 0x0000
[ 22.874095] [drm] ring test on 0 succeeded in 1 usecs
[ 23.048773] [drm] ring test on 5 succeeded in 1 usecs
[ 23.048784] [drm] UVD initialized successfully.
[ 23.049072] [drm] ib test on ring 0 succeeded in 0 usecs
[ 23.707252] [drm] ib test on ring 5 succeeded
[ 23.707977] [drm] Radeon Display Connectors
[ 23.707979] [drm] Connector 0:
[ 23.707980] [drm] DIN-1
[ 23.707981] [drm] Encoders:
[ 23.707983] [drm] TV1: INTERNAL_KLDSCP_DAC2
[ 23.707984] [drm] Connector 1:
[ 23.707985] [drm] DVI-I-1
[ 23.707986] [drm] HPD1
[ 23.707986] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[ 23.707989] [drm] Encoders:
[ 23.707990] [drm] CRT2: INTERNAL_KLDSCP_DAC2
[ 23.707991] [drm] DFP1: INTERNAL_KLDSCP_TMDS1
[ 23.707992] [drm] Connector 2:
[ 23.707993] [drm] DVI-I-2
[ 23.707994] [drm] HPD2
[ 23.707995] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[ 23.707997] [drm] Encoders:
[ 23.707998] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 23.707999] [drm] DFP2: INTERNAL_LVTM1
[ 23.788552] [drm] fb mappable at 0x80243000
[ 23.788555] [drm] vram apper at 0x80000000
[ 23.788557] [drm] size 5242880
[ 23.788558] [drm] fb depth is 24
[ 23.788560] [drm] pitch is 5120
[ 23.788628] fbcon: radeondrmfb (fb0) is primary device
[ 23.790282] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[ 23.859796] Console: switching to colour frame buffer device 160x64
[ 23.863414] radeon 0000:01:00.0: [drm] fb0: radeondrmfb frame buffer device
[ 23.895252] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 0
[ 24.367875] snd_hda_codec_realtek hdaudioC0D0: ALC889A: SKU not ready 0x400000f0
[ 24.368184] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC889A: line_outs=1 (0x15/0x0/0x0/0x0/0x0) type:line
[ 24.368189] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=1 (0x1a/0x0/0x0/0x0/0x0)
[ 24.368192] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x18/0x0/0x0/0x0/0x0)
[ 24.368195] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 24.368197] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 24.368199] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 24.368201] snd_hda_codec_realtek hdaudioC0D0: Line=0x19
[ 24.368203] snd_hda_codec_realtek hdaudioC0D0: dig-in=0x1f
[ 24.392960] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 24.393121] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 24.641667] audit: type=1400 audit(1657623846.370:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=609 comm="apparmor_parser"
[ 24.648370] audit: type=1400 audit(1657623846.378:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=603 comm="apparmor_parser"
[ 24.648377] audit: type=1400 audit(1657623846.378:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=603 comm="apparmor_parser"
[ 24.648746] audit: type=1400 audit(1657623846.378:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=606 comm="apparmor_parser"
[ 24.648751] audit: type=1400 audit(1657623846.378:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=606 comm="apparmor_parser"
[ 24.648756] audit: type=1400 audit(1657623846.378:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=606 comm="apparmor_parser"
[ 24.652210] audit: type=1400 audit(1657623846.382:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oosplash" pid=608 comm="apparmor_parser"
[ 24.653029] audit: type=1400 audit(1657623846.382:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=715 comm="apparmor_parser"
[ 24.852804] audit: type=1400 audit(1657623846.582:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=602 comm="apparmor_parser"
[ 24.967396] audit: type=1400 audit(1657623846.698:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=716 comm="apparmor_parser"
[ 31.228773] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 31.228782] Bluetooth: BNEP filters: protocol multicast
[ 31.228788] Bluetooth: BNEP socket layer initialized
[ 34.281040] kauditd_printk_skb: 49 callbacks suppressed
[ 34.281048] audit: type=1400 audit(1657623856.010:61): apparmor="DENIED" operation="capable" profile="/usr/sbin/cupsd" pid=872 comm="cupsd" capability=12 capname="net_admin"
[ 37.036205] e1000e 0000:07:00.0 enp7s0f0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 37.036726] IPv6: ADDRCONF(NETDEV_CHANGE): enp7s0f0: link becomes ready
[ 38.535526] loop28: detected capacity change from 0 to 8
[ 41.845812] audit: type=1400 audit(1657623863.574:62): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=1042 comm="cups-browsed" capability=23 capname="sys_nice"
[ 47.406333] audit: type=1400 audit(1657623869.134:63): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1110 comm="apparmor_parser"
[ 47.406348] audit: type=1400 audit(1657623869.134:64): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/snapd/16499/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1110 comm="apparmor_parser"
[ 47.725543] audit: type=1400 audit(1657623869.454:65): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/13425/usr/lib/snapd/snap-confine" pid=1113 comm="apparmor_parser"
[ 47.725560] audit: type=1400 audit(1657623869.454:66): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/13425/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1113 comm="apparmor_parser"
[ 48.648997] audit: type=1400 audit(1657623870.378:67): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.falkon" pid=1119 comm="apparmor_parser"
[ 49.634080] audit: type=1400 audit(1657623871.362:68): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.bitwarden" pid=1116 comm="apparmor_parser"
[ 49.640115] audit: type=1400 audit(1657623871.370:69): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.krita" pid=1120 comm="apparmor_parser"
[ 49.863411] audit: type=1400 audit(1657623871.594:70): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.firefox" pid=1117 comm="apparmor_parser"
[ 49.967631] audit: type=1400 audit(1657623871.698:71): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snap-store" pid=1115 comm="apparmor_parser"
[ 50.134290] audit: type=1400 audit(1657623871.862:72): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snapd-desktop-integration" pid=1118 comm="apparmor_parser"
[ 54.271512] kauditd_printk_skb: 23 callbacks suppressed
[ 54.271519] audit: type=1400 audit(1657623876.002:96): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1222 comm="snap-confine" capability=12 capname="net_admin"
[ 54.271537] audit: type=1400 audit(1657623876.002:97): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1222 comm="snap-confine" capability=38 capname="perfmon"
[ 54.770475] audit: type=1400 audit(1657623876.498:98): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1274 comm="snap-confine" capability=12 capname="net_admin"
[ 54.770493] audit: type=1400 audit(1657623876.498:99): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1274 comm="snap-confine" capability=38 capname="perfmon"
[ 55.275739] audit: type=1400 audit(1657623877.006:100): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1348 comm="snap-confine" capability=12 capname="net_admin"
[ 55.275756] audit: type=1400 audit(1657623877.006:101): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1348 comm="snap-confine" capability=38 capname="perfmon"
[ 68.365387] rfkill: input handler disabled
[ 83.022352] audit: type=1400 audit(1657623904.788:102): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1629 comm="snap-confine" capability=12 capname="net_admin"
[ 83.022404] audit: type=1400 audit(1657623904.788:103): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=1629 comm="snap-confine" capability=38 capname="perfmon"
[ 83.634946] rfkill: input handler enabled
[ 83.662657] Bluetooth: RFCOMM TTY layer initialized
[ 83.662674] Bluetooth: RFCOMM socket layer initialized
[ 83.662682] Bluetooth: RFCOMM ver 1.11
[ 90.423073] rfkill: input handler disabled
[ 93.225401] audit: type=1400 audit(1657623914.992:104): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=2145 comm="snap-confine" capability=4 capname="fsetid"
[ 93.943585] audit: type=1326 audit(1657623915.712:105): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=1629 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/14/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fdc32c0b73d code=0x50000
[ 100.522769] audit: type=1326 audit(1657623922.293:106): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=2145 comm="snap-store" exe="/snap/snap-store/582/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f4a3ebe873d code=0x50000
[ 104.014477] audit: type=1107 audit(1657623925.786:107): pid=782 uid=102 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.9" pid=2145 label="snap.snap-store.ubuntu-software" peer_pid=803 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 104.014492] audit: type=1420 audit(1657623925.786:108): subj_apparmor=unconfined
[ 104.014947] audit: type=1107 audit(1657623925.786:109): pid=782 uid=102 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.PolicyKit1.Authority" member="CheckAuthorization" mask="send" name=":1.9" pid=2145 label="snap.snap-store.ubuntu-software" peer_pid=803 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 104.014954] audit: type=1420 audit(1657623925.786:110): subj_apparmor=unconfined
[ 104.018975] audit: type=1107 audit(1657623925.790:111): pid=782 uid=102 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.9" pid=2145 label="snap.snap-store.ubuntu-software" peer_pid=803 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 104.018986] audit: type=1420 audit(1657623925.790:112): subj_apparmor=unconfined
[ 104.019374] audit: type=1107 audit(1657623925.790:113): pid=782 uid=102 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.PolicyKit1.Authority" member="CheckAuthorization" mask="send" name=":1.9" pid=2145 label="snap.snap-store.ubuntu-software" peer_pid=803 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 104.019381] audit: type=1420 audit(1657623925.790:114): subj_apparmor=unconfined
[ 104.955416] audit: type=1400 audit(1657623926.730:115): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/etc/PackageKit/Vendor.conf" pid=2145 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 106.133672] audit: type=1400 audit(1657623927.902:116): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/etc/appstream.conf" pid=2145 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 124.103152] audit: type=1326 audit(1657623945.875:117): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=2145 comm="pool-org.gnome." exe="/snap/snap-store/582/usr/bin/snap-store" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7f4a3ebdf39b code=0x50000
[ 125.028764] audit: type=1400 audit(1657623946.799:118): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=2796 comm="snap-confine" capability=12 capname="net_admin"
[ 125.028781] audit: type=1400 audit(1657623946.799:119): apparmor="DENIED" operation="capable" profile="/snap/snapd/16499/usr/lib/snapd/snap-confine" pid=2796 comm="snap-confine" capability=38 capname="perfmon"
[ 125.247651] audit: type=1326 audit(1657623947.019:120): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=2796 comm="snap-store" exe="/snap/snap-store/582/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f1dce92573d code=0x50000
[ 372.236543] systemd-fstab-generator[3199]: Mount point -t is not a valid path, ignoring.
[ 372.607839] loop28: detected capacity change from 0 to 98176
[ 376.453911] audit: type=1400 audit(1657624198.228:121): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/16522/usr/lib/snapd/snap-confine" pid=3246 comm="apparmor_parser"
[ 376.455092] audit: type=1400 audit(1657624198.228:122): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/16522/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3246 comm="apparmor_parser"
[ 377.282553] audit: type=1400 audit(1657624199.056:123): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.vlc" pid=3253 comm="apparmor_parser"
[ 377.817228] audit: type=1400 audit(1657624199.592:124): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.falkon" pid=3248 comm="apparmor_parser"
[ 378.405324] audit: type=1400 audit(1657624200.180:125): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.krita" pid=3250 comm="apparmor_parser"
[ 379.009191] audit: type=1400 audit(1657624200.784:126): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.firefox" pid=3249 comm="apparmor_parser"
[ 379.113533] audit: type=1400 audit(1657624200.888:127): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snap-store" pid=3251 comm="apparmor_parser"
[ 379.262971] audit: type=1400 audit(1657624201.036:128): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snapd-desktop-integration" pid=3252 comm="apparmor_parser"
[ 379.282210] audit: type=1400 audit(1657624201.056:129): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.bitwarden" pid=3255 comm="apparmor_parser"
[ 379.288350] audit: type=1400 audit(1657624201.060:130): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.falkon.hook.configure" pid=3258 comm="apparmor_parser"
[ 382.821041] loop29: detected capacity change from 0 to 8
[ 383.974015] kauditd_printk_skb: 14 callbacks suppressed
[ 383.974021] audit: type=1400 audit(1657624205.749:145): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/snap/snapd/16522/usr/lib/snapd/snap-confine" pid=3355 comm="apparmor_parser"
[ 384.004629] audit: type=1400 audit(1657624205.781:146): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/snap/snapd/16522/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3355 comm="apparmor_parser"
[ 384.017896] audit: type=1400 audit(1657624205.793:147): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/13425/usr/lib/snapd/snap-confine" pid=3357 comm="apparmor_parser"
[ 384.017906] audit: type=1400 audit(1657624205.793:148): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/13425/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3357 comm="apparmor_parser"
[ 385.261908] audit: type=1400 audit(1657624207.037:149): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.falkon" pid=3360 comm="apparmor_parser"
[ 385.888035] audit: type=1400 audit(1657624207.661:150): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.krita" pid=3361 comm="apparmor_parser"
[ 386.143199] audit: type=1400 audit(1657624207.917:151): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.bitwarden" pid=3363 comm="apparmor_parser"
[ 386.704077] audit: type=1400 audit(1657624208.477:152): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snap-store" pid=3364 comm="apparmor_parser"
[ 386.839139] audit: type=1400 audit(1657624208.613:153): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.firefox" pid=3359 comm="apparmor_parser"
[ 386.864916] audit: type=1400 audit(1657624208.641:154): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.snapd-desktop-integration" pid=3362 comm="apparmor_parser"
[ 389.904034] systemd-fstab-generator[3416]: Mount point -t is not a valid path, ignoring.
[ 610.252128] kauditd_printk_skb: 20 callbacks suppressed
[ 610.252135] audit: type=1400 audit(1657624432.029:175): apparmor="DENIED" operation="capable" profile="/snap/snapd/16522/usr/lib/snapd/snap-confine" pid=3459 comm="snap-confine" capability=12 capname="net_admin"
[ 610.259172] audit: type=1400 audit(1657624432.033:176): apparmor="DENIED" operation="capable" profile="/snap/snapd/16522/usr/lib/snapd/snap-confine" pid=3459 comm="snap-confine" capability=4 capname="fsetid"
[ 610.383589] audit: type=1400 audit(1657624432.157:177): apparmor="DENIED" operation="mkdir" profile="snap-update-ns.firefox" name="/usr/share/cups/doc-root/" pid=3487 comm="5" requested_mask="c" denied_mask="c" fsuid=0 ouid=0
[ 610.384831] audit: type=1400 audit(1657624432.157:178): apparmor="DENIED" operation="mkdir" profile="snap-update-ns.firefox" name="/usr/share/gimp/2.0/" pid=3487 comm="5" requested_mask="c" denied_mask="c" fsuid=0 ouid=0
[ 610.384843] audit: type=1400 audit(1657624432.161:179): apparmor="DENIED" operation="mkdir" profile="snap-update-ns.firefox" name="/usr/share/libreoffice/help/" pid=3487 comm="5" requested_mask="c" denied_mask="c" fsuid=0 ouid=0
[ 610.384847] audit: type=1400 audit(1657624432.161:180): apparmor="DENIED" operation="open" profile="snap-update-ns.firefox" name="/var/lib/" pid=3487 comm="5" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 617.485579] audit: type=1326 audit(1657624439.261:181): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=3459 comm="firefox" exe="/snap/firefox/1551/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f43e231273d code=0x50000
[ 747.431502] usb 1-5: new high-speed USB device number 7 using ehci-pci
[ 747.589240] usb 1-5: New USB device found, idVendor=174c, idProduct=55aa, bcdDevice= 1.00
[ 747.589245] usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 747.589248] usb 1-5: Product: USB3.0
[ 747.589250] usb 1-5: Manufacturer: ASMT
[ 747.589252] usb 1-5: SerialNumber: 000000000001
[ 747.666323] usbcore: registered new interface driver usb-storage
[ 747.690776] scsi host8: uas
[ 747.690930] usbcore: registered new interface driver uas
[ 768.407444] scsi 8:0:0:0: tag#4 uas_eh_abort_handler 0 uas-tag 1 inflight: CMD
[ 768.407454] scsi 8:0:0:0: tag#4 CDB: Inquiry 12 00 00 00 24 00
[ 768.431454] scsi host8: uas_eh_device_reset_handler start
[ 768.559438] usb 1-5: reset high-speed USB device number 7 using ehci-pci
[ 773.899419] usb 1-5: device descriptor read/64, error -110
[ 789.515378] usb 1-5: device descriptor read/64, error -110
[ 789.751374] usb 1-5: reset high-speed USB device number 7 using ehci-pci
[ 794.891360] usb 1-5: device descriptor read/64, error -110
[ 810.507315] usb 1-5: device descriptor read/64, error -110
[ 810.743315] usb 1-5: reset high-speed USB device number 7 using ehci-pci
[ 821.343284] usb 1-5: device not accepting address 7, error -110
[ 821.475280] usb 1-5: reset high-speed USB device number 7 using ehci-pci
[ 822.618143] audit: type=1326 audit(1657624644.390:182): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=4868 comm="firefox" exe="/snap/firefox/1551/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7efe6e62273d code=0x50000
[ 832.091259] usb 1-5: device not accepting address 7, error -110
[ 832.091326] scsi host8: uas_eh_device_reset_handler FAILED err -19
[ 832.091333] scsi 8:0:0:0: Device offlined - not ready after error recovery
[ 832.091371] usb 1-5: USB disconnect, device number 7
[ 832.239250] usb 1-5: new high-speed USB device number 8 using ehci-pci
[ 837.387239] usb 1-5: device descriptor read/64, error -110
[ 853.003189] usb 1-5: device descriptor read/64, error -110
[ 853.239192] usb 1-5: new high-speed USB device number 9 using ehci-pci
[ 858.383174] usb 1-5: device descriptor read/64, error -110
[ 873.999124] usb 1-5: device descriptor read/64, error -110
[ 874.107137] usb usb1-port5: attempt power cycle
[ 874.551120] usb 1-5: new high-speed USB device number 10 using ehci-pci
[ 885.339091] usb 1-5: device not accepting address 10, error -110
[ 885.467090] usb 1-5: new high-speed USB device number 11 using ehci-pci
[ 896.091059] usb 1-5: device not accepting address 11, error -110
[ 896.091101] usb usb1-port5: unable to enumerate USB device
[ 896.579056] usb 4-1: new full-speed USB device number 4 using uhci_hcd
[ 912.139011] usb 4-1: device descriptor read/64, error -110
[ 927.754965] usb 4-1: device descriptor read/64, error -110
[ 927.994961] usb 4-1: new full-speed USB device number 5 using uhci_hcd
[ 943.374918] usb 4-1: device descriptor read/64, error -110
[ 958.990870] usb 4-1: device descriptor read/64, error -110
[ 959.098886] usb usb4-port1: attempt power cycle
[ 959.098897] usb usb4-port1: failed to disable port power
[ 959.226868] usb 4-1: new full-speed USB device number 6 using uhci_hcd
[ 969.822838] usb 4-1: device not accepting address 6, error -110
[ 969.954848] usb 4-1: new full-speed USB device number 7 using uhci_hcd
[ 980.570806] usb 4-1: device not accepting address 7, error -110
[ 980.570844] usb usb4-port1: unable to enumerate USB device
[ 1536.702407] usb 1-5: new high-speed USB device number 12 using ehci-pci
[ 1536.860387] usb 1-5: New USB device found, idVendor=174c, idProduct=55aa, bcdDevice= 1.00
[ 1536.860392] usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 1536.860395] usb 1-5: Product: USB3.0
[ 1536.860397] usb 1-5: Manufacturer: ASMT
[ 1536.860399] usb 1-5: SerialNumber: 000000000001
[ 1536.861740] scsi host8: uas
[ 1557.394304] scsi 8:0:0:0: tag#20 uas_eh_abort_handler 0 uas-tag 1 inflight: CMD
[ 1557.394316] scsi 8:0:0:0: tag#20 CDB: Inquiry 12 00 00 00 24 00
[ 1557.426309] scsi host8: uas_eh_device_reset_handler start
[ 1557.554293] usb 1-5: reset high-speed USB device number 12 using ehci-pci
[ 1562.886266] usb 1-5: device descriptor read/64, error -110
[ 1578.506186] usb 1-5: device descriptor read/64, error -110
[ 1578.746178] usb 1-5: reset high-speed USB device number 12 using ehci-pci
[ 1583.878155] usb 1-5: device descriptor read/64, error -110
[ 1599.494074] usb 1-5: device descriptor read/64, error -110
[ 1599.730069] usb 1-5: reset high-speed USB device number 12 using ehci-pci
[ 1610.326019] usb 1-5: device not accepting address 12, error -110
[ 1610.454017] usb 1-5: reset high-speed USB device number 12 using ehci-pci
[ 1621.077960] usb 1-5: device not accepting address 12, error -110
[ 1621.078007] scsi host8: uas_eh_device_reset_handler FAILED err -19
[ 1621.078013] scsi 8:0:0:0: Device offlined - not ready after error recovery
[ 1621.078046] usb 1-5: USB disconnect, device number 12
[ 1621.085312] ISOFS: Unable to identify CD-ROM format.
[ 1621.225967] usb 1-5: new high-speed USB device number 13 using ehci-pci
[ 1626.373935] usb 1-5: device descriptor read/64, error -110
[ 1641.993858] usb 1-5: device descriptor read/64, error -110
[ 1642.229854] usb 1-5: new high-speed USB device number 14 using ehci-pci
[ 1647.365834] usb 1-5: device descriptor read/64, error -110
[ 1662.985754] usb 1-5: device descriptor read/64, error -110
[ 1663.093768] usb usb1-port5: attempt power cycle
[ 1663.545753] usb 1-5: new high-speed USB device number 15 using ehci-pci
[ 1674.325696] usb 1-5: device not accepting address 15, error -110
[ 1674.453695] usb 1-5: new high-speed USB device number 16 using ehci-pci
[ 1685.077644] usb 1-5: device not accepting address 16, error -110
[ 1685.077685] usb usb1-port5: unable to enumerate USB device
[ 1685.361655] usb 4-1: new full-speed USB device number 8 using uhci_hcd
[ 1700.869567] usb 4-1: device descriptor read/64, error -110
[ 1716.485493] usb 4-1: device descriptor read/64, error -110
[ 1716.721488] usb 4-1: new full-speed USB device number 9 using uhci_hcd
[ 1732.101418] usb 4-1: device descriptor read/64, error -110
[ 1747.717346] usb 4-1: device descriptor read/64, error -110
[ 1747.825355] usb usb4-port1: attempt power cycle
[ 1747.825365] usb usb4-port1: failed to disable port power
[ 1747.953343] usb 4-1: new full-speed USB device number 10 using uhci_hcd
[ 1758.549292] usb 4-1: device not accepting address 10, error -110
[ 1758.681292] usb 4-1: new full-speed USB device number 11 using uhci_hcd
[ 1769.301240] usb 4-1: device not accepting address 11, error -110
[ 1769.301280] usb usb4-port1: unable to enumerate USB device
[ 2537.517115] perf: interrupt took too long (2510 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
[ 3259.270421] audit: type=1400 audit(1657627081.061:183): apparmor="DENIED" operation="capable" profile="/snap/snapd/16522/usr/lib/snapd/snap-confine" pid=7245 comm="snap-confine" capability=12 capname="net_admin"
[ 3259.726035] audit: type=1326 audit(1657627081.517:184): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=7245 comm="firefox" exe="/snap/firefox/1551/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f2201ac773d code=0x50000
[ 3602.557817] usb 1-5: new high-speed USB device number 17 using ehci-pci
[ 3602.715708] usb 1-5: New USB device found, idVendor=174c, idProduct=55aa, bcdDevice= 1.00
[ 3602.715713] usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 3602.715716] usb 1-5: Product: USB3.0
[ 3602.715718] usb 1-5: Manufacturer: ASMT
[ 3602.715720] usb 1-5: SerialNumber: 000000000001
[ 3602.717183] scsi host8: uas
[ 3602.719342] scsi 8:0:0:0: Direct-Access ASMT USB3.0 0 PQ: 0 ANSI: 6
[ 3602.722705] sd 8:0:0:0: Attached scsi generic sg3 type 0
[ 3602.726347] sd 8:0:0:0: [sdd] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[ 3602.726839] sd 8:0:0:0: [sdd] Write Protect is off
[ 3602.726844] sd 8:0:0:0: [sdd] Mode Sense: 43 00 00 00
[ 3602.727588] sd 8:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3602.728463] sd 8:0:0:0: [sdd] Optimal transfer size 33553920 bytes
[ 3602.768351] sdd: sdd1
[ 3602.820967] sd 8:0:0:0: [sdd] Attached SCSI disk
[ 3603.218150] EXT4-fs (sdd1): mounted filesystem with ordered data mode. Opts: errors=remount-ro. Quota mode: none.
[ 3626.769751] EXT4-fs (sdd1): mounted filesystem with ordered data mode. Opts: errors=remount-ro. Quota mode: none.
[ 3645.512789] usb 1-5: USB disconnect, device number 17
[ 3645.557721] sd 8:0:0:0: [sdd] Synchronizing SCSI cache
[ 3645.809624] sd 8:0:0:0: [sdd] Synchronize Cache(10) failed: Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK
[ 3985.407851] perf: interrupt took too long (3142 > 3137), lowering kernel.perf_event_max_sample_rate to 63500
[ 4289.915904] audit: type=1400 audit(1657628111.712:185): apparmor="DENIED" operation="capable" profile="/snap/snapd/16522/usr/lib/snapd/snap-confine" pid=9218 comm="snap-confine" capability=12 capname="net_admin"
[ 4290.379955] audit: type=1326 audit(1657628112.176:186): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=9218 comm="firefox" exe="/snap/firefox/1551/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fdc241b973d code=0x50000
[ 5777.852514] perf: interrupt took too long (3934 > 3927), lowering kernel.perf_event_max_sample_rate to 50750
[11020.070568] audit: type=1326 audit(1657634841.916:187): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=12397 comm="firefox" exe="/snap/firefox/1551/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fc9a360773d code=0x50000
[11212.644119] audit: type=1326 audit(1657635034.494:188): auid=1000 uid=1000 gid=1000 ses=3 subj=? pid=13926 comm="firefox" exe="/snap/firefox/1551/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f96705b273d code=0x50000
[13897.168810] perf: interrupt took too long (4919 > 4917), lowering kernel.perf_event_max_sample_rate to 40500
[20461.379001] usb 1-5: new high-speed USB device number 18 using ehci-pci
[20461.537077] usb 1-5: New USB device found, idVendor=174c, idProduct=55aa, bcdDevice= 1.00
[20461.537088] usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[20461.537090] usb 1-5: Product: USB3.0
[20461.537093] usb 1-5: Manufacturer: ASMT
[20461.537094] usb 1-5: SerialNumber: 000000000001
[20461.539426] scsi host8: uas
[20482.066857] scsi 8:0:0:0: tag#16 uas_eh_abort_handler 0 uas-tag 1 inflight: CMD
[20482.066869] scsi 8:0:0:0: tag#16 CDB: Inquiry 12 00 00 00 24 00
[20482.082861] scsi host8: uas_eh_device_reset_handler start
[20482.210845] usb 1-5: reset high-speed USB device number 18 using ehci-pci
[20487.566810] usb 1-5: device descriptor read/64, error -110
[20503.178659] usb 1-5: device descriptor read/64, error -110
[20503.418661] usb 1-5: reset high-speed USB device number 18 using ehci-pci
[20508.558610] usb 1-5: device descriptor read/64, error -110
(base) root@gg-Linux:/home/gg |
Partager