Paste #267693

   
pasted on 02.01.2023 13:21
  • Edit to this paste
  • Print
  • Raw
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
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
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
[    0.120496] 0xfffffffef76a7000-0xfffffffef76b5000          56K                               pte
[    0.120498] 0xfffffffef76b5000-0xfffffffef76bd000          32K                               pte
[    0.120500] 0xfffffffef76bd000-0xfffffffef76d9000         112K                               pte
[    0.120502] 0xfffffffef76d9000-0xfffffffef76e2000          36K                               pte
[    0.120505] 0xfffffffef76e2000-0xfffffffef76f8000          88K                               pte
[    0.120508] 0xfffffffef76f8000-0xfffffffef7711000         100K                               pte
[    0.120509] 0xfffffffef7711000-0xfffffffef7712000           4K                               pte
[    0.120511] 0xfffffffef7712000-0xfffffffef7713000           4K                               pte
[    0.120513] 0xfffffffef7713000-0xfffffffef7714000           4K                               pte
[    0.120515] 0xfffffffef7714000-0xfffffffef7720000          48K                               pte
[    0.120517] 0xfffffffef7720000-0xfffffffef7723000          12K                               pte
[    0.120518] 0xfffffffef7723000-0xfffffffef7724000           4K                               pte
[    0.120522] 0xfffffffef7724000-0xfffffffef774a000         152K                               pte
[    0.120524] 0xfffffffef774a000-0xfffffffef7755000          44K                               pte
[    0.120526] 0xfffffffef7755000-0xfffffffef7760000          44K                               pte
[    0.120528] 0xfffffffef7760000-0xfffffffef7776000          88K                               pte
[    0.120530] 0xfffffffef7776000-0xfffffffef7778000           8K                               pte
[    0.120533] 0xfffffffef7778000-0xfffffffef779d000         148K                               pte
[    0.120535] 0xfffffffef779d000-0xfffffffef77a0000          12K                               pte
[    0.120537] 0xfffffffef77a0000-0xfffffffef77ae000          56K                               pte
[    0.120539] 0xfffffffef77ae000-0xfffffffef77b4000          24K                               pte
[    0.120541] 0xfffffffef77b4000-0xfffffffef77b5000           4K                               pte
[    0.120543] 0xfffffffef77b5000-0xfffffffef77b6000           4K                               pte
[    0.120544] 0xfffffffef77b6000-0xfffffffef77b7000           4K                               pte
[    0.120546] 0xfffffffef77b7000-0xfffffffef77b8000           4K                               pte
[    0.120548] 0xfffffffef77b8000-0xfffffffef77c5000          52K                               pte
[    0.120550] 0xfffffffef77c5000-0xfffffffef77c8000          12K                               pte
[    0.120552] 0xfffffffef77c8000-0xfffffffef77d1000          36K                               pte
[    0.120554] 0xfffffffef77d1000-0xfffffffef77d8000          28K                               pte
[    0.120556] 0xfffffffef77d8000-0xfffffffef77da000           8K                               pte
[    0.120558] 0xfffffffef77da000-0xfffffffef77db000           4K                               pte
[    0.120560] 0xfffffffef77db000-0xfffffffef77eb000          64K                               pte
[    0.120562] 0xfffffffef77eb000-0xfffffffef77ec000           4K                               pte
[    0.120563] 0xfffffffef77ec000-0xfffffffef77ed000           4K                               pte
[    0.120565] 0xfffffffef77ed000-0xfffffffef77ee000           4K                               pte
[    0.120567] 0xfffffffef77ee000-0xfffffffef77f1000          12K                               pte
[    0.120569] 0xfffffffef77f1000-0xfffffffef77f2000           4K                               pte
[    0.120571] 0xfffffffef77f2000-0xfffffffef77fc000          40K                               pte
[    0.120573] 0xfffffffef77fc000-0xfffffffef77fe000           8K                               pte
[    0.120574] 0xfffffffef77fe000-0xfffffffef7800000           8K                               pte
[    0.120576] 0xfffffffef7800000-0xfffffffef7802000           8K                               pte
[    0.120578] 0xfffffffef7802000-0xfffffffef7803000           4K                               pte
[    0.120580] 0xfffffffef7803000-0xfffffffef7804000           4K                               pte
[    0.120583] 0xfffffffef7804000-0xfffffffef7824000         128K                               pte
[    0.120584] 0xfffffffef7824000-0xfffffffef7825000           4K                               pte
[    0.120586] 0xfffffffef7825000-0xfffffffef7826000           4K                               pte
[    0.120588] 0xfffffffef7826000-0xfffffffef7827000           4K                               pte
[    0.120589] 0xfffffffef7827000-0xfffffffef7828000           4K                               pte
[    0.120591] 0xfffffffef7828000-0xfffffffef7829000           4K                               pte
[    0.120593] 0xfffffffef7829000-0xfffffffef782a000           4K                               pte
[    0.120595] 0xfffffffef782a000-0xfffffffef782c000           8K                               pte
[    0.120596] 0xfffffffef782c000-0xfffffffef7830000          16K                               pte
[    0.120599] 0xfffffffef7830000-0xfffffffef7839000          36K                               pte
[    0.120600] 0xfffffffef7839000-0xfffffffef783a000           4K                               pte
[    0.120602] 0xfffffffef783a000-0xfffffffef783b000           4K                               pte
[    0.120604] 0xfffffffef783b000-0xfffffffef783f000          16K                               pte
[    0.120606] 0xfffffffef783f000-0xfffffffef7840000           4K                               pte
[    0.120607] 0xfffffffef7840000-0xfffffffef7843000          12K                               pte
[    0.120610] 0xfffffffef7843000-0xfffffffef785a000          92K                               pte
[    0.120612] 0xfffffffef785a000-0xfffffffef786a000          64K                               pte
[    0.120614] 0xfffffffef786a000-0xfffffffef786b000           4K                               pte
[    0.120616] 0xfffffffef786b000-0xfffffffef786e000          12K                               pte
[    0.120618] 0xfffffffef786e000-0xfffffffef7876000          32K                               pte
[    0.120620] 0xfffffffef7876000-0xfffffffef7877000           4K                               pte
[    0.120621] 0xfffffffef7877000-0xfffffffef787a000          12K                               pte
[    0.120623] 0xfffffffef787a000-0xfffffffef787c000           8K                               pte
[    0.120625] 0xfffffffef787c000-0xfffffffef787d000           4K                               pte
[    0.120627] 0xfffffffef787d000-0xfffffffef7886000          36K                               pte
[    0.120629] 0xfffffffef7886000-0xfffffffef7887000           4K                               pte
[    0.120631] 0xfffffffef7887000-0xfffffffef78a3000         112K                               pte
[    0.120633] 0xfffffffef78a3000-0xfffffffef78a4000           4K                               pte
[    0.120635] 0xfffffffef78a4000-0xfffffffef78a5000           4K                               pte
[    0.120637] 0xfffffffef78a5000-0xfffffffef78a6000           4K                               pte
[    0.120638] 0xfffffffef78a6000-0xfffffffef78aa000          16K                               pte
[    0.120640] 0xfffffffef78aa000-0xfffffffef78ad000          12K                               pte
[    0.120642] 0xfffffffef78ad000-0xfffffffef78ae000           4K                               pte
[    0.120644] 0xfffffffef78ae000-0xfffffffef78af000           4K                               pte
[    0.120646] 0xfffffffef78af000-0xfffffffef78b1000           8K                               pte
[    0.120647] 0xfffffffef78b1000-0xfffffffef78b6000          20K                               pte
[    0.120649] 0xfffffffef78b6000-0xfffffffef78b9000          12K                               pte
[    0.120671] 0xfffffffef78b9000-0xfffffffef7cbb000        4104K                               pte
[    0.120674] 0xfffffffef7cbb000-0xfffffffef7cd9000         120K                               pte
[    0.120675] 0xfffffffef7cd9000-0xfffffffef7cda000           4K                               pte
[    0.120677] 0xfffffffef7cda000-0xfffffffef7cde000          16K                               pte
[    0.120679] 0xfffffffef7cde000-0xfffffffef7cdf000           4K                               pte
[    0.120681] 0xfffffffef7cdf000-0xfffffffef7ce4000          20K                               pte
[    0.120683] 0xfffffffef7ce4000-0xfffffffef7ce8000          16K                               pte
[    0.120684] 0xfffffffef7ce8000-0xfffffffef7ce9000           4K                               pte
[    0.120686] 0xfffffffef7ce9000-0xfffffffef7cea000           4K                               pte
[    0.120688] 0xfffffffef7cea000-0xfffffffef7ceb000           4K                               pte
[    0.120711] 0xfffffffef7ceb000-0xfffffffef810f000        4240K                               pte
[    0.120713] 0xfffffffef810f000-0xfffffffef8112000          12K                               pte
[    0.120715] 0xfffffffef8112000-0xfffffffef8113000           4K                               pte
[    0.120716] 0xfffffffef8113000-0xfffffffef8117000          16K                               pte
[    0.120723] 0xfffffffef8117000-0xfffffffef818f000         480K                               pte
[    0.120725] 0xfffffffef818f000-0xfffffffef8192000          12K                               pte
[    0.120727] 0xfffffffef8192000-0xfffffffef819a000          32K                               pte
[    0.120728] 0xfffffffef819a000-0xfffffffef819e000          16K                               pte
[    0.120750] 0xfffffffef819e000-0xfffffffef879d000        6140K                               pte
[    0.120757] 0xfffffffef879d000-0xfffffffef8822000         532K                               pte
[    0.120777] 0xfffffffef8822000-0xfffffffef8a00000        1912K     RW                     NX pte
[    0.120780] 0xfffffffef8a00000-0xfffffffef9000000           6M     RW         PSE         NX pmd
[    0.120785] 0xfffffffef9000000-0xfffffffef9021000         132K     RW                     NX pte
[    0.120788] 0xfffffffef9021000-0xfffffffef9024000          12K     ro                     x  pte
[    0.120791] 0xfffffffef9024000-0xfffffffef9029000          20K     RW                     NX pte
[    0.120794] 0xfffffffef9029000-0xfffffffef902a000           4K     ro                     x  pte
[    0.120798] 0xfffffffef902a000-0xfffffffef902e000          16K     RW                     NX pte
[    0.120801] 0xfffffffef902e000-0xfffffffef902f000           4K     ro                     x  pte
[    0.120804] 0xfffffffef902f000-0xfffffffef9033000          16K     RW                     NX pte
[    0.120807] 0xfffffffef9033000-0xfffffffef9041000          56K     ro                     x  pte
[    0.120811] 0xfffffffef9041000-0xfffffffef9049000          32K     RW                     NX pte
[    0.120814] 0xfffffffef9049000-0xfffffffef904b000           8K     ro                     x  pte
[    0.120817] 0xfffffffef904b000-0xfffffffef9050000          20K     RW                     NX pte
[    0.120820] 0xfffffffef9050000-0xfffffffef9051000           4K     ro                     x  pte
[    0.120824] 0xfffffffef9051000-0xfffffffef9056000          20K     RW                     NX pte
[    0.120827] 0xfffffffef9056000-0xfffffffef9057000           4K     ro                     x  pte
[    0.120830] 0xfffffffef9057000-0xfffffffef905c000          20K     RW                     NX pte
[    0.120833] 0xfffffffef905c000-0xfffffffef905d000           4K     ro                     x  pte
[    0.120836] 0xfffffffef905d000-0xfffffffef9062000          20K     RW                     NX pte
[    0.120839] 0xfffffffef9062000-0xfffffffef9063000           4K     ro                     x  pte
[    0.120843] 0xfffffffef9063000-0xfffffffef9067000          16K     RW                     NX pte
[    0.120846] 0xfffffffef9067000-0xfffffffef9071000          40K     ro                     x  pte
[    0.120849] 0xfffffffef9071000-0xfffffffef9077000          24K     RW                     NX pte
[    0.120853] 0xfffffffef9077000-0xfffffffef907c000          20K     ro                     x  pte
[    0.120856] 0xfffffffef907c000-0xfffffffef9081000          20K     RW                     NX pte
[    0.120859] 0xfffffffef9081000-0xfffffffef9085000          16K     ro                     x  pte
[    0.120862] 0xfffffffef9085000-0xfffffffef908a000          20K     RW                     NX pte
[    0.120880] 0xfffffffef908a000-0xfffffffef920d000        1548K                               pte
[    0.120883] 0xfffffffef920d000-0xfffffffef9226000         100K                               pte
[    0.120886] 0xfffffffef9226000-0xfffffffef9250000         168K                               pte
[    0.120888] 0xfffffffef9250000-0xfffffffef9252000           8K                               pte
[    0.120922] 0xfffffffef9252000-0xfffffffef9986000        7376K                               pte
[    0.120924] 0xfffffffef9986000-0xfffffffef998e000          32K                               pte
[    0.120927] 0xfffffffef998e000-0xfffffffef99b3000         148K                               pte
[    0.120929] 0xfffffffef99b3000-0xfffffffef99c3000          64K                               pte
[    0.120932] 0xfffffffef99c3000-0xfffffffef99e4000         132K                               pte
[    0.120934] 0xfffffffef99e4000-0xfffffffef99f1000          52K                               pte
[    0.120936] 0xfffffffef99f1000-0xfffffffef99f9000          32K                               pte
[    0.120938] 0xfffffffef99f9000-0xfffffffef9a00000          28K                               pte
[    0.120941] 0xfffffffef9a00000-0xfffffffefda00000          64M     RW         PSE         NX pmd
[    0.120945] 0xfffffffefda00000-0xfffffffefea00000          16M     RW     PCD PSE         NX pmd
[    0.120963] 0xfffffffefea00000-0xfffffffefeb80000        1536K                               pte
[    0.120970] 0xfffffffefeb80000-0xfffffffefec02000         520K     RW                     NX pte
[    0.120973] 0xfffffffefec02000-0xfffffffefec10000          56K                               pte
[    0.120975] 0xfffffffefec10000-0xfffffffefec11000           4K     RW                     NX pte
[    0.120987] 0xfffffffefec11000-0xfffffffefed00000         956K                               pte
[    0.120989] 0xfffffffefed00000-0xfffffffefed01000           4K     RW                     NX pte
[    0.120997] 0xfffffffefed01000-0xfffffffefed80000         508K                               pte
[    0.120999] 0xfffffffefed80000-0xfffffffefed90000          64K     RW                     NX pte
[    0.121004] 0xfffffffefed90000-0xfffffffefedc2000         200K                               pte
[    0.121006] 0xfffffffefedc2000-0xfffffffefedd0000          56K     RW                     NX pte
[    0.121010] 0xfffffffefedd0000-0xfffffffefedd4000          16K                               pte
[    0.121012] 0xfffffffefedd4000-0xfffffffefedd6000           8K     RW                     NX pte
[    0.121016] 0xfffffffefedd6000-0xfffffffefee00000         168K                               pte
[    0.121028] 0xfffffffefee00000-0xfffffffefef00000           1M     RW                     NX pte
[    0.121041] 0xfffffffefef00000-0xfffffffeff000000           1M                               pte
[    0.121043] 0xfffffffeff000000-0xffffffff00000000          16M     RW         PSE         NX pmd
[    0.121046] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.121048] ---[ High Kernel Mapping ]---
[    0.121049] 0xffffffff80000000-0xffffffff81000000          16M                               pmd
[    0.121051] 0xffffffff81000000-0xffffffff82600000          22M     RW         PSE     GLB x  pmd
[    0.121069] 0xffffffff82600000-0xffffffff8278c000        1584K     RW                 GLB x  pte
[    0.121072] 0xffffffff8278c000-0xffffffff8278d000           4K     ro                 GLB x  pte
[    0.121080] 0xffffffff8278d000-0xffffffff82800000         460K     RW                 GLB x  pte
[    0.121083] 0xffffffff82800000-0xffffffff82a00000           2M     RW         PSE     GLB x  pmd
[    0.121092] 0xffffffff82a00000-0xffffffffa0000000         470M                               pmd
[    0.121094] ---[ Modules ]---
[    0.121115] 0xffffffffa0000000-0xffffffffff000000        1520M                               pmd
[    0.121117] ---[ End Modules ]---
[    0.121117] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.121154] 0xffffffffff200000-0xffffffffff57c000        3568K                               pte
[    0.121155] ---[ Fixmap Area ]---
[    0.121161] 0xffffffffff57c000-0xffffffffff5fb000         508K                               pte
[    0.121162] 0xffffffffff5fb000-0xffffffffff5fe000          12K     RW PWT PCD         GLB NX pte
[    0.121166] 0xffffffffff5fe000-0xffffffffff600000           8K                               pte
[    0.121168] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.121190] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.121192] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.121222] LSM: Security Framework initializing
[    0.121289] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.121321] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.121707] LVT offset 1 assigned for vector 0xf9
[    0.121789] LVT offset 2 assigned for vector 0xf4
[    0.121812] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.121813] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.121816] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.121819] Spectre V2 : Mitigation: Retpolines
[    0.121819] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.121820] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.121821] Spectre V2 : Enabling Speculation Barrier for firmware calls
[    0.121821] RETBleed: Mitigation: untrained return thunk
[    0.121822] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.121824] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.126164] Freeing SMP alternatives memory: 32K
[    0.229725] smpboot: CPU0: AMD Ryzen 5 3450U with Radeon Vega Mobile Gfx (family: 0x17, model: 0x18, stepping: 0x1)
[    0.229833] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.229837] ... version:                0
[    0.229837] ... bit width:              48
[    0.229838] ... generic registers:      6
[    0.229838] ... value mask:             0000ffffffffffff
[    0.229839] ... max period:             00007fffffffffff
[    0.229840] ... fixed-purpose events:   0
[    0.229840] ... event mask:             000000000000003f
[    0.229891] rcu: Hierarchical SRCU implementation.
[    0.230015] smp: Bringing up secondary CPUs ...
[    0.230070] x86: Booting SMP configuration:
[    0.230071] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7
[    0.237154] smp: Brought up 1 node, 8 CPUs
[    0.237154] smpboot: Max logical packages: 2
[    0.237154] smpboot: Total of 8 processors activated (33535.53 BogoMIPS)
[    0.238424] devtmpfs: initialized
[    0.238424] x86/mm: Memory block size: 128MB
[    0.239430] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.239430] ACPI: PM: Registering ACPI NVS region [mem 0x5d9d7000-0x5de21fff] (4501504 bytes)
[    0.239430] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.239430] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.239430] pinctrl core: initialized pinctrl subsystem
[    0.239464] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.239523] audit: initializing netlink subsys (disabled)
[    0.239527] audit: type=2000 audit(1672649492.172:1): state=initialized audit_enabled=0 res=1
[    0.239527] thermal_sys: Registered thermal governor 'bang_bang'
[    0.239527] thermal_sys: Registered thermal governor 'step_wise'
[    0.239527] thermal_sys: Registered thermal governor 'user_space'
[    0.239527] thermal_sys: Registered thermal governor 'power_allocator'
[    0.239527] cpuidle: using governor ladder
[    0.239527] cpuidle: using governor menu
[    0.239527] ACPI: bus type PCI registered
[    0.239527] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.239527] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.239527] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.239527] PCI: Using configuration type 1 for base access
[    0.241170] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.241170] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.241177] ACPI: Added _OSI(Module Device)
[    0.241178] ACPI: Added _OSI(Processor Device)
[    0.241179] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.241180] ACPI: Added _OSI(Processor Aggregator Device)
[    0.241181] ACPI: Added _OSI(Linux-Dell-Video)
[    0.241181] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.241182] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.247517] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.SBRG.EC0], AE_NOT_FOUND (20210730/dswload2-162)
[    0.247525] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20210730/psobject-220)
[    0.247528] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[    0.248174] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.SBRG.EC0], AE_NOT_FOUND (20210730/dswload2-162)
[    0.248178] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20210730/psobject-220)
[    0.248181] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[    0.248606] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.249005] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \_SB_.PCI0.SBRG.EC0_ (20210730/dspkginit-438)
[    0.249497] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.250892] ACPI: Interpreter enabled
[    0.250905] ACPI: PM: (supports S0 S3 S4 S5)
[    0.250906] ACPI: Using IOAPIC for interrupt routing
[    0.251061] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.251365] ACPI: Enabled 2 GPEs in block 00 to 1F
[    0.256567] ACPI: PM: Power Resource [PRWL]
[    0.257020] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.257025] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.257145] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[    0.257256] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.257265] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.257484] PCI host bridge to bus 0000:00
[    0.257485] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.257487] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.257489] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.257490] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.257491] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.257492] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.257493] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfebfffff window]
[    0.257495] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.257496] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.257529] pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000
[    0.257645] pci 0000:00:00.2: [1022:15d1] type 00 class 0x080600
[    0.257762] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.257867] pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400
[    0.257947] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[    0.258062] pci 0000:00:01.3: [1022:15d3] type 01 class 0x060400
[    0.258096] pci 0000:00:01.3: enabling Extended Tags
[    0.258151] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.258265] pci 0000:00:01.4: [1022:15d3] type 01 class 0x060400
[    0.258297] pci 0000:00:01.4: enabling Extended Tags
[    0.258346] pci 0000:00:01.4: PME# supported from D0 D3hot D3cold
[    0.258457] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.258559] pci 0000:00:08.1: [1022:15db] type 01 class 0x060400
[    0.258592] pci 0000:00:08.1: enabling Extended Tags
[    0.258634] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.258738] pci 0000:00:08.2: [1022:15dc] type 01 class 0x060400
[    0.258772] pci 0000:00:08.2: enabling Extended Tags
[    0.258809] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    0.258922] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.259078] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.259219] pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000
[    0.259272] pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000
[    0.259324] pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000
[    0.259375] pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000
[    0.259427] pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000
[    0.259478] pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000
[    0.259529] pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000
[    0.259583] pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000
[    0.259732] pci 0000:01:00.0: [2646:5008] type 00 class 0x010802
[    0.259749] pci 0000:01:00.0: reg 0x10: [mem 0xfea00000-0xfea03fff 64bit]
[    0.259997] pci 0000:00:01.2: PCI bridge to [bus 01]
[    0.260003] pci 0000:00:01.2:   bridge window [mem 0xfea00000-0xfeafffff]
[    0.260046] acpiphp: Slot [1] registered
[    0.260075] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.260093] pci 0000:02:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    0.260118] pci 0000:02:00.0: reg 0x18: [mem 0xfe904000-0xfe904fff 64bit]
[    0.260134] pci 0000:02:00.0: reg 0x20: [mem 0xfe900000-0xfe903fff 64bit]
[    0.260236] pci 0000:02:00.0: supports D1 D2
[    0.260237] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.260384] pci 0000:00:01.3: PCI bridge to [bus 02]
[    0.260389] pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
[    0.260391] pci 0000:00:01.3:   bridge window [mem 0xfe900000-0xfe9fffff]
[    0.260543] pci 0000:03:00.0: [10ec:c821] type 00 class 0x028000
[    0.260562] pci 0000:03:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.260586] pci 0000:03:00.0: reg 0x18: [mem 0xfe800000-0xfe80ffff 64bit]
[    0.260714] pci 0000:03:00.0: supports D1 D2
[    0.260715] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.260933] pci 0000:00:01.4: PCI bridge to [bus 03]
[    0.260937] pci 0000:00:01.4:   bridge window [io  0xe000-0xefff]
[    0.260939] pci 0000:00:01.4:   bridge window [mem 0xfe800000-0xfe8fffff]
[    0.261025] pci 0000:04:00.0: [1002:15d8] type 00 class 0x030000
[    0.261042] pci 0000:04:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.261054] pci 0000:04:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.261062] pci 0000:04:00.0: reg 0x20: [io  0xd000-0xd0ff]
[    0.261069] pci 0000:04:00.0: reg 0x24: [mem 0xfe600000-0xfe67ffff]
[    0.261082] pci 0000:04:00.0: enabling Extended Tags
[    0.261098] pci 0000:04:00.0: BAR 0: assigned to efifb
[    0.261103] pci 0000:04:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.261166] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.261283] pci 0000:04:00.1: [1002:15de] type 00 class 0x040300
[    0.261297] pci 0000:04:00.1: reg 0x10: [mem 0xfe6c8000-0xfe6cbfff]
[    0.261340] pci 0000:04:00.1: enabling Extended Tags
[    0.261383] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.261462] pci 0000:04:00.2: [1022:15df] type 00 class 0x108000
[    0.261488] pci 0000:04:00.2: reg 0x18: [mem 0xfe500000-0xfe5fffff]
[    0.261508] pci 0000:04:00.2: reg 0x24: [mem 0xfe6ce000-0xfe6cffff]
[    0.261520] pci 0000:04:00.2: enabling Extended Tags
[    0.261644] pci 0000:04:00.3: [1022:15e0] type 00 class 0x0c0330
[    0.261661] pci 0000:04:00.3: reg 0x10: [mem 0xfe400000-0xfe4fffff 64bit]
[    0.261698] pci 0000:04:00.3: enabling Extended Tags
[    0.261745] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
[    0.261831] pci 0000:04:00.4: [1022:15e1] type 00 class 0x0c0330
[    0.261847] pci 0000:04:00.4: reg 0x10: [mem 0xfe300000-0xfe3fffff 64bit]
[    0.261885] pci 0000:04:00.4: enabling Extended Tags
[    0.261931] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold
[    0.262016] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000
[    0.262029] pci 0000:04:00.5: reg 0x10: [mem 0xfe680000-0xfe6bffff]
[    0.262072] pci 0000:04:00.5: enabling Extended Tags
[    0.262115] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold
[    0.262197] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300
[    0.262211] pci 0000:04:00.6: reg 0x10: [mem 0xfe6c0000-0xfe6c7fff]
[    0.262254] pci 0000:04:00.6: enabling Extended Tags
[    0.262297] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold
[    0.262377] pci 0000:04:00.7: [1022:15e6] type 00 class 0x000000
[    0.262403] pci 0000:04:00.7: reg 0x18: [mem 0xfe200000-0xfe2fffff]
[    0.262423] pci 0000:04:00.7: reg 0x24: [mem 0xfe6cc000-0xfe6cdfff]
[    0.262435] pci 0000:04:00.7: enabling Extended Tags
[    0.262576] pci 0000:00:08.1: PCI bridge to [bus 04]
[    0.262580] pci 0000:00:08.1:   bridge window [io  0xd000-0xdfff]
[    0.262583] pci 0000:00:08.1:   bridge window [mem 0xfe200000-0xfe6fffff]
[    0.262587] pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.262650] pci 0000:05:00.0: [1022:7901] type 00 class 0x010601
[    0.262694] pci 0000:05:00.0: reg 0x24: [mem 0xfe700000-0xfe7007ff]
[    0.262707] pci 0000:05:00.0: enabling Extended Tags
[    0.262757] pci 0000:05:00.0: PME# supported from D3hot D3cold
[    0.262836] pci 0000:00:08.2: PCI bridge to [bus 05]
[    0.262841] pci 0000:00:08.2:   bridge window [mem 0xfe700000-0xfe7fffff]
[    0.263227] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.263268] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.263302] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.263347] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.263386] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.263417] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.263448] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.263478] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.265718] iommu: Default domain type: Translated 
[    0.265719] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.265729] pci 0000:04:00.0: vgaarb: setting as boot VGA device
[    0.265729] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.265729] pci 0000:04:00.0: vgaarb: bridge control possible
[    0.265729] vgaarb: loaded
[    0.265729] SCSI subsystem initialized
[    0.265729] libata version 3.00 loaded.
[    0.265729] ACPI: bus type USB registered
[    0.265729] usbcore: registered new interface driver usbfs
[    0.265729] usbcore: registered new interface driver hub
[    0.265729] usbcore: registered new device driver usb
[    0.265729] pps_core: LinuxPPS API ver. 1 registered
[    0.265729] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.265729] PTP clock support registered
[    0.265729] Registered efivars operations
[    0.265729] PCI: Using ACPI for IRQ routing
[    0.268484] PCI: pci_cache_line_size set to 64 bytes
[    0.268773] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.268775] e820: reserve RAM buffer [mem 0x09602000-0x0bffffff]
[    0.268777] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.268777] e820: reserve RAM buffer [mem 0x5d79d000-0x5fffffff]
[    0.268779] e820: reserve RAM buffer [mem 0x5d9d7000-0x5fffffff]
[    0.268779] e820: reserve RAM buffer [mem 0x5f000000-0x5fffffff]
[    0.268780] e820: reserve RAM buffer [mem 0x21f340000-0x21fffffff]
[    0.268784] clocksource: Switched to clocksource tsc-early
[    0.268784] VFS: Disk quotas dquot_6.6.0
[    0.268784] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.268784] pnp: PnP ACPI init
[    0.268784] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.268784] system 00:02: [io  0x0a00-0x0a1f] has been reserved
[    0.268784] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    0.268784] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    0.268784] pnp 00:03: [dma 0 disabled]
[    0.268937] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.268939] system 00:04: [io  0x040b] has been reserved
[    0.268940] system 00:04: [io  0x04d6] has been reserved
[    0.268941] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    0.268942] system 00:04: [io  0x0c14] has been reserved
[    0.268943] system 00:04: [io  0x0c50-0x0c51] has been reserved
[    0.268945] system 00:04: [io  0x0c52] has been reserved
[    0.268946] system 00:04: [io  0x0c6c] has been reserved
[    0.268947] system 00:04: [io  0x0c6f] has been reserved
[    0.268948] system 00:04: [io  0x0cd0-0x0cd1] has been reserved
[    0.268949] system 00:04: [io  0x0cd2-0x0cd3] has been reserved
[    0.268950] system 00:04: [io  0x0cd4-0x0cd5] has been reserved
[    0.268951] system 00:04: [io  0x0cd6-0x0cd7] has been reserved
[    0.268952] system 00:04: [io  0x0cd8-0x0cdf] has been reserved
[    0.268953] system 00:04: [io  0x0800-0x089f] has been reserved
[    0.268954] system 00:04: [io  0x0b00-0x0b0f] has been reserved
[    0.268955] system 00:04: [io  0x0b20-0x0b3f] has been reserved
[    0.268956] system 00:04: [io  0x0900-0x090f] has been reserved
[    0.268957] system 00:04: [io  0x0910-0x091f] has been reserved
[    0.268958] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.268960] system 00:04: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.268961] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.268962] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.268963] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.268965] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.268966] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    0.269310] pnp: PnP ACPI: found 5 devices
[    0.274912] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.274941] NET: Registered PF_INET protocol family
[    0.275104] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.276045] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.276059] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.276062] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.276146] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.276315] TCP: Hash tables configured (established 65536 bind 65536)
[    0.276436] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.276465] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.276495] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.276559] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.276580] pci 0000:00:01.2: PCI bridge to [bus 01]
[    0.276587] pci 0000:00:01.2:   bridge window [mem 0xfea00000-0xfeafffff]
[    0.276594] pci 0000:00:01.3: PCI bridge to [bus 02]
[    0.276596] pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
[    0.276600] pci 0000:00:01.3:   bridge window [mem 0xfe900000-0xfe9fffff]
[    0.276606] pci 0000:00:01.4: PCI bridge to [bus 03]
[    0.276608] pci 0000:00:01.4:   bridge window [io  0xe000-0xefff]
[    0.276611] pci 0000:00:01.4:   bridge window [mem 0xfe800000-0xfe8fffff]
[    0.276621] pci 0000:00:08.1: PCI bridge to [bus 04]
[    0.276627] pci 0000:00:08.1:   bridge window [io  0xd000-0xdfff]
[    0.276630] pci 0000:00:08.1:   bridge window [mem 0xfe200000-0xfe6fffff]
[    0.276633] pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.276638] pci 0000:00:08.2: PCI bridge to [bus 05]
[    0.276641] pci 0000:00:08.2:   bridge window [mem 0xfe700000-0xfe7fffff]
[    0.276648] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.276650] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.276651] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.276652] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.276653] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.276654] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.276655] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfebfffff window]
[    0.276656] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.276658] pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
[    0.276659] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    0.276660] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[    0.276661] pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
[    0.276662] pci_bus 0000:03: resource 1 [mem 0xfe800000-0xfe8fffff]
[    0.276663] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.276664] pci_bus 0000:04: resource 1 [mem 0xfe200000-0xfe6fffff]
[    0.276665] pci_bus 0000:04: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.276666] pci_bus 0000:05: resource 1 [mem 0xfe700000-0xfe7fffff]
[    0.276896] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0
[    0.276909] pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec
[    0.277088] pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec
[    0.277154] PCI: CLS 64 bytes, default 64
[    0.277170] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.277212] pci 0000:00:00.2: can't derive routing for PCI INT A
[    0.277214] pci 0000:00:00.2: PCI INT A: not connected
[    0.277225] Trying to unpack rootfs image as initramfs...
[    0.277243] pci 0000:00:01.0: Adding to iommu group 0
[    0.277254] pci 0000:00:01.2: Adding to iommu group 1
[    0.277265] pci 0000:00:01.3: Adding to iommu group 2
[    0.277277] pci 0000:00:01.4: Adding to iommu group 3
[    0.277295] pci 0000:00:08.0: Adding to iommu group 4
[    0.277306] pci 0000:00:08.1: Adding to iommu group 5
[    0.277314] pci 0000:00:08.2: Adding to iommu group 4
[    0.277329] pci 0000:00:14.0: Adding to iommu group 6
[    0.277339] pci 0000:00:14.3: Adding to iommu group 6
[    0.277374] pci 0000:00:18.0: Adding to iommu group 7
[    0.277382] pci 0000:00:18.1: Adding to iommu group 7
[    0.277391] pci 0000:00:18.2: Adding to iommu group 7
[    0.277400] pci 0000:00:18.3: Adding to iommu group 7
[    0.277409] pci 0000:00:18.4: Adding to iommu group 7
[    0.277418] pci 0000:00:18.5: Adding to iommu group 7
[    0.277427] pci 0000:00:18.6: Adding to iommu group 7
[    0.277435] pci 0000:00:18.7: Adding to iommu group 7
[    0.277446] pci 0000:01:00.0: Adding to iommu group 8
[    0.277457] pci 0000:02:00.0: Adding to iommu group 9
[    0.277468] pci 0000:03:00.0: Adding to iommu group 10
[    0.277496] pci 0000:04:00.0: Adding to iommu group 11
[    0.277531] pci 0000:04:00.1: Adding to iommu group 12
[    0.277549] pci 0000:04:00.2: Adding to iommu group 12
[    0.277562] pci 0000:04:00.3: Adding to iommu group 12
[    0.277576] pci 0000:04:00.4: Adding to iommu group 12
[    0.277589] pci 0000:04:00.5: Adding to iommu group 12
[    0.277605] pci 0000:04:00.6: Adding to iommu group 12
[    0.277618] pci 0000:04:00.7: Adding to iommu group 12
[    0.277623] pci 0000:05:00.0: Adding to iommu group 4
[    0.280420] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.280424] AMD-Vi: Extended features (0x4f77ef22294ada): PPR NX GT IA GA PC GA_vAPIC
[    0.280431] AMD-Vi: Interrupt remapping enabled
[    0.280432] AMD-Vi: Virtual APIC enabled
[    0.280629] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.280634] software IO TLB: mapped [mem 0x000000005565f000-0x000000005965f000] (64MB)
[    0.289491] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    0.289493] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.289501] amd_uncore: 4  amd_df counters detected
[    0.289506] amd_uncore: 6  amd_l3 counters detected
[    0.289593] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.290264] Initialise system trusted keyrings
[    0.290310] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.291628] zbud: loaded
[    0.302011] Key type asymmetric registered
[    0.302015] Asymmetric key parser 'x509' registered
[    0.302048] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.302122] io scheduler mq-deadline registered
[    0.302123] io scheduler kyber registered
[    0.302158] io scheduler bfq registered
[    0.302423] pcieport 0000:00:01.2: PME: Signaling with IRQ 26
[    0.302513] pcieport 0000:00:01.2: AER: enabled with IRQ 26
[    0.302664] pcieport 0000:00:01.3: PME: Signaling with IRQ 27
[    0.302732] pcieport 0000:00:01.3: AER: enabled with IRQ 27
[    0.302888] pcieport 0000:00:01.4: PME: Signaling with IRQ 28
[    0.302956] pcieport 0000:00:01.4: AER: enabled with IRQ 28
[    0.303111] pcieport 0000:00:08.1: PME: Signaling with IRQ 29
[    0.303397] pcieport 0000:00:08.2: PME: Signaling with IRQ 30
[    0.303519] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.303649] Monitor-Mwait will be used to enter C-1 state
[    0.303659] ACPI: \_PR_.P000: Found 2 idle states
[    0.303751] ACPI: \_PR_.P001: Found 2 idle states
[    0.303818] ACPI: \_PR_.P002: Found 2 idle states
[    0.303918] ACPI: \_PR_.P003: Found 2 idle states
[    0.303999] ACPI: \_PR_.P004: Found 2 idle states
[    0.304107] ACPI: \_PR_.P005: Found 2 idle states
[    0.304190] ACPI: \_PR_.P006: Found 2 idle states
[    0.304292] ACPI: \_PR_.P007: Found 2 idle states
[    0.304532] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.304628] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.407071] Freeing initrd memory: 24972K
[    0.408669] lp: driver loaded but no devices found
[    0.408673] Linux agpgart interface v0.103
[    0.411073] loop: module loaded
[    0.411357] nvme nvme0: pci function 0000:01:00.0
[    0.411421] ahci 0000:05:00.0: version 3.0
[    0.422325] ahci 0000:05:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.422330] ahci 0000:05:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.422542] scsi host0: ahci
[    0.422601] ata1: SATA max UDMA/133 abar m2048@0xfe700000 port 0xfe700100 irq 34
[    0.422655] PPP generic driver version 2.4.2
[    0.422747] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.422749] ehci-pci: EHCI PCI platform driver
[    0.422762] ehci-platform: EHCI generic platform driver
[    0.422786] usbcore: registered new interface driver usb-storage
[    0.422821] i8042: PNP: No PS/2 controller found.
[    0.422822] i8042: Probing ports directly.
[    0.423764] i8042: No controller found
[    0.423818] mousedev: PS/2 mouse device common for all mice
[    0.423870] rtc_cmos 00:01: RTC can wake from S4
[    0.424115] rtc_cmos 00:01: registered as rtc0
[    0.424153] rtc_cmos 00:01: setting system clock to 2023-01-02T08:51:32 UTC (1672649492)
[    0.424171] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.424254] ledtrig-cpu: registered to indicate activity on CPUs
[    0.424285] efifb: probing for efifb
[    0.424296] efifb: framebuffer at 0xe0000000, using 14400k, total 14400k
[    0.424298] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[    0.424300] efifb: scrolling: redraw
[    0.424300] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.424400] Console: switching to colour frame buffer device 320x90
[    0.430090] nvme nvme0: failed to set APST feature (2)
[    0.431637] nvme nvme0: 8/0/0 default/read/poll queues
[    0.431697] fb0: EFI VGA frame buffer device
[    0.431718] hid: raw HID events driver (C) Jiri Kosina
[    0.431959] usbcore: registered new interface driver usbhid
[    0.431961] usbhid: USB HID core driver
[    0.432285] NET: Registered PF_INET6 protocol family
[    0.435210]  nvme0n1: p1 p2 p3 p4
[    0.435373] Segment Routing with IPv6
[    0.435375] RPL Segment Routing with IPv6
[    0.435385] In-situ OAM (IOAM) with IPv6
[    0.435421] NET: Registered PF_PACKET protocol family
[    0.435461] Key type dns_resolver registered
[    0.435918] microcode: CPU0: patch_level=0x08108102
[    0.435930] microcode: CPU1: patch_level=0x08108102
[    0.435937] microcode: CPU2: patch_level=0x08108102
[    0.435942] microcode: CPU3: patch_level=0x08108102
[    0.435946] microcode: CPU4: patch_level=0x08108102
[    0.435952] microcode: CPU5: patch_level=0x08108102
[    0.435956] microcode: CPU6: patch_level=0x08108102
[    0.435964] microcode: CPU7: patch_level=0x08108102
[    0.435993] microcode: Microcode Update Driver: v2.2.
[    0.435998] IPI shorthand broadcast: enabled
[    0.436007] sched_clock: Marking stable (435748258, 240812)->(721296088, -285307018)
[    0.436045] registered taskstats version 1
[    0.436047] Loading compiled-in X.509 certificates
[    0.438188] zswap: loaded using pool zstd/zbud
[    0.438718] PM: Image not found (code -22)
[    0.728095] ata1: SATA link down (SStatus 0 SControl 300)
[    0.728433] Freeing unused kernel image (initmem) memory: 1292K
[    0.728438] Write protecting the kernel read-only data: 18432k
[    0.729044] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    0.729239] Freeing unused kernel image (rodata/data gap) memory: 860K
[    0.729245] rodata_test: all tests were successful
[    0.729251] Run /init as init process
[    0.729252]   with arguments:
[    0.729252]     /init
[    0.729253]     splash
[    0.729254]   with environment:
[    0.729254]     HOME=/
[    0.729254]     TERM=linux
[    0.729255]     BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate
[    0.729256]     calculate=video:amdgpu
[    0.766287] dracut: Gentoo-2.9
[    0.790510] raid6: avx2x4   gen() 22437 MB/s
[    0.807512] raid6: avx2x4   xor()  6194 MB/s
[    0.824514] raid6: avx2x2   gen() 24581 MB/s
[    0.841515] raid6: avx2x2   xor() 15035 MB/s
[    0.858517] raid6: avx2x1   gen() 22081 MB/s
[    0.875502] raid6: avx2x1   xor() 14452 MB/s
[    0.892504] raid6: sse2x4   gen() 15430 MB/s
[    0.909524] raid6: sse2x4   xor()  6895 MB/s
[    0.926508] raid6: sse2x2   gen() 17569 MB/s
[    0.943510] raid6: sse2x2   xor() 10310 MB/s
[    0.960529] raid6: sse2x1   gen() 13029 MB/s
[    0.977532] raid6: sse2x1   xor()  7819 MB/s
[    0.977533] raid6: using algorithm avx2x2 gen() 24581 MB/s
[    0.977534] raid6: .... xor() 15035 MB/s, rmw enabled
[    0.977534] raid6: using avx2x2 recovery algorithm
[    0.977914] xor: automatically using best checksumming function   avx       
[    0.999746] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no
[    1.048006] dracut: TuxOnIce premodule started
[    1.048059] dracut: Kernel has no tuxonice support, aborting
[    1.093757] AMD-Vi: AMD IOMMUv2 loaded and initialized
[    1.105895] ACPI: video: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
[    1.106392] acpi device:14: registered as cooling_device8
[    1.106462] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:01/input/input0
[    1.133339] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.SBRG.EC0.OKEC], AE_NOT_FOUND (20210730/psargs-330)
[    1.133396] ACPI Error: Aborting method \_SB.UBTC.M318 due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    1.133438] ACPI Error: Aborting method \_SB.UBTC._DSM due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    1.133488] ucsi_acpi USBC000:00: ucsi_acpi_dsm: failed to evaluate _DSM 2
[    1.137200] ucsi_acpi: probe of USBC000:00 failed with error -5
[    1.189924] [drm] amdgpu kernel modesetting enabled.
[    1.194975] amdgpu: Topology: Add APU node [0x0:0x0]
[    1.195044] checking generic (e0000000 e10000) vs hw (e0000000 10000000)
[    1.195136] Console: switching to colour dummy device 80x25
[    1.195188] amdgpu 0000:04:00.0: vgaarb: deactivate vga console
[    1.195344] [drm] initializing kernel modesetting (RAVEN 0x1002:0x15D8 0x1002:0x0123 0xC2).
[    1.195350] amdgpu 0000:04:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[    1.195360] [drm] register mmio base: 0xFE600000
[    1.195361] [drm] register mmio size: 524288
[    1.195372] [drm] add ip block number 0 <soc15_common>
[    1.195374] [drm] add ip block number 1 <gmc_v9_0>
[    1.195375] [drm] add ip block number 2 <vega10_ih>
[    1.195377] [drm] add ip block number 3 <psp>
[    1.195378] [drm] add ip block number 4 <gfx_v9_0>
[    1.195379] [drm] add ip block number 5 <sdma_v4_0>
[    1.195380] [drm] add ip block number 6 <powerplay>
[    1.195382] [drm] add ip block number 7 <dm>
[    1.195383] [drm] add ip block number 8 <vcn_v1_0>
[    1.221579] [drm] BIOS signature incorrect 0 0
[    1.221604] amdgpu 0000:04:00.0: amdgpu: Fetched VBIOS from ROM BAR
[    1.221606] amdgpu: ATOM BIOS: 113-PICASSO-114
[    1.221631] [drm] VCN decode is enabled in VM mode
[    1.221632] [drm] VCN encode is enabled in VM mode
[    1.221632] [drm] JPEG decode is enabled in VM mode
[    1.221660] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    1.221667] amdgpu 0000:04:00.0: amdgpu: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used)
[    1.221670] amdgpu 0000:04:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[    1.221672] amdgpu 0000:04:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    1.221677] [drm] Detected VRAM RAM=2048M, BAR=2048M
[    1.221678] [drm] RAM width 64bits DDR4
[    1.221739] [drm] amdgpu: 2048M of VRAM memory ready
[    1.221741] [drm] amdgpu: 3072M of GTT memory ready.
[    1.221744] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    1.221964] [drm] PCIE GART of 1024M enabled.
[    1.221966] [drm] PTB located at 0x000000F400E10000
[    1.222170] amdgpu 0000:04:00.0: amdgpu: PSP runtime database doesn't exist
[    1.223121] amdgpu: hwmgr_sw_init smu backed is smu10_smu
[    1.223247] [drm] Found VCN firmware Version ENC: 1.13 DEC: 2 VEP: 0 Revision: 4
[    1.223252] amdgpu 0000:04:00.0: amdgpu: Will use PSP to load VCN firmware
[    1.244132] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[    1.314167] tsc: Refined TSC clocksource calibration: 2096.072 MHz
[    1.314180] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e36b1e373f, max_idle_ns: 440795248952 ns
[    1.314212] clocksource: Switched to clocksource tsc
[    1.344861] amdgpu 0000:04:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    1.359350] amdgpu 0000:04:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    1.367117] [drm] kiq ring mec 2 pipe 1 q 0
[    1.367708] [drm] DM_PPLIB: values for F clock
[    1.367710] [drm] DM_PPLIB:	 400000 in kHz, 2924 in mV
[    1.367711] [drm] DM_PPLIB:	 933000 in kHz, 3249 in mV
[    1.367712] [drm] DM_PPLIB:	 1067000 in kHz, 3924 in mV
[    1.367713] [drm] DM_PPLIB:	 1200000 in kHz, 4074 in mV
[    1.367715] [drm] DM_PPLIB: values for DCF clock
[    1.367716] [drm] DM_PPLIB:	 300000 in kHz, 2924 in mV
[    1.367717] [drm] DM_PPLIB:	 600000 in kHz, 3249 in mV
[    1.367718] [drm] DM_PPLIB:	 626000 in kHz, 3924 in mV
[    1.367719] [drm] DM_PPLIB:	 654000 in kHz, 4074 in mV
[    1.368055] [drm] Display Core initialized with v3.2.149!
[    1.419011] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[    1.420067] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[    1.420333] amdgpu: Topology: Add APU node [0x15d8:0x1002]
[    1.420335] kfd kfd: amdgpu: added device 1002:15d8
[    1.420348] amdgpu 0000:04:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
[    1.422300] [drm] fb mappable at 0x610DE000
[    1.422302] [drm] vram apper at 0x60000000
[    1.422302] [drm] size 14745600
[    1.422303] [drm] fb depth is 24
[    1.422303] [drm]    pitch is 10240
[    1.422353] fbcon: amdgpudrmfb (fb0) is primary device
[    1.517754] Console: switching to colour frame buffer device 320x90
[    1.541624] amdgpu 0000:04:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[    1.549203] amdgpu 0000:04:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[    1.549205] amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    1.549207] amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    1.549208] amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    1.549210] amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    1.549211] amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    1.549212] amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    1.549213] amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    1.549214] amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    1.549215] amdgpu 0000:04:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    1.549217] amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[    1.549218] amdgpu 0000:04:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[    1.549219] amdgpu 0000:04:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[    1.549220] amdgpu 0000:04:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[    1.549221] amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[    1.555383] [drm] Initialized amdgpu 3.42.0 20150101 for 0000:04:00.0 on minor 0
[    1.561706] dracut: Starting plymouth daemon
[    1.694203] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    1.694301] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    1.694377] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    1.694694] ccp 0000:04:00.2: ccp enabled
[    1.694702] ccp 0000:04:00.2: psp: unable to access the device: you might be running a broken BIOS.
[    1.694825] xhci_hcd 0000:04:00.3: xHCI Host Controller
[    1.694862] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1
[    1.695027] xhci_hcd 0000:04:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410
[    1.695581] xhci_hcd 0000:04:00.3: xHCI Host Controller
[    1.695611] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2
[    1.695615] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    1.695666] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    1.695670] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.695673] usb usb1: Product: xHCI Host Controller
[    1.695675] usb usb1: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    1.695677] usb usb1: SerialNumber: 0000:04:00.3
[    1.695796] hub 1-0:1.0: USB hub found
[    1.695810] hub 1-0:1.0: 4 ports detected
[    1.696065] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.696079] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    1.696081] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.696082] usb usb2: Product: xHCI Host Controller
[    1.696083] usb usb2: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    1.696085] usb usb2: SerialNumber: 0000:04:00.3
[    1.696173] hub 2-0:1.0: USB hub found
[    1.696185] hub 2-0:1.0: 4 ports detected
[    1.696738] xhci_hcd 0000:04:00.4: xHCI Host Controller
[    1.696792] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3
[    1.696949] xhci_hcd 0000:04:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410
[    1.697299] cryptd: max_cpu_qlen set to 1000
[    1.701231] AVX2 version of gcm_enc/dec engaged.
[    1.701259] AES CTR mode by8 optimization enabled
[    1.704020] xhci_hcd 0000:04:00.4: xHCI Host Controller
[    1.704101] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4
[    1.704108] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    1.704170] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    1.704174] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.704176] usb usb3: Product: xHCI Host Controller
[    1.704178] usb usb3: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    1.704179] usb usb3: SerialNumber: 0000:04:00.4
[    1.704315] hub 3-0:1.0: USB hub found
[    1.704328] hub 3-0:1.0: 2 ports detected
[    1.704506] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.704527] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    1.704530] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.704531] usb usb4: Product: xHCI Host Controller
[    1.704533] usb usb4: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    1.704535] usb usb4: SerialNumber: 0000:04:00.4
[    1.704899] hub 4-0:1.0: USB hub found
[    1.704911] hub 4-0:1.0: 1 port detected
[    1.745226] BTRFS: device label CLDM-22.0.1 devid 1 transid 33734 /dev/nvme0n1p2 scanned by systemd-udevd (1782)
[    1.826514] PM: Image not found (code -22)
[    1.829570] dracut: TuxOnIce lvmfix started
[    1.833354] dracut: TuxOnIce udev should be now fully settled
[    1.841981] BTRFS info (device nvme0n1p2): enabling ssd optimizations
[    1.841989] BTRFS info (device nvme0n1p2): using free space tree
[    1.841990] BTRFS info (device nvme0n1p2): has skinny extents
[    1.893104] dracut: Mounted root filesystem /dev/nvme0n1p2
[    1.934154] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    1.943147] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    1.999495] dracut: Switching root
[    2.064825] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[    2.064830] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.064831] usb 1-2: Product: HRY-LX1T
[    2.064833] usb 1-2: Manufacturer: HUAWEI
[    2.064834] usb 1-2: SerialNumber: XELNW19906008653
[    2.071087] usb 3-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=32.98
[    2.071091] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.071094] usb 3-1: Product: USB2.0 Hub
[    2.074328] usb-storage 1-2:1.1: USB Mass Storage device detected
[    2.074404] scsi host1: usb-storage 1-2:1.1
[    2.120639] hub 3-1:1.0: USB hub found
[    2.121070] hub 3-1:1.0: 4 ports detected
[    2.188149] usb 1-4: new high-speed USB device number 3 using xhci_hcd
[    2.300162] usb 3-2: new full-speed USB device number 3 using xhci_hcd
[    2.318034] usb 1-4: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.33
[    2.318039] usb 1-4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.318041] usb 1-4: Product: USB2.0 Hub
[    2.368243] hub 1-4:1.0: USB hub found
[    2.368649] hub 1-4:1.0: 4 ports detected
[    2.449222] usb 3-2: New USB device found, idVendor=0bda, idProduct=c821, bcdDevice= 1.10
[    2.449227] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.449229] usb 3-2: Product: Bluetooth Radio 
[    2.449230] usb 3-2: Manufacturer: Realtek 
[    2.449231] usb 3-2: SerialNumber: 00e04c000001
[    2.496154] usb 3-1.1: new high-speed USB device number 4 using xhci_hcd
[    2.643150] usb 1-4.1: new full-speed USB device number 4 using xhci_hcd
[    2.657465] usb 3-1.1: New USB device found, idVendor=0ac8, idProduct=c40a, bcdDevice= 1.00
[    2.657474] usb 3-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.657476] usb 3-1.1: Product: A4 TECH USB2.0 PC Camera J
[    2.657478] usb 3-1.1: Manufacturer: A4 TECH
[    2.731401] mc: Linux media interface: v0.10
[    2.736181] videodev: Linux video capture interface: v2.00
[    2.738829] usb 1-4.1: New USB device found, idVendor=062a, idProduct=4101, bcdDevice= 3.00
[    2.738834] usb 1-4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.738836] usb 1-4.1: Product: 2.4G Keyboard Mouse
[    2.738838] usb 1-4.1: Manufacturer: MOSART Semi.
[    2.743291] usb 3-1.1: Found UVC 1.00 device A4 TECH USB2.0 PC Camera J (0ac8:c40a)
[    2.750050] acpi_cpufreq: overriding BIOS provided _PSD data
[    2.750719] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    2.752133] ACPI: button: Power Button [PWRB]
[    2.752752] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    2.758314] ACPI: button: Power Button [PWRF]
[    2.761766] input: A4 TECH USB2.0 PC Camera J as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-1/3-1.1/3-1.1:1.0/input/input3
[    2.764138] usbcore: registered new interface driver uvcvideo
[    2.783157] usb 3-1.2: new high-speed USB device number 5 using xhci_hcd
[    2.801659] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    2.801840] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    2.801844] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    2.801921] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    2.821623] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.822289] input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.1/1-4.1:1.0/0003:062A:4101.0001/input/input5
[    2.823538] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.832252] r8169 0000:02:00.0 eth0: RTL8168h/8111h, 1c:83:41:30:33:53, XID 541, IRQ 64
[    2.832263] r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    2.833300] usbcore: registered new interface driver snd-usb-audio
[    2.873455] usb 3-1.2: New USB device found, idVendor=03f0, idProduct=bf2a, bcdDevice= 1.00
[    2.873462] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.873464] usb 3-1.2: Product: HP LaserJet MFP M28-M31
[    2.873465] usb 3-1.2: Manufacturer: HP
[    2.873466] usb 3-1.2: SerialNumber: VNC5K57929
[    2.874398] hid-generic 0003:062A:4101.0001: input,hidraw0: USB HID v1.10 Keyboard [MOSART Semi. 2.4G Keyboard Mouse] on usb-0000:04:00.3-4.1/input0
[    2.879240] input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.1/1-4.1:1.1/0003:062A:4101.0002/input/input6
[    2.879345] input: MOSART Semi. 2.4G Keyboard Mouse Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.1/1-4.1:1.1/0003:062A:4101.0002/input/input7
[    2.884134] kvm: Nested Virtualization enabled
[    2.884138] SVM: kvm: Nested Paging enabled
[    2.884140] SEV supported: 16 ASIDs
[    2.884146] SEV-ES supported: 4294967295 ASIDs
[    2.884164] SVM: Virtual VMLOAD VMSAVE supported
[    2.884165] SVM: Virtual GIF supported
[    2.889640] EDAC MC: Ver: 3.0.0
[    2.899619] MCE: In-kernel MCE decoding enabled.
[    2.900037] rtw_8821ce 0000:03:00.0: enabling device (0000 -> 0003)
[    2.904854] rtw_8821ce 0000:03:00.0: Firmware version 24.11.0, H2C version 12
[    2.931224] input: MOSART Semi. 2.4G Keyboard Mouse System Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.1/1-4.1:1.1/0003:062A:4101.0002/input/input8
[    2.931266] input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.1/1-4.1:1.1/0003:062A:4101.0002/input/input9
[    2.931334] hid-generic 0003:062A:4101.0002: input,hiddev96,hidraw1: USB HID v1.10 Mouse [MOSART Semi. 2.4G Keyboard Mouse] on usb-0000:04:00.3-4.1/input1
[    2.983744] i2c_amd_mp2 0000:04:00.7: MP2 device registered.
[    2.984025] usbcore: registered new interface driver uas
[    2.997167] usb 1-4.2: new high-speed USB device number 5 using xhci_hcd
[    3.008673] r8169 0000:02:00.0 eno1: renamed from eth0
[    3.024708] rtw_8821ce 0000:03:00.0 wlp3s0: renamed from wlan0
[    3.037989] Bluetooth: Core ver 2.22
[    3.038016] NET: Registered PF_BLUETOOTH protocol family
[    3.038017] Bluetooth: HCI device and connection manager initialized
[    3.038023] Bluetooth: HCI socket layer initialized
[    3.038026] Bluetooth: L2CAP socket layer initialized
[    3.038030] Bluetooth: SCO socket layer initialized
[    3.059643] usblp 3-1.2:1.0: usblp0: USB Bidirectional printer dev 5 if 0 alt 0 proto 2 vid 0x03F0 pid 0xBF2A
[    3.059673] usbcore: registered new interface driver usblp
[    3.061590] snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client
[    3.076031] usb 1-4.2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=85.33
[    3.076038] usb 1-4.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.076041] usb 1-4.2: Product: USB2.0 Hub
[    3.079513] usbcore: registered new interface driver btusb
[    3.081235] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[    3.084222] Bluetooth: hci0: RTL: rom_version status=0 version=1
[    3.084225] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[    3.085521] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[    3.085885] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[    3.107890] snd_hda_intel 0000:04:00.1: bound 0000:04:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[    3.108198] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[    3.108561] sr 1:0:0:0: Power-on or device reset occurred
[    3.109023] sr 1:0:0:0: [sr0] scsi-1 drive
[    3.109026] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.110003] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card1/input10
[    3.110172] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card1/input11
[    3.110358] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card1/input12
[    3.110441] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card1/input13
[    3.111238] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    3.136159] hub 1-4.2:1.0: USB hub found
[    3.136686] hub 1-4.2:1.0: 4 ports detected
[    3.141655] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC269VC: line_outs=1 (0x15/0x0/0x0/0x0/0x0) type:hp
[    3.141662] snd_hda_codec_realtek hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.141665] snd_hda_codec_realtek hdaudioC2D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.141667] snd_hda_codec_realtek hdaudioC2D0:    mono: mono_out=0x0
[    3.141669] snd_hda_codec_realtek hdaudioC2D0:    inputs:
[    3.141670] snd_hda_codec_realtek hdaudioC2D0:      Mic=0x18
[    3.149198] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card2/input14
[    3.149261] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card2/input15
[    3.149303] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card2/input16
[    3.205150] usb 1-4.4: new full-speed USB device number 6 using xhci_hcd
[    3.298820] usb 1-4.4: New USB device found, idVendor=1ea7, idProduct=0064, bcdDevice= 2.00
[    3.298825] usb 1-4.4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.298827] usb 1-4.4: Product: 2.4G Mouse
[    3.367058] input: 2.4G Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.4/1-4.4:1.0/0003:1EA7:0064.0003/input/input17
[    3.367113] input: 2.4G Mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-4/1-4.4/1-4.4:1.0/0003:1EA7:0064.0003/input/input18
[    3.367195] hid-generic 0003:1EA7:0064.0003: input,hiddev97,hidraw2: USB HID v1.10 Mouse [2.4G Mouse] on usb-0000:04:00.3-4.4/input0
[    3.827112] Bluetooth: hci0: RTL: fw version 0x75b8f098
[    3.896709] Adding 4194300k swap on /dev/nvme0n1p1.  Priority:-2 extents:1 across:4194300k SSFS
[    3.943013] zram: Added device: zram0
[    3.963876] zram0: detected capacity change from 0 to 24175552
[    3.974641] Adding 12087772k swap on /dev/zram0.  Priority:100 extents:1 across:12087772k SSFS
[    4.009950] FAT-fs (nvme0n1p4): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[    4.012786] FAT-fs (nvme0n1p4): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    4.044492] EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[    4.074159] clocksource: timekeeping watchdog on CPU7: Marking clocksource 'tsc' as unstable because the skew is too large:
[    4.074164] clocksource:                       'hpet' wd_nsec: 495120259 wd_now: 3a9940f wd_last: 33d67ca mask: ffffffff
[    4.074166] clocksource:                       'tsc' cs_nsec: 496002400 cs_now: 73fb77982 cs_last: 701bf925a mask: ffffffffffffffff
[    4.074168] clocksource:                       'tsc' is current clocksource.
[    4.074173] tsc: Marking TSC unstable due to clocksource watchdog
[    4.074179] TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
[    4.074180] sched_clock: Marking unstable (4073937626, 240905)<-(4359485550, -285307018)
[    4.074232] clocksource: Checking clocksource tsc synchronization from CPU 1 to CPUs 0,2,5,7.
[    4.074266] clocksource: Switched to clocksource hpet
[    4.545112] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.545117] Bluetooth: BNEP filters: protocol multicast
[    4.545122] Bluetooth: BNEP socket layer initialized
[    4.550101] NET: Registered PF_ALG protocol family
[    4.645192] Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver (mii_bus:phy_addr=r8169-0-200:00, irq=MAC)
[    4.783036] r8169 0000:02:00.0 eno1: Link is Down
[    5.230099] rtw_8821ce 0000:03:00.0: start vif 30:32:35:f9:1a:4b on port 0
[    5.231716] rtw_8821ce 0000:03:00.0: stop vif 30:32:35:f9:1a:4b on port 0
[    5.679813] rtw_8821ce 0000:03:00.0: start vif a6:43:c0:8f:b9:7f on port 0
[    5.751726] NET: Registered PF_QIPCRTR protocol family
[    8.204660] r8169 0000:02:00.0 eno1: Link is Up - 1Gbps/Full - flow control off
[    8.204680] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[    8.245774] NET: Registered PF_PPPOX protocol family
[   18.780032] Key type encrypted registered
[   21.494265] Bluetooth: RFCOMM TTY layer initialized
[   21.494279] Bluetooth: RFCOMM socket layer initialized
[   21.494287] Bluetooth: RFCOMM ver 1.11
[   43.830362] usb 1-2: USB disconnect, device number 2
[   46.233174] usb 1-2: new high-speed USB device number 7 using xhci_hcd
[   46.365577] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[   46.365589] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   46.365594] usb 1-2: Product: HRY-LX1T
[   46.365597] usb 1-2: Manufacturer: HUAWEI
[   46.365601] usb 1-2: SerialNumber: XELNW19906008653
[   46.402871] usb-storage 1-2:1.1: USB Mass Storage device detected
[   46.403081] scsi host1: usb-storage 1-2:1.1
[   47.463103] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[   47.463651] sr 1:0:0:0: Power-on or device reset occurred
[   47.464061] sr 1:0:0:0: [sr0] scsi-1 drive
[   47.466203] sr 1:0:0:0: Attached scsi CD-ROM sr0
[   51.573365] usb 1-2: USB disconnect, device number 7
[   51.953176] usb 1-2: new high-speed USB device number 8 using xhci_hcd
[   52.084955] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[   52.084967] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   52.084972] usb 1-2: Product: HRY-LX1T
[   52.084976] usb 1-2: Manufacturer: HUAWEI
[   52.084979] usb 1-2: SerialNumber: XELNW19906008653
[   52.130740] usb-storage 1-2:1.1: USB Mass Storage device detected
[   52.130936] scsi host1: usb-storage 1-2:1.1
[   53.155921] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[   53.156448] sr 1:0:0:0: Power-on or device reset occurred
[   53.160096] sr 1:0:0:0: [sr0] scsi-1 drive
[   53.161956] sr 1:0:0:0: Attached scsi CD-ROM sr0
[  204.066166] Bluetooth: hci0: command 0x0401 tx timeout
[  234.018162] Bluetooth: hci0: command 0x0401 tx timeout
[  264.034159] Bluetooth: hci0: command 0x0401 tx timeout
[  294.050179] Bluetooth: hci0: command 0x0401 tx timeout
[  324.066193] Bluetooth: hci0: command 0x0401 tx timeout
[  324.066201] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  354.018164] Bluetooth: hci0: command 0x0401 tx timeout
[  354.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  384.034159] Bluetooth: hci0: command 0x0401 tx timeout
[  384.034168] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  414.050162] Bluetooth: hci0: command 0x0401 tx timeout
[  414.050171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  417.004320] rtw_8821ce 0000:03:00.0: stop vif a6:43:c0:8f:b9:7f on port 0
[  417.475768] rtw_8821ce 0000:03:00.0: start vif 3e:d5:92:28:a7:8d on port 0
[  444.067165] Bluetooth: hci0: command 0x0401 tx timeout
[  444.067173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  474.018178] Bluetooth: hci0: command 0x0401 tx timeout
[  474.018188] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  487.671654] usb 1-2: USB disconnect, device number 8
[  504.034162] Bluetooth: hci0: command 0x0401 tx timeout
[  504.034173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  534.050176] Bluetooth: hci0: command 0x0401 tx timeout
[  534.050182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  564.066173] Bluetooth: hci0: command 0x0401 tx timeout
[  564.066182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  594.018168] Bluetooth: hci0: command 0x0401 tx timeout
[  594.018175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  624.034184] Bluetooth: hci0: command 0x0401 tx timeout
[  624.034194] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  654.050161] Bluetooth: hci0: command 0x0401 tx timeout
[  654.050174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  677.909981] rtw_8821ce 0000:03:00.0: stop vif 3e:d5:92:28:a7:8d on port 0
[  678.356735] rtw_8821ce 0000:03:00.0: start vif 30:32:35:f9:1a:4b on port 0
[  678.380836] rtw_8821ce 0000:03:00.0: change vif 30:32:35:f9:1a:4b (2)->(1), p2p (0)->(0)
[  678.380848] rtw_8821ce 0000:03:00.0: stop vif 30:32:35:f9:1a:4b on port 0
[  678.380922] rtw_8821ce 0000:03:00.0: start vif 30:32:35:f9:1a:4b on port 0
[  680.802169] wlp3s0: Trigger new scan to find an IBSS to join
[  684.066183] Bluetooth: hci0: command 0x0401 tx timeout
[  684.066192] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  685.794177] wlp3s0: Trigger new scan to find an IBSS to join
[  686.930456] wlp3s0: Creating new IBSS network, BSSID 5e:89:25:7c:a5:4b
[  687.376624] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
[  687.440062] bpfilter: Loaded bpfilter_umh pid 7485
[  687.440279] Started bpfilter
[  714.018420] Bluetooth: hci0: command 0x0401 tx timeout
[  714.018428] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  731.600190] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  744.034197] Bluetooth: hci0: command 0x0401 tx timeout
[  744.034205] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  764.587792] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  774.050169] Bluetooth: hci0: command 0x0401 tx timeout
[  774.050175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  804.066158] Bluetooth: hci0: command 0x0401 tx timeout
[  804.066164] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  804.653113] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  834.018159] Bluetooth: hci0: command 0x0401 tx timeout
[  834.018171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  838.841044] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  864.034169] Bluetooth: hci0: command 0x0401 tx timeout
[  864.034177] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  869.654850] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  894.050164] Bluetooth: hci0: command 0x0401 tx timeout
[  894.050170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  904.681705] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  924.066165] Bluetooth: hci0: command 0x0401 tx timeout
[  924.066174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  937.245970] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  954.018164] Bluetooth: hci0: command 0x0401 tx timeout
[  954.018172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[  968.668024] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[  984.034165] Bluetooth: hci0: command 0x0401 tx timeout
[  984.034172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1002.869245] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1014.050190] Bluetooth: hci0: command 0x0401 tx timeout
[ 1014.050196] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1034.997113] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1044.066167] Bluetooth: hci0: command 0x0401 tx timeout
[ 1044.066176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1067.362809] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1074.018165] Bluetooth: hci0: command 0x0401 tx timeout
[ 1074.018174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1099.784231] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1104.034167] Bluetooth: hci0: command 0x0401 tx timeout
[ 1104.034176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1134.051159] Bluetooth: hci0: command 0x0401 tx timeout
[ 1134.051167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1134.131040] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1164.066191] Bluetooth: hci0: command 0x0401 tx timeout
[ 1164.066201] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1170.433711] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1194.018174] Bluetooth: hci0: command 0x0401 tx timeout
[ 1194.018186] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1215.643015] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1224.034163] Bluetooth: hci0: command 0x0401 tx timeout
[ 1224.034170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1254.050171] Bluetooth: hci0: command 0x0401 tx timeout
[ 1254.050181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1261.100889] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1284.067160] Bluetooth: hci0: command 0x0401 tx timeout
[ 1284.067170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1291.810215] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1314.018166] Bluetooth: hci0: command 0x0401 tx timeout
[ 1314.018172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1328.162177] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1344.034166] Bluetooth: hci0: command 0x0401 tx timeout
[ 1344.034175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1359.200808] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1374.050190] Bluetooth: hci0: command 0x0401 tx timeout
[ 1374.050199] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1375.578174] usb 1-2: new high-speed USB device number 9 using xhci_hcd
[ 1375.707588] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 1375.707596] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1375.707598] usb 1-2: Product: HRY-LX1T
[ 1375.707599] usb 1-2: Manufacturer: HUAWEI
[ 1375.707600] usb 1-2: SerialNumber: XELNW19906008653
[ 1375.764493] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 1375.764741] scsi host1: usb-storage 1-2:1.1
[ 1376.802887] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 1376.803187] sr 1:0:0:0: Power-on or device reset occurred
[ 1376.803560] sr 1:0:0:0: [sr0] scsi-1 drive
[ 1376.807784] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1400.324316] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1404.066189] Bluetooth: hci0: command 0x0401 tx timeout
[ 1404.066199] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1432.098200] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1434.018164] Bluetooth: hci0: command 0x0401 tx timeout
[ 1434.018172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1452.729998] usb 1-2: USB disconnect, device number 9
[ 1453.117161] usb 1-2: new high-speed USB device number 10 using xhci_hcd
[ 1453.246603] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 1453.246608] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1453.246610] usb 1-2: Product: HRY-LX1T
[ 1453.246611] usb 1-2: Manufacturer: HUAWEI
[ 1453.246612] usb 1-2: SerialNumber: XELNW19906008653
[ 1453.300492] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 1453.300666] scsi host1: usb-storage 1-2:1.1
[ 1454.307310] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 1454.307670] sr 1:0:0:0: Power-on or device reset occurred
[ 1454.308560] sr 1:0:0:0: [sr0] scsi-1 drive
[ 1454.310892] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1464.034164] Bluetooth: hci0: command 0x0401 tx timeout
[ 1464.034182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1469.769808] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1494.050164] Bluetooth: hci0: command 0x0401 tx timeout
[ 1494.050170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1504.125639] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1524.066162] Bluetooth: hci0: command 0x0401 tx timeout
[ 1524.066167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1554.018164] Bluetooth: hci0: command 0x0401 tx timeout
[ 1554.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1561.124919] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1584.034170] Bluetooth: hci0: command 0x0401 tx timeout
[ 1584.034175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1593.003136] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1614.050168] Bluetooth: hci0: command 0x0401 tx timeout
[ 1614.050175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1625.122188] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1644.067159] Bluetooth: hci0: command 0x0401 tx timeout
[ 1644.067166] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1655.842169] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1674.018162] Bluetooth: hci0: command 0x0401 tx timeout
[ 1674.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1693.181490] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1704.034163] Bluetooth: hci0: command 0x0401 tx timeout
[ 1704.034174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1725.600961] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1734.050165] Bluetooth: hci0: command 0x0401 tx timeout
[ 1734.050172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1761.084182] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1764.066170] Bluetooth: hci0: command 0x0401 tx timeout
[ 1764.066181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1794.019165] Bluetooth: hci0: command 0x0401 tx timeout
[ 1794.019180] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1795.082070] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1824.034165] Bluetooth: hci0: command 0x0401 tx timeout
[ 1824.034171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1835.293917] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1854.050158] Bluetooth: hci0: command 0x0401 tx timeout
[ 1854.050170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1873.934558] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1884.067162] Bluetooth: hci0: command 0x0401 tx timeout
[ 1884.067167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1914.018240] Bluetooth: hci0: command 0x0401 tx timeout
[ 1914.018248] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1930.395248] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1944.034169] Bluetooth: hci0: command 0x0401 tx timeout
[ 1944.034175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1962.018170] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 1974.050204] Bluetooth: hci0: command 0x0401 tx timeout
[ 1974.050213] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 1995.001649] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2004.066177] Bluetooth: hci0: command 0x0401 tx timeout
[ 2004.066185] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2034.018164] Bluetooth: hci0: command 0x0401 tx timeout
[ 2034.018172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2040.029785] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2064.034158] Bluetooth: hci0: command 0x0401 tx timeout
[ 2064.034165] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2081.232671] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2094.050462] Bluetooth: hci0: command 0x0401 tx timeout
[ 2094.050471] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2123.696385] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2124.066175] Bluetooth: hci0: command 0x0401 tx timeout
[ 2124.066182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2154.018165] Bluetooth: hci0: command 0x0401 tx timeout
[ 2154.018175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2168.710999] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2184.034175] Bluetooth: hci0: command 0x0401 tx timeout
[ 2184.034184] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2209.826170] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2214.050159] Bluetooth: hci0: command 0x0401 tx timeout
[ 2214.050168] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2244.066170] Bluetooth: hci0: command 0x0401 tx timeout
[ 2244.066179] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2252.834195] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2274.018186] Bluetooth: hci0: command 0x0401 tx timeout
[ 2274.018195] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2304.034197] Bluetooth: hci0: command 0x0401 tx timeout
[ 2304.034206] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2304.034222] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2334.050189] Bluetooth: hci0: command 0x0401 tx timeout
[ 2334.050197] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2342.002990] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2364.066167] Bluetooth: hci0: command 0x0401 tx timeout
[ 2364.066172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2388.002200] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2394.018173] Bluetooth: hci0: command 0x0401 tx timeout
[ 2394.018182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2424.034172] Bluetooth: hci0: command 0x0401 tx timeout
[ 2424.034181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2434.837541] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2454.050168] Bluetooth: hci0: command 0x0401 tx timeout
[ 2454.050173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2484.066186] Bluetooth: hci0: command 0x0401 tx timeout
[ 2484.066193] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2493.987158] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2514.018187] Bluetooth: hci0: command 0x0401 tx timeout
[ 2514.018197] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2527.850014] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2544.034159] Bluetooth: hci0: command 0x0401 tx timeout
[ 2544.034168] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2567.489618] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2574.050184] Bluetooth: hci0: command 0x0401 tx timeout
[ 2574.050193] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2600.273404] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2604.067156] Bluetooth: hci0: command 0x0401 tx timeout
[ 2604.067163] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2634.019162] Bluetooth: hci0: command 0x0401 tx timeout
[ 2634.019170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2634.042227] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2664.034155] Bluetooth: hci0: command 0x0401 tx timeout
[ 2664.034160] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2665.890561] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2694.050159] Bluetooth: hci0: command 0x0401 tx timeout
[ 2694.050167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2724.067158] Bluetooth: hci0: command 0x0401 tx timeout
[ 2724.067165] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2725.923174] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2754.018172] Bluetooth: hci0: command 0x0401 tx timeout
[ 2754.018190] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2762.503269] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2784.034162] Bluetooth: hci0: command 0x0401 tx timeout
[ 2784.034171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2814.050169] Bluetooth: hci0: command 0x0401 tx timeout
[ 2814.050175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2820.130174] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2844.067163] Bluetooth: hci0: command 0x0401 tx timeout
[ 2844.067172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2858.141368] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2874.018171] Bluetooth: hci0: command 0x0401 tx timeout
[ 2874.018176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2890.610318] usb 1-2: USB disconnect, device number 10
[ 2891.239160] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2892.982177] usb 1-2: new high-speed USB device number 11 using xhci_hcd
[ 2893.111799] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 2893.111806] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2893.111808] usb 1-2: Product: HRY-LX1T
[ 2893.111809] usb 1-2: Manufacturer: HUAWEI
[ 2893.111810] usb 1-2: SerialNumber: XELNW19906008653
[ 2893.172675] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 2893.172875] scsi host1: usb-storage 1-2:1.1
[ 2894.178827] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 2894.180301] sr 1:0:0:0: Power-on or device reset occurred
[ 2894.180849] sr 1:0:0:0: [sr0] scsi-1 drive
[ 2894.182870] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 2897.693066] usb 1-2: USB disconnect, device number 11
[ 2898.080182] usb 1-2: new high-speed USB device number 12 using xhci_hcd
[ 2898.209652] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 2898.209665] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2898.209667] usb 1-2: Product: HRY-LX1T
[ 2898.209669] usb 1-2: Manufacturer: HUAWEI
[ 2898.209670] usb 1-2: SerialNumber: XELNW19906008653
[ 2898.260802] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 2898.260994] scsi host1: usb-storage 1-2:1.1
[ 2899.298822] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 2899.299114] sr 1:0:0:0: Power-on or device reset occurred
[ 2899.299507] sr 1:0:0:0: [sr0] scsi-1 drive
[ 2899.301170] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 2904.034159] Bluetooth: hci0: command 0x0401 tx timeout
[ 2904.034167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2923.574412] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2934.050187] Bluetooth: hci0: command 0x0401 tx timeout
[ 2934.050198] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2964.066199] Bluetooth: hci0: command 0x0401 tx timeout
[ 2964.066208] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 2970.583993] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 2994.018173] Bluetooth: hci0: command 0x0401 tx timeout
[ 2994.018178] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3001.358611] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3024.034159] Bluetooth: hci0: command 0x0401 tx timeout
[ 3024.034169] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3032.435699] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3054.050162] Bluetooth: hci0: command 0x0401 tx timeout
[ 3054.050167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3084.066159] Bluetooth: hci0: command 0x0401 tx timeout
[ 3084.066167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3085.263520] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3114.018169] Bluetooth: hci0: command 0x0401 tx timeout
[ 3114.018175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3115.965223] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3127.346852] usb 1-2: USB disconnect, device number 12
[ 3130.399171] usb 1-2: new high-speed USB device number 13 using xhci_hcd
[ 3130.528685] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3130.528705] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3130.528710] usb 1-2: Product: HRY-LX1T
[ 3130.528713] usb 1-2: Manufacturer: HUAWEI
[ 3130.528717] usb 1-2: SerialNumber: XELNW19906008653
[ 3130.581374] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 3130.581683] scsi host1: usb-storage 1-2:1.1
[ 3131.618916] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3131.620134] sr 1:0:0:0: Power-on or device reset occurred
[ 3131.621071] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3131.626824] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3133.870460] usb 1-2: USB disconnect, device number 13
[ 3134.264168] usb 1-2: new high-speed USB device number 14 using xhci_hcd
[ 3134.393681] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3134.393686] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3134.393688] usb 1-2: Product: HRY-LX1T
[ 3134.393689] usb 1-2: Manufacturer: HUAWEI
[ 3134.393697] usb 1-2: SerialNumber: XELNW19906008653
[ 3134.452709] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 3134.452906] scsi host1: usb-storage 1-2:1.1
[ 3135.459543] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3135.460327] sr 1:0:0:0: Power-on or device reset occurred
[ 3135.461641] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3135.465011] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3144.034164] Bluetooth: hci0: command 0x0401 tx timeout
[ 3144.034173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3148.089409] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3174.050169] Bluetooth: hci0: command 0x0401 tx timeout
[ 3174.050179] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3184.073728] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3204.066169] Bluetooth: hci0: command 0x0401 tx timeout
[ 3204.066180] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3228.194168] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3234.018177] Bluetooth: hci0: command 0x0401 tx timeout
[ 3234.018187] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3264.034162] Bluetooth: hci0: command 0x0401 tx timeout
[ 3264.034173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3272.464982] usb 1-2: USB disconnect, device number 14
[ 3273.227085] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3275.562164] usb 1-2: new high-speed USB device number 15 using xhci_hcd
[ 3275.691570] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3275.691576] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3275.691577] usb 1-2: Product: HRY-LX1T
[ 3275.691579] usb 1-2: Manufacturer: HUAWEI
[ 3275.691580] usb 1-2: SerialNumber: XELNW19906008653
[ 3275.735613] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 3275.735841] scsi host1: usb-storage 1-2:1.1
[ 3276.770877] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3276.771908] sr 1:0:0:0: Power-on or device reset occurred
[ 3276.772376] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3276.774855] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3279.783125] usb 1-2: USB disconnect, device number 15
[ 3280.281179] usb 1-2: new high-speed USB device number 16 using xhci_hcd
[ 3280.410596] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3280.410601] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3280.410603] usb 1-2: Product: HRY-LX1T
[ 3280.410604] usb 1-2: Manufacturer: HUAWEI
[ 3280.410605] usb 1-2: SerialNumber: XELNW19906008653
[ 3280.468846] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 3280.469001] scsi host1: usb-storage 1-2:1.1
[ 3281.506856] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3281.507129] sr 1:0:0:0: Power-on or device reset occurred
[ 3281.507568] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3281.509792] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3285.330737] usb 1-2: USB disconnect, device number 16
[ 3290.235182] usb 1-4.2.2: new high-speed USB device number 17 using xhci_hcd
[ 3290.315700] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3290.315705] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3290.315707] usb 1-4.2.2: Product: HRY-LX1T
[ 3290.315708] usb 1-4.2.2: Manufacturer: HUAWEI
[ 3290.315710] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 3290.357112] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 3290.357297] scsi host1: usb-storage 1-4.2.2:1.1
[ 3291.363133] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3291.363729] sr 1:0:0:0: Power-on or device reset occurred
[ 3291.364090] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3291.365684] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3292.596181] usb 1-4.2.2: USB disconnect, device number 17
[ 3292.859182] usb 1-4.2.2: new high-speed USB device number 18 using xhci_hcd
[ 3292.939846] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3292.939850] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3292.939852] usb 1-4.2.2: Product: HRY-LX1T
[ 3292.939853] usb 1-4.2.2: Manufacturer: HUAWEI
[ 3292.939854] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 3292.981232] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 3292.981423] scsi host1: usb-storage 1-4.2.2:1.1
[ 3293.986868] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3293.987309] sr 1:0:0:0: Power-on or device reset occurred
[ 3293.987915] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3293.989642] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3294.050167] Bluetooth: hci0: command 0x0401 tx timeout
[ 3294.050180] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3304.093073] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3324.066165] Bluetooth: hci0: command 0x0401 tx timeout
[ 3324.066174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3352.458357] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3354.018166] Bluetooth: hci0: command 0x0401 tx timeout
[ 3354.018176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3383.842181] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3384.035160] Bluetooth: hci0: command 0x0401 tx timeout
[ 3384.035169] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3414.050165] Bluetooth: hci0: command 0x0401 tx timeout
[ 3414.050175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3424.162282] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3444.066164] Bluetooth: hci0: command 0x0401 tx timeout
[ 3444.066172] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3456.469895] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3474.018163] Bluetooth: hci0: command 0x0401 tx timeout
[ 3474.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3491.543840] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3504.034163] Bluetooth: hci0: command 0x0401 tx timeout
[ 3504.034184] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3527.309106] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3534.051167] Bluetooth: hci0: command 0x0401 tx timeout
[ 3534.051176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3564.066166] Bluetooth: hci0: command 0x0401 tx timeout
[ 3564.066173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3574.818199] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3593.781211] usb 1-4.2.2: USB disconnect, device number 18
[ 3594.018192] Bluetooth: hci0: command 0x0401 tx timeout
[ 3594.018201] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3595.131177] usb 1-4.2.2: new high-speed USB device number 19 using xhci_hcd
[ 3595.211750] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3595.211755] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3595.211757] usb 1-4.2.2: Product: HRY-LX1T
[ 3595.211758] usb 1-4.2.2: Manufacturer: HUAWEI
[ 3595.211760] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 3595.253158] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 3595.253354] scsi host1: usb-storage 1-4.2.2:1.1
[ 3596.258951] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3596.259304] sr 1:0:0:0: Power-on or device reset occurred
[ 3596.259749] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3596.261492] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3597.492213] usb 1-4.2.2: USB disconnect, device number 19
[ 3597.776167] usb 1-4.2.2: new high-speed USB device number 20 using xhci_hcd
[ 3597.856622] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3597.856628] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3597.856630] usb 1-4.2.2: Product: HRY-LX1T
[ 3597.856631] usb 1-4.2.2: Manufacturer: HUAWEI
[ 3597.856633] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 3608.629626] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3624.034169] Bluetooth: hci0: command 0x0401 tx timeout
[ 3624.034181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3629.748216] usb 1-4.2.2: USB disconnect, device number 20
[ 3644.795173] usb 1-4.2.2: new high-speed USB device number 21 using xhci_hcd
[ 3644.875628] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3644.875635] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3644.875636] usb 1-4.2.2: Product: HRY-LX1T
[ 3644.875638] usb 1-4.2.2: Manufacturer: HUAWEI
[ 3644.875639] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 3644.917017] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 3644.917194] scsi host1: usb-storage 1-4.2.2:1.1
[ 3645.923400] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 3645.924213] sr 1:0:0:0: Power-on or device reset occurred
[ 3645.926586] sr 1:0:0:0: [sr0] scsi-1 drive
[ 3645.930236] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 3650.740211] usb 1-4.2.2: USB disconnect, device number 21
[ 3650.975174] usb 1-4.2.2: new high-speed USB device number 22 using xhci_hcd
[ 3651.055628] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 3651.055634] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3651.055636] usb 1-4.2.2: Product: HRY-LX1T
[ 3651.055637] usb 1-4.2.2: Manufacturer: HUAWEI
[ 3651.055639] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 3652.467040] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3654.050160] Bluetooth: hci0: command 0x0401 tx timeout
[ 3654.050169] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3684.066159] Bluetooth: hci0: command 0x0401 tx timeout
[ 3684.066168] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3698.606481] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3714.018167] Bluetooth: hci0: command 0x0401 tx timeout
[ 3714.018176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3742.242170] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3744.034167] Bluetooth: hci0: command 0x0401 tx timeout
[ 3744.034176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3774.050162] Bluetooth: hci0: command 0x0401 tx timeout
[ 3774.050170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3784.831541] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3804.067163] Bluetooth: hci0: command 0x0401 tx timeout
[ 3804.067173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3824.127895] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3834.018170] Bluetooth: hci0: command 0x0401 tx timeout
[ 3834.018178] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3856.930208] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3864.034166] Bluetooth: hci0: command 0x0401 tx timeout
[ 3864.034174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3890.210192] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3894.051171] Bluetooth: hci0: command 0x0401 tx timeout
[ 3894.051184] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3898.548250] usb 1-4.2.2: USB disconnect, device number 22
[ 3924.066171] Bluetooth: hci0: command 0x0401 tx timeout
[ 3924.066186] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3932.312144] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3954.018189] Bluetooth: hci0: command 0x0401 tx timeout
[ 3954.018198] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 3975.156106] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 3984.034163] Bluetooth: hci0: command 0x0401 tx timeout
[ 3984.034173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4014.050165] Bluetooth: hci0: command 0x0401 tx timeout
[ 4014.050171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4027.938178] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4030.587169] usb 1-4.2.2: new high-speed USB device number 23 using xhci_hcd
[ 4030.667795] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4030.667801] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4030.667802] usb 1-4.2.2: Product: HRY-LX1T
[ 4030.667804] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4030.667805] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4030.713818] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4030.714016] scsi host1: usb-storage 1-4.2.2:1.1
[ 4031.714861] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4031.715168] sr 1:0:0:0: Power-on or device reset occurred
[ 4031.715574] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4031.717352] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4034.740275] usb 1-4.2.2: USB disconnect, device number 23
[ 4034.943162] usb 1-4.2.2: new high-speed USB device number 24 using xhci_hcd
[ 4035.022796] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4035.022802] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4035.022803] usb 1-4.2.2: Product: HRY-LX1T
[ 4035.022804] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4035.022806] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4035.060806] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4035.060989] scsi host1: usb-storage 1-4.2.2:1.1
[ 4036.067301] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4036.067828] sr 1:0:0:0: Power-on or device reset occurred
[ 4036.068564] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4036.072320] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4044.067174] Bluetooth: hci0: command 0x0401 tx timeout
[ 4044.067182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4061.057243] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4074.018161] Bluetooth: hci0: command 0x0401 tx timeout
[ 4074.018167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4095.468842] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4104.034193] Bluetooth: hci0: command 0x0401 tx timeout
[ 4104.034203] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4134.050179] Bluetooth: hci0: command 0x0401 tx timeout
[ 4134.050189] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4150.818198] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4164.066187] Bluetooth: hci0: command 0x0401 tx timeout
[ 4164.066195] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4194.018162] Bluetooth: hci0: command 0x0401 tx timeout
[ 4194.018171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4200.994175] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4224.034222] Bluetooth: hci0: command 0x0401 tx timeout
[ 4224.034231] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4232.437778] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4254.050172] Bluetooth: hci0: command 0x0401 tx timeout
[ 4254.050181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4263.970170] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4284.066173] Bluetooth: hci0: command 0x0401 tx timeout
[ 4284.066183] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4310.051175] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4314.018192] Bluetooth: hci0: command 0x0401 tx timeout
[ 4314.018201] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4340.770172] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4344.034194] Bluetooth: hci0: command 0x0401 tx timeout
[ 4344.034203] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4344.766671] usb 1-4.2.2: USB disconnect, device number 24
[ 4370.307156] usb 1-4.2.2: new high-speed USB device number 25 using xhci_hcd
[ 4370.387715] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4370.387719] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4370.387721] usb 1-4.2.2: Product: HRY-LX1T
[ 4370.387729] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4370.387730] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4370.431753] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4370.431922] scsi host1: usb-storage 1-4.2.2:1.1
[ 4371.490880] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4371.491227] sr 1:0:0:0: Power-on or device reset occurred
[ 4371.492759] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4371.494497] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4374.050197] Bluetooth: hci0: command 0x0401 tx timeout
[ 4374.050207] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4374.718698] usb 1-4.2.2: USB disconnect, device number 25
[ 4374.921156] usb 1-4.2.2: new high-speed USB device number 26 using xhci_hcd
[ 4375.000597] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4375.000601] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4375.000603] usb 1-4.2.2: Product: HRY-LX1T
[ 4375.000605] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4375.000612] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4375.268897] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4386.238693] usb 1-4.2.2: USB disconnect, device number 26
[ 4404.067172] Bluetooth: hci0: command 0x0401 tx timeout
[ 4404.067192] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4417.249897] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4434.019161] Bluetooth: hci0: command 0x0401 tx timeout
[ 4434.019169] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4464.034168] Bluetooth: hci0: command 0x0401 tx timeout
[ 4464.034176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4472.327516] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4485.955166] usb 1-4.2.2: new high-speed USB device number 27 using xhci_hcd
[ 4486.035611] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4486.035614] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4486.035616] usb 1-4.2.2: Product: HRY-LX1T
[ 4486.035617] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4486.035618] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4486.079127] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4486.079374] scsi host1: usb-storage 1-4.2.2:1.1
[ 4487.138959] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4487.139225] sr 1:0:0:0: Power-on or device reset occurred
[ 4487.140496] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4487.142732] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4492.478707] usb 1-4.2.2: USB disconnect, device number 27
[ 4492.681178] usb 1-4.2.2: new high-speed USB device number 28 using xhci_hcd
[ 4492.760612] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4492.760615] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4492.760617] usb 1-4.2.2: Product: HRY-LX1T
[ 4492.760618] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4492.760619] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4492.799267] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4492.799433] scsi host1: usb-storage 1-4.2.2:1.1
[ 4493.859430] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4493.860031] sr 1:0:0:0: Power-on or device reset occurred
[ 4493.860945] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4493.864321] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4494.050160] Bluetooth: hci0: command 0x0401 tx timeout
[ 4494.050165] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4505.925915] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4524.066163] Bluetooth: hci0: command 0x0401 tx timeout
[ 4524.066173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4553.106384] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4554.018176] Bluetooth: hci0: command 0x0401 tx timeout
[ 4554.018182] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4577.726723] usb 1-4.2.2: USB disconnect, device number 28
[ 4584.034165] Bluetooth: hci0: command 0x0401 tx timeout
[ 4584.034174] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4588.479458] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4596.611183] usb 1-4.2.2: new high-speed USB device number 29 using xhci_hcd
[ 4596.690633] usb 1-4.2.2: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= 4.19
[ 4596.690642] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4596.690643] usb 1-4.2.2: Product: SAMSUNG_Android
[ 4596.690652] usb 1-4.2.2: Manufacturer: SAMSUNG
[ 4596.690654] usb 1-4.2.2: SerialNumber: RF8N71SEQJW
[ 4596.808745] cdc_acm 1-4.2.2:1.1: ttyACM0: USB ACM device
[ 4596.808788] usbcore: registered new interface driver cdc_acm
[ 4596.808791] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 4614.050181] Bluetooth: hci0: command 0x0401 tx timeout
[ 4614.050190] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4627.064831] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4631.230725] usb 1-4.2.2: USB disconnect, device number 29
[ 4632.676173] usb 1-4.2.2: new high-speed USB device number 30 using xhci_hcd
[ 4632.757508] usb 1-4.2.2: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= 4.19
[ 4632.757514] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4632.757517] usb 1-4.2.2: Product: SAMSUNG_Android
[ 4632.757519] usb 1-4.2.2: Manufacturer: SAMSUNG
[ 4632.757520] usb 1-4.2.2: SerialNumber: RF8N71SEQJW
[ 4632.831836] cdc_acm 1-4.2.2:1.1: ttyACM0: USB ACM device
[ 4644.067167] Bluetooth: hci0: command 0x0401 tx timeout
[ 4644.067186] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4659.013636] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4674.018180] Bluetooth: hci0: command 0x0401 tx timeout
[ 4674.018199] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4678.590735] usb 1-4.2.2: USB disconnect, device number 30
[ 4680.835164] usb 1-4.2.2: new high-speed USB device number 31 using xhci_hcd
[ 4680.914637] usb 1-4.2.2: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= 4.19
[ 4680.914644] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4680.914647] usb 1-4.2.2: Product: SAMSUNG_Android
[ 4680.914649] usb 1-4.2.2: Manufacturer: SAMSUNG
[ 4680.914650] usb 1-4.2.2: SerialNumber: RF8N71SEQJW
[ 4680.992219] cdc_acm 1-4.2.2:1.1: ttyACM0: USB ACM device
[ 4704.035161] Bluetooth: hci0: command 0x0401 tx timeout
[ 4704.035170] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4711.970213] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4734.050172] Bluetooth: hci0: command 0x0401 tx timeout
[ 4734.050180] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4739.262748] usb 1-4.2.2: USB disconnect, device number 31
[ 4743.202183] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4755.131185] usb 1-4.2.2: new high-speed USB device number 32 using xhci_hcd
[ 4755.210655] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4755.210663] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4755.210667] usb 1-4.2.2: Product: HRY-LX1T
[ 4755.210670] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4755.210672] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4755.263929] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4755.264214] scsi host1: usb-storage 1-4.2.2:1.1
[ 4756.323541] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4756.323908] sr 1:0:0:0: Power-on or device reset occurred
[ 4756.324329] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4756.326567] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4759.230750] usb 1-4.2.2: USB disconnect, device number 32
[ 4759.514162] usb 1-4.2.2: new high-speed USB device number 33 using xhci_hcd
[ 4759.593908] usb 1-4.2.2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 4759.593912] usb 1-4.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4759.593913] usb 1-4.2.2: Product: HRY-LX1T
[ 4759.593915] usb 1-4.2.2: Manufacturer: HUAWEI
[ 4759.593916] usb 1-4.2.2: SerialNumber: XELNW19906008653
[ 4759.647291] usb-storage 1-4.2.2:1.1: USB Mass Storage device detected
[ 4759.647569] scsi host1: usb-storage 1-4.2.2:1.1
[ 4760.674801] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 4760.675194] sr 1:0:0:0: Power-on or device reset occurred
[ 4760.675581] sr 1:0:0:0: [sr0] scsi-1 drive
[ 4760.677559] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4764.066166] Bluetooth: hci0: command 0x0401 tx timeout
[ 4764.066175] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4775.678380] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4794.018162] Bluetooth: hci0: command 0x0401 tx timeout
[ 4794.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4819.951656] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4824.034400] Bluetooth: hci0: command 0x0401 tx timeout
[ 4824.034408] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4851.234167] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4854.050563] Bluetooth: hci0: command 0x0401 tx timeout
[ 4854.050574] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4884.066158] Bluetooth: hci0: command 0x0401 tx timeout
[ 4884.066166] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4901.484853] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4914.019161] Bluetooth: hci0: command 0x0401 tx timeout
[ 4914.019169] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4944.034170] Bluetooth: hci0: command 0x0401 tx timeout
[ 4944.034181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4955.359850] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 4974.050188] Bluetooth: hci0: command 0x0401 tx timeout
[ 4974.050216] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 4986.751943] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5004.067158] Bluetooth: hci0: command 0x0401 tx timeout
[ 5004.067167] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5030.946177] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5034.018165] Bluetooth: hci0: command 0x0401 tx timeout
[ 5034.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5064.034178] Bluetooth: hci0: command 0x0401 tx timeout
[ 5064.034188] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5064.128182] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5094.050199] Bluetooth: hci0: command 0x0401 tx timeout
[ 5094.050208] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5104.150336] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5111.998793] usb 1-4.2.2: USB disconnect, device number 33
[ 5116.446162] usb 1-2: new high-speed USB device number 34 using xhci_hcd
[ 5116.575694] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5116.575700] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5116.575702] usb 1-2: Product: HRY-LX1T
[ 5116.575703] usb 1-2: Manufacturer: HUAWEI
[ 5116.575705] usb 1-2: SerialNumber: XELNW19906008653
[ 5116.639595] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5116.639813] scsi host1: usb-storage 1-2:1.1
[ 5117.668862] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5117.670017] sr 1:0:0:0: Power-on or device reset occurred
[ 5117.670465] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5117.676363] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5119.471338] usb 1-2: USB disconnect, device number 34
[ 5119.852164] usb 1-2: new high-speed USB device number 35 using xhci_hcd
[ 5119.981691] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5119.981695] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5119.981696] usb 1-2: Product: HRY-LX1T
[ 5119.981697] usb 1-2: Manufacturer: HUAWEI
[ 5119.981705] usb 1-2: SerialNumber: XELNW19906008653
[ 5120.031340] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5120.031560] scsi host1: usb-storage 1-2:1.1
[ 5121.059057] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5121.060130] sr 1:0:0:0: Power-on or device reset occurred
[ 5121.060585] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5121.062392] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5124.066194] Bluetooth: hci0: command 0x0401 tx timeout
[ 5124.066203] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5141.762970] usb 1-2: USB disconnect, device number 35
[ 5150.246157] usb 1-2: new high-speed USB device number 36 using xhci_hcd
[ 5150.375586] usb 1-2: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= 4.19
[ 5150.375590] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5150.375591] usb 1-2: Product: SAMSUNG_Android
[ 5150.375593] usb 1-2: Manufacturer: SAMSUNG
[ 5150.375594] usb 1-2: SerialNumber: RF8N71SEQJW
[ 5150.464178] cdc_acm 1-2:1.1: ttyACM0: USB ACM device
[ 5154.018157] Bluetooth: hci0: command 0x0401 tx timeout
[ 5154.018165] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5164.189593] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5165.426603] usb 1-2: USB disconnect, device number 36
[ 5184.034166] Bluetooth: hci0: command 0x0401 tx timeout
[ 5184.034173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5185.169159] usb 1-2: new high-speed USB device number 37 using xhci_hcd
[ 5185.298696] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5185.298704] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5185.298706] usb 1-2: Product: HRY-LX1T
[ 5185.298707] usb 1-2: Manufacturer: HUAWEI
[ 5185.298709] usb 1-2: SerialNumber: XELNW19906008653
[ 5185.343483] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5185.343692] scsi host1: usb-storage 1-2:1.1
[ 5186.402970] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5186.406695] sr 1:0:0:0: Power-on or device reset occurred
[ 5186.411129] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5186.413725] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5188.032602] usb 1-2: USB disconnect, device number 37
[ 5188.503176] usb 1-2: new high-speed USB device number 38 using xhci_hcd
[ 5188.632703] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5188.632709] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5188.632710] usb 1-2: Product: HRY-LX1T
[ 5188.632712] usb 1-2: Manufacturer: HUAWEI
[ 5188.632713] usb 1-2: SerialNumber: XELNW19906008653
[ 5198.084632] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5214.050170] Bluetooth: hci0: command 0x0401 tx timeout
[ 5214.050181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5244.066171] Bluetooth: hci0: command 0x0401 tx timeout
[ 5244.066180] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5244.962206] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5274.018161] Bluetooth: hci0: command 0x0401 tx timeout
[ 5274.018173] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5279.948311] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5304.034168] Bluetooth: hci0: command 0x0401 tx timeout
[ 5304.034177] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5314.432509] usb 1-2: USB disconnect, device number 38
[ 5315.197843] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5316.653166] usb 1-2: new high-speed USB device number 39 using xhci_hcd
[ 5316.782717] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5316.782723] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5316.782725] usb 1-2: Product: HRY-LX1T
[ 5316.782726] usb 1-2: Manufacturer: HUAWEI
[ 5316.782727] usb 1-2: SerialNumber: XELNW19906008653
[ 5316.831606] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5316.831798] scsi host1: usb-storage 1-2:1.1
[ 5317.858911] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5317.859308] sr 1:0:0:0: Power-on or device reset occurred
[ 5317.860420] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5317.862800] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5322.072755] usb 1-2: USB disconnect, device number 39
[ 5322.597185] usb 1-2: new high-speed USB device number 40 using xhci_hcd
[ 5322.726719] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5322.726724] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5322.726726] usb 1-2: Product: HRY-LX1T
[ 5322.726728] usb 1-2: Manufacturer: HUAWEI
[ 5322.726729] usb 1-2: SerialNumber: XELNW19906008653
[ 5322.783870] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5322.784033] scsi host1: usb-storage 1-2:1.1
[ 5323.811095] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5323.811448] sr 1:0:0:0: Power-on or device reset occurred
[ 5323.814109] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5323.815927] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5334.050164] Bluetooth: hci0: command 0x0401 tx timeout
[ 5334.050171] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5349.228119] usb 1-2: USB disconnect, device number 40
[ 5351.420188] usb 1-2: new high-speed USB device number 41 using xhci_hcd
[ 5351.549595] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5351.549600] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5351.549602] usb 1-2: Product: HRY-LX1T
[ 5351.549603] usb 1-2: Manufacturer: HUAWEI
[ 5351.549605] usb 1-2: SerialNumber: XELNW19906008653
[ 5351.615752] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5351.615920] scsi host1: usb-storage 1-2:1.1
[ 5352.674956] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5352.676187] sr 1:0:0:0: Power-on or device reset occurred
[ 5352.677760] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5352.679423] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5364.066166] Bluetooth: hci0: command 0x0401 tx timeout
[ 5364.066176] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5365.232784] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
[ 5366.665880] usb 1-2: USB disconnect, device number 41
[ 5367.123165] usb 1-2: new high-speed USB device number 42 using xhci_hcd
[ 5367.252726] usb 1-2: New USB device found, idVendor=12d1, idProduct=107e, bcdDevice= 2.99
[ 5367.252733] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5367.252734] usb 1-2: Product: HRY-LX1T
[ 5367.252735] usb 1-2: Manufacturer: HUAWEI
[ 5367.252737] usb 1-2: SerialNumber: XELNW19906008653
[ 5367.295379] usb-storage 1-2:1.1: USB Mass Storage device detected
[ 5367.295582] scsi host1: usb-storage 1-2:1.1
[ 5368.355279] scsi 1:0:0:0: CD-ROM            Linux    File-CD Gadget   0414 PQ: 0 ANSI: 2
[ 5368.355647] sr 1:0:0:0: Power-on or device reset occurred
[ 5368.356224] sr 1:0:0:0: [sr0] scsi-1 drive
[ 5368.362985] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 5394.018169] Bluetooth: hci0: command 0x0401 tx timeout
[ 5394.018181] Bluetooth: hci0: No gpio to reset Realtek device, ignoring
[ 5408.036033] wlp3s0: No active IBSS STAs - trying to scan for other IBSS networks with same SSID (merge)
Add Comment
Author