ubuntuusers.de

WLAN deaktiviert sich in Ubuntu 18.04

Autor:
ralf18609
Datum:
17. Mai 2018 19:05
Code:
   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
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
[    0.000000] Linux version 4.15.0-21-generic (buildd@lgw01-amd64-042) (gcc version 7.3.0 (Ubuntu 7.3.0-16ubuntu3)) #22-Ubuntu SMP Tue May 1 13:26:51 UTC 2018 (Ubuntu 4.15.0-21.22-generic 4.15.17)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-21-generic root=UUID=e903601f-9387-4b35-8b63-ad0edb3a43be ro quiet splash vt.handoff=1
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009571afff] usable
[    0.000000] BIOS-e820: [mem 0x000000009571b000-0x000000009571bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009571c000-0x000000009571cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009571d000-0x0000000099af1fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000099af2000-0x000000009a99efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009a99f000-0x000000009a9e4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009a9e5000-0x000000009adfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009adff000-0x000000009b2a2fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009b2a3000-0x000000009b37efff] type 20
[    0.000000] BIOS-e820: [mem 0x000000009b37f000-0x000000009b3fefff] usable
[    0.000000] BIOS-e820: [mem 0x000000009b3ff000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0x9a9ad000  ACPI=0x9a9ad000  SMBIOS=0x9b201000  SMBIOS 3.0=0x9b200000  ESRT=0x97d7ef18 
[    0.000000] secureboot: Secure boot could not be determined (mode 0)
[    0.000000] random: fast init done
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. X411UA/X411UA, BIOS X411UA.300 08/04/2017
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x25f000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 00C0000000 mask 7FC0000000 uncachable
[    0.000000]   1 base 00A0000000 mask 7FE0000000 uncachable
[    0.000000]   2 base 009C000000 mask 7FFC000000 uncachable
[    0.000000]   3 base 009B800000 mask 7FFF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: last_pfn = 0x9b3ff max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x0000000097d7ef18 to 0x0000000097d7ef50.
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [        (ptrval)] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x10f53e000, 0x10f53efff] PGTABLE
[    0.000000] BRK [0x10f53f000, 0x10f53ffff] PGTABLE
[    0.000000] BRK [0x10f540000, 0x10f540fff] PGTABLE
[    0.000000] BRK [0x10f541000, 0x10f541fff] PGTABLE
[    0.000000] BRK [0x10f542000, 0x10f542fff] PGTABLE
[    0.000000] BRK [0x10f543000, 0x10f543fff] PGTABLE
[    0.000000] BRK [0x10f544000, 0x10f544fff] PGTABLE
[    0.000000] BRK [0x10f545000, 0x10f545fff] PGTABLE
[    0.000000] BRK [0x10f546000, 0x10f546fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x31977000-0x34cb2fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000009A9AD000 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x000000009A9AD0B0 0000DC (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x000000009A9D8640 000114 (v06 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x000000009A9AD218 02B427 (v02 _ASUS_ Notebook 01072009 INTL 20160422)
[    0.000000] ACPI: FACS 0x000000009ADCDF00 000040
[    0.000000] ACPI: APIC 0x000000009A9D8758 0000BC (v03 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x000000009A9D8818 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x000000009A9D8860 00009C (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: ECDT 0x000000009A9D8900 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
[    0.000000] ACPI: MCFG 0x000000009A9D89C8 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00000097)
[    0.000000] ACPI: SSDT 0x000000009A9D8A08 000359 (v01 SataRe SataTabl 00001000 INTL 20160422)
[    0.000000] ACPI: SSDT 0x000000009A9D8D68 0067E5 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
[    0.000000] ACPI: MSDM 0x000000009A9DF550 000055 (v03 _ASUS_ Notebook 01072009 ASUS 00000001)
[    0.000000] ACPI: SSDT 0x000000009A9DF5A8 003147 (v02 SaSsdt SaSsdt   00003000 INTL 20160422)
[    0.000000] ACPI: HPET 0x000000009A9E26F0 000038 (v01 INTEL  KBL-ULT  00000001 MSFT 0000005F)
[    0.000000] ACPI: UEFI 0x000000009A9E2728 000042 (v01 _ASUS_ Notebook 00000002      01000013)
[    0.000000] ACPI: SSDT 0x000000009A9E2770 000EDE (v02 CpuRef CpuSsdt  00003000 INTL 20160422)
[    0.000000] ACPI: LPIT 0x000000009A9E3650 000094 (v01 INTEL  KBL-ULT  00000000 MSFT 0000005F)
[    0.000000] ACPI: SSDT 0x000000009A9E36E8 000141 (v02 INTEL  HdaDsp   00000000 INTL 20160422)
[    0.000000] ACPI: SSDT 0x000000009A9E3830 00029F (v02 INTEL  sensrhub 00000000 INTL 20160422)
[    0.000000] ACPI: SSDT 0x000000009A9E3AD0 000517 (v02 INTEL  TbtTypeC 00000000 INTL 20160422)
[    0.000000] ACPI: DBGP 0x000000009A9E3FE8 000034 (v01 INTEL           00000002 MSFT 0000005F)
[    0.000000] ACPI: DBG2 0x000000009A9E4020 000054 (v00 INTEL           00000002 MSFT 0000005F)
[    0.000000] ACPI: DMAR 0x000000009A9E4078 000138 (v01 INTEL  KBL      00000001 INTL 00000001)
[    0.000000] ACPI: BGRT 0x000000009A9E41B0 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: TPM2 0x000000009A9E41E8 000034 (v03 _ASUS_ Notebook 00000001 AMI  00000000)
[    0.000000] ACPI: WSMT 0x000000009A9E4220 000028 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000025effffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x25efd5000-0x25effffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000025effffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.000000]   node   0: [mem 0x0000000000059000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000009571afff]
[    0.000000]   node   0: [mem 0x000000009571d000-0x0000000099af1fff]
[    0.000000]   node   0: [mem 0x000000009b37f000-0x000000009b3fefff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000025effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000025effffff]
[    0.000000] On node 0 totalpages: 2067212
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 23 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 9774 pages used for memmap
[    0.000000]   DMA32 zone: 625520 pages, LIFO batch:31
[    0.000000]   Normal zone: 22464 pages used for memmap
[    0.000000]   Normal zone: 1437696 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 98 pages
[    0.000000] Reserving Intel graphics memory at 0x000000009c000000-0x000000009fffffff
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x9571b000-0x9571bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x9571c000-0x9571cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x99af2000-0x9a99efff]
[    0.000000] PM: Registered nosave memory: [mem 0x9a99f000-0x9a9e4fff]
[    0.000000] PM: Registered nosave memory: [mem 0x9a9e5000-0x9adfefff]
[    0.000000] PM: Registered nosave memory: [mem 0x9adff000-0x9b2a2fff]
[    0.000000] PM: Registered nosave memory: [mem 0x9b2a3000-0x9b37efff]
[    0.000000] PM: Registered nosave memory: [mem 0x9b3ff000-0x9fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xa0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xa0000000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 46 pages/cpu @        (ptrval) s151552 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s151552 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2034887
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-21-generic root=UUID=e903601f-9387-4b35-8b63-ad0edb3a43be ro quiet splash vt.handoff=1
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 7901644K/8268848K available (12300K kernel code, 2470K rwdata, 4240K rodata, 2404K init, 2416K bss, 367204K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 39065 entries in 153 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[    0.000000] vt handoff: transparent VT on vt#1
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] ACPI: Core revision 20170831
[    0.000000] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.000000] hpet clockevent registered
[    0.004000] APIC: Switch to symmetric I/O mode setup
[    0.004000] DMAR: Host address width 39
[    0.004000] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.004000] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.004000] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.004000] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.004000] DMAR: RMRR base: 0x0000009a107000 end: 0x0000009a126fff
[    0.004000] DMAR: RMRR base: 0x0000009b800000 end: 0x0000009fffffff
[    0.004000] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.004000] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[    0.004000] DMAR: ANDD device: 7 name: \_SB.PCI0.SPI0
[    0.004000] DMAR: ANDD device: 9 name: \_SB.PCI0.UA00
[    0.004000] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.004000] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.004000] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.004000] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.004000] x2apic enabled
[    0.004000] Switched APIC routing to cluster x2apic.
[    0.008000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.028000] tsc: Detected 1800.000 MHz processor
[    0.028000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3600.00 BogoMIPS (lpj=7200000)
[    0.028000] pid_max: default: 32768 minimum: 301
[    0.028000] Security Framework initialized
[    0.028000] Yama: becoming mindful.
[    0.028000] AppArmor: AppArmor initialized
[    0.028000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.028000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.028000] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.028000] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.028000] CPU: Physical Processor ID: 0
[    0.028000] CPU: Processor Core ID: 0
[    0.028000] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.028000] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.028000] mce: CPU supports 10 MCE banks
[    0.028000] CPU0: Thermal monitoring enabled (TM1)
[    0.028000] process: using mwait in idle threads
[    0.028000] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.028000] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.028000] Spectre V2 : Mitigation: Full generic retpoline
[    0.028000] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
[    0.028000] Freeing SMP alternatives memory: 36K
[    0.037654] TSC deadline timer enabled
[    0.037659] smpboot: CPU0: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz (family: 0x6, model: 0x8e, stepping: 0xa)
[    0.037753] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.037798] ... version:                4
[    0.037799] ... bit width:              48
[    0.037800] ... generic registers:      4
[    0.037801] ... value mask:             0000ffffffffffff
[    0.037802] ... max period:             00007fffffffffff
[    0.037803] ... fixed-purpose events:   3
[    0.037804] ... event mask:             000000070000000f
[    0.037860] Hierarchical SRCU implementation.
[    0.039738] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.039756] smp: Bringing up secondary CPUs ...
[    0.039850] x86: Booting SMP configuration:
[    0.039852] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.040848] smp: Brought up 1 node, 8 CPUs
[    0.040848] smpboot: Max logical packages: 1
[    0.040848] smpboot: Total of 8 processors activated (28800.00 BogoMIPS)
[    0.044442] devtmpfs: initialized
[    0.044442] x86/mm: Memory block size: 128MB
[    0.045019] evm: security.selinux
[    0.045020] evm: security.SMACK64
[    0.045021] evm: security.SMACK64EXEC
[    0.045021] evm: security.SMACK64TRANSMUTE
[    0.045022] evm: security.SMACK64MMAP
[    0.045023] evm: security.apparmor
[    0.045023] evm: security.ima
[    0.045024] evm: security.capability
[    0.045044] PM: Registering ACPI NVS region [mem 0x9571b000-0x9571bfff] (4096 bytes)
[    0.045044] PM: Registering ACPI NVS region [mem 0x9a9e5000-0x9adfefff] (4300800 bytes)
[    0.045044] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.045044] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.045044] pinctrl core: initialized pinctrl subsystem
[    0.045044] RTC time: 15:44:31, date: 05/17/18
[    0.045044] NET: Registered protocol family 16
[    0.045044] audit: initializing netlink subsys (disabled)
[    0.045044] audit: type=2000 audit(1526571871.044:1): state=initialized audit_enabled=0 res=1
[    0.045044] cpuidle: using governor ladder
[    0.045044] cpuidle: using governor menu
[    0.045044] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.045044] ACPI: bus type PCI registered
[    0.045044] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.045044] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.045044] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.045044] PCI: Using configuration type 1 for base access
[    0.048900] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.048900] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.048903] ACPI: Added _OSI(Module Device)
[    0.048903] ACPI: Added _OSI(Processor Device)
[    0.048903] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.048903] ACPI: Added _OSI(Processor Aggregator Device)
[    0.048903] ACPI: EC: EC started
[    0.048903] ACPI: EC: interrupt blocked
[    0.049374] ACPI: \: Used as first EC
[    0.049377] ACPI: \: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.049379] ACPI: \: Used as boot ECDT EC to handle transactions
[    0.056581] ACPI: Executed 31 blocks of module-level executable AML code
[    0.093882] ACPI: Dynamic OEM Table Load:
[    0.093894] ACPI: SSDT 0xFFFF9685D4A01000 00058B (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    0.094397] ACPI: Executed 1 blocks of module-level executable AML code
[    0.094578] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.097520] ACPI: Dynamic OEM Table Load:
[    0.097530] ACPI: SSDT 0xFFFF9685D4AE6800 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    0.098006] ACPI: Executed 1 blocks of module-level executable AML code
[    0.098344] ACPI: Dynamic OEM Table Load:
[    0.098351] ACPI: SSDT 0xFFFF9685D4BE5800 000115 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160422)
[    0.098752] ACPI: Executed 1 blocks of module-level executable AML code
[    0.098926] ACPI: Dynamic OEM Table Load:
[    0.098933] ACPI: SSDT 0xFFFF9685D4BE5A00 0001A4 (v02 PmRef  HwpLvt   00003000 INTL 20160422)
[    0.099329] ACPI: Executed 1 blocks of module-level executable AML code
[    0.100237] ACPI: Dynamic OEM Table Load:
[    0.100247] ACPI: SSDT 0xFFFF9685D4A07800 00065C (v02 PmRef  ApIst    00003000 INTL 20160422)
[    0.101315] ACPI: Executed 1 blocks of module-level executable AML code
[    0.101633] ACPI: Dynamic OEM Table Load:
[    0.101640] ACPI: SSDT 0xFFFF9685D4BE6200 000197 (v02 PmRef  ApHwp    00003000 INTL 20160422)
[    0.102117] ACPI: Executed 1 blocks of module-level executable AML code
[    0.102444] ACPI: Dynamic OEM Table Load:
[    0.102451] ACPI: SSDT 0xFFFF9685D4BE7C00 00018A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    0.102915] ACPI: Executed 1 blocks of module-level executable AML code
[    0.109137] ACPI: Interpreter enabled
[    0.109212] ACPI: (supports S0 S3 S4 S5)
[    0.109213] ACPI: Using IOAPIC for interrupt routing
[    0.109284] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.111358] ACPI: Enabled 6 GPEs in block 00 to 7F
[    0.120835] ACPI: Power Resource [WRST] (on)
[    0.121173] ACPI: Power Resource [WRST] (on)
[    0.121505] ACPI: Power Resource [WRST] (on)
[    0.121846] ACPI: Power Resource [WRST] (on)
[    0.122174] ACPI: Power Resource [WRST] (on)
[    0.122511] ACPI: Power Resource [WRST] (on)
[    0.122840] ACPI: Power Resource [WRST] (on)
[    0.123168] ACPI: Power Resource [WRST] (on)
[    0.123496] ACPI: Power Resource [WRST] (on)
[    0.123828] ACPI: Power Resource [WRST] (on)
[    0.124380] ACPI: Power Resource [WRST] (on)
[    0.124713] ACPI: Power Resource [WRST] (on)
[    0.125054] ACPI: Power Resource [WRST] (on)
[    0.125381] ACPI: Power Resource [WRST] (on)
[    0.125710] ACPI: Power Resource [WRST] (on)
[    0.126040] ACPI: Power Resource [WRST] (on)
[    0.126369] ACPI: Power Resource [WRST] (on)
[    0.127144] ACPI: Power Resource [WRST] (on)
[    0.127476] ACPI: Power Resource [WRST] (on)
[    0.127807] ACPI: Power Resource [WRST] (on)
[    0.157730] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    0.157739] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.161228] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.161229] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.162743] PCI host bridge to bus 0000:00
[    0.162747] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.162749] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.162751] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.162753] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.162755] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.162757] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.162759] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.162761] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.162763] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.162765] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.162767] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.162769] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.162771] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.162773] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.162775] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.162777] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.162779] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xefffffff window]
[    0.162781] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.162784] pci_bus 0000:00: root bus resource [bus 00-7e]
[    0.162798] pci 0000:00:00.0: [8086:5914] type 00 class 0x060000
[    0.163479] pci 0000:00:02.0: [8086:5917] type 00 class 0x030000
[    0.163497] pci 0000:00:02.0: reg 0x10: [mem 0xee000000-0xeeffffff 64bit]
[    0.163506] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.163513] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.163537] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.163813] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.163831] pci 0000:00:04.0: reg 0x10: [mem 0xef120000-0xef127fff 64bit]
[    0.164217] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
[    0.164252] pci 0000:00:14.0: reg 0x10: [mem 0xef110000-0xef11ffff 64bit]
[    0.164347] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.164796] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
[    0.164829] pci 0000:00:14.2: reg 0x10: [mem 0xef13a000-0xef13afff 64bit]
[    0.165223] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
[    0.165487] pci 0000:00:15.0: reg 0x10: [mem 0xef139000-0xef139fff 64bit]
[    0.166610] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000
[    0.166875] pci 0000:00:15.1: reg 0x10: [mem 0xef138000-0xef138fff 64bit]
[    0.167957] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
[    0.167991] pci 0000:00:16.0: reg 0x10: [mem 0xef137000-0xef137fff 64bit]
[    0.168096] pci 0000:00:16.0: PME# supported from D3hot
[    0.168476] pci 0000:00:17.0: [8086:9d03] type 00 class 0x010601
[    0.168501] pci 0000:00:17.0: reg 0x10: [mem 0xef130000-0xef131fff]
[    0.168512] pci 0000:00:17.0: reg 0x14: [mem 0xef136000-0xef1360ff]
[    0.168523] pci 0000:00:17.0: reg 0x18: [io  0xf090-0xf097]
[    0.168533] pci 0000:00:17.0: reg 0x1c: [io  0xf080-0xf083]
[    0.168544] pci 0000:00:17.0: reg 0x20: [io  0xf060-0xf07f]
[    0.168554] pci 0000:00:17.0: reg 0x24: [mem 0xef135000-0xef1357ff]
[    0.168616] pci 0000:00:17.0: PME# supported from D3hot
[    0.168927] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
[    0.169032] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.169405] pci 0000:00:1c.5: [8086:9d15] type 01 class 0x060400
[    0.169518] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.169985] pci 0000:00:1e.0: [8086:9d27] type 00 class 0x118000
[    0.170253] pci 0000:00:1e.0: reg 0x10: [mem 0xef134000-0xef134fff 64bit]
[    0.171399] pci 0000:00:1e.2: [8086:9d29] type 00 class 0x118000
[    0.171667] pci 0000:00:1e.2: reg 0x10: [mem 0xef133000-0xef133fff 64bit]
[    0.172723] pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100
[    0.173141] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
[    0.173160] pci 0000:00:1f.2: reg 0x10: [mem 0xef12c000-0xef12ffff]
[    0.173514] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040300
[    0.173547] pci 0000:00:1f.3: reg 0x10: [mem 0xef128000-0xef12bfff 64bit]
[    0.173579] pci 0000:00:1f.3: reg 0x20: [mem 0xef100000-0xef10ffff 64bit]
[    0.173645] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.174136] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
[    0.174199] pci 0000:00:1f.4: reg 0x10: [mem 0xef132000-0xef1320ff 64bit]
[    0.174272] pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
[    0.174725] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.175021] pci 0000:02:00.0: [10ec:b822] type 00 class 0x028000
[    0.175087] pci 0000:02:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.175151] pci 0000:02:00.0: reg 0x18: [mem 0xef000000-0xef00ffff 64bit]
[    0.175468] pci 0000:02:00.0: supports D1 D2
[    0.175471] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.184199] pci 0000:00:1c.5: PCI bridge to [bus 02]
[    0.184204] pci 0000:00:1c.5:   bridge window [io  0xe000-0xefff]
[    0.184208] pci 0000:00:1c.5:   bridge window [mem 0xef000000-0xef0fffff]
[    0.189549] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.189674] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.189795] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.189914] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190034] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190152] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190272] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190391] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.191625] ACPI: EC: interrupt unblocked
[    0.191646] ACPI: EC: event unblocked
[    0.191662] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.191664] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.191967] SCSI subsystem initialized
[    0.192017] libata version 3.00 loaded.
[    0.192034] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.192034] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.192034] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.192034] vgaarb: loaded
[    0.192041] ACPI: bus type USB registered
[    0.192058] usbcore: registered new interface driver usbfs
[    0.192067] usbcore: registered new interface driver hub
[    0.192099] usbcore: registered new device driver usb
[    0.192147] EDAC MC: Ver: 3.0.0
[    0.192360] Registered efivars operations
[    0.215098] PCI: Using ACPI for IRQ routing
[    0.229423] PCI: pci_cache_line_size set to 64 bytes
[    0.229866] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.229868] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.229869] e820: reserve RAM buffer [mem 0x9571b000-0x97ffffff]
[    0.229871] e820: reserve RAM buffer [mem 0x99af2000-0x9bffffff]
[    0.229873] e820: reserve RAM buffer [mem 0x9b3ff000-0x9bffffff]
[    0.229874] e820: reserve RAM buffer [mem 0x25f000000-0x25fffffff]
[    0.229986] NetLabel: Initializing
[    0.229988] NetLabel:  domain hash size = 128
[    0.229988] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.230008] NetLabel:  unlabeled traffic allowed by default
[    0.230028] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.230028] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.232033] clocksource: Switched to clocksource hpet
[    0.246319] VFS: Disk quotas dquot_6.6.0
[    0.246340] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.246468] AppArmor: AppArmor Filesystem Enabled
[    0.246495] pnp: PnP ACPI init
[    0.246941] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.246945] system 00:00: [io  0xffff] has been reserved
[    0.246947] system 00:00: [io  0xffff] has been reserved
[    0.246949] system 00:00: [io  0xffff] has been reserved
[    0.246952] system 00:00: [io  0x1800-0x18fe] has been reserved
[    0.246954] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.246962] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.247153] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.247218] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.247224] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.247530] pnp 00:03: Plug and Play ACPI device, IDs ATK3001 PNP030b (active)
[    0.247986] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.247988] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.247991] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.247993] system 00:04: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.247996] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.247998] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.248032] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.248035] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    0.248037] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.248040] system 00:04: [mem 0xeffe0000-0xefffffff] has been reserved
[    0.248046] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.248122] system 00:05: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.248124] system 00:05: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.248127] system 00:05: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.248129] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.248132] system 00:05: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.248134] system 00:05: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.248137] system 00:05: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.248142] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.248731] system 00:06: [io  0xff00-0xfffe] has been reserved
[    0.248737] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.251019] system 00:07: [mem 0xfe029000-0xfe029fff] has been reserved
[    0.251022] system 00:07: [mem 0xfe028000-0xfe028fff] has been reserved
[    0.251028] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.253278] pnp: PnP ACPI: found 8 devices
[    0.262129] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.262152] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    0.262156] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    0.262159] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    0.262186] pci 0000:00:1c.0: BAR 14: assigned [mem 0xa0000000-0xa01fffff]
[    0.262203] pci 0000:00:1c.0: BAR 15: assigned [mem 0xa0200000-0xa03fffff 64bit pref]
[    0.262207] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.262211] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.262221] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.262226] pci 0000:00:1c.0:   bridge window [mem 0xa0000000-0xa01fffff]
[    0.262230] pci 0000:00:1c.0:   bridge window [mem 0xa0200000-0xa03fffff 64bit pref]
[    0.262238] pci 0000:00:1c.5: PCI bridge to [bus 02]
[    0.262242] pci 0000:00:1c.5:   bridge window [io  0xe000-0xefff]
[    0.262247] pci 0000:00:1c.5:   bridge window [mem 0xef000000-0xef0fffff]
[    0.262258] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.262260] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.262262] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.262264] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.262266] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.262268] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.262270] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.262272] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.262275] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.262277] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.262279] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.262281] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.262283] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.262285] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.262287] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.262289] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.262291] pci_bus 0000:00: resource 20 [mem 0xa0000000-0xefffffff window]
[    0.262293] pci_bus 0000:00: resource 21 [mem 0xfd000000-0xfe7fffff window]
[    0.262296] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.262298] pci_bus 0000:01: resource 1 [mem 0xa0000000-0xa01fffff]
[    0.262300] pci_bus 0000:01: resource 2 [mem 0xa0200000-0xa03fffff 64bit pref]
[    0.262302] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.262304] pci_bus 0000:02: resource 1 [mem 0xef000000-0xef0fffff]
[    0.262623] NET: Registered protocol family 2
[    0.262844] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.262995] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.263127] TCP: Hash tables configured (established 65536 bind 65536)
[    0.263170] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.263198] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.263273] NET: Registered protocol family 1
[    0.263290] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.263925] PCI: CLS 64 bytes, default 64
[    0.263968] Unpacking initramfs...
[    1.543510] Freeing initrd memory: 52464K
[    1.543575] DMAR: ACPI device "device:71" under DMAR at fed91000 as 00:15.0
[    1.543580] DMAR: ACPI device "device:72" under DMAR at fed91000 as 00:15.1
[    1.543584] DMAR: ACPI device "device:73" under DMAR at fed91000 as 00:1e.2
[    1.543588] DMAR: ACPI device "device:74" under DMAR at fed91000 as 00:1e.0
[    1.543608] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.543612] software IO TLB [mem 0x9045d000-0x9445d000] (64MB) mapped at [00000000087b9bc8-0000000066ff4cd0]
[    1.543969] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x19f2297dd97, max_idle_ns: 440795236593 ns
[    1.544285] Scanning for low memory corruption every 60 seconds
[    1.545347] Initialise system trusted keyrings
[    1.545361] Key type blacklist registered
[    1.545447] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    1.547016] zbud: loaded
[    1.547778] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.548046] fuse init (API version 7.26)
[    1.551518] Key type asymmetric registered
[    1.551519] Asymmetric key parser 'x509' registered
[    1.551558] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    1.551628] io scheduler noop registered
[    1.551629] io scheduler deadline registered
[    1.551684] io scheduler cfq registered (default)
[    1.552820] pcieport 0000:00:1c.5: AER enabled with IRQ 123
[    1.552852] pcieport 0000:00:1c.0: Signaling PME with IRQ 122
[    1.552879] pcieport 0000:00:1c.5: Signaling PME with IRQ 123
[    1.552910] pciehp 0000:00:1c.0:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[    1.553017] efifb: probing for efifb
[    1.553032] efifb: framebuffer at 0xd0000000, using 1920k, total 1920k
[    1.553034] efifb: mode is 800x600x32, linelength=3200, pages=1
[    1.553035] efifb: scrolling: redraw
[    1.553037] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.553175] Console: switching to colour frame buffer device 100x37
[    1.553191] fb0: EFI VGA frame buffer device
[    1.553202] intel_idle: MWAIT substates: 0x11142120
[    1.553204] intel_idle: v0.4.1 model 0x8E
[    1.553878] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.554132] ACPI: AC Adapter [AC0] (on-line)
[    1.554231] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:19/PNP0C09:01/PNP0C0D:00/input/input0
[    1.554248] ACPI: Lid Switch [LID]
[    1.554319] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.554338] ACPI: Sleep Button [SLPB]
[    1.554379] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    1.554395] ACPI: Power Button [PWRB]
[    1.554436] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.554511] ACPI: Power Button [PWRF]
[    1.557838] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    1.558020] thermal LNXTHERM:00: registered as thermal_zone0
[    1.558022] ACPI: Thermal Zone [THRM] (46 C)
[    1.558258] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.565549] Linux agpgart interface v0.103
[    1.570881] ACPI: Battery Slot [BAT0] (battery present)
[    1.571587] loop: module loaded
[    1.571813] libphy: Fixed MDIO Bus: probed
[    1.571815] tun: Universal TUN/TAP device driver, 1.6
[    1.571913] PPP generic driver version 2.4.2
[    1.571992] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.571995] ehci-pci: EHCI PCI platform driver
[    1.572037] ehci-platform: EHCI generic platform driver
[    1.572049] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.572051] ohci-pci: OHCI PCI platform driver
[    1.572061] ohci-platform: OHCI generic platform driver
[    1.572072] uhci_hcd: USB Universal Host Controller Interface driver
[    1.572323] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.572331] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.573463] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[    1.573469] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.573672] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.573675] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.573677] usb usb1: Product: xHCI Host Controller
[    1.573679] usb usb1: Manufacturer: Linux 4.15.0-21-generic xhci-hcd
[    1.573681] usb usb1: SerialNumber: 0000:00:14.0
[    1.573897] hub 1-0:1.0: USB hub found
[    1.573920] hub 1-0:1.0: 12 ports detected
[    1.575315] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.575320] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.575370] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.575372] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.575374] usb usb2: Product: xHCI Host Controller
[    1.575376] usb usb2: Manufacturer: Linux 4.15.0-21-generic xhci-hcd
[    1.575378] usb usb2: SerialNumber: 0000:00:14.0
[    1.575573] hub 2-0:1.0: USB hub found
[    1.575591] hub 2-0:1.0: 6 ports detected
[    1.575925] usb: port power management may be unreliable
[    1.576747] i8042: PNP: PS/2 Controller [PNP030b:PS2K] at 0x60,0x64 irq 1
[    1.576748] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.578952] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.579227] mousedev: PS/2 mouse device common for all mice
[    1.579809] rtc_cmos 00:01: RTC can wake from S4
[    1.580320] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    1.580416] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.580425] i2c /dev entries driver
[    1.580484] device-mapper: uevent: version 1.0.3
[    1.580619] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.580623] intel_pstate: Intel P-state driver initializing
[    1.581926] intel_pstate: HWP enabled
[    1.582453] ledtrig-cpu: registered to indicate activity on CPUs
[    1.582455] EFI Variables Facility v0.08 2004-May-17
[    1.610562] intel_pmc_core:  initialized
[    1.610707] NET: Registered protocol family 10
[    1.615291] Segment Routing with IPv6
[    1.615303] NET: Registered protocol family 17
[    1.615502] Key type dns_resolver registered
[    1.616724] RAS: Correctable Errors collector initialized.
[    1.616741] microcode: sig=0x806ea, pf=0x80, revision=0x64
[    1.617174] microcode: Microcode Update Driver: v2.2.
[    1.617180] sched_clock: Marking stable (1617163099, 0)->(1603352831, 13810268)
[    1.617622] registered taskstats version 1
[    1.617629] Loading compiled-in X.509 certificates
[    1.619318] Loaded X.509 cert 'Build time autogenerated kernel key: 6c3c43f52f16595b4a599556085fadf8d00deb38'
[    1.619967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.622307] Loaded UEFI:db cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071' linked to secondary sys keyring
[    1.622455] Loaded UEFI:db cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2' linked to secondary sys keyring
[    1.622471] Loaded UEFI:db cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' linked to secondary sys keyring
[    1.622485] Loaded UEFI:db cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' linked to secondary sys keyring
[    1.622634] Loaded UEFI:db cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' linked to secondary sys keyring
[    1.623507] Loaded UEFI:MokListRT cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' linked to secondary sys keyring
[    1.624371] zswap: loaded using pool lzo/zbud
[    1.627487] Key type big_key registered
[    1.627489] Key type trusted registered
[    1.628710] Key type encrypted registered
[    1.628712] AppArmor: AppArmor sha1 policy hashing enabled
[    1.628714] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    1.628726] evm: HMAC attrs: 0x1
[    1.630136]   Magic number: 2:546:740
[    1.630417] rtc_cmos 00:01: setting system clock to 2018-05-17 15:44:33 UTC (1526571873)
[    1.630548] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.630549] EDD information not available.
[    1.632354] Freeing unused kernel memory: 2404K
[    1.632356] Write protecting the kernel read-only data: 20480k
[    1.632898] Freeing unused kernel memory: 2008K
[    1.635545] Freeing unused kernel memory: 1904K
[    1.639870] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.639871] x86/mm: Checking user space page tables
[    1.644124] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.712631] hidraw: raw HID events driver (C) Jiri Kosina
[    1.717215] ahci 0000:00:17.0: version 3.0
[    1.717530] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    1.717533] ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
[    1.718268] scsi host0: ahci
[    1.721092] scsi host1: ahci
[    1.721135] ata1: SATA max UDMA/133 abar m2048@0xef135000 port 0xef135100 irq 125
[    1.721137] ata2: SATA max UDMA/133 abar m2048@0xef135000 port 0xef135180 irq 125
[    1.743162] [drm] Memory usable by graphics device = 4096M
[    1.743165] checking generic (d0000000 1e0000) vs hw (d0000000 10000000)
[    1.743165] fb: switching to inteldrmfb from EFI VGA
[    1.743178] Console: switching to colour dummy device 80x25
[    1.743249] [drm] Replacing VGA console driver
[    1.749613] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.749613] [drm] Driver supports precise vblank timestamp query.
[    1.752347] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.752891] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_01.bin (v1.1)
[    1.761571] [drm] Initialized i915 1.6.0 20171023 for 0000:00:02.0 on minor 0
[    1.763258] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.763570] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[    1.789490] fbcon: inteldrmfb (fb0) is primary device
[    1.789535] Console: switching to colour frame buffer device 240x67
[    1.789554] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    1.908039] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[    2.033178] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.033203] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.034826] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.034829] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.034830] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.036808] ata2.00: ATA-10: Micron_1100_MTFDDAV256TBN,  M0MA020, max UDMA/133
[    2.036809] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.039023] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.039025] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.039026] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.042240] ata2.00: configured for UDMA/133
[    2.044482] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.044485] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.044486] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.082859] usb 1-6: New USB device found, idVendor=13d3, idProduct=5a07
[    2.082860] ata1.00: ATA-10: ST1000LM035-1RK172, SDM2, max UDMA/133
[    2.082862] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.082863] usb 1-6: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.082864] usb 1-6: Product: USB2.0 VGA UVC WebCam
[    2.082865] usb 1-6: Manufacturer: Azurewave
[    2.082866] usb 1-6: SerialNumber: 0x0001
[    2.107484] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.107487] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.107488] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.146073] ata1.00: configured for UDMA/133
[    2.146508] scsi 0:0:0:0: Direct-Access     ATA      ST1000LM035-1RK1 SDM2 PQ: 0 ANSI: 5
[    2.146927] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    2.146928] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    2.146934] sd 0:0:0:0: [sda] Write Protect is off
[    2.146935] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.146942] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.147001] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.147404] scsi 1:0:0:0: Direct-Access     ATA      Micron_1100_MTFD A020 PQ: 0 ANSI: 5
[    2.147818] ata2.00: Enabling discard_zeroes_data
[    2.147822] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.147972] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.147998] sd 1:0:0:0: [sdb] Write Protect is off
[    2.147999] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.148055] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.148213] ata2.00: Enabling discard_zeroes_data
[    2.150094]  sdb: sdb1 sdb2 sdb3 sdb4
[    2.150384] ata2.00: Enabling discard_zeroes_data
[    2.151043] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.156167]  sda: sda1
[    2.156752] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.212552] usb 1-8: new full-speed USB device number 3 using xhci_hcd
[    2.362098] usb 1-8: New USB device found, idVendor=13d3, idProduct=3526
[    2.362099] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.362101] usb 1-8: Product: Bluetooth Radio 
[    2.362102] usb 1-8: Manufacturer: Realtek 
[    2.362102] usb 1-8: SerialNumber: 00e04c000001
[    2.460989] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: (null)
[    2.556255] clocksource: Switched to clocksource tsc
[    2.590286] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.649834] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    2.668674] systemd[1]: Detected architecture x86-64.
[    2.671050] systemd[1]: Set hostname to <ralf-X411UA>.
[    2.673158] systemd[1]: Initializing machine ID from random generator.
[    2.673177] systemd[1]: Installed transient /etc/machine-id file.
[    2.740064] systemd[1]: Created slice User and Session Slice.
[    2.740112] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.740262] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.740343] systemd[1]: Created slice System Slice.
[    2.740398] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.754602] EXT4-fs (sdb3): re-mounted. Opts: errors=remount-ro
[    2.759295] lp: driver loaded but no devices found
[    2.761320] ppdev: user-space parallel port driver
[    2.782707] systemd-journald[294]: Received request to flush runtime journal from PID 1
[    2.856777] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input6
[    2.872949] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.874392] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    2.875072] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    2.876849] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    2.909733] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    2.909734] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    2.909735] RAPL PMU: hw unit of domain package 2^-14 Joules
[    2.909735] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    2.909736] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    2.909737] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    2.910082] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    2.912875] media: Linux media interface: v0.10
[    2.912890] asus_wmi: ASUS WMI generic driver loaded
[    2.916327] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    2.919156] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.919424] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.919434] asus_wmi: Initialization: 0x1
[    2.919514] asus_wmi: BIOS WMI version: 9.0
[    2.919560] asus_wmi: SFUN value: 0x21
[    2.919619] Linux video capture interface: v2.00
[    2.921451] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input7
[    2.921559] asus_wmi: Number of fans: 0
[    2.925900] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.925904] cfg80211: failed to load regulatory.db
[    2.928935] Bluetooth: Core ver 2.22
[    2.928949] NET: Registered protocol family 31
[    2.928949] Bluetooth: HCI device and connection manager initialized
[    2.928952] Bluetooth: HCI socket layer initialized
[    2.928954] Bluetooth: L2CAP socket layer initialized
[    2.928958] Bluetooth: SCO socket layer initialized
[    2.933625] AVX2 version of gcm_enc/dec engaged.
[    2.933626] AES CTR mode by8 optimization enabled
[    2.937261] usbcore: registered new interface driver btusb
[    2.941344] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    2.941734] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    2.945892] i2c_hid i2c-ELAN1300:00: i2c-ELAN1300:00 supply vdd not found, using dummy regulator
[    2.947934] r8822be: module is from the staging directory, the quality is unknown, you have been warned.
[    2.948261] r8822be: module verification failed: signature and/or required key missing - tainting kernel
[    2.951689] r8822be 0000:02:00.0: enabling device (0000 -> 0003)
[    2.952090] uvcvideo: Found UVC 1.00 device USB2.0 VGA UVC WebCam (13d3:5a07)
[    2.952865] uvcvideo 1-6:1.0: Entity type for entity Extension 4 was not initialized!
[    2.952867] uvcvideo 1-6:1.0: Entity type for entity Processing 2 was not initialized!
[    2.952868] uvcvideo 1-6:1.0: Entity type for entity Camera 1 was not initialized!
[    2.953007] input: USB2.0 VGA UVC WebCam: USB2.0 V as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/input/input8
[    2.953068] usbcore: registered new interface driver uvcvideo
[    2.953069] USB Video Class driver (1.1.1)
[    3.029253] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[    3.029298] r8822be: Using firmware rtlwifi/rtl8822befw.bin
[    3.029780] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    3.031947] intel-lpss 0000:00:1e.2: enabling device (0000 -> 0002)
[    3.035356] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    3.035535] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    3.036628] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[    3.036871] r8822be: rtlwifi: wireless switch is on
[    3.046969] intel_rapl: Found RAPL domain package
[    3.046970] intel_rapl: Found RAPL domain core
[    3.046971] intel_rapl: Found RAPL domain uncore
[    3.046972] intel_rapl: Found RAPL domain dram
[    3.085622] r8822be 0000:02:00.0 wlp2s0: renamed from wlan0
[    3.091139] hid-multitouch 0018:04F3:3057.0001: Ignoring the extra HID_DG_INPUTMODE
[    3.091681] input: ELAN1300:00 04F3:3057 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-5/i2c-ELAN1300:00/0018:04F3:3057.0001/input/input10
[    3.091739] hid-multitouch 0018:04F3:3057.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN1300:00 04F3:3057] on i2c-ELAN1300:00
[    3.115163] Adding 8000508k swap on /dev/sdb2.  Priority:-2 extents:1 across:8000508k SSFS
[    3.158647] EXT4-fs (sdb4): mounted filesystem with ordered data mode. Opts: (null)
[    3.165605] random: crng init done
[    3.188589] dw-apb-uart.2: ttyS4 at MMIO 0xef134000 (irq = 20, base_baud = 115200) is a 16550A
[    3.259722] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.282684] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
[    3.282686] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.282687] snd_hda_codec_generic hdaudioC0D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
[    3.282688] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
[    3.282688] snd_hda_codec_generic hdaudioC0D0:    inputs:
[    3.282690] snd_hda_codec_generic hdaudioC0D0:      Internal Mic=0x1a
[    3.282690] snd_hda_codec_generic hdaudioC0D0:      Mic=0x19
[    3.291756] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    3.291789] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    3.291818] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    3.291846] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    3.291872] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    3.291899] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    3.291925] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    3.454592] audit: type=1400 audit(1526571875.317:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=677 comm="apparmor_parser"
[    3.454595] audit: type=1400 audit(1526571875.317:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=677 comm="apparmor_parser"
[    3.454596] audit: type=1400 audit(1526571875.317:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=677 comm="apparmor_parser"
[    3.454954] audit: type=1400 audit(1526571875.317:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=679 comm="apparmor_parser"
[    3.454956] audit: type=1400 audit(1526571875.317:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc//sanitized_helper" pid=679 comm="apparmor_parser"
[    3.455415] audit: type=1400 audit(1526571875.317:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=682 comm="apparmor_parser"
[    3.455418] audit: type=1400 audit(1526571875.317:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=682 comm="apparmor_parser"
[    3.456975] audit: type=1400 audit(1526571875.321:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=685 comm="apparmor_parser"
[    3.457369] audit: type=1400 audit(1526571875.321:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=683 comm="apparmor_parser"
[    3.740331] [drm] RC6 on
[    3.994594] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.994596] Bluetooth: BNEP filters: protocol multicast
[    3.994599] Bluetooth: BNEP socket layer initialized
[    4.233444] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    4.876031] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    4.957096] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    7.660836] kauditd_printk_skb: 18 callbacks suppressed
[    7.660837] audit: type=1400 audit(1526571879.525:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=1437 comm="apparmor_parser"
[    7.661007] audit: type=1400 audit(1526571879.525:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1437 comm="apparmor_parser"
[    7.681047] audit: type=1400 audit(1526571879.545:31): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.core" pid=1442 comm="apparmor_parser"
[    7.730092] audit: type=1400 audit(1526571879.593:32): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.core.hook.configure" pid=1444 comm="apparmor_parser"
[    8.412735] audit: type=1400 audit(1526571880.277:33): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=1536 comm="apparmor_parser"
[    8.436765] audit: type=1400 audit(1526571880.305:34): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1536 comm="apparmor_parser"
[    8.439155] audit: type=1400 audit(1526571880.305:35): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=1538 comm="apparmor_parser"
[    8.441286] audit: type=1400 audit(1526571880.305:36): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=1540 comm="apparmor_parser"
[    8.516159] audit: type=1400 audit(1526571880.381:37): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=1549 comm="apparmor_parser"
[    8.516161] audit: type=1400 audit(1526571880.381:38): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1549 comm="apparmor_parser"
[   18.107085] rfkill: input handler disabled
[   45.846109] wlp2s0: authenticate with 24:65:11:54:05:f3
[   46.346407] wlp2s0: send auth to 24:65:11:54:05:f3 (try 1/3)
[   46.350195] wlp2s0: authenticated
[   46.352124] wlp2s0: associate with 24:65:11:54:05:f3 (try 1/3)
[   46.358344] wlp2s0: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=2)
[   46.358916] wlp2s0: associated
[   46.392897] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   66.492461] r8822be: AP off, try to reconnect now
[   66.492529] wlp2s0: Connection to AP 24:65:11:54:05:f3 lost
[   72.372186] kauditd_printk_skb: 14 callbacks suppressed
[   72.372189] audit: type=1400 audit(1526571944.237:53): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3074 comm="apparmor_parser"
[   72.372196] audit: type=1400 audit(1526571944.237:54): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3074 comm="apparmor_parser"
[   72.415338] audit: type=1400 audit(1526571944.277:55): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3079 comm="apparmor_parser"
[   72.497906] audit: type=1400 audit(1526571944.361:56): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3081 comm="apparmor_parser"
[   73.032565] audit: type=1400 audit(1526571944.897:57): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3166 comm="apparmor_parser"
[   73.032567] audit: type=1400 audit(1526571944.897:58): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3166 comm="apparmor_parser"
[   73.035978] audit: type=1400 audit(1526571944.897:59): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3173 comm="apparmor_parser"
[   73.038849] audit: type=1400 audit(1526571944.901:60): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3175 comm="apparmor_parser"
[   76.572024] r8822be: AP off, try to reconnect now
[   78.991982] audit: type=1400 audit(1526571950.853:61): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3776 comm="apparmor_parser"
[   78.991985] audit: type=1400 audit(1526571950.853:62): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3776 comm="apparmor_parser"
[   79.009163] audit: type=1400 audit(1526571950.873:63): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3782 comm="apparmor_parser"
[   79.105613] audit: type=1400 audit(1526571950.969:64): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3784 comm="apparmor_parser"
[   79.788185] audit: type=1400 audit(1526571951.653:65): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3880 comm="apparmor_parser"
[   79.788188] audit: type=1400 audit(1526571951.653:66): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3880 comm="apparmor_parser"
[   79.790918] audit: type=1400 audit(1526571951.653:67): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3882 comm="apparmor_parser"
[   79.793796] audit: type=1400 audit(1526571951.657:68): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3884 comm="apparmor_parser"
[   84.388092] wlp2s0: Connection to AP 00:00:00:00:00:00 lost
[   86.395542] audit: type=1400 audit(1526571958.257:69): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=4521 comm="apparmor_parser"
[   86.395544] audit: type=1400 audit(1526571958.257:70): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=4521 comm="apparmor_parser"
[   86.411715] audit: type=1400 audit(1526571958.273:71): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=4523 comm="apparmor_parser"
[   86.488253] audit: type=1400 audit(1526571958.353:72): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=4525 comm="apparmor_parser"
[   87.038967] audit: type=1400 audit(1526571958.901:73): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=4617 comm="apparmor_parser"
[   87.038970] audit: type=1400 audit(1526571958.901:74): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=4617 comm="apparmor_parser"
[   87.041683] audit: type=1400 audit(1526571958.905:75): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=4621 comm="apparmor_parser"
[   87.044233] audit: type=1400 audit(1526571958.909:76): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=4623 comm="apparmor_parser"
[   94.108942] audit: type=1400 audit(1526571965.973:77): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=5222 comm="apparmor_parser"
[   94.108945] audit: type=1400 audit(1526571965.973:78): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=5222 comm="apparmor_parser"
[   94.124417] audit: type=1400 audit(1526571965.989:79): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=5224 comm="apparmor_parser"
[   94.199947] audit: type=1400 audit(1526571966.061:80): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=5226 comm="apparmor_parser"
[   94.795194] audit: type=1400 audit(1526571966.657:81): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=5315 comm="apparmor_parser"
[   94.795197] audit: type=1400 audit(1526571966.657:82): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=5315 comm="apparmor_parser"
[   94.798255] audit: type=1400 audit(1526571966.661:83): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=5317 comm="apparmor_parser"
[   94.804409] audit: type=1400 audit(1526571966.669:84): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=5319 comm="apparmor_parser"
[  100.009276] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  101.811453] audit: type=1400 audit(1526571973.673:85): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=5947 comm="apparmor_parser"
[  101.811462] audit: type=1400 audit(1526571973.673:86): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=5947 comm="apparmor_parser"
[  101.848616] audit: type=1400 audit(1526571973.713:87): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=5949 comm="apparmor_parser"
[  101.932796] audit: type=1400 audit(1526571973.797:88): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=5951 comm="apparmor_parser"
[  102.676901] audit: type=1400 audit(1526571974.541:89): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=6042 comm="apparmor_parser"
[  102.676904] audit: type=1400 audit(1526571974.541:90): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=6042 comm="apparmor_parser"
[  102.679309] audit: type=1400 audit(1526571974.541:91): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=6044 comm="apparmor_parser"
[  102.682089] audit: type=1400 audit(1526571974.545:92): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=6046 comm="apparmor_parser"
[  107.236018] usb 1-3: new high-speed USB device number 4 using xhci_hcd
[  107.512714] usb 1-3: New USB device found, idVendor=148f, idProduct=7601
[  107.512715] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  107.512717] usb 1-3: Product: 802.11 n WLAN
[  107.512718] usb 1-3: SerialNumber: 1.0
[  107.652226] usb 1-3: reset high-speed USB device number 4 using xhci_hcd
[  107.806824] mt7601u 1-3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[  107.807745] mt7601u 1-3:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[  108.229450] mt7601u 1-3:1.0: EEPROM ver:0c fae:00
[  109.296254] audit: type=1400 audit(1526571981.161:93): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=6647 comm="apparmor_parser"
[  109.296259] audit: type=1400 audit(1526571981.161:94): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=6647 comm="apparmor_parser"
[  109.317626] audit: type=1400 audit(1526571981.181:95): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=6649 comm="apparmor_parser"
[  109.413271] audit: type=1400 audit(1526571981.277:96): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=6651 comm="apparmor_parser"
[  110.403293] audit: type=1400 audit(1526571982.265:97): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=6729 comm="apparmor_parser"
[  110.403298] audit: type=1400 audit(1526571982.265:98): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=6729 comm="apparmor_parser"
[  110.405714] audit: type=1400 audit(1526571982.269:99): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=6731 comm="apparmor_parser"
[  110.408350] audit: type=1400 audit(1526571982.273:100): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=6733 comm="apparmor_parser"
[  112.837796] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[  112.840983] usbcore: registered new interface driver mt7601u
[  112.876750] mt7601u 1-3:1.0 wlx20f41bcc626d: renamed from wlan0
[  112.910304] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  112.929382] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  112.998356] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  114.264658] wlx20f41bcc626d: authenticate with 24:65:11:54:05:f3
[  114.278433] wlx20f41bcc626d: send auth to 24:65:11:54:05:f3 (try 1/3)
[  114.284974] wlx20f41bcc626d: authenticated
[  114.288026] wlx20f41bcc626d: associate with 24:65:11:54:05:f3 (try 1/3)
[  114.364568] wlx20f41bcc626d: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=4)
[  114.389571] wlx20f41bcc626d: associated
[  114.397924] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20f41bcc626d: link becomes ready
[  117.642375] audit: type=1400 audit(1526571989.505:101): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=7436 comm="apparmor_parser"
[  117.642378] audit: type=1400 audit(1526571989.505:102): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=7436 comm="apparmor_parser"
[  117.686039] audit: type=1400 audit(1526571989.549:103): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=7438 comm="apparmor_parser"
[  117.777026] audit: type=1400 audit(1526571989.641:104): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=7440 comm="apparmor_parser"
[  119.705739] audit: type=1400 audit(1526571991.569:105): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=7554 comm="apparmor_parser"
[  119.705743] audit: type=1400 audit(1526571991.569:106): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=7554 comm="apparmor_parser"
[  119.708687] audit: type=1400 audit(1526571991.573:107): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=7556 comm="apparmor_parser"
[  119.711578] audit: type=1400 audit(1526571991.573:108): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=7558 comm="apparmor_parser"
[  122.442343] audit: type=1400 audit(1526571994.305:109): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7749 comm="apparmor_parser"
[  122.503040] audit: type=1400 audit(1526571994.365:110): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7751 comm="apparmor_parser"
[  136.498279] audit: type=1400 audit(1526572008.361:111): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7863 comm="apparmor_parser"
[  136.565452] audit: type=1400 audit(1526572008.429:112): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7865 comm="apparmor_parser"
[  136.799836] audit: type=1400 audit(1526572008.661:113): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7873 comm="apparmor_parser"
[  136.869230] audit: type=1400 audit(1526572008.733:114): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7875 comm="apparmor_parser"
[  137.154948] audit: type=1400 audit(1526572009.017:115): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7883 comm="apparmor_parser"
[  137.230905] audit: type=1400 audit(1526572009.093:116): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7885 comm="apparmor_parser"
[  144.362451] r8822be: [ERR]Pwr cmd polling timeout!!
[  144.362455] r8822be: [ERR]Pwr cmd offset : 5!!
[  144.362456] r8822be: [ERR]Pwr cmd value : 0!!
[  144.362457] r8822be: [ERR]Pwr cmd msk : 2!!
[  144.362458] r8822be: [ERR]Read offset = 5 value = 2!!
[  144.362460] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  144.362461] r8822be: Handle power off cmd error
[  150.158859] r8822be: halmac_init_hal failed
[  150.159025] r8822be: halmac_init_hal failed
[  150.159180] r8822be: halmac_init_hal failed
[  150.159333] r8822be: halmac_init_hal failed
[  150.159485] r8822be: halmac_init_hal failed
[  150.159633] r8822be: halmac_init_hal failed
[  150.159786] r8822be: halmac_init_hal failed
[  150.159934] r8822be: halmac_init_hal failed
[  150.160082] r8822be: halmac_init_hal failed
[  150.160229] r8822be: halmac_init_hal failed
[  150.160298] ------------[ cut here ]------------
[  150.160300] return H2C cmd because of Fw download fail!!!
[  150.160373] WARNING: CPU: 1 PID: 738 at /build/linux-QLn4bB/linux-4.15.0/drivers/staging/rtlwifi/rtl8822be/fw.c:239 rtl8822be_fill_h2c_cmd+0x1ac/0x660 [r8822be]
[  150.160375] Modules linked in: mt7601u ccm bnep snd_hda_codec_hdmi snd_hda_codec_generic nls_iso8859_1 joydev spi_pxa2xx_platform 8250_dw hid_multitouch snd_soc_skl snd_soc_skl_ipc snd_hda_ext_core snd_soc_sst_dsp snd_soc_sst_ipc snd_soc_acpi snd_soc_core intel_rapl x86_pkg_temp_thermal snd_compress intel_powerclamp ac97_bus snd_pcm_dmaengine coretemp arc4 snd_hda_intel kvm_intel snd_hda_codec snd_hda_core snd_hwdep kvm irqbypass snd_pcm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel snd_seq_midi uvcvideo pcbc r8822be(CE) snd_seq_midi_event videobuf2_vmalloc snd_rawmidi btusb mac80211 btrtl aesni_intel btbcm btintel videobuf2_memops snd_seq aes_x86_64 videobuf2_v4l2 crypto_simd bluetooth videobuf2_core glue_helper snd_seq_device videodev cryptd asus_nb_wmi snd_timer input_leds asus_wmi intel_cstate
[  150.160464]  idma64 intel_rapl_perf cfg80211 media sparse_keymap wmi_bmof serio_raw ecdh_generic snd virt_dma mei_me soundcore intel_lpss_pci processor_thermal_device mei intel_pch_thermal intel_soc_dts_iosf intel_lpss shpchp int3403_thermal int340x_thermal_zone int3400_thermal asus_wireless acpi_thermal_rel mac_hid acpi_pad tpm_crb sch_fq_codel parport_pc ppdev lp parport ip_tables x_tables autofs4 i915 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ahci drm libahci i2c_hid wmi hid video pinctrl_sunrisepoint
[  150.160536] CPU: 1 PID: 738 Comm: wpa_supplicant Tainted: G         C  E    4.15.0-21-generic #22-Ubuntu
[  150.160539] Hardware name: ASUSTeK COMPUTER INC. X411UA/X411UA, BIOS X411UA.300 08/04/2017
[  150.160563] RIP: 0010:rtl8822be_fill_h2c_cmd+0x1ac/0x660 [r8822be]
[  150.160566] RSP: 0018:ffffbe3b015637e8 EFLAGS: 00010286
[  150.160571] RAX: 0000000000000000 RBX: ffff9685d2281520 RCX: 0000000000000006
[  150.160573] RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff9685dec56490
[  150.160576] RBP: ffffbe3b01563860 R08: 0000000000000001 R09: 00000000000003f0
[  150.160578] R10: 0000000000000000 R11: 0000000000000000 R12: ffff9685ca18ea00
[  150.160581] R13: ffff9685d2280760 R14: ffff9685d2281588 R15: ffff9685d22810c0
[  150.160585] FS:  00007f33287bf800(0000) GS:ffff9685dec40000(0000) knlGS:0000000000000000
[  150.160588] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  150.160590] CR2: 00007f556400d000 CR3: 000000024e42a004 CR4: 00000000003606e0
[  150.160593] Call Trace:
[  150.160628]  halbtc_fill_h2c_cmd+0x2f/0x40 [r8822be]
[  150.160656]  halbtc8822b1ant_query_bt_info+0x4c/0xa0 [r8822be]
[  150.160680]  ex_btc8822b1ant_ips_notify+0xb4/0x170 [r8822be]
[  150.160706]  exhalbtc_ips_notify+0x5a/0x60 [r8822be]
[  150.160734]  rtl_btc_ips_notify+0x26/0x50 [r8822be]
[  150.160754]  rtl_ips_nic_on+0xc2/0xe0 [r8822be]
[  150.160773]  rtl_op_config+0x252/0x490 [r8822be]
[  150.160809]  ieee80211_hw_config+0x1c1/0x350 [mac80211]
[  150.160843]  ieee80211_recalc_idle+0x22/0x30 [mac80211]
[  150.160871]  __ieee80211_start_scan+0x1b6/0x6f0 [mac80211]
[  150.160898]  ieee80211_request_scan+0x30/0x50 [mac80211]
[  150.160930]  ieee80211_scan+0x69/0x90 [mac80211]
[  150.160969]  nl80211_trigger_scan+0x63e/0x7a0 [cfg80211]
[  150.160981]  genl_family_rcv_msg+0x1fe/0x3f0
[  150.160988]  ? __kmalloc_reserve.isra.43+0x31/0x90
[  150.160996]  genl_rcv_msg+0x4c/0x90
[  150.161002]  ? genl_family_rcv_msg+0x3f0/0x3f0
[  150.161008]  netlink_rcv_skb+0x54/0x130
[  150.161015]  genl_rcv+0x28/0x40
[  150.161021]  netlink_unicast+0x19e/0x240
[  150.161028]  netlink_sendmsg+0x2c5/0x3c0
[  150.161034]  sock_sendmsg+0x3e/0x50
[  150.161039]  ___sys_sendmsg+0x2a0/0x2f0
[  150.161049]  ? _copy_to_user+0x26/0x30
[  150.161055]  ? unix_ioctl+0x77/0x190
[  150.161060]  ? sock_do_ioctl+0x2b/0x60
[  150.161064]  ? sock_ioctl+0x1a1/0x2c0
[  150.161069]  __sys_sendmsg+0x54/0x90
[  150.161074]  ? __sys_sendmsg+0x54/0x90
[  150.161080]  SyS_sendmsg+0x12/0x20
[  150.161087]  do_syscall_64+0x73/0x130
[  150.161093]  entry_SYSCALL_64_after_hwframe+0x3d/0xa2
[  150.161097] RIP: 0033:0x7f3326f7cd04
[  150.161100] RSP: 002b:00007ffd72b9fe38 EFLAGS: 00000246 ORIG_RAX: 000000000000002e
[  150.161104] RAX: ffffffffffffffda RBX: 0000558bdd0debc0 RCX: 00007f3326f7cd04
[  150.161107] RDX: 0000000000000000 RSI: 00007ffd72b9fe70 RDI: 0000000000000007
[  150.161109] RBP: 0000558bdd103ff0 R08: 0000000000000000 R09: 0000000000000000
[  150.161112] R10: 0000558bdd0d4010 R11: 0000000000000246 R12: 0000558bdd0dead0
[  150.161114] R13: 00007ffd72b9fe70 R14: 0000000000000000 R15: 0000558bdd0df4d8
[  150.161118] Code: 00 00 00 48 89 c6 75 b1 48 89 c6 4c 89 e7 e8 fc 2a 4c f0 e9 5b ff ff ff 48 c7 c7 d8 0d b4 c0 c6 05 45 09 0a 00 01 e8 44 81 bb ef <0f> 0b e9 92 fe ff ff c6 83 c4 08 00 00 01 48 89 c6 4c 89 e7 e8 
[  150.161204] ---[ end trace 0c176ee4ad5d12f9 ]---
[  153.060079] audit: type=1400 audit(1526572024.760:117): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8656 comm="apparmor_parser"
[  153.060081] audit: type=1400 audit(1526572024.760:118): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8656 comm="apparmor_parser"
[  153.063114] audit: type=1400 audit(1526572024.764:119): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8658 comm="apparmor_parser"
[  153.066465] audit: type=1400 audit(1526572024.768:120): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8660 comm="apparmor_parser"
[  153.327892] audit: type=1400 audit(1526572025.027:121): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=8667 comm="apparmor_parser"
[  153.430734] audit: type=1400 audit(1526572025.126:122): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=8669 comm="apparmor_parser"
[  153.540173] audit: type=1400 audit(1526572025.238:123): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8677 comm="apparmor_parser"
[  153.540176] audit: type=1400 audit(1526572025.238:124): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8677 comm="apparmor_parser"
[  153.543960] audit: type=1400 audit(1526572025.242:125): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8679 comm="apparmor_parser"
[  153.547198] audit: type=1400 audit(1526572025.242:126): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8681 comm="apparmor_parser"
[  155.899678] r8822be: [ERR]Pwr cmd polling timeout!!
[  155.899681] r8822be: [ERR]Pwr cmd offset : 5!!
[  155.899682] r8822be: [ERR]Pwr cmd value : 0!!
[  155.899683] r8822be: [ERR]Pwr cmd msk : 2!!
[  155.899684] r8822be: [ERR]Read offset = 5 value = 2!!
[  155.899685] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  155.899687] r8822be: Handle power off cmd error
[  158.113842] kauditd_printk_skb: 30 callbacks suppressed
[  158.113843] audit: type=1400 audit(1526572029.799:157): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8905 comm="apparmor_parser"
[  158.113846] audit: type=1400 audit(1526572029.799:158): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8905 comm="apparmor_parser"
[  158.116763] audit: type=1400 audit(1526572029.803:159): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8907 comm="apparmor_parser"
[  158.120083] audit: type=1400 audit(1526572029.807:160): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8909 comm="apparmor_parser"
[  158.326855] audit: type=1400 audit(1526572030.010:161): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-characters" pid=8917 comm="apparmor_parser"
[  158.409146] audit: type=1400 audit(1526572030.094:162): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-characters.gnome-characters" pid=8919 comm="apparmor_parser"
[  158.745494] audit: type=1400 audit(1526572030.429:163): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8927 comm="apparmor_parser"
[  158.745496] audit: type=1400 audit(1526572030.429:164): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8927 comm="apparmor_parser"
[  158.749416] audit: type=1400 audit(1526572030.433:165): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8929 comm="apparmor_parser"
[  158.753752] audit: type=1400 audit(1526572030.437:166): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8931 comm="apparmor_parser"
[  164.098610] kauditd_printk_skb: 40 callbacks suppressed
[  164.098613] audit: type=1400 audit(1526572035.779:207): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9373 comm="apparmor_parser"
[  164.231298] audit: type=1400 audit(1526572035.911:208): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9376 comm="apparmor_parser"
[  164.570699] audit: type=1400 audit(1526572036.247:209): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9384 comm="apparmor_parser"
[  164.570702] audit: type=1400 audit(1526572036.247:210): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9384 comm="apparmor_parser"
[  164.573442] audit: type=1400 audit(1526572036.251:211): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9386 comm="apparmor_parser"
[  164.576463] audit: type=1400 audit(1526572036.255:212): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9388 comm="apparmor_parser"
[  164.879593] audit: type=1400 audit(1526572036.558:213): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9395 comm="apparmor_parser"
[  164.947028] audit: type=1400 audit(1526572036.622:214): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9397 comm="apparmor_parser"
[  165.415010] audit: type=1400 audit(1526572037.090:215): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9405 comm="apparmor_parser"
[  165.499390] audit: type=1400 audit(1526572037.174:216): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9409 comm="apparmor_parser"
[  169.119544] kauditd_printk_skb: 46 callbacks suppressed
[  169.119545] audit: type=1400 audit(1526572040.796:263): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9592 comm="apparmor_parser"
[  169.333546] audit: type=1400 audit(1526572041.012:264): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9596 comm="apparmor_parser"
[  170.345414] audit: type=1400 audit(1526572042.020:265): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gnome-system-monitor" pid=9692 comm="apparmor_parser"
[  170.411478] audit: type=1400 audit(1526572042.088:266): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gnome-system-monitor.gnome-system-monitor" pid=9694 comm="apparmor_parser"
[  170.882912] audit: type=1400 audit(1526572042.560:267): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9703 comm="apparmor_parser"
[  170.882915] audit: type=1400 audit(1526572042.560:268): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9703 comm="apparmor_parser"
[  170.885747] audit: type=1400 audit(1526572042.564:269): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9705 comm="apparmor_parser"
[  170.889721] audit: type=1400 audit(1526572042.564:270): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9707 comm="apparmor_parser"
[  171.086092] audit: type=1400 audit(1526572042.764:271): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-system-monitor" pid=9715 comm="apparmor_parser"
[  171.170001] audit: type=1400 audit(1526572042.848:272): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-system-monitor.gnome-system-monitor" pid=9717 comm="apparmor_parser"
[  174.245481] kauditd_printk_skb: 28 callbacks suppressed
[  174.245486] audit: type=1400 audit(1526572045.925:301): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9835 comm="apparmor_parser"
[  174.245497] audit: type=1400 audit(1526572045.925:302): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9835 comm="apparmor_parser"
[  174.256176] audit: type=1400 audit(1526572045.933:303): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9837 comm="apparmor_parser"
[  174.265896] audit: type=1400 audit(1526572045.945:304): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9839 comm="apparmor_parser"
[  174.368647] audit: type=1400 audit(1526572046.045:305): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-system-monitor" pid=9847 comm="apparmor_parser"
[  174.559758] audit: type=1400 audit(1526572046.237:306): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-system-monitor.gnome-system-monitor" pid=9849 comm="apparmor_parser"
[  174.701756] audit: type=1400 audit(1526572046.381:307): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9857 comm="apparmor_parser"
[  174.701759] audit: type=1400 audit(1526572046.381:308): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9857 comm="apparmor_parser"
[  174.704605] audit: type=1400 audit(1526572046.381:309): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9859 comm="apparmor_parser"
[  174.708488] audit: type=1400 audit(1526572046.385:310): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9861 comm="apparmor_parser"
[  193.192202] r8822be: halmac_init_hal failed
[  193.192367] r8822be: halmac_init_hal failed
[  193.192529] r8822be: halmac_init_hal failed
[  193.192689] r8822be: halmac_init_hal failed
[  193.192849] r8822be: halmac_init_hal failed
[  193.193008] r8822be: halmac_init_hal failed
[  193.193168] r8822be: halmac_init_hal failed
[  193.193325] r8822be: halmac_init_hal failed
[  193.193483] r8822be: halmac_init_hal failed
[  193.193641] r8822be: halmac_init_hal failed
[  198.956384] r8822be: [ERR]Pwr cmd polling timeout!!
[  198.956389] r8822be: [ERR]Pwr cmd offset : 5!!
[  198.956390] r8822be: [ERR]Pwr cmd value : 0!!
[  198.956391] r8822be: [ERR]Pwr cmd msk : 2!!
[  198.956393] r8822be: [ERR]Read offset = 5 value = 2!!
[  198.956394] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  198.956396] r8822be: Handle power off cmd error
[  223.688034] r8822be: halmac_init_hal failed
[  223.688169] r8822be: halmac_init_hal failed
[  223.688299] r8822be: halmac_init_hal failed
[  223.688429] r8822be: halmac_init_hal failed
[  223.688558] r8822be: halmac_init_hal failed
[  223.688688] r8822be: halmac_init_hal failed
[  223.688819] r8822be: halmac_init_hal failed
[  223.688947] r8822be: halmac_init_hal failed
[  223.689076] r8822be: halmac_init_hal failed
[  223.689205] r8822be: halmac_init_hal failed
[  229.480823] r8822be: [ERR]Pwr cmd polling timeout!!
[  229.480827] r8822be: [ERR]Pwr cmd offset : 5!!
[  229.480828] r8822be: [ERR]Pwr cmd value : 0!!
[  229.480829] r8822be: [ERR]Pwr cmd msk : 2!!
[  229.480830] r8822be: [ERR]Read offset = 5 value = 2!!
[  229.480831] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  229.480832] r8822be: Handle power off cmd error
[  287.188733] r8822be: halmac_init_hal failed
[  287.188907] r8822be: halmac_init_hal failed
[  287.189074] r8822be: halmac_init_hal failed
[  287.189239] r8822be: halmac_init_hal failed
[  287.189401] r8822be: halmac_init_hal failed
[  287.189562] r8822be: halmac_init_hal failed
[  287.189722] r8822be: halmac_init_hal failed
[  287.189883] r8822be: halmac_init_hal failed
[  287.190044] r8822be: halmac_init_hal failed
[  287.190255] r8822be: halmac_init_hal failed
[  292.967131] r8822be: [ERR]Pwr cmd polling timeout!!
[  292.967141] r8822be: [ERR]Pwr cmd offset : 5!!
[  292.967145] r8822be: [ERR]Pwr cmd value : 0!!
[  292.967148] r8822be: [ERR]Pwr cmd msk : 2!!
[  292.967151] r8822be: [ERR]Read offset = 5 value = 2!!
[  292.967155] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  292.967159] r8822be: Handle power off cmd error
[  311.491345] r8822be: halmac_init_hal failed
[  311.491473] r8822be: halmac_init_hal failed
[  311.491600] r8822be: halmac_init_hal failed
[  311.491727] r8822be: halmac_init_hal failed
[  311.491854] r8822be: halmac_init_hal failed
[  311.491981] r8822be: halmac_init_hal failed
[  311.492107] r8822be: halmac_init_hal failed
[  311.492234] r8822be: halmac_init_hal failed
[  311.492361] r8822be: halmac_init_hal failed
[  311.492488] r8822be: halmac_init_hal failed
[  317.251807] r8822be: [ERR]Pwr cmd polling timeout!!
[  317.251817] r8822be: [ERR]Pwr cmd offset : 5!!
[  317.251821] r8822be: [ERR]Pwr cmd value : 0!!
[  317.251824] r8822be: [ERR]Pwr cmd msk : 2!!
[  317.251828] r8822be: [ERR]Read offset = 5 value = 2!!
[  317.251831] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  317.251835] r8822be: Handle power off cmd error
[  349.023037] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023116] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023159] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023185] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023232] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023266] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023312] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023352] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023396] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023429] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023481] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023513] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023556] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023595] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023639] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023672] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023810] usb 1-3: USB disconnect, device number 4
[  349.044669] wlx20f41bcc626d: deauthenticating from 24:65:11:54:05:f3 by local choice (Reason: 3=DEAUTH_LEAVING)
[  349.056222] mt7601u 1-3:1.0: mt7601u_rxdc_cal timed out
[  375.196943] r8822be: halmac_init_hal failed
[  375.197101] r8822be: halmac_init_hal failed
[  375.197254] r8822be: halmac_init_hal failed
[  375.197406] r8822be: halmac_init_hal failed
[  375.197554] r8822be: halmac_init_hal failed
[  375.197703] r8822be: halmac_init_hal failed
[  375.197851] r8822be: halmac_init_hal failed
[  375.197998] r8822be: halmac_init_hal failed
[  375.198146] r8822be: halmac_init_hal failed
[  375.198294] r8822be: halmac_init_hal failed
[  381.311384] r8822be: [ERR]Pwr cmd polling timeout!!
[  381.311394] r8822be: [ERR]Pwr cmd offset : 5!!
[  381.311397] r8822be: [ERR]Pwr cmd value : 0!!
[  381.311401] r8822be: [ERR]Pwr cmd msk : 2!!
[  381.311404] r8822be: [ERR]Read offset = 5 value = 2!!
[  381.311408] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  381.311411] r8822be: Handle power off cmd error
[  438.215725] r8822be: halmac_init_hal failed
[  438.215887] r8822be: halmac_init_hal failed
[  438.216041] r8822be: halmac_init_hal failed
[  438.216195] r8822be: halmac_init_hal failed
[  438.216349] r8822be: halmac_init_hal failed
[  438.216503] r8822be: halmac_init_hal failed
[  438.216656] r8822be: halmac_init_hal failed
[  438.216811] r8822be: halmac_init_hal failed
[  438.216964] r8822be: halmac_init_hal failed
[  438.217118] r8822be: halmac_init_hal failed
[  444.335955] r8822be: [ERR]Pwr cmd polling timeout!!
[  444.335965] r8822be: [ERR]Pwr cmd offset : 5!!
[  444.335969] r8822be: [ERR]Pwr cmd value : 0!!
[  444.335972] r8822be: [ERR]Pwr cmd msk : 2!!
[  444.335975] r8822be: [ERR]Read offset = 5 value = 2!!
[  444.335979] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  444.335982] r8822be: Handle power off cmd error
[  501.238167] r8822be: halmac_init_hal failed
[  501.238339] r8822be: halmac_init_hal failed
[  501.238501] r8822be: halmac_init_hal failed
[  501.238662] r8822be: halmac_init_hal failed
[  501.238823] r8822be: halmac_init_hal failed
[  501.238984] r8822be: halmac_init_hal failed
[  501.239144] r8822be: halmac_init_hal failed
[  501.239305] r8822be: halmac_init_hal failed
[  501.239510] r8822be: halmac_init_hal failed
[  501.239676] r8822be: halmac_init_hal failed
[  507.349991] r8822be: [ERR]Pwr cmd polling timeout!!
[  507.350000] r8822be: [ERR]Pwr cmd offset : 5!!
[  507.350005] r8822be: [ERR]Pwr cmd value : 0!!
[  507.350008] r8822be: [ERR]Pwr cmd msk : 2!!
[  507.350011] r8822be: [ERR]Read offset = 5 value = 2!!
[  507.350015] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  507.350019] r8822be: Handle power off cmd error
[  564.215548] r8822be: halmac_init_hal failed
[  564.215717] r8822be: halmac_init_hal failed
[  564.215880] r8822be: halmac_init_hal failed
[  564.216043] r8822be: halmac_init_hal failed
[  564.216204] r8822be: halmac_init_hal failed
[  564.216363] r8822be: halmac_init_hal failed
[  564.216522] r8822be: halmac_init_hal failed
[  564.216681] r8822be: halmac_init_hal failed
[  564.216841] r8822be: halmac_init_hal failed
[  564.217000] r8822be: halmac_init_hal failed
[  570.321558] r8822be: [ERR]Pwr cmd polling timeout!!
[  570.321567] r8822be: [ERR]Pwr cmd offset : 5!!
[  570.321571] r8822be: [ERR]Pwr cmd value : 0!!
[  570.321574] r8822be: [ERR]Pwr cmd msk : 2!!
[  570.321578] r8822be: [ERR]Read offset = 5 value = 2!!
[  570.321581] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  570.321585] r8822be: Handle power off cmd error
[  627.197176] r8822be: halmac_init_hal failed
[  627.197343] r8822be: halmac_init_hal failed
[  627.197502] r8822be: halmac_init_hal failed
[  627.197660] r8822be: halmac_init_hal failed
[  627.197818] r8822be: halmac_init_hal failed
[  627.197976] r8822be: halmac_init_hal failed
[  627.198134] r8822be: halmac_init_hal failed
[  627.198293] r8822be: halmac_init_hal failed
[  627.198450] r8822be: halmac_init_hal failed
[  627.198608] r8822be: halmac_init_hal failed
[  633.292603] r8822be: [ERR]Pwr cmd polling timeout!!
[  633.292612] r8822be: [ERR]Pwr cmd offset : 5!!
[  633.292616] r8822be: [ERR]Pwr cmd value : 0!!
[  633.292619] r8822be: [ERR]Pwr cmd msk : 2!!
[  633.292623] r8822be: [ERR]Read offset = 5 value = 2!!
[  633.292626] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  633.292629] r8822be: Handle power off cmd error
[  690.232153] r8822be: halmac_init_hal failed
[  690.232323] r8822be: halmac_init_hal failed
[  690.232483] r8822be: halmac_init_hal failed
[  690.232642] r8822be: halmac_init_hal failed
[  690.232802] r8822be: halmac_init_hal failed
[  690.232961] r8822be: halmac_init_hal failed
[  690.233120] r8822be: halmac_init_hal failed
[  690.233279] r8822be: halmac_init_hal failed
[  690.233438] r8822be: halmac_init_hal failed
[  690.233624] r8822be: halmac_init_hal failed
[  696.334250] r8822be: [ERR]Pwr cmd polling timeout!!
[  696.334259] r8822be: [ERR]Pwr cmd offset : 5!!
[  696.334262] r8822be: [ERR]Pwr cmd value : 0!!
[  696.334266] r8822be: [ERR]Pwr cmd msk : 2!!
[  696.334269] r8822be: [ERR]Read offset = 5 value = 2!!
[  696.334273] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  696.334276] r8822be: Handle power off cmd error
[  753.179800] r8822be: halmac_init_hal failed
[  753.179970] r8822be: halmac_init_hal failed
[  753.180130] r8822be: halmac_init_hal failed
[  753.180289] r8822be: halmac_init_hal failed
[  753.180448] r8822be: halmac_init_hal failed
[  753.180608] r8822be: halmac_init_hal failed
[  753.180767] r8822be: halmac_init_hal failed
[  753.180926] r8822be: halmac_init_hal failed
[  753.181085] r8822be: halmac_init_hal failed
[  753.181244] r8822be: halmac_init_hal failed
[  759.291781] r8822be: [ERR]Pwr cmd polling timeout!!
[  759.291793] r8822be: [ERR]Pwr cmd offset : 5!!
[  759.291799] r8822be: [ERR]Pwr cmd value : 0!!
[  759.291803] r8822be: [ERR]Pwr cmd msk : 2!!
[  759.291808] r8822be: [ERR]Read offset = 5 value = 2!!
[  759.291813] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  759.291819] r8822be: Handle power off cmd error
[  777.963289] usb 1-3: new high-speed USB device number 5 using xhci_hcd
[  778.243808] usb 1-3: New USB device found, idVendor=148f, idProduct=7601
[  778.243814] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  778.243819] usb 1-3: Product: 802.11 n WLAN
[  778.243823] usb 1-3: SerialNumber: 1.0
[  778.371855] usb 1-3: reset high-speed USB device number 5 using xhci_hcd
[  778.523323] mt7601u 1-3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[  778.524347] mt7601u 1-3:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[  778.925546] mt7601u 1-3:1.0: EEPROM ver:0c fae:00
[  779.126277] ieee80211 phy2: Selected rate control algorithm 'minstrel_ht'
[  779.138546] mt7601u 1-3:1.0 wlx20f41bcc626d: renamed from wlan0
[  779.186072] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  779.208232] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  779.265898] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  780.512485] wlx20f41bcc626d: authenticate with 24:65:11:54:05:f3
[  780.528710] wlx20f41bcc626d: send auth to 24:65:11:54:05:f3 (try 1/3)
[  780.531850] wlx20f41bcc626d: authenticated
[  780.534817] wlx20f41bcc626d: associate with 24:65:11:54:05:f3 (try 1/3)
[  780.541251] wlx20f41bcc626d: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=2)
[  780.566571] wlx20f41bcc626d: associated
[  781.578310] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20f41bcc626d: link becomes ready
[  816.172091] r8822be: halmac_init_hal failed
[  816.172249] r8822be: halmac_init_hal failed
[  816.172408] r8822be: halmac_init_hal failed
[  816.172564] r8822be: halmac_init_hal failed
[  816.172723] r8822be: halmac_init_hal failed
[  816.172883] r8822be: halmac_init_hal failed
[  816.173043] r8822be: halmac_init_hal failed
[  816.173202] r8822be: halmac_init_hal failed
[  816.173359] r8822be: halmac_init_hal failed
[  816.173516] r8822be: halmac_init_hal failed
[  821.966109] r8822be: [ERR]Pwr cmd polling timeout!!
[  821.966119] r8822be: [ERR]Pwr cmd offset : 5!!
[  821.966123] r8822be: [ERR]Pwr cmd value : 0!!
[  821.966126] r8822be: [ERR]Pwr cmd msk : 2!!
[  821.966130] r8822be: [ERR]Read offset = 5 value = 2!!
[  821.966133] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  821.966137] r8822be: Handle power off cmd error
[  879.168120] r8822be: halmac_init_hal failed
[  879.168281] r8822be: halmac_init_hal failed
[  879.168435] r8822be: halmac_init_hal failed
[  879.168589] r8822be: halmac_init_hal failed
[  879.168742] r8822be: halmac_init_hal failed
[  879.168896] r8822be: halmac_init_hal failed
[  879.169045] r8822be: halmac_init_hal failed
[  879.169194] r8822be: halmac_init_hal failed
[  879.169344] r8822be: halmac_init_hal failed
[  879.169493] r8822be: halmac_init_hal failed
[  884.976971] r8822be: [ERR]Pwr cmd polling timeout!!
[  884.976981] r8822be: [ERR]Pwr cmd offset : 5!!
[  884.976985] r8822be: [ERR]Pwr cmd value : 0!!
[  884.976989] r8822be: [ERR]Pwr cmd msk : 2!!
[  884.976992] r8822be: [ERR]Read offset = 5 value = 2!!
[  884.976996] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  884.977000] r8822be: Handle power off cmd error
[  942.168555] r8822be: halmac_init_hal failed
[  942.168717] r8822be: halmac_init_hal failed
[  942.168870] r8822be: halmac_init_hal failed
[  942.169023] r8822be: halmac_init_hal failed
[  942.169178] r8822be: halmac_init_hal failed
[  942.169334] r8822be: halmac_init_hal failed
[  942.169493] r8822be: halmac_init_hal failed
[  942.169691] r8822be: halmac_init_hal failed
[  942.169851] r8822be: halmac_init_hal failed
[  942.170010] r8822be: halmac_init_hal failed
[  947.875063] r8822be: [ERR]Pwr cmd polling timeout!!
[  947.875071] r8822be: [ERR]Pwr cmd offset : 5!!
[  947.875074] r8822be: [ERR]Pwr cmd value : 0!!
[  947.875077] r8822be: [ERR]Pwr cmd msk : 2!!
[  947.875081] r8822be: [ERR]Read offset = 5 value = 2!!
[  947.875084] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  947.875087] r8822be: Handle power off cmd error
[  961.424658] show_signal_msg: 24 callbacks suppressed
[  961.424661] gnome-software[2090]: segfault at 18 ip 00007f197d57d7a3 sp 00007ffcba0b4760 error 4 in libglib-2.0.so.0.5600.1[7f197d53f000+113000]
[ 1005.163751] r8822be: halmac_init_hal failed
[ 1005.163912] r8822be: halmac_init_hal failed
[ 1005.164066] r8822be: halmac_init_hal failed
[ 1005.164219] r8822be: halmac_init_hal failed
[ 1005.164369] r8822be: halmac_init_hal failed
[ 1005.164518] r8822be: halmac_init_hal failed
[ 1005.164667] r8822be: halmac_init_hal failed
[ 1005.164820] r8822be: halmac_init_hal failed
[ 1005.164970] r8822be: halmac_init_hal failed
[ 1005.165123] r8822be: halmac_init_hal failed
[ 1011.010496] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1011.010506] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1011.010510] r8822be: [ERR]Pwr cmd value : 0!!
[ 1011.010513] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1011.010516] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1011.010520] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1011.010523] r8822be: Handle power off cmd error
[ 1068.162449] r8822be: halmac_init_hal failed
[ 1068.162587] r8822be: halmac_init_hal failed
[ 1068.162718] r8822be: halmac_init_hal failed
[ 1068.162847] r8822be: halmac_init_hal failed
[ 1068.162977] r8822be: halmac_init_hal failed
[ 1068.163106] r8822be: halmac_init_hal failed
[ 1068.163231] r8822be: halmac_init_hal failed
[ 1068.163361] r8822be: halmac_init_hal failed
[ 1068.163493] r8822be: halmac_init_hal failed
[ 1068.163624] r8822be: halmac_init_hal failed
[ 1073.957568] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1073.957577] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1073.957581] r8822be: [ERR]Pwr cmd value : 0!!
[ 1073.957584] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1073.957588] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1073.957591] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1073.957595] r8822be: Handle power off cmd error
[ 1120.956532] r8822be: halmac_init_hal failed
[ 1120.956666] r8822be: halmac_init_hal failed
[ 1120.956795] r8822be: halmac_init_hal failed
[ 1120.956925] r8822be: halmac_init_hal failed
[ 1120.957055] r8822be: halmac_init_hal failed
[ 1120.957185] r8822be: halmac_init_hal failed
[ 1120.957314] r8822be: halmac_init_hal failed
[ 1120.957443] r8822be: halmac_init_hal failed
[ 1120.957574] r8822be: halmac_init_hal failed
[ 1120.957703] r8822be: halmac_init_hal failed
[ 1126.746316] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1126.746325] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1126.746330] r8822be: [ERR]Pwr cmd value : 0!!
[ 1126.746333] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1126.746337] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1126.746340] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1126.746344] r8822be: Handle power off cmd error
[ 1184.157390] r8822be: halmac_init_hal failed
[ 1184.157553] r8822be: halmac_init_hal failed
[ 1184.157707] r8822be: halmac_init_hal failed
[ 1184.157860] r8822be: halmac_init_hal failed
[ 1184.158014] r8822be: halmac_init_hal failed
[ 1184.158170] r8822be: halmac_init_hal failed
[ 1184.158345] r8822be: halmac_init_hal failed
[ 1184.158505] r8822be: halmac_init_hal failed
[ 1184.158664] r8822be: halmac_init_hal failed
[ 1184.158823] r8822be: halmac_init_hal failed
[ 1189.947475] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1189.947485] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1189.947488] r8822be: [ERR]Pwr cmd value : 0!!
[ 1189.947492] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1189.947495] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1189.947499] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1189.947502] r8822be: Handle power off cmd error
[ 1247.158269] r8822be: halmac_init_hal failed
[ 1247.158431] r8822be: halmac_init_hal failed
[ 1247.158584] r8822be: halmac_init_hal failed
[ 1247.158738] r8822be: halmac_init_hal failed
[ 1247.158891] r8822be: halmac_init_hal failed
[ 1247.159045] r8822be: halmac_init_hal failed
[ 1247.159194] r8822be: halmac_init_hal failed
[ 1247.159347] r8822be: halmac_init_hal failed
[ 1247.159497] r8822be: halmac_init_hal failed
[ 1247.159646] r8822be: halmac_init_hal failed
[ 1252.946228] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1252.946237] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1252.946241] r8822be: [ERR]Pwr cmd value : 0!!
[ 1252.946244] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1252.946248] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1252.946251] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1252.946254] r8822be: Handle power off cmd error
[ 1310.152984] r8822be: halmac_init_hal failed
[ 1310.153155] r8822be: halmac_init_hal failed
[ 1310.153321] r8822be: halmac_init_hal failed
[ 1310.153489] r8822be: halmac_init_hal failed
[ 1310.153654] r8822be: halmac_init_hal failed
[ 1310.153818] r8822be: halmac_init_hal failed
[ 1310.153979] r8822be: halmac_init_hal failed
[ 1310.154139] r8822be: halmac_init_hal failed
[ 1310.154300] r8822be: halmac_init_hal failed
[ 1310.154465] r8822be: halmac_init_hal failed
[ 1315.963890] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1315.963900] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1315.963904] r8822be: [ERR]Pwr cmd value : 0!!
[ 1315.963908] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1315.963911] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1315.963915] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1315.963919] r8822be: Handle power off cmd error
[ 1373.152393] r8822be: halmac_init_hal failed
[ 1373.152558] r8822be: halmac_init_hal failed
[ 1373.152715] r8822be: halmac_init_hal failed
[ 1373.152872] r8822be: halmac_init_hal failed
[ 1373.153029] r8822be: halmac_init_hal failed
[ 1373.153186] r8822be: halmac_init_hal failed
[ 1373.153344] r8822be: halmac_init_hal failed
[ 1373.153501] r8822be: halmac_init_hal failed
[ 1373.153659] r8822be: halmac_init_hal failed
[ 1373.153817] r8822be: halmac_init_hal failed
[ 1378.960974] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1378.960983] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1378.960987] r8822be: [ERR]Pwr cmd value : 0!!
[ 1378.960991] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1378.960995] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1378.960998] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1378.961001] r8822be: Handle power off cmd error
[ 1436.146690] r8822be: halmac_init_hal failed
[ 1436.146845] r8822be: halmac_init_hal failed
[ 1436.146998] r8822be: halmac_init_hal failed
[ 1436.147151] r8822be: halmac_init_hal failed
[ 1436.147307] r8822be: halmac_init_hal failed
[ 1436.147453] r8822be: halmac_init_hal failed
[ 1436.147598] r8822be: halmac_init_hal failed
[ 1436.147743] r8822be: halmac_init_hal failed
[ 1436.147910] r8822be: halmac_init_hal failed
[ 1436.148063] r8822be: halmac_init_hal failed
[ 1441.943798] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1441.943808] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1441.943812] r8822be: [ERR]Pwr cmd value : 0!!
[ 1441.943815] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1441.943819] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1441.943822] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1441.943825] r8822be: Handle power off cmd error
[ 1499.148107] r8822be: halmac_init_hal failed
[ 1499.148274] r8822be: halmac_init_hal failed
[ 1499.148431] r8822be: halmac_init_hal failed
[ 1499.148584] r8822be: halmac_init_hal failed
[ 1499.148734] r8822be: halmac_init_hal failed
[ 1499.148884] r8822be: halmac_init_hal failed
[ 1499.149034] r8822be: halmac_init_hal failed
[ 1499.149183] r8822be: halmac_init_hal failed
[ 1499.149337] r8822be: halmac_init_hal failed
[ 1499.149487] r8822be: halmac_init_hal failed
[ 1504.977749] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1504.977759] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1504.977762] r8822be: [ERR]Pwr cmd value : 0!!
[ 1504.977766] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1504.977769] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1504.977773] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1504.977777] r8822be: Handle power off cmd error
[ 1562.142799] r8822be: halmac_init_hal failed
[ 1562.142978] r8822be: halmac_init_hal failed
[ 1562.143148] r8822be: halmac_init_hal failed
[ 1562.143362] r8822be: halmac_init_hal failed
[ 1562.143524] r8822be: halmac_init_hal failed
[ 1562.143682] r8822be: halmac_init_hal failed
[ 1562.143843] r8822be: halmac_init_hal failed
[ 1562.144004] r8822be: halmac_init_hal failed
[ 1562.144161] r8822be: halmac_init_hal failed
[ 1562.144322] r8822be: halmac_init_hal failed
[ 1568.004021] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1568.004030] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1568.004034] r8822be: [ERR]Pwr cmd value : 0!!
[ 1568.004038] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1568.004041] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1568.004045] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1568.004049] r8822be: Handle power off cmd error
[ 1625.142704] r8822be: halmac_init_hal failed
[ 1625.142865] r8822be: halmac_init_hal failed
[ 1625.143021] r8822be: halmac_init_hal failed
[ 1625.143176] r8822be: halmac_init_hal failed
[ 1625.143333] r8822be: halmac_init_hal failed
[ 1625.143493] r8822be: halmac_init_hal failed
[ 1625.143667] r8822be: halmac_init_hal failed
[ 1625.143833] r8822be: halmac_init_hal failed
[ 1625.143999] r8822be: halmac_init_hal failed
[ 1625.144168] r8822be: halmac_init_hal failed
[ 1630.939179] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1630.939189] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1630.939192] r8822be: [ERR]Pwr cmd value : 0!!
[ 1630.939195] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1630.939199] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1630.939202] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1630.939206] r8822be: Handle power off cmd error
[ 1688.137874] r8822be: halmac_init_hal failed
[ 1688.138043] r8822be: halmac_init_hal failed
[ 1688.138201] r8822be: halmac_init_hal failed
[ 1688.138399] r8822be: halmac_init_hal failed
[ 1688.138567] r8822be: halmac_init_hal failed
[ 1688.138732] r8822be: halmac_init_hal failed
[ 1688.138894] r8822be: halmac_init_hal failed
[ 1688.139055] r8822be: halmac_init_hal failed
[ 1688.139213] r8822be: halmac_init_hal failed
[ 1688.139371] r8822be: halmac_init_hal failed
[ 1693.760752] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1693.760755] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1693.760757] r8822be: [ERR]Pwr cmd value : 0!!
[ 1693.760758] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1693.760759] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1693.760760] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1693.760761] r8822be: Handle power off cmd error
[ 1712.680913] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.680993] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681036] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681061] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681108] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681143] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681188] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681228] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681269] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681307] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681348] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681426] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681472] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681515] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681564] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681604] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681643] usb 1-3: USB disconnect, device number 5
[ 1712.705823] wlx20f41bcc626d: deauthenticating from 24:65:11:54:05:f3 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 1712.717472] mt7601u 1-3:1.0: mt7601u_rxdc_cal timed out
[ 1751.162657] r8822be: halmac_init_hal failed
[ 1751.162850] r8822be: halmac_init_hal failed
[ 1751.163016] r8822be: halmac_init_hal failed
[ 1751.163179] r8822be: halmac_init_hal failed
[ 1751.163335] r8822be: halmac_init_hal failed
[ 1751.163490] r8822be: halmac_init_hal failed
[ 1751.163645] r8822be: halmac_init_hal failed
[ 1751.163800] r8822be: halmac_init_hal failed
[ 1751.164007] r8822be: halmac_init_hal failed
[ 1751.164254] r8822be: halmac_init_hal failed
[ 1757.258154] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1757.258163] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1757.258167] r8822be: [ERR]Pwr cmd value : 0!!
[ 1757.258171] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1757.258174] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1757.258178] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1757.258181] r8822be: Handle power off cmd error
[ 1814.132992] r8822be: halmac_init_hal failed
[ 1814.133158] r8822be: halmac_init_hal failed
[ 1814.133317] r8822be: halmac_init_hal failed
[ 1814.133470] r8822be: halmac_init_hal failed
[ 1814.133659] r8822be: halmac_init_hal failed
[ 1814.133813] r8822be: halmac_init_hal failed
[ 1814.133966] r8822be: halmac_init_hal failed
[ 1814.134114] r8822be: halmac_init_hal failed
[ 1814.134266] r8822be: halmac_init_hal failed
[ 1814.134418] r8822be: halmac_init_hal failed
[ 1820.236889] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1820.236898] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1820.236902] r8822be: [ERR]Pwr cmd value : 0!!
[ 1820.236905] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1820.236909] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1820.236912] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1820.236916] r8822be: Handle power off cmd error
[ 1877.184464] r8822be: halmac_init_hal failed
[ 1877.184635] r8822be: halmac_init_hal failed
[ 1877.184797] r8822be: halmac_init_hal failed
[ 1877.184958] r8822be: halmac_init_hal failed
[ 1877.185119] r8822be: halmac_init_hal failed
[ 1877.185280] r8822be: halmac_init_hal failed
[ 1877.185440] r8822be: halmac_init_hal failed
[ 1877.185601] r8822be: halmac_init_hal failed
[ 1877.185762] r8822be: halmac_init_hal failed
[ 1877.185923] r8822be: halmac_init_hal failed
[ 1883.290413] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1883.290423] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1883.290427] r8822be: [ERR]Pwr cmd value : 0!!
[ 1883.290430] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1883.290434] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1883.290437] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1883.290441] r8822be: Handle power off cmd error
[ 1940.186325] r8822be: halmac_init_hal failed
[ 1940.186490] r8822be: halmac_init_hal failed
[ 1940.186652] r8822be: halmac_init_hal failed
[ 1940.186809] r8822be: halmac_init_hal failed
[ 1940.186967] r8822be: halmac_init_hal failed
[ 1940.187125] r8822be: halmac_init_hal failed
[ 1940.187285] r8822be: halmac_init_hal failed
[ 1940.187443] r8822be: halmac_init_hal failed
[ 1940.187601] r8822be: halmac_init_hal failed
[ 1940.187756] r8822be: halmac_init_hal failed
[ 1946.286039] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1946.286049] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1946.286053] r8822be: [ERR]Pwr cmd value : 0!!
[ 1946.286056] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1946.286060] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1946.286063] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1946.286067] r8822be: Handle power off cmd error
[ 2003.184884] r8822be: halmac_init_hal failed
[ 2003.185044] r8822be: halmac_init_hal failed
[ 2003.185200] r8822be: halmac_init_hal failed
[ 2003.185357] r8822be: halmac_init_hal failed
[ 2003.185510] r8822be: halmac_init_hal failed
[ 2003.185662] r8822be: halmac_init_hal failed
[ 2003.185814] r8822be: halmac_init_hal failed
[ 2003.185965] r8822be: halmac_init_hal failed
[ 2003.186118] r8822be: halmac_init_hal failed
[ 2003.186265] r8822be: halmac_init_hal failed
[ 2009.290763] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2009.290772] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2009.290776] r8822be: [ERR]Pwr cmd value : 0!!
[ 2009.290779] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2009.290783] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2009.290786] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2009.290790] r8822be: Handle power off cmd error
[ 2066.139415] r8822be: halmac_init_hal failed
[ 2066.139578] r8822be: halmac_init_hal failed
[ 2066.139731] r8822be: halmac_init_hal failed
[ 2066.139886] r8822be: halmac_init_hal failed
[ 2066.140039] r8822be: halmac_init_hal failed
[ 2066.140196] r8822be: halmac_init_hal failed
[ 2066.140352] r8822be: halmac_init_hal failed
[ 2066.140504] r8822be: halmac_init_hal failed
[ 2066.140659] r8822be: halmac_init_hal failed
[ 2066.140802] r8822be: halmac_init_hal failed
[ 2072.187610] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2072.187619] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2072.187623] r8822be: [ERR]Pwr cmd value : 0!!
[ 2072.187626] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2072.187630] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2072.187633] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2072.187637] r8822be: Handle power off cmd error
[ 2115.354918] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[ 2115.632635] usb 1-3: New USB device found, idVendor=148f, idProduct=7601
[ 2115.632641] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2115.632646] usb 1-3: Product: 802.11 n WLAN
[ 2115.632649] usb 1-3: SerialNumber: 1.0
[ 2115.759297] usb 1-3: reset high-speed USB device number 6 using xhci_hcd
[ 2115.910231] mt7601u 1-3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[ 2115.911272] mt7601u 1-3:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[ 2116.319431] mt7601u 1-3:1.0: EEPROM ver:0c fae:00
[ 2116.522296] ieee80211 phy3: Selected rate control algorithm 'minstrel_ht'
[ 2116.556644] mt7601u 1-3:1.0 wlx20f41bcc626d: renamed from wlan0
[ 2116.595616] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[ 2116.616390] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[ 2116.675254] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[ 2117.930264] wlx20f41bcc626d: authenticate with 24:65:11:54:05:f3
[ 2117.944733] wlx20f41bcc626d: send auth to 24:65:11:54:05:f3 (try 1/3)
[ 2117.947779] wlx20f41bcc626d: authenticated
[ 2117.950841] wlx20f41bcc626d: associate with 24:65:11:54:05:f3 (try 1/3)
[ 2117.956725] wlx20f41bcc626d: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=2)
[ 2117.983160] wlx20f41bcc626d: associated
[ 2117.992226] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20f41bcc626d: link becomes ready
[ 2129.124533] r8822be: halmac_init_hal failed
[ 2129.124707] r8822be: halmac_init_hal failed
[ 2129.124874] r8822be: halmac_init_hal failed
[ 2129.125034] r8822be: halmac_init_hal failed
[ 2129.125192] r8822be: halmac_init_hal failed
[ 2129.125351] r8822be: halmac_init_hal failed
[ 2129.125510] r8822be: halmac_init_hal failed
[ 2129.125669] r8822be: halmac_init_hal failed
[ 2129.125828] r8822be: halmac_init_hal failed
[ 2129.125986] r8822be: halmac_init_hal failed
[ 2134.901897] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2134.901901] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2134.901902] r8822be: [ERR]Pwr cmd value : 0!!
[ 2134.901903] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2134.901905] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2134.901906] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2134.901907] r8822be: Handle power off cmd error
[ 2192.118812] r8822be: halmac_init_hal failed
[ 2192.118973] r8822be: halmac_init_hal failed
[ 2192.119127] r8822be: halmac_init_hal failed
[ 2192.119280] r8822be: halmac_init_hal failed
[ 2192.119434] r8822be: halmac_init_hal failed
[ 2192.119584] r8822be: halmac_init_hal failed
[ 2192.119737] r8822be: halmac_init_hal failed
[ 2192.119890] r8822be: halmac_init_hal failed
[ 2192.120040] r8822be: halmac_init_hal failed
[ 2192.120189] r8822be: halmac_init_hal failed
[ 2197.898982] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2197.898992] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2197.898997] r8822be: [ERR]Pwr cmd value : 0!!
[ 2197.899000] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2197.899003] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2197.899007] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2197.899011] r8822be: Handle power off cmd error
[ 2255.121478] r8822be: halmac_init_hal failed
[ 2255.121639] r8822be: halmac_init_hal failed
[ 2255.121793] r8822be: halmac_init_hal failed
[ 2255.121974] r8822be: halmac_init_hal failed
[ 2255.122162] r8822be: halmac_init_hal failed
[ 2255.122330] r8822be: halmac_init_hal failed
[ 2255.122486] r8822be: halmac_init_hal failed
[ 2255.122640] r8822be: halmac_init_hal failed
[ 2255.122794] r8822be: halmac_init_hal failed
[ 2255.122949] r8822be: halmac_init_hal failed
[ 2260.968548] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2260.968557] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2260.968561] r8822be: [ERR]Pwr cmd value : 0!!
[ 2260.968564] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2260.968568] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2260.968572] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2260.968575] r8822be: Handle power off cmd error
[ 2318.114886] r8822be: halmac_init_hal failed
[ 2318.115044] r8822be: halmac_init_hal failed
[ 2318.115198] r8822be: halmac_init_hal failed
[ 2318.115349] r8822be: halmac_init_hal failed
[ 2318.115494] r8822be: halmac_init_hal failed
[ 2318.115639] r8822be: halmac_init_hal failed
[ 2318.115788] r8822be: halmac_init_hal failed
[ 2318.115937] r8822be: halmac_init_hal failed
[ 2318.116097] r8822be: halmac_init_hal failed
[ 2318.116251] r8822be: halmac_init_hal failed
[ 2323.903113] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2323.903123] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2323.903127] r8822be: [ERR]Pwr cmd value : 0!!
[ 2323.903130] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2323.903134] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2323.903137] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2323.903141] r8822be: Handle power off cmd error
[ 2381.114408] r8822be: halmac_init_hal failed
[ 2381.114575] r8822be: halmac_init_hal failed
[ 2381.114730] r8822be: halmac_init_hal failed
[ 2381.114882] r8822be: halmac_init_hal failed
[ 2381.115031] r8822be: halmac_init_hal failed
[ 2381.115176] r8822be: halmac_init_hal failed
[ 2381.115321] r8822be: halmac_init_hal failed
[ 2381.115466] r8822be: halmac_init_hal failed
[ 2381.115611] r8822be: halmac_init_hal failed
[ 2381.115760] r8822be: halmac_init_hal failed
[ 2386.913259] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2386.913269] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2386.913272] r8822be: [ERR]Pwr cmd value : 0!!
[ 2386.913276] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2386.913279] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2386.913282] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2386.913286] r8822be: Handle power off cmd error
[ 2444.111750] r8822be: halmac_init_hal failed
[ 2444.111917] r8822be: halmac_init_hal failed
[ 2444.112071] r8822be: halmac_init_hal failed
[ 2444.112216] r8822be: halmac_init_hal failed
[ 2444.112363] r8822be: halmac_init_hal failed
[ 2444.112512] r8822be: halmac_init_hal failed
[ 2444.112664] r8822be: halmac_init_hal failed
[ 2444.112813] r8822be: halmac_init_hal failed
[ 2444.112965] r8822be: halmac_init_hal failed
[ 2444.113113] r8822be: halmac_init_hal failed
[ 2449.973210] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2449.973220] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2449.973224] r8822be: [ERR]Pwr cmd value : 0!!
[ 2449.973227] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2449.973230] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2449.973234] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2449.973237] r8822be: Handle power off cmd error
[ 2507.112233] r8822be: halmac_init_hal failed
[ 2507.112394] r8822be: halmac_init_hal failed
[ 2507.112546] r8822be: halmac_init_hal failed
[ 2507.112695] r8822be: halmac_init_hal failed
[ 2507.112844] r8822be: halmac_init_hal failed
[ 2507.112989] r8822be: halmac_init_hal failed
[ 2507.113134] r8822be: halmac_init_hal failed
[ 2507.113283] r8822be: halmac_init_hal failed
[ 2507.113428] r8822be: halmac_init_hal failed
[ 2507.113574] r8822be: halmac_init_hal failed
[ 2512.931694] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2512.931704] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2512.931708] r8822be: [ERR]Pwr cmd value : 0!!
[ 2512.931711] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2512.931714] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2512.931718] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2512.931721] r8822be: Handle power off cmd error
[ 2570.106048] r8822be: halmac_init_hal failed
[ 2570.106217] r8822be: halmac_init_hal failed
[ 2570.106369] r8822be: halmac_init_hal failed
[ 2570.106528] r8822be: halmac_init_hal failed
[ 2570.106679] r8822be: halmac_init_hal failed
[ 2570.106829] r8822be: halmac_init_hal failed
[ 2570.106980] r8822be: halmac_init_hal failed
[ 2570.107135] r8822be: halmac_init_hal failed
[ 2570.107284] r8822be: halmac_init_hal failed
[ 2570.107454] r8822be: halmac_init_hal failed
[ 2575.949928] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2575.949938] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2575.949942] r8822be: [ERR]Pwr cmd value : 0!!
[ 2575.949946] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2575.949950] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2575.949953] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2575.949957] r8822be: Handle power off cmd error
[ 2633.108519] r8822be: halmac_init_hal failed
[ 2633.108681] r8822be: halmac_init_hal failed
[ 2633.108834] r8822be: halmac_init_hal failed
[ 2633.108988] r8822be: halmac_init_hal failed
[ 2633.109141] r8822be: halmac_init_hal failed
[ 2633.109296] r8822be: halmac_init_hal failed
[ 2633.109451] r8822be: halmac_init_hal failed
[ 2633.109605] r8822be: halmac_init_hal failed
[ 2633.109759] r8822be: halmac_init_hal failed
[ 2633.109912] r8822be: halmac_init_hal failed
[ 2638.916996] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2638.917006] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2638.917010] r8822be: [ERR]Pwr cmd value : 0!!
[ 2638.917013] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2638.917016] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2638.917043] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2638.917059] r8822be: Handle power off cmd error
[ 2696.102171] r8822be: halmac_init_hal failed
[ 2696.102304] r8822be: halmac_init_hal failed
[ 2696.102431] r8822be: halmac_init_hal failed
[ 2696.102557] r8822be: halmac_init_hal failed
[ 2696.102687] r8822be: halmac_init_hal failed
[ 2696.102813] r8822be: halmac_init_hal failed
[ 2696.102940] r8822be: halmac_init_hal failed
[ 2696.103066] r8822be: halmac_init_hal failed
[ 2696.103194] r8822be: halmac_init_hal failed
[ 2696.103321] r8822be: halmac_init_hal failed
[ 2701.781524] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2701.781534] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2701.781538] r8822be: [ERR]Pwr cmd value : 0!!
[ 2701.781542] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2701.781545] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2701.781549] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2701.781553] r8822be: Handle power off cmd error
[ 2759.104407] r8822be: halmac_init_hal failed
[ 2759.104565] r8822be: halmac_init_hal failed
[ 2759.104714] r8822be: halmac_init_hal failed
[ 2759.104863] r8822be: halmac_init_hal failed
[ 2759.105072] r8822be: halmac_init_hal failed
[ 2759.105225] r8822be: halmac_init_hal failed
[ 2759.105378] r8822be: halmac_init_hal failed
[ 2759.105534] r8822be: halmac_init_hal failed
[ 2759.105686] r8822be: halmac_init_hal failed
[ 2759.105840] r8822be: halmac_init_hal failed
[ 2764.883565] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2764.883574] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2764.883578] r8822be: [ERR]Pwr cmd value : 0!!
[ 2764.883581] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2764.883585] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2764.883588] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2764.883592] r8822be: Handle power off cmd error
[ 2822.099741] r8822be: halmac_init_hal failed
[ 2822.099911] r8822be: halmac_init_hal failed
[ 2822.100071] r8822be: halmac_init_hal failed
[ 2822.100231] r8822be: halmac_init_hal failed
[ 2822.100390] r8822be: halmac_init_hal failed
[ 2822.100550] r8822be: halmac_init_hal failed
[ 2822.100709] r8822be: halmac_init_hal failed
[ 2822.100868] r8822be: halmac_init_hal failed
[ 2822.101028] r8822be: halmac_init_hal failed
[ 2822.101187] r8822be: halmac_init_hal failed
[ 2827.876326] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2827.876336] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2827.876340] r8822be: [ERR]Pwr cmd value : 0!!
[ 2827.876343] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2827.876347] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2827.876350] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2827.876354] r8822be: Handle power off cmd error
[ 2885.100722] r8822be: halmac_init_hal failed
[ 2885.100913] r8822be: halmac_init_hal failed
[ 2885.101087] r8822be: halmac_init_hal failed
[ 2885.101248] r8822be: halmac_init_hal failed
[ 2885.101409] r8822be: halmac_init_hal failed
[ 2885.101570] r8822be: halmac_init_hal failed
[ 2885.101731] r8822be: halmac_init_hal failed
[ 2885.101894] r8822be: halmac_init_hal failed
[ 2885.102054] r8822be: halmac_init_hal failed
[ 2885.102215] r8822be: halmac_init_hal failed
[ 2890.887980] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2890.887989] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2890.887993] r8822be: [ERR]Pwr cmd value : 0!!
[ 2890.887996] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2890.888000] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2890.888003] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2890.888007] r8822be: Handle power off cmd error
ralf@ralf-X411UA:~$ dmesg
[    0.000000] Linux version 4.15.0-21-generic (buildd@lgw01-amd64-042) (gcc version 7.3.0 (Ubuntu 7.3.0-16ubuntu3)) #22-Ubuntu SMP Tue May 1 13:26:51 UTC 2018 (Ubuntu 4.15.0-21.22-generic 4.15.17)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-21-generic root=UUID=e903601f-9387-4b35-8b63-ad0edb3a43be ro quiet splash vt.handoff=1
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009571afff] usable
[    0.000000] BIOS-e820: [mem 0x000000009571b000-0x000000009571bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009571c000-0x000000009571cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009571d000-0x0000000099af1fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000099af2000-0x000000009a99efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009a99f000-0x000000009a9e4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009a9e5000-0x000000009adfefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009adff000-0x000000009b2a2fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009b2a3000-0x000000009b37efff] type 20
[    0.000000] BIOS-e820: [mem 0x000000009b37f000-0x000000009b3fefff] usable
[    0.000000] BIOS-e820: [mem 0x000000009b3ff000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0x9a9ad000  ACPI=0x9a9ad000  SMBIOS=0x9b201000  SMBIOS 3.0=0x9b200000  ESRT=0x97d7ef18 
[    0.000000] secureboot: Secure boot could not be determined (mode 0)
[    0.000000] random: fast init done
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. X411UA/X411UA, BIOS X411UA.300 08/04/2017
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x25f000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 00C0000000 mask 7FC0000000 uncachable
[    0.000000]   1 base 00A0000000 mask 7FE0000000 uncachable
[    0.000000]   2 base 009C000000 mask 7FFC000000 uncachable
[    0.000000]   3 base 009B800000 mask 7FFF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: last_pfn = 0x9b3ff max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x0000000097d7ef18 to 0x0000000097d7ef50.
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [        (ptrval)] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x10f53e000, 0x10f53efff] PGTABLE
[    0.000000] BRK [0x10f53f000, 0x10f53ffff] PGTABLE
[    0.000000] BRK [0x10f540000, 0x10f540fff] PGTABLE
[    0.000000] BRK [0x10f541000, 0x10f541fff] PGTABLE
[    0.000000] BRK [0x10f542000, 0x10f542fff] PGTABLE
[    0.000000] BRK [0x10f543000, 0x10f543fff] PGTABLE
[    0.000000] BRK [0x10f544000, 0x10f544fff] PGTABLE
[    0.000000] BRK [0x10f545000, 0x10f545fff] PGTABLE
[    0.000000] BRK [0x10f546000, 0x10f546fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x31977000-0x34cb2fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000009A9AD000 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x000000009A9AD0B0 0000DC (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x000000009A9D8640 000114 (v06 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x000000009A9AD218 02B427 (v02 _ASUS_ Notebook 01072009 INTL 20160422)
[    0.000000] ACPI: FACS 0x000000009ADCDF00 000040
[    0.000000] ACPI: APIC 0x000000009A9D8758 0000BC (v03 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x000000009A9D8818 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x000000009A9D8860 00009C (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: ECDT 0x000000009A9D8900 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
[    0.000000] ACPI: MCFG 0x000000009A9D89C8 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00000097)
[    0.000000] ACPI: SSDT 0x000000009A9D8A08 000359 (v01 SataRe SataTabl 00001000 INTL 20160422)
[    0.000000] ACPI: SSDT 0x000000009A9D8D68 0067E5 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
[    0.000000] ACPI: MSDM 0x000000009A9DF550 000055 (v03 _ASUS_ Notebook 01072009 ASUS 00000001)
[    0.000000] ACPI: SSDT 0x000000009A9DF5A8 003147 (v02 SaSsdt SaSsdt   00003000 INTL 20160422)
[    0.000000] ACPI: HPET 0x000000009A9E26F0 000038 (v01 INTEL  KBL-ULT  00000001 MSFT 0000005F)
[    0.000000] ACPI: UEFI 0x000000009A9E2728 000042 (v01 _ASUS_ Notebook 00000002      01000013)
[    0.000000] ACPI: SSDT 0x000000009A9E2770 000EDE (v02 CpuRef CpuSsdt  00003000 INTL 20160422)
[    0.000000] ACPI: LPIT 0x000000009A9E3650 000094 (v01 INTEL  KBL-ULT  00000000 MSFT 0000005F)
[    0.000000] ACPI: SSDT 0x000000009A9E36E8 000141 (v02 INTEL  HdaDsp   00000000 INTL 20160422)
[    0.000000] ACPI: SSDT 0x000000009A9E3830 00029F (v02 INTEL  sensrhub 00000000 INTL 20160422)
[    0.000000] ACPI: SSDT 0x000000009A9E3AD0 000517 (v02 INTEL  TbtTypeC 00000000 INTL 20160422)
[    0.000000] ACPI: DBGP 0x000000009A9E3FE8 000034 (v01 INTEL           00000002 MSFT 0000005F)
[    0.000000] ACPI: DBG2 0x000000009A9E4020 000054 (v00 INTEL           00000002 MSFT 0000005F)
[    0.000000] ACPI: DMAR 0x000000009A9E4078 000138 (v01 INTEL  KBL      00000001 INTL 00000001)
[    0.000000] ACPI: BGRT 0x000000009A9E41B0 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: TPM2 0x000000009A9E41E8 000034 (v03 _ASUS_ Notebook 00000001 AMI  00000000)
[    0.000000] ACPI: WSMT 0x000000009A9E4220 000028 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000025effffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x25efd5000-0x25effffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000025effffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.000000]   node   0: [mem 0x0000000000059000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000009571afff]
[    0.000000]   node   0: [mem 0x000000009571d000-0x0000000099af1fff]
[    0.000000]   node   0: [mem 0x000000009b37f000-0x000000009b3fefff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000025effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000025effffff]
[    0.000000] On node 0 totalpages: 2067212
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 23 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 9774 pages used for memmap
[    0.000000]   DMA32 zone: 625520 pages, LIFO batch:31
[    0.000000]   Normal zone: 22464 pages used for memmap
[    0.000000]   Normal zone: 1437696 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 98 pages
[    0.000000] Reserving Intel graphics memory at 0x000000009c000000-0x000000009fffffff
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x9571b000-0x9571bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x9571c000-0x9571cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x99af2000-0x9a99efff]
[    0.000000] PM: Registered nosave memory: [mem 0x9a99f000-0x9a9e4fff]
[    0.000000] PM: Registered nosave memory: [mem 0x9a9e5000-0x9adfefff]
[    0.000000] PM: Registered nosave memory: [mem 0x9adff000-0x9b2a2fff]
[    0.000000] PM: Registered nosave memory: [mem 0x9b2a3000-0x9b37efff]
[    0.000000] PM: Registered nosave memory: [mem 0x9b3ff000-0x9fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xa0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xa0000000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 46 pages/cpu @        (ptrval) s151552 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s151552 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2034887
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-21-generic root=UUID=e903601f-9387-4b35-8b63-ad0edb3a43be ro quiet splash vt.handoff=1
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 7901644K/8268848K available (12300K kernel code, 2470K rwdata, 4240K rodata, 2404K init, 2416K bss, 367204K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 39065 entries in 153 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[    0.000000] vt handoff: transparent VT on vt#1
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] ACPI: Core revision 20170831
[    0.000000] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.000000] hpet clockevent registered
[    0.004000] APIC: Switch to symmetric I/O mode setup
[    0.004000] DMAR: Host address width 39
[    0.004000] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.004000] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.004000] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.004000] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.004000] DMAR: RMRR base: 0x0000009a107000 end: 0x0000009a126fff
[    0.004000] DMAR: RMRR base: 0x0000009b800000 end: 0x0000009fffffff
[    0.004000] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.004000] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[    0.004000] DMAR: ANDD device: 7 name: \_SB.PCI0.SPI0
[    0.004000] DMAR: ANDD device: 9 name: \_SB.PCI0.UA00
[    0.004000] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.004000] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.004000] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.004000] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.004000] x2apic enabled
[    0.004000] Switched APIC routing to cluster x2apic.
[    0.008000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.028000] tsc: Detected 1800.000 MHz processor
[    0.028000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3600.00 BogoMIPS (lpj=7200000)
[    0.028000] pid_max: default: 32768 minimum: 301
[    0.028000] Security Framework initialized
[    0.028000] Yama: becoming mindful.
[    0.028000] AppArmor: AppArmor initialized
[    0.028000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.028000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.028000] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.028000] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.028000] CPU: Physical Processor ID: 0
[    0.028000] CPU: Processor Core ID: 0
[    0.028000] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.028000] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.028000] mce: CPU supports 10 MCE banks
[    0.028000] CPU0: Thermal monitoring enabled (TM1)
[    0.028000] process: using mwait in idle threads
[    0.028000] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.028000] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.028000] Spectre V2 : Mitigation: Full generic retpoline
[    0.028000] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
[    0.028000] Freeing SMP alternatives memory: 36K
[    0.037654] TSC deadline timer enabled
[    0.037659] smpboot: CPU0: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz (family: 0x6, model: 0x8e, stepping: 0xa)
[    0.037753] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.037798] ... version:                4
[    0.037799] ... bit width:              48
[    0.037800] ... generic registers:      4
[    0.037801] ... value mask:             0000ffffffffffff
[    0.037802] ... max period:             00007fffffffffff
[    0.037803] ... fixed-purpose events:   3
[    0.037804] ... event mask:             000000070000000f
[    0.037860] Hierarchical SRCU implementation.
[    0.039738] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.039756] smp: Bringing up secondary CPUs ...
[    0.039850] x86: Booting SMP configuration:
[    0.039852] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.040848] smp: Brought up 1 node, 8 CPUs
[    0.040848] smpboot: Max logical packages: 1
[    0.040848] smpboot: Total of 8 processors activated (28800.00 BogoMIPS)
[    0.044442] devtmpfs: initialized
[    0.044442] x86/mm: Memory block size: 128MB
[    0.045019] evm: security.selinux
[    0.045020] evm: security.SMACK64
[    0.045021] evm: security.SMACK64EXEC
[    0.045021] evm: security.SMACK64TRANSMUTE
[    0.045022] evm: security.SMACK64MMAP
[    0.045023] evm: security.apparmor
[    0.045023] evm: security.ima
[    0.045024] evm: security.capability
[    0.045044] PM: Registering ACPI NVS region [mem 0x9571b000-0x9571bfff] (4096 bytes)
[    0.045044] PM: Registering ACPI NVS region [mem 0x9a9e5000-0x9adfefff] (4300800 bytes)
[    0.045044] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.045044] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.045044] pinctrl core: initialized pinctrl subsystem
[    0.045044] RTC time: 15:44:31, date: 05/17/18
[    0.045044] NET: Registered protocol family 16
[    0.045044] audit: initializing netlink subsys (disabled)
[    0.045044] audit: type=2000 audit(1526571871.044:1): state=initialized audit_enabled=0 res=1
[    0.045044] cpuidle: using governor ladder
[    0.045044] cpuidle: using governor menu
[    0.045044] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.045044] ACPI: bus type PCI registered
[    0.045044] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.045044] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.045044] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.045044] PCI: Using configuration type 1 for base access
[    0.048900] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.048900] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.048903] ACPI: Added _OSI(Module Device)
[    0.048903] ACPI: Added _OSI(Processor Device)
[    0.048903] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.048903] ACPI: Added _OSI(Processor Aggregator Device)
[    0.048903] ACPI: EC: EC started
[    0.048903] ACPI: EC: interrupt blocked
[    0.049374] ACPI: \: Used as first EC
[    0.049377] ACPI: \: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.049379] ACPI: \: Used as boot ECDT EC to handle transactions
[    0.056581] ACPI: Executed 31 blocks of module-level executable AML code
[    0.093882] ACPI: Dynamic OEM Table Load:
[    0.093894] ACPI: SSDT 0xFFFF9685D4A01000 00058B (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    0.094397] ACPI: Executed 1 blocks of module-level executable AML code
[    0.094578] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.097520] ACPI: Dynamic OEM Table Load:
[    0.097530] ACPI: SSDT 0xFFFF9685D4AE6800 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    0.098006] ACPI: Executed 1 blocks of module-level executable AML code
[    0.098344] ACPI: Dynamic OEM Table Load:
[    0.098351] ACPI: SSDT 0xFFFF9685D4BE5800 000115 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160422)
[    0.098752] ACPI: Executed 1 blocks of module-level executable AML code
[    0.098926] ACPI: Dynamic OEM Table Load:
[    0.098933] ACPI: SSDT 0xFFFF9685D4BE5A00 0001A4 (v02 PmRef  HwpLvt   00003000 INTL 20160422)
[    0.099329] ACPI: Executed 1 blocks of module-level executable AML code
[    0.100237] ACPI: Dynamic OEM Table Load:
[    0.100247] ACPI: SSDT 0xFFFF9685D4A07800 00065C (v02 PmRef  ApIst    00003000 INTL 20160422)
[    0.101315] ACPI: Executed 1 blocks of module-level executable AML code
[    0.101633] ACPI: Dynamic OEM Table Load:
[    0.101640] ACPI: SSDT 0xFFFF9685D4BE6200 000197 (v02 PmRef  ApHwp    00003000 INTL 20160422)
[    0.102117] ACPI: Executed 1 blocks of module-level executable AML code
[    0.102444] ACPI: Dynamic OEM Table Load:
[    0.102451] ACPI: SSDT 0xFFFF9685D4BE7C00 00018A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    0.102915] ACPI: Executed 1 blocks of module-level executable AML code
[    0.109137] ACPI: Interpreter enabled
[    0.109212] ACPI: (supports S0 S3 S4 S5)
[    0.109213] ACPI: Using IOAPIC for interrupt routing
[    0.109284] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.111358] ACPI: Enabled 6 GPEs in block 00 to 7F
[    0.120835] ACPI: Power Resource [WRST] (on)
[    0.121173] ACPI: Power Resource [WRST] (on)
[    0.121505] ACPI: Power Resource [WRST] (on)
[    0.121846] ACPI: Power Resource [WRST] (on)
[    0.122174] ACPI: Power Resource [WRST] (on)
[    0.122511] ACPI: Power Resource [WRST] (on)
[    0.122840] ACPI: Power Resource [WRST] (on)
[    0.123168] ACPI: Power Resource [WRST] (on)
[    0.123496] ACPI: Power Resource [WRST] (on)
[    0.123828] ACPI: Power Resource [WRST] (on)
[    0.124380] ACPI: Power Resource [WRST] (on)
[    0.124713] ACPI: Power Resource [WRST] (on)
[    0.125054] ACPI: Power Resource [WRST] (on)
[    0.125381] ACPI: Power Resource [WRST] (on)
[    0.125710] ACPI: Power Resource [WRST] (on)
[    0.126040] ACPI: Power Resource [WRST] (on)
[    0.126369] ACPI: Power Resource [WRST] (on)
[    0.127144] ACPI: Power Resource [WRST] (on)
[    0.127476] ACPI: Power Resource [WRST] (on)
[    0.127807] ACPI: Power Resource [WRST] (on)
[    0.157730] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    0.157739] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.161228] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.161229] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.162743] PCI host bridge to bus 0000:00
[    0.162747] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.162749] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.162751] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.162753] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.162755] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.162757] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.162759] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.162761] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.162763] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.162765] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.162767] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.162769] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.162771] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.162773] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.162775] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.162777] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.162779] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xefffffff window]
[    0.162781] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.162784] pci_bus 0000:00: root bus resource [bus 00-7e]
[    0.162798] pci 0000:00:00.0: [8086:5914] type 00 class 0x060000
[    0.163479] pci 0000:00:02.0: [8086:5917] type 00 class 0x030000
[    0.163497] pci 0000:00:02.0: reg 0x10: [mem 0xee000000-0xeeffffff 64bit]
[    0.163506] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.163513] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.163537] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.163813] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.163831] pci 0000:00:04.0: reg 0x10: [mem 0xef120000-0xef127fff 64bit]
[    0.164217] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
[    0.164252] pci 0000:00:14.0: reg 0x10: [mem 0xef110000-0xef11ffff 64bit]
[    0.164347] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.164796] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
[    0.164829] pci 0000:00:14.2: reg 0x10: [mem 0xef13a000-0xef13afff 64bit]
[    0.165223] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
[    0.165487] pci 0000:00:15.0: reg 0x10: [mem 0xef139000-0xef139fff 64bit]
[    0.166610] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000
[    0.166875] pci 0000:00:15.1: reg 0x10: [mem 0xef138000-0xef138fff 64bit]
[    0.167957] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
[    0.167991] pci 0000:00:16.0: reg 0x10: [mem 0xef137000-0xef137fff 64bit]
[    0.168096] pci 0000:00:16.0: PME# supported from D3hot
[    0.168476] pci 0000:00:17.0: [8086:9d03] type 00 class 0x010601
[    0.168501] pci 0000:00:17.0: reg 0x10: [mem 0xef130000-0xef131fff]
[    0.168512] pci 0000:00:17.0: reg 0x14: [mem 0xef136000-0xef1360ff]
[    0.168523] pci 0000:00:17.0: reg 0x18: [io  0xf090-0xf097]
[    0.168533] pci 0000:00:17.0: reg 0x1c: [io  0xf080-0xf083]
[    0.168544] pci 0000:00:17.0: reg 0x20: [io  0xf060-0xf07f]
[    0.168554] pci 0000:00:17.0: reg 0x24: [mem 0xef135000-0xef1357ff]
[    0.168616] pci 0000:00:17.0: PME# supported from D3hot
[    0.168927] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
[    0.169032] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.169405] pci 0000:00:1c.5: [8086:9d15] type 01 class 0x060400
[    0.169518] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.169985] pci 0000:00:1e.0: [8086:9d27] type 00 class 0x118000
[    0.170253] pci 0000:00:1e.0: reg 0x10: [mem 0xef134000-0xef134fff 64bit]
[    0.171399] pci 0000:00:1e.2: [8086:9d29] type 00 class 0x118000
[    0.171667] pci 0000:00:1e.2: reg 0x10: [mem 0xef133000-0xef133fff 64bit]
[    0.172723] pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100
[    0.173141] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
[    0.173160] pci 0000:00:1f.2: reg 0x10: [mem 0xef12c000-0xef12ffff]
[    0.173514] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040300
[    0.173547] pci 0000:00:1f.3: reg 0x10: [mem 0xef128000-0xef12bfff 64bit]
[    0.173579] pci 0000:00:1f.3: reg 0x20: [mem 0xef100000-0xef10ffff 64bit]
[    0.173645] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.174136] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
[    0.174199] pci 0000:00:1f.4: reg 0x10: [mem 0xef132000-0xef1320ff 64bit]
[    0.174272] pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
[    0.174725] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.175021] pci 0000:02:00.0: [10ec:b822] type 00 class 0x028000
[    0.175087] pci 0000:02:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.175151] pci 0000:02:00.0: reg 0x18: [mem 0xef000000-0xef00ffff 64bit]
[    0.175468] pci 0000:02:00.0: supports D1 D2
[    0.175471] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.184199] pci 0000:00:1c.5: PCI bridge to [bus 02]
[    0.184204] pci 0000:00:1c.5:   bridge window [io  0xe000-0xefff]
[    0.184208] pci 0000:00:1c.5:   bridge window [mem 0xef000000-0xef0fffff]
[    0.189549] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.189674] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.189795] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.189914] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190034] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190152] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190272] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.190391] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.191625] ACPI: EC: interrupt unblocked
[    0.191646] ACPI: EC: event unblocked
[    0.191662] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x50, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.191664] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.191967] SCSI subsystem initialized
[    0.192017] libata version 3.00 loaded.
[    0.192034] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.192034] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.192034] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.192034] vgaarb: loaded
[    0.192041] ACPI: bus type USB registered
[    0.192058] usbcore: registered new interface driver usbfs
[    0.192067] usbcore: registered new interface driver hub
[    0.192099] usbcore: registered new device driver usb
[    0.192147] EDAC MC: Ver: 3.0.0
[    0.192360] Registered efivars operations
[    0.215098] PCI: Using ACPI for IRQ routing
[    0.229423] PCI: pci_cache_line_size set to 64 bytes
[    0.229866] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.229868] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.229869] e820: reserve RAM buffer [mem 0x9571b000-0x97ffffff]
[    0.229871] e820: reserve RAM buffer [mem 0x99af2000-0x9bffffff]
[    0.229873] e820: reserve RAM buffer [mem 0x9b3ff000-0x9bffffff]
[    0.229874] e820: reserve RAM buffer [mem 0x25f000000-0x25fffffff]
[    0.229986] NetLabel: Initializing
[    0.229988] NetLabel:  domain hash size = 128
[    0.229988] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.230008] NetLabel:  unlabeled traffic allowed by default
[    0.230028] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.230028] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.232033] clocksource: Switched to clocksource hpet
[    0.246319] VFS: Disk quotas dquot_6.6.0
[    0.246340] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.246468] AppArmor: AppArmor Filesystem Enabled
[    0.246495] pnp: PnP ACPI init
[    0.246941] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.246945] system 00:00: [io  0xffff] has been reserved
[    0.246947] system 00:00: [io  0xffff] has been reserved
[    0.246949] system 00:00: [io  0xffff] has been reserved
[    0.246952] system 00:00: [io  0x1800-0x18fe] has been reserved
[    0.246954] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.246962] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.247153] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.247218] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.247224] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.247530] pnp 00:03: Plug and Play ACPI device, IDs ATK3001 PNP030b (active)
[    0.247986] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.247988] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.247991] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.247993] system 00:04: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.247996] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.247998] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.248032] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.248035] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    0.248037] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.248040] system 00:04: [mem 0xeffe0000-0xefffffff] has been reserved
[    0.248046] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.248122] system 00:05: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.248124] system 00:05: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.248127] system 00:05: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.248129] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.248132] system 00:05: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.248134] system 00:05: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.248137] system 00:05: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.248142] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.248731] system 00:06: [io  0xff00-0xfffe] has been reserved
[    0.248737] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.251019] system 00:07: [mem 0xfe029000-0xfe029fff] has been reserved
[    0.251022] system 00:07: [mem 0xfe028000-0xfe028fff] has been reserved
[    0.251028] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.253278] pnp: PnP ACPI: found 8 devices
[    0.262129] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.262152] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    0.262156] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    0.262159] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    0.262186] pci 0000:00:1c.0: BAR 14: assigned [mem 0xa0000000-0xa01fffff]
[    0.262203] pci 0000:00:1c.0: BAR 15: assigned [mem 0xa0200000-0xa03fffff 64bit pref]
[    0.262207] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.262211] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.262221] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.262226] pci 0000:00:1c.0:   bridge window [mem 0xa0000000-0xa01fffff]
[    0.262230] pci 0000:00:1c.0:   bridge window [mem 0xa0200000-0xa03fffff 64bit pref]
[    0.262238] pci 0000:00:1c.5: PCI bridge to [bus 02]
[    0.262242] pci 0000:00:1c.5:   bridge window [io  0xe000-0xefff]
[    0.262247] pci 0000:00:1c.5:   bridge window [mem 0xef000000-0xef0fffff]
[    0.262258] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.262260] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.262262] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.262264] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.262266] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.262268] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.262270] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.262272] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.262275] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.262277] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.262279] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.262281] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.262283] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.262285] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.262287] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.262289] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.262291] pci_bus 0000:00: resource 20 [mem 0xa0000000-0xefffffff window]
[    0.262293] pci_bus 0000:00: resource 21 [mem 0xfd000000-0xfe7fffff window]
[    0.262296] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.262298] pci_bus 0000:01: resource 1 [mem 0xa0000000-0xa01fffff]
[    0.262300] pci_bus 0000:01: resource 2 [mem 0xa0200000-0xa03fffff 64bit pref]
[    0.262302] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.262304] pci_bus 0000:02: resource 1 [mem 0xef000000-0xef0fffff]
[    0.262623] NET: Registered protocol family 2
[    0.262844] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.262995] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.263127] TCP: Hash tables configured (established 65536 bind 65536)
[    0.263170] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.263198] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.263273] NET: Registered protocol family 1
[    0.263290] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.263925] PCI: CLS 64 bytes, default 64
[    0.263968] Unpacking initramfs...
[    1.543510] Freeing initrd memory: 52464K
[    1.543575] DMAR: ACPI device "device:71" under DMAR at fed91000 as 00:15.0
[    1.543580] DMAR: ACPI device "device:72" under DMAR at fed91000 as 00:15.1
[    1.543584] DMAR: ACPI device "device:73" under DMAR at fed91000 as 00:1e.2
[    1.543588] DMAR: ACPI device "device:74" under DMAR at fed91000 as 00:1e.0
[    1.543608] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.543612] software IO TLB [mem 0x9045d000-0x9445d000] (64MB) mapped at [00000000087b9bc8-0000000066ff4cd0]
[    1.543969] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x19f2297dd97, max_idle_ns: 440795236593 ns
[    1.544285] Scanning for low memory corruption every 60 seconds
[    1.545347] Initialise system trusted keyrings
[    1.545361] Key type blacklist registered
[    1.545447] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    1.547016] zbud: loaded
[    1.547778] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.548046] fuse init (API version 7.26)
[    1.551518] Key type asymmetric registered
[    1.551519] Asymmetric key parser 'x509' registered
[    1.551558] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    1.551628] io scheduler noop registered
[    1.551629] io scheduler deadline registered
[    1.551684] io scheduler cfq registered (default)
[    1.552820] pcieport 0000:00:1c.5: AER enabled with IRQ 123
[    1.552852] pcieport 0000:00:1c.0: Signaling PME with IRQ 122
[    1.552879] pcieport 0000:00:1c.5: Signaling PME with IRQ 123
[    1.552910] pciehp 0000:00:1c.0:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[    1.553017] efifb: probing for efifb
[    1.553032] efifb: framebuffer at 0xd0000000, using 1920k, total 1920k
[    1.553034] efifb: mode is 800x600x32, linelength=3200, pages=1
[    1.553035] efifb: scrolling: redraw
[    1.553037] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.553175] Console: switching to colour frame buffer device 100x37
[    1.553191] fb0: EFI VGA frame buffer device
[    1.553202] intel_idle: MWAIT substates: 0x11142120
[    1.553204] intel_idle: v0.4.1 model 0x8E
[    1.553878] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.554132] ACPI: AC Adapter [AC0] (on-line)
[    1.554231] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:19/PNP0C09:01/PNP0C0D:00/input/input0
[    1.554248] ACPI: Lid Switch [LID]
[    1.554319] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.554338] ACPI: Sleep Button [SLPB]
[    1.554379] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    1.554395] ACPI: Power Button [PWRB]
[    1.554436] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.554511] ACPI: Power Button [PWRF]
[    1.557838] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    1.558020] thermal LNXTHERM:00: registered as thermal_zone0
[    1.558022] ACPI: Thermal Zone [THRM] (46 C)
[    1.558258] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.565549] Linux agpgart interface v0.103
[    1.570881] ACPI: Battery Slot [BAT0] (battery present)
[    1.571587] loop: module loaded
[    1.571813] libphy: Fixed MDIO Bus: probed
[    1.571815] tun: Universal TUN/TAP device driver, 1.6
[    1.571913] PPP generic driver version 2.4.2
[    1.571992] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.571995] ehci-pci: EHCI PCI platform driver
[    1.572037] ehci-platform: EHCI generic platform driver
[    1.572049] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.572051] ohci-pci: OHCI PCI platform driver
[    1.572061] ohci-platform: OHCI generic platform driver
[    1.572072] uhci_hcd: USB Universal Host Controller Interface driver
[    1.572323] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.572331] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.573463] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[    1.573469] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.573672] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.573675] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.573677] usb usb1: Product: xHCI Host Controller
[    1.573679] usb usb1: Manufacturer: Linux 4.15.0-21-generic xhci-hcd
[    1.573681] usb usb1: SerialNumber: 0000:00:14.0
[    1.573897] hub 1-0:1.0: USB hub found
[    1.573920] hub 1-0:1.0: 12 ports detected
[    1.575315] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.575320] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.575370] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.575372] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.575374] usb usb2: Product: xHCI Host Controller
[    1.575376] usb usb2: Manufacturer: Linux 4.15.0-21-generic xhci-hcd
[    1.575378] usb usb2: SerialNumber: 0000:00:14.0
[    1.575573] hub 2-0:1.0: USB hub found
[    1.575591] hub 2-0:1.0: 6 ports detected
[    1.575925] usb: port power management may be unreliable
[    1.576747] i8042: PNP: PS/2 Controller [PNP030b:PS2K] at 0x60,0x64 irq 1
[    1.576748] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.578952] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.579227] mousedev: PS/2 mouse device common for all mice
[    1.579809] rtc_cmos 00:01: RTC can wake from S4
[    1.580320] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    1.580416] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.580425] i2c /dev entries driver
[    1.580484] device-mapper: uevent: version 1.0.3
[    1.580619] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.580623] intel_pstate: Intel P-state driver initializing
[    1.581926] intel_pstate: HWP enabled
[    1.582453] ledtrig-cpu: registered to indicate activity on CPUs
[    1.582455] EFI Variables Facility v0.08 2004-May-17
[    1.610562] intel_pmc_core:  initialized
[    1.610707] NET: Registered protocol family 10
[    1.615291] Segment Routing with IPv6
[    1.615303] NET: Registered protocol family 17
[    1.615502] Key type dns_resolver registered
[    1.616724] RAS: Correctable Errors collector initialized.
[    1.616741] microcode: sig=0x806ea, pf=0x80, revision=0x64
[    1.617174] microcode: Microcode Update Driver: v2.2.
[    1.617180] sched_clock: Marking stable (1617163099, 0)->(1603352831, 13810268)
[    1.617622] registered taskstats version 1
[    1.617629] Loading compiled-in X.509 certificates
[    1.619318] Loaded X.509 cert 'Build time autogenerated kernel key: 6c3c43f52f16595b4a599556085fadf8d00deb38'
[    1.619967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.622307] Loaded UEFI:db cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071' linked to secondary sys keyring
[    1.622455] Loaded UEFI:db cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2' linked to secondary sys keyring
[    1.622471] Loaded UEFI:db cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' linked to secondary sys keyring
[    1.622485] Loaded UEFI:db cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' linked to secondary sys keyring
[    1.622634] Loaded UEFI:db cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' linked to secondary sys keyring
[    1.623507] Loaded UEFI:MokListRT cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' linked to secondary sys keyring
[    1.624371] zswap: loaded using pool lzo/zbud
[    1.627487] Key type big_key registered
[    1.627489] Key type trusted registered
[    1.628710] Key type encrypted registered
[    1.628712] AppArmor: AppArmor sha1 policy hashing enabled
[    1.628714] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    1.628726] evm: HMAC attrs: 0x1
[    1.630136]   Magic number: 2:546:740
[    1.630417] rtc_cmos 00:01: setting system clock to 2018-05-17 15:44:33 UTC (1526571873)
[    1.630548] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.630549] EDD information not available.
[    1.632354] Freeing unused kernel memory: 2404K
[    1.632356] Write protecting the kernel read-only data: 20480k
[    1.632898] Freeing unused kernel memory: 2008K
[    1.635545] Freeing unused kernel memory: 1904K
[    1.639870] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.639871] x86/mm: Checking user space page tables
[    1.644124] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.712631] hidraw: raw HID events driver (C) Jiri Kosina
[    1.717215] ahci 0000:00:17.0: version 3.0
[    1.717530] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    1.717533] ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
[    1.718268] scsi host0: ahci
[    1.721092] scsi host1: ahci
[    1.721135] ata1: SATA max UDMA/133 abar m2048@0xef135000 port 0xef135100 irq 125
[    1.721137] ata2: SATA max UDMA/133 abar m2048@0xef135000 port 0xef135180 irq 125
[    1.743162] [drm] Memory usable by graphics device = 4096M
[    1.743165] checking generic (d0000000 1e0000) vs hw (d0000000 10000000)
[    1.743165] fb: switching to inteldrmfb from EFI VGA
[    1.743178] Console: switching to colour dummy device 80x25
[    1.743249] [drm] Replacing VGA console driver
[    1.749613] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.749613] [drm] Driver supports precise vblank timestamp query.
[    1.752347] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.752891] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_01.bin (v1.1)
[    1.761571] [drm] Initialized i915 1.6.0 20171023 for 0000:00:02.0 on minor 0
[    1.763258] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.763570] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[    1.789490] fbcon: inteldrmfb (fb0) is primary device
[    1.789535] Console: switching to colour frame buffer device 240x67
[    1.789554] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    1.908039] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[    2.033178] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.033203] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.034826] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.034829] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.034830] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.036808] ata2.00: ATA-10: Micron_1100_MTFDDAV256TBN,  M0MA020, max UDMA/133
[    2.036809] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.039023] ata2.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.039025] ata2.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.039026] ata2.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.042240] ata2.00: configured for UDMA/133
[    2.044482] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.044485] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.044486] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.082859] usb 1-6: New USB device found, idVendor=13d3, idProduct=5a07
[    2.082860] ata1.00: ATA-10: ST1000LM035-1RK172, SDM2, max UDMA/133
[    2.082862] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.082863] usb 1-6: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.082864] usb 1-6: Product: USB2.0 VGA UVC WebCam
[    2.082865] usb 1-6: Manufacturer: Azurewave
[    2.082866] usb 1-6: SerialNumber: 0x0001
[    2.107484] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[    2.107487] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.107488] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    2.146073] ata1.00: configured for UDMA/133
[    2.146508] scsi 0:0:0:0: Direct-Access     ATA      ST1000LM035-1RK1 SDM2 PQ: 0 ANSI: 5
[    2.146927] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    2.146928] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    2.146934] sd 0:0:0:0: [sda] Write Protect is off
[    2.146935] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.146942] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.147001] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.147404] scsi 1:0:0:0: Direct-Access     ATA      Micron_1100_MTFD A020 PQ: 0 ANSI: 5
[    2.147818] ata2.00: Enabling discard_zeroes_data
[    2.147822] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.147972] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    2.147998] sd 1:0:0:0: [sdb] Write Protect is off
[    2.147999] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.148055] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.148213] ata2.00: Enabling discard_zeroes_data
[    2.150094]  sdb: sdb1 sdb2 sdb3 sdb4
[    2.150384] ata2.00: Enabling discard_zeroes_data
[    2.151043] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.156167]  sda: sda1
[    2.156752] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.212552] usb 1-8: new full-speed USB device number 3 using xhci_hcd
[    2.362098] usb 1-8: New USB device found, idVendor=13d3, idProduct=3526
[    2.362099] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.362101] usb 1-8: Product: Bluetooth Radio 
[    2.362102] usb 1-8: Manufacturer: Realtek 
[    2.362102] usb 1-8: SerialNumber: 00e04c000001
[    2.460989] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: (null)
[    2.556255] clocksource: Switched to clocksource tsc
[    2.590286] ip_tables: (C) 2000-2006 Netfilter Core Team
[    2.649834] systemd[1]: systemd 237 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    2.668674] systemd[1]: Detected architecture x86-64.
[    2.671050] systemd[1]: Set hostname to <ralf-X411UA>.
[    2.673158] systemd[1]: Initializing machine ID from random generator.
[    2.673177] systemd[1]: Installed transient /etc/machine-id file.
[    2.740064] systemd[1]: Created slice User and Session Slice.
[    2.740112] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.740262] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.740343] systemd[1]: Created slice System Slice.
[    2.740398] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.754602] EXT4-fs (sdb3): re-mounted. Opts: errors=remount-ro
[    2.759295] lp: driver loaded but no devices found
[    2.761320] ppdev: user-space parallel port driver
[    2.782707] systemd-journald[294]: Received request to flush runtime journal from PID 1
[    2.856777] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input6
[    2.872949] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.874392] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    2.875072] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    2.876849] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    2.909733] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    2.909734] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    2.909735] RAPL PMU: hw unit of domain package 2^-14 Joules
[    2.909735] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    2.909736] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    2.909737] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    2.910082] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    2.912875] media: Linux media interface: v0.10
[    2.912890] asus_wmi: ASUS WMI generic driver loaded
[    2.916327] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    2.919156] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.919424] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.919434] asus_wmi: Initialization: 0x1
[    2.919514] asus_wmi: BIOS WMI version: 9.0
[    2.919560] asus_wmi: SFUN value: 0x21
[    2.919619] Linux video capture interface: v2.00
[    2.921451] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input7
[    2.921559] asus_wmi: Number of fans: 0
[    2.925900] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.925904] cfg80211: failed to load regulatory.db
[    2.928935] Bluetooth: Core ver 2.22
[    2.928949] NET: Registered protocol family 31
[    2.928949] Bluetooth: HCI device and connection manager initialized
[    2.928952] Bluetooth: HCI socket layer initialized
[    2.928954] Bluetooth: L2CAP socket layer initialized
[    2.928958] Bluetooth: SCO socket layer initialized
[    2.933625] AVX2 version of gcm_enc/dec engaged.
[    2.933626] AES CTR mode by8 optimization enabled
[    2.937261] usbcore: registered new interface driver btusb
[    2.941344] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    2.941734] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    2.945892] i2c_hid i2c-ELAN1300:00: i2c-ELAN1300:00 supply vdd not found, using dummy regulator
[    2.947934] r8822be: module is from the staging directory, the quality is unknown, you have been warned.
[    2.948261] r8822be: module verification failed: signature and/or required key missing - tainting kernel
[    2.951689] r8822be 0000:02:00.0: enabling device (0000 -> 0003)
[    2.952090] uvcvideo: Found UVC 1.00 device USB2.0 VGA UVC WebCam (13d3:5a07)
[    2.952865] uvcvideo 1-6:1.0: Entity type for entity Extension 4 was not initialized!
[    2.952867] uvcvideo 1-6:1.0: Entity type for entity Processing 2 was not initialized!
[    2.952868] uvcvideo 1-6:1.0: Entity type for entity Camera 1 was not initialized!
[    2.953007] input: USB2.0 VGA UVC WebCam: USB2.0 V as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/input/input8
[    2.953068] usbcore: registered new interface driver uvcvideo
[    2.953069] USB Video Class driver (1.1.1)
[    3.029253] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[    3.029298] r8822be: Using firmware rtlwifi/rtl8822befw.bin
[    3.029780] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    3.031947] intel-lpss 0000:00:1e.2: enabling device (0000 -> 0002)
[    3.035356] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    3.035535] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    3.036628] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[    3.036871] r8822be: rtlwifi: wireless switch is on
[    3.046969] intel_rapl: Found RAPL domain package
[    3.046970] intel_rapl: Found RAPL domain core
[    3.046971] intel_rapl: Found RAPL domain uncore
[    3.046972] intel_rapl: Found RAPL domain dram
[    3.085622] r8822be 0000:02:00.0 wlp2s0: renamed from wlan0
[    3.091139] hid-multitouch 0018:04F3:3057.0001: Ignoring the extra HID_DG_INPUTMODE
[    3.091681] input: ELAN1300:00 04F3:3057 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-5/i2c-ELAN1300:00/0018:04F3:3057.0001/input/input10
[    3.091739] hid-multitouch 0018:04F3:3057.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN1300:00 04F3:3057] on i2c-ELAN1300:00
[    3.115163] Adding 8000508k swap on /dev/sdb2.  Priority:-2 extents:1 across:8000508k SSFS
[    3.158647] EXT4-fs (sdb4): mounted filesystem with ordered data mode. Opts: (null)
[    3.165605] random: crng init done
[    3.188589] dw-apb-uart.2: ttyS4 at MMIO 0xef134000 (irq = 20, base_baud = 115200) is a 16550A
[    3.259722] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.282684] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
[    3.282686] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.282687] snd_hda_codec_generic hdaudioC0D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
[    3.282688] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
[    3.282688] snd_hda_codec_generic hdaudioC0D0:    inputs:
[    3.282690] snd_hda_codec_generic hdaudioC0D0:      Internal Mic=0x1a
[    3.282690] snd_hda_codec_generic hdaudioC0D0:      Mic=0x19
[    3.291756] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    3.291789] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    3.291818] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    3.291846] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    3.291872] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    3.291899] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    3.291925] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    3.454592] audit: type=1400 audit(1526571875.317:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=677 comm="apparmor_parser"
[    3.454595] audit: type=1400 audit(1526571875.317:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=677 comm="apparmor_parser"
[    3.454596] audit: type=1400 audit(1526571875.317:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=677 comm="apparmor_parser"
[    3.454954] audit: type=1400 audit(1526571875.317:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=679 comm="apparmor_parser"
[    3.454956] audit: type=1400 audit(1526571875.317:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc//sanitized_helper" pid=679 comm="apparmor_parser"
[    3.455415] audit: type=1400 audit(1526571875.317:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=682 comm="apparmor_parser"
[    3.455418] audit: type=1400 audit(1526571875.317:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=682 comm="apparmor_parser"
[    3.456975] audit: type=1400 audit(1526571875.321:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=685 comm="apparmor_parser"
[    3.457369] audit: type=1400 audit(1526571875.321:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=683 comm="apparmor_parser"
[    3.740331] [drm] RC6 on
[    3.994594] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.994596] Bluetooth: BNEP filters: protocol multicast
[    3.994599] Bluetooth: BNEP socket layer initialized
[    4.233444] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    4.876031] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    4.957096] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[    7.660836] kauditd_printk_skb: 18 callbacks suppressed
[    7.660837] audit: type=1400 audit(1526571879.525:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=1437 comm="apparmor_parser"
[    7.661007] audit: type=1400 audit(1526571879.525:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1437 comm="apparmor_parser"
[    7.681047] audit: type=1400 audit(1526571879.545:31): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.core" pid=1442 comm="apparmor_parser"
[    7.730092] audit: type=1400 audit(1526571879.593:32): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.core.hook.configure" pid=1444 comm="apparmor_parser"
[    8.412735] audit: type=1400 audit(1526571880.277:33): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=1536 comm="apparmor_parser"
[    8.436765] audit: type=1400 audit(1526571880.305:34): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1536 comm="apparmor_parser"
[    8.439155] audit: type=1400 audit(1526571880.305:35): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=1538 comm="apparmor_parser"
[    8.441286] audit: type=1400 audit(1526571880.305:36): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=1540 comm="apparmor_parser"
[    8.516159] audit: type=1400 audit(1526571880.381:37): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=1549 comm="apparmor_parser"
[    8.516161] audit: type=1400 audit(1526571880.381:38): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1549 comm="apparmor_parser"
[   18.107085] rfkill: input handler disabled
[   45.846109] wlp2s0: authenticate with 24:65:11:54:05:f3
[   46.346407] wlp2s0: send auth to 24:65:11:54:05:f3 (try 1/3)
[   46.350195] wlp2s0: authenticated
[   46.352124] wlp2s0: associate with 24:65:11:54:05:f3 (try 1/3)
[   46.358344] wlp2s0: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=2)
[   46.358916] wlp2s0: associated
[   46.392897] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   66.492461] r8822be: AP off, try to reconnect now
[   66.492529] wlp2s0: Connection to AP 24:65:11:54:05:f3 lost
[   72.372186] kauditd_printk_skb: 14 callbacks suppressed
[   72.372189] audit: type=1400 audit(1526571944.237:53): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3074 comm="apparmor_parser"
[   72.372196] audit: type=1400 audit(1526571944.237:54): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3074 comm="apparmor_parser"
[   72.415338] audit: type=1400 audit(1526571944.277:55): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3079 comm="apparmor_parser"
[   72.497906] audit: type=1400 audit(1526571944.361:56): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3081 comm="apparmor_parser"
[   73.032565] audit: type=1400 audit(1526571944.897:57): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3166 comm="apparmor_parser"
[   73.032567] audit: type=1400 audit(1526571944.897:58): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3166 comm="apparmor_parser"
[   73.035978] audit: type=1400 audit(1526571944.897:59): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3173 comm="apparmor_parser"
[   73.038849] audit: type=1400 audit(1526571944.901:60): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3175 comm="apparmor_parser"
[   76.572024] r8822be: AP off, try to reconnect now
[   78.991982] audit: type=1400 audit(1526571950.853:61): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3776 comm="apparmor_parser"
[   78.991985] audit: type=1400 audit(1526571950.853:62): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3776 comm="apparmor_parser"
[   79.009163] audit: type=1400 audit(1526571950.873:63): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3782 comm="apparmor_parser"
[   79.105613] audit: type=1400 audit(1526571950.969:64): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3784 comm="apparmor_parser"
[   79.788185] audit: type=1400 audit(1526571951.653:65): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=3880 comm="apparmor_parser"
[   79.788188] audit: type=1400 audit(1526571951.653:66): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=3880 comm="apparmor_parser"
[   79.790918] audit: type=1400 audit(1526571951.653:67): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=3882 comm="apparmor_parser"
[   79.793796] audit: type=1400 audit(1526571951.657:68): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=3884 comm="apparmor_parser"
[   84.388092] wlp2s0: Connection to AP 00:00:00:00:00:00 lost
[   86.395542] audit: type=1400 audit(1526571958.257:69): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=4521 comm="apparmor_parser"
[   86.395544] audit: type=1400 audit(1526571958.257:70): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=4521 comm="apparmor_parser"
[   86.411715] audit: type=1400 audit(1526571958.273:71): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=4523 comm="apparmor_parser"
[   86.488253] audit: type=1400 audit(1526571958.353:72): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=4525 comm="apparmor_parser"
[   87.038967] audit: type=1400 audit(1526571958.901:73): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=4617 comm="apparmor_parser"
[   87.038970] audit: type=1400 audit(1526571958.901:74): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=4617 comm="apparmor_parser"
[   87.041683] audit: type=1400 audit(1526571958.905:75): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=4621 comm="apparmor_parser"
[   87.044233] audit: type=1400 audit(1526571958.909:76): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=4623 comm="apparmor_parser"
[   94.108942] audit: type=1400 audit(1526571965.973:77): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=5222 comm="apparmor_parser"
[   94.108945] audit: type=1400 audit(1526571965.973:78): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=5222 comm="apparmor_parser"
[   94.124417] audit: type=1400 audit(1526571965.989:79): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=5224 comm="apparmor_parser"
[   94.199947] audit: type=1400 audit(1526571966.061:80): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=5226 comm="apparmor_parser"
[   94.795194] audit: type=1400 audit(1526571966.657:81): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=5315 comm="apparmor_parser"
[   94.795197] audit: type=1400 audit(1526571966.657:82): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=5315 comm="apparmor_parser"
[   94.798255] audit: type=1400 audit(1526571966.661:83): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=5317 comm="apparmor_parser"
[   94.804409] audit: type=1400 audit(1526571966.669:84): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=5319 comm="apparmor_parser"
[  100.009276] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[  101.811453] audit: type=1400 audit(1526571973.673:85): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=5947 comm="apparmor_parser"
[  101.811462] audit: type=1400 audit(1526571973.673:86): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=5947 comm="apparmor_parser"
[  101.848616] audit: type=1400 audit(1526571973.713:87): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=5949 comm="apparmor_parser"
[  101.932796] audit: type=1400 audit(1526571973.797:88): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=5951 comm="apparmor_parser"
[  102.676901] audit: type=1400 audit(1526571974.541:89): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=6042 comm="apparmor_parser"
[  102.676904] audit: type=1400 audit(1526571974.541:90): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=6042 comm="apparmor_parser"
[  102.679309] audit: type=1400 audit(1526571974.541:91): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=6044 comm="apparmor_parser"
[  102.682089] audit: type=1400 audit(1526571974.545:92): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=6046 comm="apparmor_parser"
[  107.236018] usb 1-3: new high-speed USB device number 4 using xhci_hcd
[  107.512714] usb 1-3: New USB device found, idVendor=148f, idProduct=7601
[  107.512715] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  107.512717] usb 1-3: Product: 802.11 n WLAN
[  107.512718] usb 1-3: SerialNumber: 1.0
[  107.652226] usb 1-3: reset high-speed USB device number 4 using xhci_hcd
[  107.806824] mt7601u 1-3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[  107.807745] mt7601u 1-3:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[  108.229450] mt7601u 1-3:1.0: EEPROM ver:0c fae:00
[  109.296254] audit: type=1400 audit(1526571981.161:93): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=6647 comm="apparmor_parser"
[  109.296259] audit: type=1400 audit(1526571981.161:94): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=6647 comm="apparmor_parser"
[  109.317626] audit: type=1400 audit(1526571981.181:95): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=6649 comm="apparmor_parser"
[  109.413271] audit: type=1400 audit(1526571981.277:96): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=6651 comm="apparmor_parser"
[  110.403293] audit: type=1400 audit(1526571982.265:97): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=6729 comm="apparmor_parser"
[  110.403298] audit: type=1400 audit(1526571982.265:98): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=6729 comm="apparmor_parser"
[  110.405714] audit: type=1400 audit(1526571982.269:99): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=6731 comm="apparmor_parser"
[  110.408350] audit: type=1400 audit(1526571982.273:100): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=6733 comm="apparmor_parser"
[  112.837796] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[  112.840983] usbcore: registered new interface driver mt7601u
[  112.876750] mt7601u 1-3:1.0 wlx20f41bcc626d: renamed from wlan0
[  112.910304] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  112.929382] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  112.998356] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  114.264658] wlx20f41bcc626d: authenticate with 24:65:11:54:05:f3
[  114.278433] wlx20f41bcc626d: send auth to 24:65:11:54:05:f3 (try 1/3)
[  114.284974] wlx20f41bcc626d: authenticated
[  114.288026] wlx20f41bcc626d: associate with 24:65:11:54:05:f3 (try 1/3)
[  114.364568] wlx20f41bcc626d: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=4)
[  114.389571] wlx20f41bcc626d: associated
[  114.397924] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20f41bcc626d: link becomes ready
[  117.642375] audit: type=1400 audit(1526571989.505:101): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=7436 comm="apparmor_parser"
[  117.642378] audit: type=1400 audit(1526571989.505:102): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=7436 comm="apparmor_parser"
[  117.686039] audit: type=1400 audit(1526571989.549:103): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=7438 comm="apparmor_parser"
[  117.777026] audit: type=1400 audit(1526571989.641:104): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=7440 comm="apparmor_parser"
[  119.705739] audit: type=1400 audit(1526571991.569:105): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=7554 comm="apparmor_parser"
[  119.705743] audit: type=1400 audit(1526571991.569:106): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=7554 comm="apparmor_parser"
[  119.708687] audit: type=1400 audit(1526571991.573:107): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=7556 comm="apparmor_parser"
[  119.711578] audit: type=1400 audit(1526571991.573:108): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=7558 comm="apparmor_parser"
[  122.442343] audit: type=1400 audit(1526571994.305:109): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7749 comm="apparmor_parser"
[  122.503040] audit: type=1400 audit(1526571994.365:110): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7751 comm="apparmor_parser"
[  136.498279] audit: type=1400 audit(1526572008.361:111): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7863 comm="apparmor_parser"
[  136.565452] audit: type=1400 audit(1526572008.429:112): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7865 comm="apparmor_parser"
[  136.799836] audit: type=1400 audit(1526572008.661:113): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7873 comm="apparmor_parser"
[  136.869230] audit: type=1400 audit(1526572008.733:114): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7875 comm="apparmor_parser"
[  137.154948] audit: type=1400 audit(1526572009.017:115): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=7883 comm="apparmor_parser"
[  137.230905] audit: type=1400 audit(1526572009.093:116): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=7885 comm="apparmor_parser"
[  144.362451] r8822be: [ERR]Pwr cmd polling timeout!!
[  144.362455] r8822be: [ERR]Pwr cmd offset : 5!!
[  144.362456] r8822be: [ERR]Pwr cmd value : 0!!
[  144.362457] r8822be: [ERR]Pwr cmd msk : 2!!
[  144.362458] r8822be: [ERR]Read offset = 5 value = 2!!
[  144.362460] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  144.362461] r8822be: Handle power off cmd error
[  150.158859] r8822be: halmac_init_hal failed
[  150.159025] r8822be: halmac_init_hal failed
[  150.159180] r8822be: halmac_init_hal failed
[  150.159333] r8822be: halmac_init_hal failed
[  150.159485] r8822be: halmac_init_hal failed
[  150.159633] r8822be: halmac_init_hal failed
[  150.159786] r8822be: halmac_init_hal failed
[  150.159934] r8822be: halmac_init_hal failed
[  150.160082] r8822be: halmac_init_hal failed
[  150.160229] r8822be: halmac_init_hal failed
[  150.160298] ------------[ cut here ]------------
[  150.160300] return H2C cmd because of Fw download fail!!!
[  150.160373] WARNING: CPU: 1 PID: 738 at /build/linux-QLn4bB/linux-4.15.0/drivers/staging/rtlwifi/rtl8822be/fw.c:239 rtl8822be_fill_h2c_cmd+0x1ac/0x660 [r8822be]
[  150.160375] Modules linked in: mt7601u ccm bnep snd_hda_codec_hdmi snd_hda_codec_generic nls_iso8859_1 joydev spi_pxa2xx_platform 8250_dw hid_multitouch snd_soc_skl snd_soc_skl_ipc snd_hda_ext_core snd_soc_sst_dsp snd_soc_sst_ipc snd_soc_acpi snd_soc_core intel_rapl x86_pkg_temp_thermal snd_compress intel_powerclamp ac97_bus snd_pcm_dmaengine coretemp arc4 snd_hda_intel kvm_intel snd_hda_codec snd_hda_core snd_hwdep kvm irqbypass snd_pcm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel snd_seq_midi uvcvideo pcbc r8822be(CE) snd_seq_midi_event videobuf2_vmalloc snd_rawmidi btusb mac80211 btrtl aesni_intel btbcm btintel videobuf2_memops snd_seq aes_x86_64 videobuf2_v4l2 crypto_simd bluetooth videobuf2_core glue_helper snd_seq_device videodev cryptd asus_nb_wmi snd_timer input_leds asus_wmi intel_cstate
[  150.160464]  idma64 intel_rapl_perf cfg80211 media sparse_keymap wmi_bmof serio_raw ecdh_generic snd virt_dma mei_me soundcore intel_lpss_pci processor_thermal_device mei intel_pch_thermal intel_soc_dts_iosf intel_lpss shpchp int3403_thermal int340x_thermal_zone int3400_thermal asus_wireless acpi_thermal_rel mac_hid acpi_pad tpm_crb sch_fq_codel parport_pc ppdev lp parport ip_tables x_tables autofs4 i915 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ahci drm libahci i2c_hid wmi hid video pinctrl_sunrisepoint
[  150.160536] CPU: 1 PID: 738 Comm: wpa_supplicant Tainted: G         C  E    4.15.0-21-generic #22-Ubuntu
[  150.160539] Hardware name: ASUSTeK COMPUTER INC. X411UA/X411UA, BIOS X411UA.300 08/04/2017
[  150.160563] RIP: 0010:rtl8822be_fill_h2c_cmd+0x1ac/0x660 [r8822be]
[  150.160566] RSP: 0018:ffffbe3b015637e8 EFLAGS: 00010286
[  150.160571] RAX: 0000000000000000 RBX: ffff9685d2281520 RCX: 0000000000000006
[  150.160573] RDX: 0000000000000007 RSI: 0000000000000092 RDI: ffff9685dec56490
[  150.160576] RBP: ffffbe3b01563860 R08: 0000000000000001 R09: 00000000000003f0
[  150.160578] R10: 0000000000000000 R11: 0000000000000000 R12: ffff9685ca18ea00
[  150.160581] R13: ffff9685d2280760 R14: ffff9685d2281588 R15: ffff9685d22810c0
[  150.160585] FS:  00007f33287bf800(0000) GS:ffff9685dec40000(0000) knlGS:0000000000000000
[  150.160588] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  150.160590] CR2: 00007f556400d000 CR3: 000000024e42a004 CR4: 00000000003606e0
[  150.160593] Call Trace:
[  150.160628]  halbtc_fill_h2c_cmd+0x2f/0x40 [r8822be]
[  150.160656]  halbtc8822b1ant_query_bt_info+0x4c/0xa0 [r8822be]
[  150.160680]  ex_btc8822b1ant_ips_notify+0xb4/0x170 [r8822be]
[  150.160706]  exhalbtc_ips_notify+0x5a/0x60 [r8822be]
[  150.160734]  rtl_btc_ips_notify+0x26/0x50 [r8822be]
[  150.160754]  rtl_ips_nic_on+0xc2/0xe0 [r8822be]
[  150.160773]  rtl_op_config+0x252/0x490 [r8822be]
[  150.160809]  ieee80211_hw_config+0x1c1/0x350 [mac80211]
[  150.160843]  ieee80211_recalc_idle+0x22/0x30 [mac80211]
[  150.160871]  __ieee80211_start_scan+0x1b6/0x6f0 [mac80211]
[  150.160898]  ieee80211_request_scan+0x30/0x50 [mac80211]
[  150.160930]  ieee80211_scan+0x69/0x90 [mac80211]
[  150.160969]  nl80211_trigger_scan+0x63e/0x7a0 [cfg80211]
[  150.160981]  genl_family_rcv_msg+0x1fe/0x3f0
[  150.160988]  ? __kmalloc_reserve.isra.43+0x31/0x90
[  150.160996]  genl_rcv_msg+0x4c/0x90
[  150.161002]  ? genl_family_rcv_msg+0x3f0/0x3f0
[  150.161008]  netlink_rcv_skb+0x54/0x130
[  150.161015]  genl_rcv+0x28/0x40
[  150.161021]  netlink_unicast+0x19e/0x240
[  150.161028]  netlink_sendmsg+0x2c5/0x3c0
[  150.161034]  sock_sendmsg+0x3e/0x50
[  150.161039]  ___sys_sendmsg+0x2a0/0x2f0
[  150.161049]  ? _copy_to_user+0x26/0x30
[  150.161055]  ? unix_ioctl+0x77/0x190
[  150.161060]  ? sock_do_ioctl+0x2b/0x60
[  150.161064]  ? sock_ioctl+0x1a1/0x2c0
[  150.161069]  __sys_sendmsg+0x54/0x90
[  150.161074]  ? __sys_sendmsg+0x54/0x90
[  150.161080]  SyS_sendmsg+0x12/0x20
[  150.161087]  do_syscall_64+0x73/0x130
[  150.161093]  entry_SYSCALL_64_after_hwframe+0x3d/0xa2
[  150.161097] RIP: 0033:0x7f3326f7cd04
[  150.161100] RSP: 002b:00007ffd72b9fe38 EFLAGS: 00000246 ORIG_RAX: 000000000000002e
[  150.161104] RAX: ffffffffffffffda RBX: 0000558bdd0debc0 RCX: 00007f3326f7cd04
[  150.161107] RDX: 0000000000000000 RSI: 00007ffd72b9fe70 RDI: 0000000000000007
[  150.161109] RBP: 0000558bdd103ff0 R08: 0000000000000000 R09: 0000000000000000
[  150.161112] R10: 0000558bdd0d4010 R11: 0000000000000246 R12: 0000558bdd0dead0
[  150.161114] R13: 00007ffd72b9fe70 R14: 0000000000000000 R15: 0000558bdd0df4d8
[  150.161118] Code: 00 00 00 48 89 c6 75 b1 48 89 c6 4c 89 e7 e8 fc 2a 4c f0 e9 5b ff ff ff 48 c7 c7 d8 0d b4 c0 c6 05 45 09 0a 00 01 e8 44 81 bb ef <0f> 0b e9 92 fe ff ff c6 83 c4 08 00 00 01 48 89 c6 4c 89 e7 e8 
[  150.161204] ---[ end trace 0c176ee4ad5d12f9 ]---
[  153.060079] audit: type=1400 audit(1526572024.760:117): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8656 comm="apparmor_parser"
[  153.060081] audit: type=1400 audit(1526572024.760:118): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8656 comm="apparmor_parser"
[  153.063114] audit: type=1400 audit(1526572024.764:119): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8658 comm="apparmor_parser"
[  153.066465] audit: type=1400 audit(1526572024.768:120): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8660 comm="apparmor_parser"
[  153.327892] audit: type=1400 audit(1526572025.027:121): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=8667 comm="apparmor_parser"
[  153.430734] audit: type=1400 audit(1526572025.126:122): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=8669 comm="apparmor_parser"
[  153.540173] audit: type=1400 audit(1526572025.238:123): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8677 comm="apparmor_parser"
[  153.540176] audit: type=1400 audit(1526572025.238:124): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8677 comm="apparmor_parser"
[  153.543960] audit: type=1400 audit(1526572025.242:125): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8679 comm="apparmor_parser"
[  153.547198] audit: type=1400 audit(1526572025.242:126): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8681 comm="apparmor_parser"
[  155.899678] r8822be: [ERR]Pwr cmd polling timeout!!
[  155.899681] r8822be: [ERR]Pwr cmd offset : 5!!
[  155.899682] r8822be: [ERR]Pwr cmd value : 0!!
[  155.899683] r8822be: [ERR]Pwr cmd msk : 2!!
[  155.899684] r8822be: [ERR]Read offset = 5 value = 2!!
[  155.899685] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  155.899687] r8822be: Handle power off cmd error
[  158.113842] kauditd_printk_skb: 30 callbacks suppressed
[  158.113843] audit: type=1400 audit(1526572029.799:157): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8905 comm="apparmor_parser"
[  158.113846] audit: type=1400 audit(1526572029.799:158): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8905 comm="apparmor_parser"
[  158.116763] audit: type=1400 audit(1526572029.803:159): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8907 comm="apparmor_parser"
[  158.120083] audit: type=1400 audit(1526572029.807:160): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8909 comm="apparmor_parser"
[  158.326855] audit: type=1400 audit(1526572030.010:161): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-characters" pid=8917 comm="apparmor_parser"
[  158.409146] audit: type=1400 audit(1526572030.094:162): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-characters.gnome-characters" pid=8919 comm="apparmor_parser"
[  158.745494] audit: type=1400 audit(1526572030.429:163): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=8927 comm="apparmor_parser"
[  158.745496] audit: type=1400 audit(1526572030.429:164): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=8927 comm="apparmor_parser"
[  158.749416] audit: type=1400 audit(1526572030.433:165): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=8929 comm="apparmor_parser"
[  158.753752] audit: type=1400 audit(1526572030.437:166): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=8931 comm="apparmor_parser"
[  164.098610] kauditd_printk_skb: 40 callbacks suppressed
[  164.098613] audit: type=1400 audit(1526572035.779:207): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9373 comm="apparmor_parser"
[  164.231298] audit: type=1400 audit(1526572035.911:208): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9376 comm="apparmor_parser"
[  164.570699] audit: type=1400 audit(1526572036.247:209): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9384 comm="apparmor_parser"
[  164.570702] audit: type=1400 audit(1526572036.247:210): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9384 comm="apparmor_parser"
[  164.573442] audit: type=1400 audit(1526572036.251:211): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9386 comm="apparmor_parser"
[  164.576463] audit: type=1400 audit(1526572036.255:212): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9388 comm="apparmor_parser"
[  164.879593] audit: type=1400 audit(1526572036.558:213): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9395 comm="apparmor_parser"
[  164.947028] audit: type=1400 audit(1526572036.622:214): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9397 comm="apparmor_parser"
[  165.415010] audit: type=1400 audit(1526572037.090:215): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9405 comm="apparmor_parser"
[  165.499390] audit: type=1400 audit(1526572037.174:216): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9409 comm="apparmor_parser"
[  169.119544] kauditd_printk_skb: 46 callbacks suppressed
[  169.119545] audit: type=1400 audit(1526572040.796:263): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-logs" pid=9592 comm="apparmor_parser"
[  169.333546] audit: type=1400 audit(1526572041.012:264): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=9596 comm="apparmor_parser"
[  170.345414] audit: type=1400 audit(1526572042.020:265): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gnome-system-monitor" pid=9692 comm="apparmor_parser"
[  170.411478] audit: type=1400 audit(1526572042.088:266): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gnome-system-monitor.gnome-system-monitor" pid=9694 comm="apparmor_parser"
[  170.882912] audit: type=1400 audit(1526572042.560:267): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9703 comm="apparmor_parser"
[  170.882915] audit: type=1400 audit(1526572042.560:268): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9703 comm="apparmor_parser"
[  170.885747] audit: type=1400 audit(1526572042.564:269): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9705 comm="apparmor_parser"
[  170.889721] audit: type=1400 audit(1526572042.564:270): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9707 comm="apparmor_parser"
[  171.086092] audit: type=1400 audit(1526572042.764:271): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-system-monitor" pid=9715 comm="apparmor_parser"
[  171.170001] audit: type=1400 audit(1526572042.848:272): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-system-monitor.gnome-system-monitor" pid=9717 comm="apparmor_parser"
[  174.245481] kauditd_printk_skb: 28 callbacks suppressed
[  174.245486] audit: type=1400 audit(1526572045.925:301): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9835 comm="apparmor_parser"
[  174.245497] audit: type=1400 audit(1526572045.925:302): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9835 comm="apparmor_parser"
[  174.256176] audit: type=1400 audit(1526572045.933:303): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9837 comm="apparmor_parser"
[  174.265896] audit: type=1400 audit(1526572045.945:304): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9839 comm="apparmor_parser"
[  174.368647] audit: type=1400 audit(1526572046.045:305): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-system-monitor" pid=9847 comm="apparmor_parser"
[  174.559758] audit: type=1400 audit(1526572046.237:306): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-system-monitor.gnome-system-monitor" pid=9849 comm="apparmor_parser"
[  174.701756] audit: type=1400 audit(1526572046.381:307): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine" pid=9857 comm="apparmor_parser"
[  174.701759] audit: type=1400 audit(1526572046.381:308): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/4571/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=9857 comm="apparmor_parser"
[  174.704605] audit: type=1400 audit(1526572046.381:309): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=9859 comm="apparmor_parser"
[  174.708488] audit: type=1400 audit(1526572046.385:310): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=9861 comm="apparmor_parser"
[  193.192202] r8822be: halmac_init_hal failed
[  193.192367] r8822be: halmac_init_hal failed
[  193.192529] r8822be: halmac_init_hal failed
[  193.192689] r8822be: halmac_init_hal failed
[  193.192849] r8822be: halmac_init_hal failed
[  193.193008] r8822be: halmac_init_hal failed
[  193.193168] r8822be: halmac_init_hal failed
[  193.193325] r8822be: halmac_init_hal failed
[  193.193483] r8822be: halmac_init_hal failed
[  193.193641] r8822be: halmac_init_hal failed
[  198.956384] r8822be: [ERR]Pwr cmd polling timeout!!
[  198.956389] r8822be: [ERR]Pwr cmd offset : 5!!
[  198.956390] r8822be: [ERR]Pwr cmd value : 0!!
[  198.956391] r8822be: [ERR]Pwr cmd msk : 2!!
[  198.956393] r8822be: [ERR]Read offset = 5 value = 2!!
[  198.956394] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  198.956396] r8822be: Handle power off cmd error
[  223.688034] r8822be: halmac_init_hal failed
[  223.688169] r8822be: halmac_init_hal failed
[  223.688299] r8822be: halmac_init_hal failed
[  223.688429] r8822be: halmac_init_hal failed
[  223.688558] r8822be: halmac_init_hal failed
[  223.688688] r8822be: halmac_init_hal failed
[  223.688819] r8822be: halmac_init_hal failed
[  223.688947] r8822be: halmac_init_hal failed
[  223.689076] r8822be: halmac_init_hal failed
[  223.689205] r8822be: halmac_init_hal failed
[  229.480823] r8822be: [ERR]Pwr cmd polling timeout!!
[  229.480827] r8822be: [ERR]Pwr cmd offset : 5!!
[  229.480828] r8822be: [ERR]Pwr cmd value : 0!!
[  229.480829] r8822be: [ERR]Pwr cmd msk : 2!!
[  229.480830] r8822be: [ERR]Read offset = 5 value = 2!!
[  229.480831] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  229.480832] r8822be: Handle power off cmd error
[  287.188733] r8822be: halmac_init_hal failed
[  287.188907] r8822be: halmac_init_hal failed
[  287.189074] r8822be: halmac_init_hal failed
[  287.189239] r8822be: halmac_init_hal failed
[  287.189401] r8822be: halmac_init_hal failed
[  287.189562] r8822be: halmac_init_hal failed
[  287.189722] r8822be: halmac_init_hal failed
[  287.189883] r8822be: halmac_init_hal failed
[  287.190044] r8822be: halmac_init_hal failed
[  287.190255] r8822be: halmac_init_hal failed
[  292.967131] r8822be: [ERR]Pwr cmd polling timeout!!
[  292.967141] r8822be: [ERR]Pwr cmd offset : 5!!
[  292.967145] r8822be: [ERR]Pwr cmd value : 0!!
[  292.967148] r8822be: [ERR]Pwr cmd msk : 2!!
[  292.967151] r8822be: [ERR]Read offset = 5 value = 2!!
[  292.967155] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  292.967159] r8822be: Handle power off cmd error
[  311.491345] r8822be: halmac_init_hal failed
[  311.491473] r8822be: halmac_init_hal failed
[  311.491600] r8822be: halmac_init_hal failed
[  311.491727] r8822be: halmac_init_hal failed
[  311.491854] r8822be: halmac_init_hal failed
[  311.491981] r8822be: halmac_init_hal failed
[  311.492107] r8822be: halmac_init_hal failed
[  311.492234] r8822be: halmac_init_hal failed
[  311.492361] r8822be: halmac_init_hal failed
[  311.492488] r8822be: halmac_init_hal failed
[  317.251807] r8822be: [ERR]Pwr cmd polling timeout!!
[  317.251817] r8822be: [ERR]Pwr cmd offset : 5!!
[  317.251821] r8822be: [ERR]Pwr cmd value : 0!!
[  317.251824] r8822be: [ERR]Pwr cmd msk : 2!!
[  317.251828] r8822be: [ERR]Read offset = 5 value = 2!!
[  317.251831] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  317.251835] r8822be: Handle power off cmd error
[  349.023037] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023116] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023159] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023185] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023232] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023266] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023312] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023352] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023396] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023429] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023481] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023513] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023556] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023595] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023639] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023672] mt7601u 1-3:1.0: Error: RX urb failed:-71
[  349.023810] usb 1-3: USB disconnect, device number 4
[  349.044669] wlx20f41bcc626d: deauthenticating from 24:65:11:54:05:f3 by local choice (Reason: 3=DEAUTH_LEAVING)
[  349.056222] mt7601u 1-3:1.0: mt7601u_rxdc_cal timed out
[  375.196943] r8822be: halmac_init_hal failed
[  375.197101] r8822be: halmac_init_hal failed
[  375.197254] r8822be: halmac_init_hal failed
[  375.197406] r8822be: halmac_init_hal failed
[  375.197554] r8822be: halmac_init_hal failed
[  375.197703] r8822be: halmac_init_hal failed
[  375.197851] r8822be: halmac_init_hal failed
[  375.197998] r8822be: halmac_init_hal failed
[  375.198146] r8822be: halmac_init_hal failed
[  375.198294] r8822be: halmac_init_hal failed
[  381.311384] r8822be: [ERR]Pwr cmd polling timeout!!
[  381.311394] r8822be: [ERR]Pwr cmd offset : 5!!
[  381.311397] r8822be: [ERR]Pwr cmd value : 0!!
[  381.311401] r8822be: [ERR]Pwr cmd msk : 2!!
[  381.311404] r8822be: [ERR]Read offset = 5 value = 2!!
[  381.311408] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  381.311411] r8822be: Handle power off cmd error
[  438.215725] r8822be: halmac_init_hal failed
[  438.215887] r8822be: halmac_init_hal failed
[  438.216041] r8822be: halmac_init_hal failed
[  438.216195] r8822be: halmac_init_hal failed
[  438.216349] r8822be: halmac_init_hal failed
[  438.216503] r8822be: halmac_init_hal failed
[  438.216656] r8822be: halmac_init_hal failed
[  438.216811] r8822be: halmac_init_hal failed
[  438.216964] r8822be: halmac_init_hal failed
[  438.217118] r8822be: halmac_init_hal failed
[  444.335955] r8822be: [ERR]Pwr cmd polling timeout!!
[  444.335965] r8822be: [ERR]Pwr cmd offset : 5!!
[  444.335969] r8822be: [ERR]Pwr cmd value : 0!!
[  444.335972] r8822be: [ERR]Pwr cmd msk : 2!!
[  444.335975] r8822be: [ERR]Read offset = 5 value = 2!!
[  444.335979] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  444.335982] r8822be: Handle power off cmd error
[  501.238167] r8822be: halmac_init_hal failed
[  501.238339] r8822be: halmac_init_hal failed
[  501.238501] r8822be: halmac_init_hal failed
[  501.238662] r8822be: halmac_init_hal failed
[  501.238823] r8822be: halmac_init_hal failed
[  501.238984] r8822be: halmac_init_hal failed
[  501.239144] r8822be: halmac_init_hal failed
[  501.239305] r8822be: halmac_init_hal failed
[  501.239510] r8822be: halmac_init_hal failed
[  501.239676] r8822be: halmac_init_hal failed
[  507.349991] r8822be: [ERR]Pwr cmd polling timeout!!
[  507.350000] r8822be: [ERR]Pwr cmd offset : 5!!
[  507.350005] r8822be: [ERR]Pwr cmd value : 0!!
[  507.350008] r8822be: [ERR]Pwr cmd msk : 2!!
[  507.350011] r8822be: [ERR]Read offset = 5 value = 2!!
[  507.350015] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  507.350019] r8822be: Handle power off cmd error
[  564.215548] r8822be: halmac_init_hal failed
[  564.215717] r8822be: halmac_init_hal failed
[  564.215880] r8822be: halmac_init_hal failed
[  564.216043] r8822be: halmac_init_hal failed
[  564.216204] r8822be: halmac_init_hal failed
[  564.216363] r8822be: halmac_init_hal failed
[  564.216522] r8822be: halmac_init_hal failed
[  564.216681] r8822be: halmac_init_hal failed
[  564.216841] r8822be: halmac_init_hal failed
[  564.217000] r8822be: halmac_init_hal failed
[  570.321558] r8822be: [ERR]Pwr cmd polling timeout!!
[  570.321567] r8822be: [ERR]Pwr cmd offset : 5!!
[  570.321571] r8822be: [ERR]Pwr cmd value : 0!!
[  570.321574] r8822be: [ERR]Pwr cmd msk : 2!!
[  570.321578] r8822be: [ERR]Read offset = 5 value = 2!!
[  570.321581] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  570.321585] r8822be: Handle power off cmd error
[  627.197176] r8822be: halmac_init_hal failed
[  627.197343] r8822be: halmac_init_hal failed
[  627.197502] r8822be: halmac_init_hal failed
[  627.197660] r8822be: halmac_init_hal failed
[  627.197818] r8822be: halmac_init_hal failed
[  627.197976] r8822be: halmac_init_hal failed
[  627.198134] r8822be: halmac_init_hal failed
[  627.198293] r8822be: halmac_init_hal failed
[  627.198450] r8822be: halmac_init_hal failed
[  627.198608] r8822be: halmac_init_hal failed
[  633.292603] r8822be: [ERR]Pwr cmd polling timeout!!
[  633.292612] r8822be: [ERR]Pwr cmd offset : 5!!
[  633.292616] r8822be: [ERR]Pwr cmd value : 0!!
[  633.292619] r8822be: [ERR]Pwr cmd msk : 2!!
[  633.292623] r8822be: [ERR]Read offset = 5 value = 2!!
[  633.292626] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  633.292629] r8822be: Handle power off cmd error
[  690.232153] r8822be: halmac_init_hal failed
[  690.232323] r8822be: halmac_init_hal failed
[  690.232483] r8822be: halmac_init_hal failed
[  690.232642] r8822be: halmac_init_hal failed
[  690.232802] r8822be: halmac_init_hal failed
[  690.232961] r8822be: halmac_init_hal failed
[  690.233120] r8822be: halmac_init_hal failed
[  690.233279] r8822be: halmac_init_hal failed
[  690.233438] r8822be: halmac_init_hal failed
[  690.233624] r8822be: halmac_init_hal failed
[  696.334250] r8822be: [ERR]Pwr cmd polling timeout!!
[  696.334259] r8822be: [ERR]Pwr cmd offset : 5!!
[  696.334262] r8822be: [ERR]Pwr cmd value : 0!!
[  696.334266] r8822be: [ERR]Pwr cmd msk : 2!!
[  696.334269] r8822be: [ERR]Read offset = 5 value = 2!!
[  696.334273] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  696.334276] r8822be: Handle power off cmd error
[  753.179800] r8822be: halmac_init_hal failed
[  753.179970] r8822be: halmac_init_hal failed
[  753.180130] r8822be: halmac_init_hal failed
[  753.180289] r8822be: halmac_init_hal failed
[  753.180448] r8822be: halmac_init_hal failed
[  753.180608] r8822be: halmac_init_hal failed
[  753.180767] r8822be: halmac_init_hal failed
[  753.180926] r8822be: halmac_init_hal failed
[  753.181085] r8822be: halmac_init_hal failed
[  753.181244] r8822be: halmac_init_hal failed
[  759.291781] r8822be: [ERR]Pwr cmd polling timeout!!
[  759.291793] r8822be: [ERR]Pwr cmd offset : 5!!
[  759.291799] r8822be: [ERR]Pwr cmd value : 0!!
[  759.291803] r8822be: [ERR]Pwr cmd msk : 2!!
[  759.291808] r8822be: [ERR]Read offset = 5 value = 2!!
[  759.291813] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  759.291819] r8822be: Handle power off cmd error
[  777.963289] usb 1-3: new high-speed USB device number 5 using xhci_hcd
[  778.243808] usb 1-3: New USB device found, idVendor=148f, idProduct=7601
[  778.243814] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  778.243819] usb 1-3: Product: 802.11 n WLAN
[  778.243823] usb 1-3: SerialNumber: 1.0
[  778.371855] usb 1-3: reset high-speed USB device number 5 using xhci_hcd
[  778.523323] mt7601u 1-3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[  778.524347] mt7601u 1-3:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[  778.925546] mt7601u 1-3:1.0: EEPROM ver:0c fae:00
[  779.126277] ieee80211 phy2: Selected rate control algorithm 'minstrel_ht'
[  779.138546] mt7601u 1-3:1.0 wlx20f41bcc626d: renamed from wlan0
[  779.186072] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  779.208232] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  779.265898] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[  780.512485] wlx20f41bcc626d: authenticate with 24:65:11:54:05:f3
[  780.528710] wlx20f41bcc626d: send auth to 24:65:11:54:05:f3 (try 1/3)
[  780.531850] wlx20f41bcc626d: authenticated
[  780.534817] wlx20f41bcc626d: associate with 24:65:11:54:05:f3 (try 1/3)
[  780.541251] wlx20f41bcc626d: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=2)
[  780.566571] wlx20f41bcc626d: associated
[  781.578310] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20f41bcc626d: link becomes ready
[  816.172091] r8822be: halmac_init_hal failed
[  816.172249] r8822be: halmac_init_hal failed
[  816.172408] r8822be: halmac_init_hal failed
[  816.172564] r8822be: halmac_init_hal failed
[  816.172723] r8822be: halmac_init_hal failed
[  816.172883] r8822be: halmac_init_hal failed
[  816.173043] r8822be: halmac_init_hal failed
[  816.173202] r8822be: halmac_init_hal failed
[  816.173359] r8822be: halmac_init_hal failed
[  816.173516] r8822be: halmac_init_hal failed
[  821.966109] r8822be: [ERR]Pwr cmd polling timeout!!
[  821.966119] r8822be: [ERR]Pwr cmd offset : 5!!
[  821.966123] r8822be: [ERR]Pwr cmd value : 0!!
[  821.966126] r8822be: [ERR]Pwr cmd msk : 2!!
[  821.966130] r8822be: [ERR]Read offset = 5 value = 2!!
[  821.966133] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  821.966137] r8822be: Handle power off cmd error
[  879.168120] r8822be: halmac_init_hal failed
[  879.168281] r8822be: halmac_init_hal failed
[  879.168435] r8822be: halmac_init_hal failed
[  879.168589] r8822be: halmac_init_hal failed
[  879.168742] r8822be: halmac_init_hal failed
[  879.168896] r8822be: halmac_init_hal failed
[  879.169045] r8822be: halmac_init_hal failed
[  879.169194] r8822be: halmac_init_hal failed
[  879.169344] r8822be: halmac_init_hal failed
[  879.169493] r8822be: halmac_init_hal failed
[  884.976971] r8822be: [ERR]Pwr cmd polling timeout!!
[  884.976981] r8822be: [ERR]Pwr cmd offset : 5!!
[  884.976985] r8822be: [ERR]Pwr cmd value : 0!!
[  884.976989] r8822be: [ERR]Pwr cmd msk : 2!!
[  884.976992] r8822be: [ERR]Read offset = 5 value = 2!!
[  884.976996] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  884.977000] r8822be: Handle power off cmd error
[  942.168555] r8822be: halmac_init_hal failed
[  942.168717] r8822be: halmac_init_hal failed
[  942.168870] r8822be: halmac_init_hal failed
[  942.169023] r8822be: halmac_init_hal failed
[  942.169178] r8822be: halmac_init_hal failed
[  942.169334] r8822be: halmac_init_hal failed
[  942.169493] r8822be: halmac_init_hal failed
[  942.169691] r8822be: halmac_init_hal failed
[  942.169851] r8822be: halmac_init_hal failed
[  942.170010] r8822be: halmac_init_hal failed
[  947.875063] r8822be: [ERR]Pwr cmd polling timeout!!
[  947.875071] r8822be: [ERR]Pwr cmd offset : 5!!
[  947.875074] r8822be: [ERR]Pwr cmd value : 0!!
[  947.875077] r8822be: [ERR]Pwr cmd msk : 2!!
[  947.875081] r8822be: [ERR]Read offset = 5 value = 2!!
[  947.875084] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[  947.875087] r8822be: Handle power off cmd error
[  961.424658] show_signal_msg: 24 callbacks suppressed
[  961.424661] gnome-software[2090]: segfault at 18 ip 00007f197d57d7a3 sp 00007ffcba0b4760 error 4 in libglib-2.0.so.0.5600.1[7f197d53f000+113000]
[ 1005.163751] r8822be: halmac_init_hal failed
[ 1005.163912] r8822be: halmac_init_hal failed
[ 1005.164066] r8822be: halmac_init_hal failed
[ 1005.164219] r8822be: halmac_init_hal failed
[ 1005.164369] r8822be: halmac_init_hal failed
[ 1005.164518] r8822be: halmac_init_hal failed
[ 1005.164667] r8822be: halmac_init_hal failed
[ 1005.164820] r8822be: halmac_init_hal failed
[ 1005.164970] r8822be: halmac_init_hal failed
[ 1005.165123] r8822be: halmac_init_hal failed
[ 1011.010496] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1011.010506] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1011.010510] r8822be: [ERR]Pwr cmd value : 0!!
[ 1011.010513] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1011.010516] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1011.010520] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1011.010523] r8822be: Handle power off cmd error
[ 1068.162449] r8822be: halmac_init_hal failed
[ 1068.162587] r8822be: halmac_init_hal failed
[ 1068.162718] r8822be: halmac_init_hal failed
[ 1068.162847] r8822be: halmac_init_hal failed
[ 1068.162977] r8822be: halmac_init_hal failed
[ 1068.163106] r8822be: halmac_init_hal failed
[ 1068.163231] r8822be: halmac_init_hal failed
[ 1068.163361] r8822be: halmac_init_hal failed
[ 1068.163493] r8822be: halmac_init_hal failed
[ 1068.163624] r8822be: halmac_init_hal failed
[ 1073.957568] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1073.957577] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1073.957581] r8822be: [ERR]Pwr cmd value : 0!!
[ 1073.957584] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1073.957588] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1073.957591] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1073.957595] r8822be: Handle power off cmd error
[ 1120.956532] r8822be: halmac_init_hal failed
[ 1120.956666] r8822be: halmac_init_hal failed
[ 1120.956795] r8822be: halmac_init_hal failed
[ 1120.956925] r8822be: halmac_init_hal failed
[ 1120.957055] r8822be: halmac_init_hal failed
[ 1120.957185] r8822be: halmac_init_hal failed
[ 1120.957314] r8822be: halmac_init_hal failed
[ 1120.957443] r8822be: halmac_init_hal failed
[ 1120.957574] r8822be: halmac_init_hal failed
[ 1120.957703] r8822be: halmac_init_hal failed
[ 1126.746316] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1126.746325] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1126.746330] r8822be: [ERR]Pwr cmd value : 0!!
[ 1126.746333] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1126.746337] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1126.746340] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1126.746344] r8822be: Handle power off cmd error
[ 1184.157390] r8822be: halmac_init_hal failed
[ 1184.157553] r8822be: halmac_init_hal failed
[ 1184.157707] r8822be: halmac_init_hal failed
[ 1184.157860] r8822be: halmac_init_hal failed
[ 1184.158014] r8822be: halmac_init_hal failed
[ 1184.158170] r8822be: halmac_init_hal failed
[ 1184.158345] r8822be: halmac_init_hal failed
[ 1184.158505] r8822be: halmac_init_hal failed
[ 1184.158664] r8822be: halmac_init_hal failed
[ 1184.158823] r8822be: halmac_init_hal failed
[ 1189.947475] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1189.947485] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1189.947488] r8822be: [ERR]Pwr cmd value : 0!!
[ 1189.947492] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1189.947495] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1189.947499] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1189.947502] r8822be: Handle power off cmd error
[ 1247.158269] r8822be: halmac_init_hal failed
[ 1247.158431] r8822be: halmac_init_hal failed
[ 1247.158584] r8822be: halmac_init_hal failed
[ 1247.158738] r8822be: halmac_init_hal failed
[ 1247.158891] r8822be: halmac_init_hal failed
[ 1247.159045] r8822be: halmac_init_hal failed
[ 1247.159194] r8822be: halmac_init_hal failed
[ 1247.159347] r8822be: halmac_init_hal failed
[ 1247.159497] r8822be: halmac_init_hal failed
[ 1247.159646] r8822be: halmac_init_hal failed
[ 1252.946228] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1252.946237] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1252.946241] r8822be: [ERR]Pwr cmd value : 0!!
[ 1252.946244] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1252.946248] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1252.946251] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1252.946254] r8822be: Handle power off cmd error
[ 1310.152984] r8822be: halmac_init_hal failed
[ 1310.153155] r8822be: halmac_init_hal failed
[ 1310.153321] r8822be: halmac_init_hal failed
[ 1310.153489] r8822be: halmac_init_hal failed
[ 1310.153654] r8822be: halmac_init_hal failed
[ 1310.153818] r8822be: halmac_init_hal failed
[ 1310.153979] r8822be: halmac_init_hal failed
[ 1310.154139] r8822be: halmac_init_hal failed
[ 1310.154300] r8822be: halmac_init_hal failed
[ 1310.154465] r8822be: halmac_init_hal failed
[ 1315.963890] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1315.963900] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1315.963904] r8822be: [ERR]Pwr cmd value : 0!!
[ 1315.963908] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1315.963911] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1315.963915] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1315.963919] r8822be: Handle power off cmd error
[ 1373.152393] r8822be: halmac_init_hal failed
[ 1373.152558] r8822be: halmac_init_hal failed
[ 1373.152715] r8822be: halmac_init_hal failed
[ 1373.152872] r8822be: halmac_init_hal failed
[ 1373.153029] r8822be: halmac_init_hal failed
[ 1373.153186] r8822be: halmac_init_hal failed
[ 1373.153344] r8822be: halmac_init_hal failed
[ 1373.153501] r8822be: halmac_init_hal failed
[ 1373.153659] r8822be: halmac_init_hal failed
[ 1373.153817] r8822be: halmac_init_hal failed
[ 1378.960974] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1378.960983] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1378.960987] r8822be: [ERR]Pwr cmd value : 0!!
[ 1378.960991] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1378.960995] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1378.960998] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1378.961001] r8822be: Handle power off cmd error
[ 1436.146690] r8822be: halmac_init_hal failed
[ 1436.146845] r8822be: halmac_init_hal failed
[ 1436.146998] r8822be: halmac_init_hal failed
[ 1436.147151] r8822be: halmac_init_hal failed
[ 1436.147307] r8822be: halmac_init_hal failed
[ 1436.147453] r8822be: halmac_init_hal failed
[ 1436.147598] r8822be: halmac_init_hal failed
[ 1436.147743] r8822be: halmac_init_hal failed
[ 1436.147910] r8822be: halmac_init_hal failed
[ 1436.148063] r8822be: halmac_init_hal failed
[ 1441.943798] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1441.943808] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1441.943812] r8822be: [ERR]Pwr cmd value : 0!!
[ 1441.943815] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1441.943819] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1441.943822] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1441.943825] r8822be: Handle power off cmd error
[ 1499.148107] r8822be: halmac_init_hal failed
[ 1499.148274] r8822be: halmac_init_hal failed
[ 1499.148431] r8822be: halmac_init_hal failed
[ 1499.148584] r8822be: halmac_init_hal failed
[ 1499.148734] r8822be: halmac_init_hal failed
[ 1499.148884] r8822be: halmac_init_hal failed
[ 1499.149034] r8822be: halmac_init_hal failed
[ 1499.149183] r8822be: halmac_init_hal failed
[ 1499.149337] r8822be: halmac_init_hal failed
[ 1499.149487] r8822be: halmac_init_hal failed
[ 1504.977749] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1504.977759] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1504.977762] r8822be: [ERR]Pwr cmd value : 0!!
[ 1504.977766] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1504.977769] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1504.977773] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1504.977777] r8822be: Handle power off cmd error
[ 1562.142799] r8822be: halmac_init_hal failed
[ 1562.142978] r8822be: halmac_init_hal failed
[ 1562.143148] r8822be: halmac_init_hal failed
[ 1562.143362] r8822be: halmac_init_hal failed
[ 1562.143524] r8822be: halmac_init_hal failed
[ 1562.143682] r8822be: halmac_init_hal failed
[ 1562.143843] r8822be: halmac_init_hal failed
[ 1562.144004] r8822be: halmac_init_hal failed
[ 1562.144161] r8822be: halmac_init_hal failed
[ 1562.144322] r8822be: halmac_init_hal failed
[ 1568.004021] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1568.004030] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1568.004034] r8822be: [ERR]Pwr cmd value : 0!!
[ 1568.004038] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1568.004041] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1568.004045] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1568.004049] r8822be: Handle power off cmd error
[ 1625.142704] r8822be: halmac_init_hal failed
[ 1625.142865] r8822be: halmac_init_hal failed
[ 1625.143021] r8822be: halmac_init_hal failed
[ 1625.143176] r8822be: halmac_init_hal failed
[ 1625.143333] r8822be: halmac_init_hal failed
[ 1625.143493] r8822be: halmac_init_hal failed
[ 1625.143667] r8822be: halmac_init_hal failed
[ 1625.143833] r8822be: halmac_init_hal failed
[ 1625.143999] r8822be: halmac_init_hal failed
[ 1625.144168] r8822be: halmac_init_hal failed
[ 1630.939179] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1630.939189] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1630.939192] r8822be: [ERR]Pwr cmd value : 0!!
[ 1630.939195] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1630.939199] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1630.939202] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1630.939206] r8822be: Handle power off cmd error
[ 1688.137874] r8822be: halmac_init_hal failed
[ 1688.138043] r8822be: halmac_init_hal failed
[ 1688.138201] r8822be: halmac_init_hal failed
[ 1688.138399] r8822be: halmac_init_hal failed
[ 1688.138567] r8822be: halmac_init_hal failed
[ 1688.138732] r8822be: halmac_init_hal failed
[ 1688.138894] r8822be: halmac_init_hal failed
[ 1688.139055] r8822be: halmac_init_hal failed
[ 1688.139213] r8822be: halmac_init_hal failed
[ 1688.139371] r8822be: halmac_init_hal failed
[ 1693.760752] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1693.760755] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1693.760757] r8822be: [ERR]Pwr cmd value : 0!!
[ 1693.760758] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1693.760759] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1693.760760] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1693.760761] r8822be: Handle power off cmd error
[ 1712.680913] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.680993] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681036] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681061] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681108] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681143] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681188] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681228] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681269] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681307] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681348] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681426] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681472] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681515] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681564] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681604] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 1712.681643] usb 1-3: USB disconnect, device number 5
[ 1712.705823] wlx20f41bcc626d: deauthenticating from 24:65:11:54:05:f3 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 1712.717472] mt7601u 1-3:1.0: mt7601u_rxdc_cal timed out
[ 1751.162657] r8822be: halmac_init_hal failed
[ 1751.162850] r8822be: halmac_init_hal failed
[ 1751.163016] r8822be: halmac_init_hal failed
[ 1751.163179] r8822be: halmac_init_hal failed
[ 1751.163335] r8822be: halmac_init_hal failed
[ 1751.163490] r8822be: halmac_init_hal failed
[ 1751.163645] r8822be: halmac_init_hal failed
[ 1751.163800] r8822be: halmac_init_hal failed
[ 1751.164007] r8822be: halmac_init_hal failed
[ 1751.164254] r8822be: halmac_init_hal failed
[ 1757.258154] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1757.258163] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1757.258167] r8822be: [ERR]Pwr cmd value : 0!!
[ 1757.258171] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1757.258174] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1757.258178] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1757.258181] r8822be: Handle power off cmd error
[ 1814.132992] r8822be: halmac_init_hal failed
[ 1814.133158] r8822be: halmac_init_hal failed
[ 1814.133317] r8822be: halmac_init_hal failed
[ 1814.133470] r8822be: halmac_init_hal failed
[ 1814.133659] r8822be: halmac_init_hal failed
[ 1814.133813] r8822be: halmac_init_hal failed
[ 1814.133966] r8822be: halmac_init_hal failed
[ 1814.134114] r8822be: halmac_init_hal failed
[ 1814.134266] r8822be: halmac_init_hal failed
[ 1814.134418] r8822be: halmac_init_hal failed
[ 1820.236889] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1820.236898] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1820.236902] r8822be: [ERR]Pwr cmd value : 0!!
[ 1820.236905] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1820.236909] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1820.236912] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1820.236916] r8822be: Handle power off cmd error
[ 1877.184464] r8822be: halmac_init_hal failed
[ 1877.184635] r8822be: halmac_init_hal failed
[ 1877.184797] r8822be: halmac_init_hal failed
[ 1877.184958] r8822be: halmac_init_hal failed
[ 1877.185119] r8822be: halmac_init_hal failed
[ 1877.185280] r8822be: halmac_init_hal failed
[ 1877.185440] r8822be: halmac_init_hal failed
[ 1877.185601] r8822be: halmac_init_hal failed
[ 1877.185762] r8822be: halmac_init_hal failed
[ 1877.185923] r8822be: halmac_init_hal failed
[ 1883.290413] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1883.290423] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1883.290427] r8822be: [ERR]Pwr cmd value : 0!!
[ 1883.290430] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1883.290434] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1883.290437] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1883.290441] r8822be: Handle power off cmd error
[ 1940.186325] r8822be: halmac_init_hal failed
[ 1940.186490] r8822be: halmac_init_hal failed
[ 1940.186652] r8822be: halmac_init_hal failed
[ 1940.186809] r8822be: halmac_init_hal failed
[ 1940.186967] r8822be: halmac_init_hal failed
[ 1940.187125] r8822be: halmac_init_hal failed
[ 1940.187285] r8822be: halmac_init_hal failed
[ 1940.187443] r8822be: halmac_init_hal failed
[ 1940.187601] r8822be: halmac_init_hal failed
[ 1940.187756] r8822be: halmac_init_hal failed
[ 1946.286039] r8822be: [ERR]Pwr cmd polling timeout!!
[ 1946.286049] r8822be: [ERR]Pwr cmd offset : 5!!
[ 1946.286053] r8822be: [ERR]Pwr cmd value : 0!!
[ 1946.286056] r8822be: [ERR]Pwr cmd msk : 2!!
[ 1946.286060] r8822be: [ERR]Read offset = 5 value = 2!!
[ 1946.286063] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 1946.286067] r8822be: Handle power off cmd error
[ 2003.184884] r8822be: halmac_init_hal failed
[ 2003.185044] r8822be: halmac_init_hal failed
[ 2003.185200] r8822be: halmac_init_hal failed
[ 2003.185357] r8822be: halmac_init_hal failed
[ 2003.185510] r8822be: halmac_init_hal failed
[ 2003.185662] r8822be: halmac_init_hal failed
[ 2003.185814] r8822be: halmac_init_hal failed
[ 2003.185965] r8822be: halmac_init_hal failed
[ 2003.186118] r8822be: halmac_init_hal failed
[ 2003.186265] r8822be: halmac_init_hal failed
[ 2009.290763] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2009.290772] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2009.290776] r8822be: [ERR]Pwr cmd value : 0!!
[ 2009.290779] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2009.290783] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2009.290786] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2009.290790] r8822be: Handle power off cmd error
[ 2066.139415] r8822be: halmac_init_hal failed
[ 2066.139578] r8822be: halmac_init_hal failed
[ 2066.139731] r8822be: halmac_init_hal failed
[ 2066.139886] r8822be: halmac_init_hal failed
[ 2066.140039] r8822be: halmac_init_hal failed
[ 2066.140196] r8822be: halmac_init_hal failed
[ 2066.140352] r8822be: halmac_init_hal failed
[ 2066.140504] r8822be: halmac_init_hal failed
[ 2066.140659] r8822be: halmac_init_hal failed
[ 2066.140802] r8822be: halmac_init_hal failed
[ 2072.187610] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2072.187619] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2072.187623] r8822be: [ERR]Pwr cmd value : 0!!
[ 2072.187626] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2072.187630] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2072.187633] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2072.187637] r8822be: Handle power off cmd error
[ 2115.354918] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[ 2115.632635] usb 1-3: New USB device found, idVendor=148f, idProduct=7601
[ 2115.632641] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2115.632646] usb 1-3: Product: 802.11 n WLAN
[ 2115.632649] usb 1-3: SerialNumber: 1.0
[ 2115.759297] usb 1-3: reset high-speed USB device number 6 using xhci_hcd
[ 2115.910231] mt7601u 1-3:1.0: ASIC revision: 76010001 MAC revision: 76010500
[ 2115.911272] mt7601u 1-3:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[ 2116.319431] mt7601u 1-3:1.0: EEPROM ver:0c fae:00
[ 2116.522296] ieee80211 phy3: Selected rate control algorithm 'minstrel_ht'
[ 2116.556644] mt7601u 1-3:1.0 wlx20f41bcc626d: renamed from wlan0
[ 2116.595616] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[ 2116.616390] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[ 2116.675254] IPv6: ADDRCONF(NETDEV_UP): wlx20f41bcc626d: link is not ready
[ 2117.930264] wlx20f41bcc626d: authenticate with 24:65:11:54:05:f3
[ 2117.944733] wlx20f41bcc626d: send auth to 24:65:11:54:05:f3 (try 1/3)
[ 2117.947779] wlx20f41bcc626d: authenticated
[ 2117.950841] wlx20f41bcc626d: associate with 24:65:11:54:05:f3 (try 1/3)
[ 2117.956725] wlx20f41bcc626d: RX AssocResp from 24:65:11:54:05:f3 (capab=0x431 status=0 aid=2)
[ 2117.983160] wlx20f41bcc626d: associated
[ 2117.992226] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20f41bcc626d: link becomes ready
[ 2129.124533] r8822be: halmac_init_hal failed
[ 2129.124707] r8822be: halmac_init_hal failed
[ 2129.124874] r8822be: halmac_init_hal failed
[ 2129.125034] r8822be: halmac_init_hal failed
[ 2129.125192] r8822be: halmac_init_hal failed
[ 2129.125351] r8822be: halmac_init_hal failed
[ 2129.125510] r8822be: halmac_init_hal failed
[ 2129.125669] r8822be: halmac_init_hal failed
[ 2129.125828] r8822be: halmac_init_hal failed
[ 2129.125986] r8822be: halmac_init_hal failed
[ 2134.901897] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2134.901901] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2134.901902] r8822be: [ERR]Pwr cmd value : 0!!
[ 2134.901903] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2134.901905] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2134.901906] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2134.901907] r8822be: Handle power off cmd error
[ 2192.118812] r8822be: halmac_init_hal failed
[ 2192.118973] r8822be: halmac_init_hal failed
[ 2192.119127] r8822be: halmac_init_hal failed
[ 2192.119280] r8822be: halmac_init_hal failed
[ 2192.119434] r8822be: halmac_init_hal failed
[ 2192.119584] r8822be: halmac_init_hal failed
[ 2192.119737] r8822be: halmac_init_hal failed
[ 2192.119890] r8822be: halmac_init_hal failed
[ 2192.120040] r8822be: halmac_init_hal failed
[ 2192.120189] r8822be: halmac_init_hal failed
[ 2197.898982] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2197.898992] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2197.898997] r8822be: [ERR]Pwr cmd value : 0!!
[ 2197.899000] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2197.899003] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2197.899007] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2197.899011] r8822be: Handle power off cmd error
[ 2255.121478] r8822be: halmac_init_hal failed
[ 2255.121639] r8822be: halmac_init_hal failed
[ 2255.121793] r8822be: halmac_init_hal failed
[ 2255.121974] r8822be: halmac_init_hal failed
[ 2255.122162] r8822be: halmac_init_hal failed
[ 2255.122330] r8822be: halmac_init_hal failed
[ 2255.122486] r8822be: halmac_init_hal failed
[ 2255.122640] r8822be: halmac_init_hal failed
[ 2255.122794] r8822be: halmac_init_hal failed
[ 2255.122949] r8822be: halmac_init_hal failed
[ 2260.968548] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2260.968557] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2260.968561] r8822be: [ERR]Pwr cmd value : 0!!
[ 2260.968564] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2260.968568] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2260.968572] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2260.968575] r8822be: Handle power off cmd error
[ 2318.114886] r8822be: halmac_init_hal failed
[ 2318.115044] r8822be: halmac_init_hal failed
[ 2318.115198] r8822be: halmac_init_hal failed
[ 2318.115349] r8822be: halmac_init_hal failed
[ 2318.115494] r8822be: halmac_init_hal failed
[ 2318.115639] r8822be: halmac_init_hal failed
[ 2318.115788] r8822be: halmac_init_hal failed
[ 2318.115937] r8822be: halmac_init_hal failed
[ 2318.116097] r8822be: halmac_init_hal failed
[ 2318.116251] r8822be: halmac_init_hal failed
[ 2323.903113] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2323.903123] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2323.903127] r8822be: [ERR]Pwr cmd value : 0!!
[ 2323.903130] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2323.903134] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2323.903137] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2323.903141] r8822be: Handle power off cmd error
[ 2381.114408] r8822be: halmac_init_hal failed
[ 2381.114575] r8822be: halmac_init_hal failed
[ 2381.114730] r8822be: halmac_init_hal failed
[ 2381.114882] r8822be: halmac_init_hal failed
[ 2381.115031] r8822be: halmac_init_hal failed
[ 2381.115176] r8822be: halmac_init_hal failed
[ 2381.115321] r8822be: halmac_init_hal failed
[ 2381.115466] r8822be: halmac_init_hal failed
[ 2381.115611] r8822be: halmac_init_hal failed
[ 2381.115760] r8822be: halmac_init_hal failed
[ 2386.913259] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2386.913269] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2386.913272] r8822be: [ERR]Pwr cmd value : 0!!
[ 2386.913276] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2386.913279] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2386.913282] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2386.913286] r8822be: Handle power off cmd error
[ 2444.111750] r8822be: halmac_init_hal failed
[ 2444.111917] r8822be: halmac_init_hal failed
[ 2444.112071] r8822be: halmac_init_hal failed
[ 2444.112216] r8822be: halmac_init_hal failed
[ 2444.112363] r8822be: halmac_init_hal failed
[ 2444.112512] r8822be: halmac_init_hal failed
[ 2444.112664] r8822be: halmac_init_hal failed
[ 2444.112813] r8822be: halmac_init_hal failed
[ 2444.112965] r8822be: halmac_init_hal failed
[ 2444.113113] r8822be: halmac_init_hal failed
[ 2449.973210] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2449.973220] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2449.973224] r8822be: [ERR]Pwr cmd value : 0!!
[ 2449.973227] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2449.973230] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2449.973234] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2449.973237] r8822be: Handle power off cmd error
[ 2507.112233] r8822be: halmac_init_hal failed
[ 2507.112394] r8822be: halmac_init_hal failed
[ 2507.112546] r8822be: halmac_init_hal failed
[ 2507.112695] r8822be: halmac_init_hal failed
[ 2507.112844] r8822be: halmac_init_hal failed
[ 2507.112989] r8822be: halmac_init_hal failed
[ 2507.113134] r8822be: halmac_init_hal failed
[ 2507.113283] r8822be: halmac_init_hal failed
[ 2507.113428] r8822be: halmac_init_hal failed
[ 2507.113574] r8822be: halmac_init_hal failed
[ 2512.931694] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2512.931704] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2512.931708] r8822be: [ERR]Pwr cmd value : 0!!
[ 2512.931711] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2512.931714] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2512.931718] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2512.931721] r8822be: Handle power off cmd error
[ 2570.106048] r8822be: halmac_init_hal failed
[ 2570.106217] r8822be: halmac_init_hal failed
[ 2570.106369] r8822be: halmac_init_hal failed
[ 2570.106528] r8822be: halmac_init_hal failed
[ 2570.106679] r8822be: halmac_init_hal failed
[ 2570.106829] r8822be: halmac_init_hal failed
[ 2570.106980] r8822be: halmac_init_hal failed
[ 2570.107135] r8822be: halmac_init_hal failed
[ 2570.107284] r8822be: halmac_init_hal failed
[ 2570.107454] r8822be: halmac_init_hal failed
[ 2575.949928] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2575.949938] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2575.949942] r8822be: [ERR]Pwr cmd value : 0!!
[ 2575.949946] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2575.949950] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2575.949953] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2575.949957] r8822be: Handle power off cmd error
[ 2633.108519] r8822be: halmac_init_hal failed
[ 2633.108681] r8822be: halmac_init_hal failed
[ 2633.108834] r8822be: halmac_init_hal failed
[ 2633.108988] r8822be: halmac_init_hal failed
[ 2633.109141] r8822be: halmac_init_hal failed
[ 2633.109296] r8822be: halmac_init_hal failed
[ 2633.109451] r8822be: halmac_init_hal failed
[ 2633.109605] r8822be: halmac_init_hal failed
[ 2633.109759] r8822be: halmac_init_hal failed
[ 2633.109912] r8822be: halmac_init_hal failed
[ 2638.916996] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2638.917006] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2638.917010] r8822be: [ERR]Pwr cmd value : 0!!
[ 2638.917013] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2638.917016] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2638.917043] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2638.917059] r8822be: Handle power off cmd error
[ 2696.102171] r8822be: halmac_init_hal failed
[ 2696.102304] r8822be: halmac_init_hal failed
[ 2696.102431] r8822be: halmac_init_hal failed
[ 2696.102557] r8822be: halmac_init_hal failed
[ 2696.102687] r8822be: halmac_init_hal failed
[ 2696.102813] r8822be: halmac_init_hal failed
[ 2696.102940] r8822be: halmac_init_hal failed
[ 2696.103066] r8822be: halmac_init_hal failed
[ 2696.103194] r8822be: halmac_init_hal failed
[ 2696.103321] r8822be: halmac_init_hal failed
[ 2701.781524] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2701.781534] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2701.781538] r8822be: [ERR]Pwr cmd value : 0!!
[ 2701.781542] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2701.781545] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2701.781549] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2701.781553] r8822be: Handle power off cmd error
[ 2759.104407] r8822be: halmac_init_hal failed
[ 2759.104565] r8822be: halmac_init_hal failed
[ 2759.104714] r8822be: halmac_init_hal failed
[ 2759.104863] r8822be: halmac_init_hal failed
[ 2759.105072] r8822be: halmac_init_hal failed
[ 2759.105225] r8822be: halmac_init_hal failed
[ 2759.105378] r8822be: halmac_init_hal failed
[ 2759.105534] r8822be: halmac_init_hal failed
[ 2759.105686] r8822be: halmac_init_hal failed
[ 2759.105840] r8822be: halmac_init_hal failed
[ 2764.883565] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2764.883574] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2764.883578] r8822be: [ERR]Pwr cmd value : 0!!
[ 2764.883581] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2764.883585] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2764.883588] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2764.883592] r8822be: Handle power off cmd error
[ 2822.099741] r8822be: halmac_init_hal failed
[ 2822.099911] r8822be: halmac_init_hal failed
[ 2822.100071] r8822be: halmac_init_hal failed
[ 2822.100231] r8822be: halmac_init_hal failed
[ 2822.100390] r8822be: halmac_init_hal failed
[ 2822.100550] r8822be: halmac_init_hal failed
[ 2822.100709] r8822be: halmac_init_hal failed
[ 2822.100868] r8822be: halmac_init_hal failed
[ 2822.101028] r8822be: halmac_init_hal failed
[ 2822.101187] r8822be: halmac_init_hal failed
[ 2827.876326] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2827.876336] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2827.876340] r8822be: [ERR]Pwr cmd value : 0!!
[ 2827.876343] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2827.876347] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2827.876350] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2827.876354] r8822be: Handle power off cmd error
[ 2885.100722] r8822be: halmac_init_hal failed
[ 2885.100913] r8822be: halmac_init_hal failed
[ 2885.101087] r8822be: halmac_init_hal failed
[ 2885.101248] r8822be: halmac_init_hal failed
[ 2885.101409] r8822be: halmac_init_hal failed
[ 2885.101570] r8822be: halmac_init_hal failed
[ 2885.101731] r8822be: halmac_init_hal failed
[ 2885.101894] r8822be: halmac_init_hal failed
[ 2885.102054] r8822be: halmac_init_hal failed
[ 2885.102215] r8822be: halmac_init_hal failed
[ 2890.887980] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2890.887989] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2890.887993] r8822be: [ERR]Pwr cmd value : 0!!
[ 2890.887996] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2890.888000] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2890.888003] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2890.888007] r8822be: Handle power off cmd error
[ 2935.731508] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731607] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731651] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731676] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731723] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731761] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731801] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731848] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731876] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731922] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.731959] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.732002] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.732041] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.732080] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.732094] usb 1-3: USB disconnect, device number 6
[ 2935.732134] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.732163] mt7601u 1-3:1.0: Error: RX urb failed:-71
[ 2935.755671] wlx20f41bcc626d: deauthenticating from 24:65:11:54:05:f3 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 2935.767634] mt7601u 1-3:1.0: mt7601u_rxdc_cal timed out
[ 2948.095041] r8822be: halmac_init_hal failed
[ 2948.095216] r8822be: halmac_init_hal failed
[ 2948.095384] r8822be: halmac_init_hal failed
[ 2948.095545] r8822be: halmac_init_hal failed
[ 2948.095704] r8822be: halmac_init_hal failed
[ 2948.095864] r8822be: halmac_init_hal failed
[ 2948.096023] r8822be: halmac_init_hal failed
[ 2948.096182] r8822be: halmac_init_hal failed
[ 2948.096341] r8822be: halmac_init_hal failed
[ 2948.096501] r8822be: halmac_init_hal failed
[ 2954.197587] r8822be: [ERR]Pwr cmd polling timeout!!
[ 2954.197596] r8822be: [ERR]Pwr cmd offset : 5!!
[ 2954.197600] r8822be: [ERR]Pwr cmd value : 0!!
[ 2954.197604] r8822be: [ERR]Pwr cmd msk : 2!!
[ 2954.197607] r8822be: [ERR]Read offset = 5 value = 2!!
[ 2954.197611] r8822be: [Err]pwr sub seq parser fail, status = 0x28!
[ 2954.197614] r8822be: Handle power off cmd error