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
Starting kernel ...

DEBUG_MEM_AUTO: DCR=0x21221003
DEBUG_MEM_AUTO: dcr=0x21221003, bankcnt=0x00000008, mem_size=0x08000000, banksize=0x01000000
DEBUG_MEM_AUTO: LUNA_PBO_DL_DRAM_SIZE_BARRIER=0x00400000, LUNA_PBO_UL_DRAM_SIZE_BARRIER=0x00100000
DEBUG_MEM_AUTO: LUNA_PBO_UL_DRAM_OFFSET=0x07700000,LUNA_PBO_DL_DRAM_OFFSET=0x06c00000
DEBUG_MEM_AUTO: PAGE_SIZE=0x00001000
DEBUG_MEM_AUTO: BSP_DSP_MEM_BASE=0x7900000, BSP_IPC_MEM_BASE=0x7800000 
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(0, 113246208, BOOT_MEM_RAM)
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(0x00000000, 0x06c00000, BOOT_MEM_RAM)
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(117440512, 7340032, BOOT_MEM_RAM)
DEBUG_MEM_AUTO: [bsp_prom_memmap]add_memory_region(0x07000000, 0x00700000, BOOT_MEM_RAM)
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.140 (edison_chen@jenkins) (gcc version 4.8.5 20150209 (prerelease) (Realtek MSDK-4.8.5p1 Build 3068) ) #5 SMP Fri Jun 11 17:42:16 CST 2021
[    0.000000] MIPS: machine is Realtek Semiconductor RTL8198D
[    0.000000] [L2_DEBUG:(bsp_scache_config,54)] - L2_Bypass: Disable
[    0.000000] [L2_DEBUG:(bsp_setup_scache,82)]SCache LineSize= 32 (B)
[    0.000000] Disable SRAM PLL...done
[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 0001a120 (MIPS interAptiv (multi))
[    0.000000] MIPS: machine is rtk,9607c
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 06c00000 @ 00000000 (usable)
[    0.000000]  memory: 00700000 @ 07000000 (usable)
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x00000000076fffff]
[    0.000000]   HighMem  empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000006bfffff]
[    0.000000]   node   0: [mem 0x0000000007000000-0x00000000076fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000076fffff]
[    0.000000] VPE topology {2,2} total 4
[    0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[    0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.000000] PERCPU: Embedded 11 pages/cpu @816e3000 s12352 r8192 d24512 u45056
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 29172
[    0.000000] Kernel command line: console=ttyS0,115200 ubi.mtd=4 root=31:7 rootfs=squashfs mtdparts=spinand:768K(boot),128K(env),128K(env2),256K(static_conf),255744K(ubi_device)
[    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[    0.000000] Writing ErrCtl register=00000000
[    0.000000] Readback ErrCtl register=00000000
[    0.000000] Memory: 94116K/117760K available (8429K kernel code, 5718K rwdata, 2580K rodata, 216K init, 5094K bss, 23644K reserved, 0K cma-reserved, 0K highmem)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000] NR_IRQS:256
[    0.000000] CPU clock is 950
[    0.000000] [apro_clocks_init]clk_data.clk_num=2, ocp=950000000, lx=200000000
[    0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0x1b632bdac19, max_idle_ns: 881590513399 ns
[    0.000000] sched_clock: 32 bits at 100 Hz, resolution 10000000ns, wraps every 21474836475000000ns
[    0.010000] Console: colour dummy device 80x25
[    0.010000] Calibrating delay loop... 632.01 BogoMIPS (lpj=3160064)
[    0.070000] pid_max: default: 32768 minimum: 301
[    0.070000] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.080000] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[    0.080000] Initializing cgroup subsys io
[    0.090000] Initializing cgroup subsys memory
[    0.090000] Initializing cgroup subsys devices
[    0.090000] Initializing cgroup subsys freezer
[    0.100000] Initializing cgroup subsys debug
[    0.100000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[    0.100000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes
[    0.100000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.
[    0.100000] CPU1 revision is: 0001a120 (MIPS interAptiv (multi))
[    0.180000] Synchronize counters for CPU 1: done.
[    0.180000] Brought up 2 CPUs
[    0.180000] devtmpfs: initialized
[    0.190000] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.200000] futex hash table entries: 512 (order: 2, 16384 bytes)
[    0.210000] NET: Registered protocol family 16
[    0.230000] pm-cps: CPC does not support clock gating
[    0.240000] SCSI subsystem initialized
[    0.250000] usbcore: registered new interface driver usbfs
[    0.250000] usbcore: registered new interface driver hub
[    0.260000] usbcore: registered new device driver usb
[    0.260000] clocksource: Switched to clocksource GIC
[    0.270000] NET: Registered protocol family 2
[    0.270000] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[    0.280000] TCP bind hash table entries: 1024 (order: 1, 8192 bytes)
[    0.290000] TCP: Hash tables configured (established 1024 bind 1024)
[    0.300000] UDP hash table entries: 256 (order: 1, 8192 bytes)
[    0.300000] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[    0.310000] NET: Registered protocol family 1
[    0.310000] EHCI2 initialization2
[    0.320000] register USB PHY: ehci2-phy, RTK USB PHY version: v1.1 (2021.03.10)
[    0.560000] [Kthread : luan_watchdog ] init complete!
[    0.560000] ************ Watchdog Setting ****************
[    0.570000] WDT_E=0, (1-enable, 0-disable)
[    0.570000] WDT_CLK_SC=3
[    0.580000] PH1_TO=31
[    0.580000] PH2_TO=0
[    0.580000] WDT_RESET_MODE=0
[    0.580000] **********************************************
[    0.590000] ====   Luna Watchdog Regs   =====
[    0.600000] BSP_WDTCNTRR(0xb8003260): 0x00000000
[    0.600000] BSP_WDTINTRR(0xb8003264): 0x00000000
[    0.610000] BSP_WDTCTRLR(0xb8003268): 0xe7c00000
[    0.610000] =================================
[    0.620000] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.620000] ntfs: driver 2.1.32 [Flags: R/W].
[    0.630000] fuse init (API version 7.23)
[    0.640000] io scheduler noop registered
[    0.640000] io scheduler deadline registered
[    0.650000] io scheduler cfq registered (default)
[    0.650000] rtk-mips-ia-gpio 1b000038.gpio-controller: resource - [mem 0x1b000038-0x1b000043 flags 0x200] mapped at 0xbb000038
[    0.660000] rtk-mips-ia-gpio 1b000038.gpio-controller: resource - [mem 0x18003308-0x1800335b flags 0x200] mapped at 0xb8003308
[    0.680000] rtk-mips-ia-gpio 1b000038.gpio-controller: Setting up IRQs for GPIO bank 0
[    0.690000] rtk-mips-ia-gpio 1b000038.gpio-controller: Setting up IRQs for GPIO bank 1
[    0.690000] rtk-mips-ia-gpio 1b000038.gpio-controller: Setting up IRQs for GPIO bank 2
[    0.700000] Realtek GPIO Driver for Flash Reload Default
[    0.770000] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[    0.780000] console [ttyS0] disabled
[    0.780000] 18002000.serial: ttyS0 at MMIO 0x18002000 (irq = 46, base_baud = 12327200) is a 16550A
[    0.790000] console [ttyS0] enabled
[    0.790000] console [ttyS0] enabled
[    0.800000] bootconsole [early0] disabled
[    0.800000] bootconsole [early0] disabled
[    0.810000] aipcBoardChipId=0x96070001 aipcBoardChipRev=0x00000002 aipcBoardChipSubType=0x00000004
[    0.820000] RTL9607C_CHIP_ID 0x96070001
[    0.830000] CHIP_REV_ID_B   0x00000002
[    0.930000] aipc: register chrdev(254,0)
[    0.930000] aipc: create device successed
[    0.940000] aipc: start aipc irq init
[    0.940000] aipc: Request IRQ for IPC OK
[    0.950000] aipc: create dsp console device successed
[    0.950000] aipc: init done
[    0.960000] Realtek Luna SPI NAND Flash Driver Rev:00:00:00 (ChaoYuan_Yang)
[    0.960000] [SPINAND] Blocks number under 6 are protected
[    0.970000] [SPINAND] Allow max 4 bits flip in blank page!
[    0.980000] Use RTK bb func
[    0.980000] Use RTK bb scan
[    0.980000] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xab
[    0.990000] nand: Unknown 
[    0.990000] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[    1.120000] good block number 2048
[    1.120000] 5 cmdlinepart partitions found on MTD device spinand
[    1.130000] RTK: using dynamic nand partition
[    1.130000] Creating 5 MTD partitions on "spinand":
[    1.140000] 0x000000000000-0x0000000c0000 : "boot"
[    1.150000] 0x0000000c0000-0x0000000e0000 : "env"
[    1.150000] 0x0000000e0000-0x000000100000 : "env2"
[    1.160000] 0x000000100000-0x000000140000 : "static_conf"
[    1.160000] 0x000000140000-0x00000fb00000 : "ubi_device"
[    1.170000] Size of the first partition is 6 blocks.
[    1.180000] Realtek SPINAND Flash Driver is successfully installing.
[    1.180000] Init RTK Driver Module....rtk_switch_irq_init 364 irq=38 name=apl_sw
[    1.260000] OK
[    1.260000] Init RTK Core Dev Module....OK
[    1.260000] 
[    1.260000]  rtdrv_init !!!! for netfilter
[    1.270000] [rtdrv_init]: rtdrv_ext_igmpHook_sockopts init.
[    1.280000] [rtdrv_init]: rtdrv_ext_igmpHook_sockopts success.
[    1.280000] pkt_redirect_init complete
[    1.290000] interrupt broadcaster init ok!
[    1.290000] drivers/net/ethernet/realtek/rtl86900/sdk/src/module/dspbo_queue/dspbo_queue_main.c:284 pDsPboQueueTask complete!
[    1.310000] >>>> Set nas0 carrier off !!! 
[    1.330000] Disable gmac[0] padding
[    1.340000] 
[    1.340000] rtk_gmac_netdev_init 10815: netdev name=eth0 exist
[    1.360000] Disable gmac[1] padding
[    1.370000] 
[    1.370000] rtk_gmac_netdev_init 10815: netdev name=eth0 exist
[    1.390000] Disable gmac[2] padding
[    1.390000] first entry: 0, portmask 2047, rx: 8084bf88
[    1.400000] [FCEXT] rtk_fc_extmodule_init 
[    1.420000] [FCMGR] module init @rtk_fc_mgr_init(591)
[    1.430000] fc_db.controlFuc.special_fast_forward_mode = 0
[    1.440000] fc_db.controlFuc.hwnat_customize = 0
[    1.440000] fc_db.controlFuc.hwnat_customize_nptv6_sram_acc_v2 = 0
[    2.280000] RTK FleetConntrack Driver - core module init
[    2.290000]  - version: usdk_v2.0.1.rc1 (6afd047f) 06/11/21-17:41:16
[    2.290000]  - mem usage 6366 KB (malloc:2078296  fc_db:4440496 pro_db:532)
[    2.300000] priority: 0, portmask 2047, rx: 8084bf88
[    2.310000] insert here, priority: 1, portmask 2047, rx: 808508b0
[    2.310000] priority: 1, portmask 2047, rx: 808508b0
[    2.320000] insert here, priority: 10, portmask 2047, rx: 8085074c
[    2.330000] RTK FleetConntrack Driver - manager module init
[    2.330000]  - mem usage 294 KB (db:267616 nicrx_ipi:34048)
[    2.340000] smuxdev: loaded
[    2.340000] PPP generic driver version 2.4.2
[    2.350000] NET: Registered protocol family 24
[    2.350000] PPTP driver version 0.8.5
[    2.360000] MPPE/MPPC encryption/compression module registered
[    2.360000] __rtl8192cd_init(18871): SIZE=1 b8b30000/ba000000/72
[    2.370000] __rtl8192cd_init(18878): SIZE=1 b8b30000/ba000000/72
[    2.370000] Realtek WLAN driver - version 4.0.8.2(2021-05-11)(Git SHA-1 ID:2b614289582a436759c9d1206ee2ad028fe37094)
[    2.390000] Adaptivity function - version 9.7.08
[    2.390000] CFG0 
[    2.400000] PCIE0 reset pin is set to GPIO 40
[    2.400000] ===> PCIE reset try 0
[    2.620000] 9607c pcie port 0
[    2.620000] IC-B
[    2.800000] Port0 Link@2.5GHz
[    2.800000] rtl8192cd_init_one(15907): vendor_deivce_id(818c10ec) sub(818c10ec)
[    2.810000] IS_RTL8192F_SERIES value8 = d 
[    2.810000] MACHAL_version_init
[    2.820000] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    2.830000] [rtl8192cd_init_one][17181] init sae_peer_table 


#######################################################
[    2.840000] SKB_BUF_SIZE=2832 MAX_SKB_NUM=384
[    2.850000] #######################################################
[    2.850000] 
[    2.860000] [wlan0] init sae_peer_table 
 [wlan0] init sae_peer_table 
 [wlan0] init sae_blacklist_table 
 [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    2.880000] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    2.890000] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    2.900000] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    2.910000] [MACFM_software_init 256]wifi hal support Mac function = 0x84960
[    2.920000] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.930000] ehci-platform: EHCI generic platform driver
[    2.930000] ehci-platform ehci-platform.1: EHCI Host Controller
[    2.940000] ehci-platform ehci-platform.1: new USB bus registered, assigned bus number 1
[    2.950000] ehci-platform ehci-platform.1: irq 40, io mem 0x18021200
[    2.980000] ehci-platform ehci-platform.1: USB 2.0 started, EHCI 1.00
[    2.980000] hub 1-0:1.0: USB hub found
[    2.990000] hub 1-0:1.0: 1 port detected
[    2.990000] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.000000] ohci-platform: OHCI generic platform driver
[    3.000000] ohci-platform ohci-platform.1: Generic Platform OHCI controller
[    3.010000] ohci-platform ohci-platform.1: new USB bus registered, assigned bus number 2
[    3.020000] ohci-platform ohci-platform.1: irq 40, io mem 0x18020200
[    3.090000] hub 2-0:1.0: USB hub found
[    3.090000] hub 2-0:1.0: 1 port detected
[    3.100000] usbcore: registered new interface driver cdc_acm
[    3.100000] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    3.110000] usbcore: registered new interface driver usblp
[    3.120000] usbcore: registered new interface driver uas
[    3.130000] usbcore: registered new interface driver usb-storage
[    3.130000] usbcore: registered new interface driver usbserial
[    3.140000] usbcore: registered new interface driver usbserial_generic
[    3.150000] usbserial: USB Serial support registered for generic
[    3.150000] usbcore: registered new interface driver ftdi_sio
[    3.160000] usbserial: USB Serial support registered for FTDI USB Serial Device
[    3.170000] usbcore: registered new interface driver option
[    3.170000] usbserial: USB Serial support registered for GSM modem (1-port)
[    3.180000] usbcore: registered new interface driver pl2303
[    3.190000] usbserial: USB Serial support registered for pl2303
[    3.190000] hidraw: raw HID events driver (C) Jiri Kosina
[    3.200000] usbcore: registered new interface driver usbhid
[    3.210000] usbhid: USB HID core driver
[    3.210000] /proc/slicReadID created
[    3.210000] u32 classifier
[    3.220000] nf_conntrack version 0.5.0 (1470 buckets, 5880 max)
[    3.220000] gre: GRE over IPv4 demultiplexor driver
[    3.230000] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.240000] NET: Registered protocol family 10
[    3.240000] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.250000] sit: IPv6 over IPv4 tunneling driver
[    3.260000] NET: Registered protocol family 17
[    3.260000] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    3.280000] Bridge firewalling registered
[    3.280000] Ebtables v2.0 registered
[    3.280000] l2tp_core: L2TP core driver, V2.0
[    3.290000] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.290000] 8021q: 802.1Q VLAN Support v1.8
[    3.300000] Register system dying gasp...Done
[    3.310000] ubi0: attaching mtd4
[    3.320000] usb 1-1: new high-speed USB device number 2 using ehci-platform
[    3.470000] usb-storage 1-1:1.0: USB Mass Storage device detected
[    3.490000] scsi host0: usb-storage 1-1:1.0
[    4.490000] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra USB 3.0    1.00 PQ: 0 ANSI: 6
[    4.490000] ubi0: scanning is finished
[    4.510000] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
[    4.520000] ubi0: attached mtd4 (name "ubi_device", size 249 MiB)
[    4.520000] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[    4.520000] sd 0:0:0:0: [sda] Write Protect is off
[    4.530000] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.540000]  sda: sda1
[    4.550000] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    4.550000] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    4.560000] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[    4.570000] ubi0: good PEBs: 1998, bad PEBs: 0, corrupted PEBs: 0
[    4.580000] ubi0: user volume: 8, internal volumes: 1, max. volumes count: 128
[    4.580000] ubi0: max/mean erase counter: 67/2, WL threshold: 4096, image sequence number: 1208829963
[    4.590000] ubi0: available PEBs: 855, total reserved PEBs: 1143, PEBs reserved for bad PEB handling: 40
[    4.600000] ubi0: background thread "ubi_bgt0d" started, PID 69
[    4.620000] input: gpio-keys as /devices/platform/gpio-keys/input/input0
[    4.630000] VoIP control bind 1 (1) instances successfully.
[    4.630000] index dsp_cpuid dsp_cch host_cch
[    4.640000] ----- --------- ------- --------
[    4.640000]    0        0         0       0   
[    4.650000]  voip spin lock init done
[    4.650000] VoIP RX netfilter hook init done!
[    4.660000] VoIP RX netfilter hook for IPv6 init done!
[    4.660000] =============RTK VOIP SUITE=============
[    4.670000] SDK VoIP Version: VoIP-1.6-DSP-R5523-Luna-R24-Integrate_RTL_CA 
[    4.670000] Board CFG Model :  
[    4.680000] INITIAL VOIP MANAGER PROGRAM
[    4.690000] VFS: Mounted root (squashfs filesystem) readonly on device 31:7.
[    4.700000] devtmpfs: mounted
[    4.700000] Freeing unused kernel memory: 216K
Bad inittab entry at line 33
starting pid 80, tty '': '/etc/init.d/rcS'
=== Start to run rc0 / rc63 ===
----- do_rc [/etc/init.d/rc2] -----

WARN: conflicting configurations in /etc/fstab and /etc/default/rcS
      regarding the writability of rootfs. Please fix one of them.

[    5.620000] tv_sec:5 tv_usec:620118
[    5.620000] CPU0 kick watchdog!
usbmount: usbmount.c:310: main: Assertion `devpath != NULL' failed.
Aborted
usbmount: usbmount.c:310: main: Assertion `devpath != NULL' failed.
Aborted
[    6.190000] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 111
[    6.220000] UBIFS (ubi0:0): recovery needed
[    6.320000] UBIFS (ubi0:0): recovery completed
[    6.330000] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "ubi_Config"
[    6.340000] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    6.350000] UBIFS (ubi0:0): FS size: 9777152 bytes (9 MiB, 77 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)
[    6.360000] UBIFS (ubi0:0): reserved for root: 461798 bytes (450 KiB)
[    6.370000] UBIFS (ubi0:0): media format: w4/r0 (latest is w4/r0), UUID CB695EBB-EC9E-4CDE-A068-7305DF535E5A, small LPT model
----- do_rc [/etc/init.d/rc3] -----
WARNING: table_setting: Invalid table entry name: HW_CHANNEL_PLAN_5G
WARNING: table_setting: Invalid table entry name: SNMP_SYS_DESCR
WARNING: table_setting: Invalid table entry name: SNMP_SYS_NAME
WARNING: table_setting: Invalid table entry name: CWMP_IPV6_DENY_RA
WARNING: table_setting: Invalid table entry name: V6_ULAPrefixEnable
WARNING: table_setting: Invalid table entry name: TELCO_SELECTED
WARNING: table_setting: Invalid table entry name: WEB_SHOW_OMCI_CONFIGURED_WAN
WARNING: table_setting: Invalid table entry name: CONTROL_IPTV_FLOW_COUNTER
WARNING: table_setting: Invalid table entry name: PPPOE_AUTH_RERTY_CNT
WARNING: table_setting: Invalid table entry name: PPPOE_AUTH_FAIL_SILENT_INTERVAL
set_msgqueue_max_size:417> set msgqidds.msg_qbytes=36000 OK
set_msgqueue_max_size:417> set msgqidds.msg_qbytes=36000 OK
[    6.960000] aipc: (0419)prepare_BIR  

aipc: write image successful. size=0 rc=2881648 wc=0 da=0x2bf870[    7.380000] aipc: (0528)aipc_dev_ioctl  boot dsp
 remain=0

[    7.390000] aipc: (0530)aipc_dev_ioctl  boot dsp done

Wait DSP 0/1 booting ......
.[    7.910000] aipc: (0599)aipc_dsp_disable_mem  
Wait DSP ok. wait_cnt=1
DSP 0 Software Ready!
diable printk=  0  parameter is  1
==  Now update province sw version...  =======================================
cat: can't open '/etc/province/config_default.xml': No such file or directory
Usage: flash cmd
cmd:
  info                          show flash offset information.
  loop                          enter a infinite loop.
  get_def <MIB-NAME> [...]              get the default value of specific mib from flash memory.
    Example:
      get_def NTP_ENABLED               get the default value of specific mib table entry from flash memory.
      get_def ATM_VC_TBL                get the default value of specific mib chain from flash memory.
      get_def ATM_VC_TBL.NUM    get the default number of specific mib chain from flash memory.
      get_def ATM_VC_TBL.0.ifIndex      get the default value of specific member of the mib chain record from flash memory.
  all_def [cs|hs]                       dump all mib default value from flash memory.
  get <MIB-NAME> [...]          get the specific mib from flash memory.
    Example:
      get NTP_ENABLED           get the specific mib table entry from flash memory.
      get ATM_VC_TBL            get all the specific mib chain records from flash memory.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from flash memory.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from flash memory.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into flash memory.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into flash memory.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into flash memory.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into flash memory.
    Example:
      add ATM_VC_TBL            add a mib chain record into flash memory.
      add ATM_VC_TBL.2          add mib chain record(s) into flash memory.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into flash memory.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into flash memory.
      del ATM_VC_TBL.2          delete the specific mib chain record into flash memory.
  all [cs|hs]                   dump all flash parameters.
  list [cs|hs|all] [sorted]     list mib parameters(sorted).
  default <cs/hs>               write program default value to flash.
  clear                         clear flash setting.
  get_wlband_num                        get wlan band number.
  voip                          voip setings.
  r <OFFSET>                    read flash from <OFFSET>.
  w <OFFSET> <VALUE>            write flash to <OFFSET>.
  erase <OFFSET>                erase flash from <OFFSET>.
Usage: mib cmd
cmd:
  get <MIB-NAME> [...]          get the specific mib from configd.
    Example:
      get NTP_ENABLED           get the specific mib table entry from configd.
      get ATM_VC_TBL            get all the specific mib chain records from configd.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from configd.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from configd.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into configd.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into configd.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into configd.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into configd.
    Example:
      add ATM_VC_TBL            add a mib chain record into configd.
      add ATM_VC_TBL.2          add mib chain record(s) into configd.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into configd.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into configd.
      del ATM_VC_TBL.2          delete the specific mib chain record into configd.
  all [cs|hs|rs]                dump all mib from configd.
  reset [flag]          Reset to default with flag.
  commit [cs|hs]                commit all mib from configd into flash.
  default <cs/hs>               write program default value to mib.
  getname <MIB-ID> get the mib-name corresponding to given mib-id in mib_table. For mib-id is 0, dump all mib id-name pair.
  voipshmupdate                 voip shm update.
Usage: flash cmd
cmd:
  info                          show flash offset information.
  loop                          enter a infinite loop.
  get_def <MIB-NAME> [...]              get the default value of specific mib from flash memory.
    Example:
      get_def NTP_ENABLED               get the default value of specific mib table entry from flash memory.
      get_def ATM_VC_TBL                get the default value of specific mib chain from flash memory.
      get_def ATM_VC_TBL.NUM    get the default number of specific mib chain from flash memory.
      get_def ATM_VC_TBL.0.ifIndex      get the default value of specific member of the mib chain record from flash memory.
  all_def [cs|hs]                       dump all mib default value from flash memory.
  get <MIB-NAME> [...]          get the specific mib from flash memory.
    Example:
      get NTP_ENABLED           get the specific mib table entry from flash memory.
      get ATM_VC_TBL            get all the specific mib chain records from flash memory.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from flash memory.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from flash memory.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into flash memory.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into flash memory.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into flash memory.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into flash memory.
    Example:
      add ATM_VC_TBL            add a mib chain record into flash memory.
      add ATM_VC_TBL.2          add mib chain record(s) into flash memory.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into flash memory.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into flash memory.
      del ATM_VC_TBL.2          delete the specific mib chain record into flash memory.
  all [cs|hs]                   dump all flash parameters.
  list [cs|hs|all] [sorted]     list mib parameters(sorted).
  default <cs/hs>               write program default value to flash.
  clear                         clear flash setting.
  get_wlband_num                        get wlan band number.
  voip                          voip setings.
  r <OFFSET>                    read flash from <OFFSET>.
  w <OFFSET> <VALUE>            write flash to <OFFSET>.
  erase <OFFSET>                erase flash from <OFFSET>.
Usage: mib cmd
cmd:
  get <MIB-NAME> [...]          get the specific mib from configd.
    Example:
      get NTP_ENABLED           get the specific mib table entry from configd.
      get ATM_VC_TBL            get all the specific mib chain records from configd.
      get ATM_VC_TBL.NUM        get the specific mib chain record size from configd.
      get ATM_VC_TBL.0.ifIndex  get the specific member of the mib chain record from configd.
  set <MIB-NAME MIB-VALUE> [...]set the specific mib into configd.
    Example:
      set NTP_ENABLED 0         set the specific mib table entry into configd.
      set ATM_VC_TBL.1.vpi 8    set the specific member of the mib chain recrod into configd.
  add <MIB-CHAIN-NAME> [...]    add mib chain record(s) into configd.
    Example:
      add ATM_VC_TBL            add a mib chain record into configd.
      add ATM_VC_TBL.2          add mib chain record(s) into configd.
  del <MIB-CHAIN-NAME> [...]    delete mib chain record(s) into configd.
    Example:
      del ATM_VC_TBL            delete the last mib chain record into configd.
      del ATM_VC_TBL.2          delete the specific mib chain record into configd.
  all [cs|hs|rs]                dump all mib from configd.
  reset [flag]          Reset to default with flag.
  commit [cs|hs]                commit all mib from configd into flash.
  default <cs/hs>               write program default value to mib.
  getname <MIB-ID> get the mib-name corresponding to given mib-id in mib_table. For mib-id is 0, dump all mib id-name pair.
  voipshmupdate                 voip shm update.
/etc/init.d/rc3: line 6: /bin/checkomci: not found
grep: /config/default_scfg.txt: No such file or directory
RTL Chip............
Loading modules: ca-ne ca-plat-kernel ca-sdk-cb libscfg 
[    9.670000] re8670_open 4955
[    9.670000] re8670_open 4970
[    9.690000] re8670_open 4970
[    9.700000] re8670_open 4970
Unix Socket Connect to server failed!!!: No such file or directory
Unable to open unix socket file /var/run/systemd.usock!!!
[   10.130000] omcidrv: loading out-of-tree module taints kernel.
[   10.250000] IPv6: eth0: IPv6 duplicate address fe80::200:ff:fe01:2 detected!
[   10.340000] pf_rt_fc: unknown parameter 'pon_speed' ignored
[   10.370000] register_gpon_evt_state: register gpon event state Successfully !
[   10.380000] omci platform db suc!
[   10.390000] ponPort:5 cpuPort:9 rgmiiPort:8 uniPortMask:0x21e  etherPortMask:0x1e
[   10.390000] omci platform attached!
Loading TR-142 Module...
[   10.620000] tv_sec:10        tv_usec:626194
[   10.630000] CPU0 kick watchdog!
[   10.750000] Realtek TR-142 Module initialized.
[   10.880000] [rtk_tr142_nl_recv_msg] rtk_tr142_nl_pid = 277
[   10.890000] Set mapping_outermost_vlan_by_mac_from_lut to 0 OK.
TR142_FEATURE_API_INIT_LIB ret = 0
[rtk_tr142_debug_log_set] log_enable = 0
tr142_app app_log_enable = 0
running GPON mode ...
insmod: can't insert '/lib/modules/rldp_drv.ko': No such file or directory
Loading Realtek IGMP/ MLD Snooping Module...
[   11.380000] multicast_moudle_init 
----- do_rc [/etc/init.d/rc6] -----
----- do_rc [/etc/init.d/rc10] -----
----- do_rc [/etc/init.d/rc14] -----
----- do_rc [/etc/init.d/rc18] -----
----- do_rc [/etc/init.d/rc20] -----
----- do_rc [/etc/init.d/rc32] -----
Start rtk_ramonitor daemon!
[setup_usock_thread:6078] Create new theread for usock
[setup_pushbtn_thread:5427] Create new theread for pushbtn
Input driver[   11.730000] Reset value to -1
 version is 1.0.1
Input device ID: bus 0x19 vendor 0x1 product 0x1 version 0x10[   11.740000] Reset value to -1
0
Input device name: "gpio-keys"
Supported events:
  Event ty[   11.750000] Reset value to -1
pe 0 (Sync)
  Event type 1 (Key)
    Event code 238 
    Event code 408 
  Event type 20 (Repeat)
Grab succeeded, ungrabbing.
[   11.760000] Reset value to -1
[   11.770000] Reset value to -1
[   11.790000] Reset value to -1
[   11.800000] Reset value to -1
[   11.810000] Reset value to -1
[   11.820000] Reset value to -1

[   11.830000] Reset value to -1
rtkbosa: Version 2.0 (Jun 11 2021 - 17:11:14)
rtkbosa: Detecting RTL8290B ...
>> Disable NIC SRAM accerlate - DRAM mode  <<
/bin/sh: can't create /proc/rtl8686gmac/dynamic_sram_desc: nonexistent di[   11.950000] re8670_reset 11053 enter
rectory
[   11.950000] re8670_reset 11093 gmac=0
[   11.960000] re8670_reset 11098 Enable LX bus 0 timeout monitor
[   11.960000] re8670_hardware_reset 10991 enter
[   11.980000] Disable gmac[0] padding
[   11.980000] re8670_hardware_reset 11034 exit
rtkbosa: Error (0x10): The chip is not found
rtkbosa: Detecting Semtech Series (GN2xL9x) ...
rtkbosa: Read 0x51.0x7B(0x00): 0xFF
rtkbosa: Read 0x51.0x7C(0x00): 0xFF
rtkbosa: Read 0x51.0x7D(0x00): 0xFF
rtkbosa: Read 0x51.0x7E(0x00): 0xFF
rtkbosa: Detecting UX3360 ...
rtkbosa: Read 0x51.0x80(0x55): 0xFF
rtkbosa: Read 0x51.0x81(0x58): 0xFF
rtkbosa: Read 0x51.0x82(0x33): 0xFF
rtkbosa: Read 0[   12.140000] re8670_reset 11163 Disable LX bus 0 timeout monitor
x51.0x83(0x33): [   12.140000] re8670_reset 11093 gmac=1
0xFF
rtkbosa: R[   12.150000] re8670_reset 11108 Enable LX bus 1 timeout monitor
ead 0x51.0x84(0x[   12.160000] re8670_hardware_reset 10991 enter
36): 0xFF
rtkbosa: Read 0x51.0x85(0x30): 0xFF
rtkbosa: NOT RTL8290B/GN2xL9x/UX3360, do for Uxfastic UX3360
rtkbosa: INIT_STATE (Table 3, 0xF0): [   12.180000] Disable gmac[1] padding
0xff
rtkbosa: I[   12.180000] re8670_hardware_reset 11034 exit
nit UX3320 ...
rtkbosa: Open file [/var/config/rtl-3320-backup.bin]
[   12.340000] re8670_reset 11171 Disable LX bus 1 timeout monitor
[   12.350000] re8670_reset 11093 gmac=2
[   12.350000] re8670_reset 11098 Enable LX bus 0 timeout monitor
[   12.360000] re8670_hardware_reset 10991 enter
[   12.370000] Disable gmac[2] padding
[   12.380000] re8670_hardware_reset 11034 exit
rtkbosa: done
----- do_rc [/etc/init.d/rc34] -----
[   12.490000] write watchdog_flag to 0x00000001
[   12.490000] REG32(BSP_WDTCTRLR) = 0xe7c00000
----- do_rc [/etc/init.d/rc35] -----
run rcm voip script...
[   12.530000] re8670_reset 11163 Disable LX bus 0 timeout monitor
[   12.540000] re8670_reset 11204 exit
[   12.590000] nptv6_acceleration_mechanism enabled, ready to set cpu affinity
ponmode PON_MODE=1
[   12.660000] 0
Turn on phy power...
[   12.670000] Inactive PIN_CS: 
[   12.670000] 
[   12.670000] <<<<<<<<<<< Si3219x Driver Version 9.1.0 >>>>>>>>>>
[   12.680000] ------------------------------
[   12.690000] SLIC 32192 HW intf 0 CS=0
[   12.690000] aipc: (0235)aipc_module_voip_set_pcm_fs  IO_MODE_EN=0x0000a050
[   12.700000] Pull low GPIO 28 
meter set pon-tick-token tick-period 73 token 97 
RTK.0> command:[rtk_qos_tick_to[   12.970000] Pull high GPIO 28 
cken_init:200] E[   12.970000] Start SLIC init....
nable 9603C 8000Kbps base !!
meter set tick-token tick-period 30 token 79 
RTK.0> command:register set 0x801030 0x80001e4f 
RTK.0> command:diable printk=  0  parameter is  0
/etc/scripts/board_init.sh: line 5: can't create /sys/class/leds/LED_USB0/device_name: nonexistent directory
[   13.100000] cs0
[   13.110000] MSIF_LOCK 0x1, cs 0x0
[   13.110000] Start SLIC init....
[   13.140000] random: nonblocking pool is initialized
RTL9603C

starting pid 508, tty '': '/bin/inetd'nsole. 
service /bin/ftpd port 21 tcp enabled
service /bin/telnetd port 23 tcp enabled
service /bin/tftpd port 69 udp enabled
[   13.400000] [rtk_tr142_veip_get_transparent_ifIndex] ifIndex = 0
   CMD: /bin/sh -c /bin/echo 5 nas0 > /proc/rtl8686gmac/dev_port_mapping 
[   13.440000] port 5 assign to nas0
   CMD: /bin/sh -c echo 0x20 > /proc/fc/ctrl/wan_port_mask 
   CMD: /bin/smuxctl --if nas0 --set-if-rsmux --set-if-rx-policy DROP --set-if-tx-policy CONTINUE --set-if-rxmc-policy DROP --set-if-rx-multi 1 
MIB chain descriptors checking (total 58) ok !
<utility.c 971 setup_mac_addr> macAddr[5]+1 = 2
   CMD: /bin/mkdir -p /var/network 
>>> Disable /dev/console XON XOFF !!!
   CMD: /bin/ifconfig eth0.2 hw ether 00e04c867001 
   CMD: /bin/ifconfig eth0.3 hw ether 00e04c867001 
   CMD: /bin/ifconfig eth0.4 hw ether 00e04c867001 
   CMD: /bin/ifconfig eth0.5 hw ether 00e04c867001 
   CMD: /bin/ifconfig wlan0 hw ether 00e04c867001 
   CMD: /bin/ifconfig wlan0 mtu 1500 
<utility.c 971 setup_mac_addr> macAddr[5]+1 = 2
   CMD: /bin/ifconfig wlan0-vap0 hw ether 00e04c867002 
   CMD: /bin/ifconfig wlan0-vap0 mtu 1500 
<utility.c 971 setup_mac_addr> macAddr[5]+1 = 3
   CMD: /bin/ifconfig wlan0-vap1 hw ether 00e04c867003 
   CMD: /bin/ifconfig wlan0-vap1 mtu 1500 
<utility.c 971 setup_mac_addr> macAddr[5]+1 = 4
   CMD: /bin/ifconfig wlan0-vap2 hw ether 00e04c867004 
   CMD: /bin/ifconfig wlan0-vap2 mtu 1500 
<utility.c 971 setup_mac_addr> macAddr[5]+1 = 5
   CMD: /bin/ifconfig wlan0-vap3 hw ether 00e04c867005 
[   13.710000] port 1    CMD: /bin/ifcassign to eth0.2
onfig wlan0-vap3 mtu 1500 
   CMD: /bin/ifconfig eth0 up 
   CMD: /bin/ifconfig eth0 mtu 1500 
   CMD: /bin/sh -c /bin/echo 1 eth0.2 > /proc/rtl8686gmac/dev_port_mapping 
   CMD: /bin/ifconfig eth0.2 up 
   CMD: /bin/ifconfig eth0.2 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.2 eth0.2.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.2[   13.740000] port 2  --rx --tags 0 -assign to eth0.3
-set-rxif eth0.2.0 --rule-alias eth0.2-rx-default --rule-append 
   CMD: /bin/sh -c /bin/echo 2 eth0.3 > /proc/rtl8686gmac/dev_port_mapping 
   CMD: /bin/ifconfig eth0.3 up 
   CMD: /bin/ifconfig eth0.3 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.3 eth0.3.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.3 --rx --tags 0 --set-rxif eth0.3.0 --rule-alias eth0.3-rx-default --rule-append 
   CMD: /bin/s[   13.790000] SLIC0 ID: h -c /bin/echo 3regvalue = aa
 eth0.4 > /proc/[   13.790000] Si32192 rtl8686gmac/dev_Revision A
port_mapping 
[   13.800000] port 3 assign to eth0.4
[   13.800000] [0000008580][   ] Si3219x_Init_with_Options(605) size = 1 init_opt = 0
[   13.820000] [0000008600][   ] SiVoice: Channel 0: Type = PROSLIC Rev = 2
   CMD: /bin/ifconfig eth0.4 up 
[   13.840000] [0000008620][   ] ProSLIC:loading patch: 05252017
   CMD: /bin/ifconfig eth0.4 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.4 eth0.4.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.4 --rx --tags 0 --set-rxif eth0.4.0 --rule-alias eth0.4-rx-default --rule-append 
   CMD: /bin/sh -c /bin/echo 4 eth0.5 > /proc/rtl8686gmac/dev_port_mapping 
[   13.880000] port 4 assign to eth0.5
   CMD: /bin/ifconfig eth0.5 up 
   CMD: /bin/ifconfig eth0.5 mtu 1500 
   CMD: /bin/smuxctl --if-create-name eth0.5 eth0.5.0 --set-if-rsmux 
   CMD: /bin/smuxctl --if eth0.5 --rx --tags 0 --set-rxif eth0.5.0 --rule-alias eth0.5-rx-default --rule-append 
   CMD: /bin/brctl addbr br0 
   CMD: /bin/ifconfig br0 hw ether 00e04c867001 
   CMD: /bin/ifconfig br0 mtu 1500 
   CMD: /bin/ifconfig eth0 hw ether 00e04c867001 
ifconfig: SIOCSIFHWADDR: Device or resource busy
   CMD: /bin/sh -c echo 1 > /proc/sys/net/ipv4/conf/br0/rp_filter 
[rtk_fc_stp_clean@3256]: ERROR! No such file or directory
[rtk_fc_stp_clean@3268]: ERROR! No such file or directory
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.2 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.3 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 1  --rule-remove-alias STP-Rule+ 
[   14.180000] [0000008960][   ] Si3219x: Channel 0 : VBAT Up = 58.730 v
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.4 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 0  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 1  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 2  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --rx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/sh -c /bin/smuxctl --if eth0.5 --tx --tags 3  --rule-remove-alias STP-Rule+ 
   CMD: /bin/brctl stp br0 off 
   CMD: /bin/brctl setfd br0 1 
   CMD: /bin/brctl setageing br0 7200 
setupUniPortCapability:867 line is 1;1;1;2

setupUniPortCapability:871 pch is 1
rt_port_phyAutoNegoAbility_ge[   14.340000] device eth0.2.0 entered promiscuous mode
t failed: setupUniPortCapability 903
rt_port_phyAutoNegoAbility_set failed: setupUniPortCapability 915
setupUniPortCapability:927 pch is 1, port 0, UNI_PORT_FE
setupUniPortCapability:871 pch is 1
setupUniPortCapability:927 pch is 1, port 1, UNI_PORT_FE
setupUniPortCapability:871 pch is 1
setupUniPortCapability:927 pch is 1, port 2, UNI_PORT_FE
setupUniPortCapability:871 pch is 2

setupUniPortCapability:952 pch is 2
, port 3, UNI_PORT_GE
   CMD: /bin/ifconfig eth0.2.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.2.0 
   CMD: /bin/ifconfig eth0.2.0 down 
   CMD: /bin/ifconfig eth0.2 down 
[   14.850000] [0000009630][   ] ProSLIC:Starting LB Cal on channel 0
[   16.930000] SLIC0 master state check pass!
[   16.940000] [0000011720][DRV] SLIC PCM Setup for CH0 ...
[   16.950000] [0000011730][   ] ProSLIC:PCMStart
[   16.960000] [0000011740][DRV] OK
[   16.990000] [0000011770][DRV] Set to LF_FWD_ACTIVE
[   17.000000] Init OK!
[   17.000000] <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>
[   17.000000] 
All DSP Software Ready. VoIP Defer Init done. 
start watch dog
   CMD: /bin/ifconfig eth0.2.0 up 
/var/config/omci_ignore_mib_tbl.conf meClassId:255
/var/config/omci_ignore_mib_tbl.conf subType:0
/var/config/omci_ignore_mib_tbl.conf meClassId:247
/var/config/omci_ignore_mib_tbl.conf subType:0
/var/config/omci_ignore_mib_tbl.conf meClassId:65305
/var/config/omci_ignore_mib_tbl.conf subType:0
<fMgmtInit:601> is the so is not a regular file.
<fMgmtInit:601> is the so is not a regular file.
<fMgmtInit:601> is the so is not a regular file.
   CMD: /bin/ifconfig eth0.2 up 
Module libomcivoip.so is loaded and inited
[libtr142][OMCI] == rtk_tr142.so is loaded ==
[rtk_tr142_debug_log_set] log_enable = 0
Module libtr142.so is loaded and inited
Module /lib/features/internal/me_00040000.so is inited
####################### voice_rtk_init_voip_cfg() #######################
voip omci line state share size = 384
codec_suporrt_list 1279
### voice_rtk_init_voip_cfg()###, pFlash=0x76defdb8, g_pLineState=0x772d4000
omci_wrapper_getTransceiverStatus ioctl failed 4
omci_GetTransceiverInfo 7420 : get WAVE length fail
[restart_ethernet@15661] eth0.2.0 is up 
getUniPortCapability:1147 line is 1;1;1;2

getUniPortCapability:1154 pch is 1, port is 1
   CMD: /bin/ifconfig eth0.3.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.3.0 
[   17.220000] device eth0.3.0 entered promiscuous mode
   CMD: /bin/ifconfig eth0.3.0 down 
   CMD: /bin/ifconfig eth0.3 down 
   CMD: /bin/ifconfig eth0.3.0 up 
   CMD: /bin/ifconfig eth0.3 up 
[restart_ethernet@15661] eth0.3.0 is up 
getUniPortCapability:1147 line is 1;1;1;2

getUniPortCapability:1154 pch is 1, port is 2
   CMD: /bin/ifconfig eth0.4.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth[   17.350000] device eth0.4.0 entered promiscuous mode
0.4.0 
   CMD: /bin/ifconfig eth0.4.0 down 
   CMD: /bin/ifconfig eth0.4 down 
   CMD: /bin/ifconfig eth0.4.0 up 
   CMD: /bin/ifconfig eth0.4 up 
[restart_ethernet@15661] eth0.4.0 is up 
getUniPortCapability:1147 line is 1;1;1;2

getUniPortCapability:1154 pch is 2
, por[   17.410000] device eth0.5.0 entered promiscuous mode
t is 3
   CMD: /bin/ifconfig eth0.5.0 mtu 1500 
   CMD: /bin/brctl addif br0 eth0.5.0 
   CMD: /bin/ifconfig eth0.5.0 down 
   CMD: /bin/ifconfig eth0.5 down 
   CMD: /bin/ifconfig eth0.5.0 up 
   CMD: /bin/ifconfig eth0.5 up 
[restart_ethernet@15661] eth0.5.0 is up 
getUniPortCapability:1147 line is 1;1;1;2

   CMD: /bin/sh -c echo 4 > /proc/sys/net/ipv6/conf/br0/dad_transmits 
Ignore classId:287
MIB_Table_Init Init mib table:mib_ExtendedOnuGZTE.so fail, error code is:1...
   CMD: /bin/ifconfig br0 192.168.1.1 netmask 255.255.255.0 mtu 1500 
omci_wrapper_msgHandler: devMode 2,receiveState 1,usrLogLvl 1, drvLogLvl 1,sn RTKG����
Find ATM_VC_TBL interface br0 Fail!
Auto Link-Local Address for br0 
[   17.590000] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
sh: can't create /proc/driver/realtek/rtk_op_mode: nonexistent directory
   CMD: /bin/udhcpd -S /var/udhcpd/udhcpd.conf 
MIB_Table_Init Init mib table:mib_Me242.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me243.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me350.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me370.so fail, error code is:1...
MIB_Table_Init Init mib table:mib_Me373.so fail, error code is:1...
Ignore classId:65305
MIB_Table_Init Init mib table:mib_Me65305.so fail, error code is:1...
Start udhcpd server!
udhcp server/relay (v0.9.8) started
Run Server function only

dhcpd server read configfile:poolname=default
unable to parse 'opt tzstring '
iptables: Bad rule (does a matching rule exist in that chain?).
Listening on Socket/br0
Sending on   Socket/br0
do_restart_dnsrelay:4307 no delay dns
Open file /var/tmp/hosts failed !
Ignore classId:255 SubType:0
MIB_Table_Init Init mib table:mib_PrivateTellionOntStatistics.so fail, error code is:1...
restart DNS relay failed !
   CMD: /bin/spppd 
   CMD: /bin/boa 
   CMD: /bin/arp_monitor -F -d -t 3 -nf 3 -nt 7 -i br0 
[   18.680000] drivers/net/ethernet/realtek/rtl86900/sdk/src/rtk/pon_led.c:1180 led sw blink init complete!
rtk_pon_led_SpecType_set 0
   CMD: /bin/iptables -P INPUT ACCEPT 
   CMD: /bin/iptables -P FORWARD ACCEPT 
   CMD: /bin/iptables -A FORWARD -p tcp -o ppp+ --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 
[   19.140000] ubi0 error: ubi_open_volume: cannot open device 0, volume 0, error -16
voip flash server share size = 9384
rcm_voip_get_ctype_interface
++++++The size of voipConfig 8684
   CMD: /bin/iptables -A FORWARD -p tcp -i ppp+ --tcp-flags SYN,RST SYN -m tcpmss --mss 1452:65495 -j TCPMSS --set-mss 1452 
<bind_web_socket:370> socket:4, ip_ver:6, port:443
   CMD: /bin/ip6tables -A FORWARD -p tcp -o ppp+ --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 
   CMD: /bin/ip6tables -A FORWARD -p tcp -i ppp+ --tcp-flags SYN,RST SYN -m tcpmss --mss 1432:65475 -j TCPMSS --set-mss 1432 
   CMD: /bin/iptables -A INPUT -p udp --dport 520 -j ACCEPT 
   CMD: /bin/iptables -A INPUT ! -i br0 -d 239.255.255.250 -j DROP 
   CMD: /bin/iptables -A INPUT -d 224.0.0.0/4 -j ACCEPT 
   CMD: /bin/iptables -A INPUT -i lo -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -i lo -j ACCEPT 
   CMD: /bin/iptables -N aclblock 
   CMD: /bin/iptables -t nat -N aclblock 
   CMD: /bin/iptables -t mangle -N aclblock 
   CMD: /bin/iptables -F aclblock 
   CMD: /bin/iptables -t nat -F aclblock 
   CMD: /bin/iptables -t mangle -F aclblock 
   CMD: /bin/iptables -A aclblock -i lo -j RETURN 
   CMD: /bin/iptables -A aclblock ! -i br+ -m mark --mark 0x1000 -j ACCEPT 
   CMD: /bin/iptables -A aclblock ! -i br+ -p udp --dport 67 -j ACCEPT 
   CMD: /bin/iptables -A aclblock ! -i br+ -p ICMP --icmp-type echo-request -m limit --limit 1/s -j DROP 
   CMD: /bin/iptables -A aclblock ! -i br+ -j DROP 
   CMD: /bin/iptables -A INPUT -j aclblock 
   CMD: /bin/iptables -t nat -A PREROUTING -j aclblock 
   CMD: /bin/iptables -t mangle -A PREROUTING -j aclblock 
   CMD: /bin/ip6tables -N aclblock 
<bind_web_socket:370> socket:9, ip_ver:6, port:80
   CMD: /bin/ip6tables -F aclblock 
   CMD: /bin/ip6tables -P INPUT DROP 
   CMD: /bin/ip6tables -A INPUT -j aclblock 
   CMD: /bin/iptables -N cwmp_aclblock 
   CMD: /bin/iptables -t mangle -N cwmp_aclblock 
   CMD: /bin/iptables -F cwmp_aclblock 
   CMD: /bin/iptables -t mangle -F cwmp_aclblock 
   CMD: /bin/iptables -A INPUT -j cwmp_aclblock 
   CMD: /bin/iptables -t mangle -D PREROUTING -j cwmp_aclblock 
   CMD: /bin/iptables -t mangle [   20.100000] [SMUX] eth0.5.0 carrier on !!!
-A PREROUTING -j[   20.100000] br0: port 4(eth0.5.0) entered forwarding state
[   20.110000] br0: port 4(eth0.5.0) entered forwarding state

launch /bin/VoIP_maserati at 20
[   20.120000] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
   CMD: /bin/ebtables -N br_wan 
Open file /var/run/dhcpcV6.leases.nas0_0 fail !
RTL9603C
RTL9603C
   CMD: /bin/ebtables -P br_wan RETURN 
   CMD: /bin/ebtables -N br_wan_out 
   CMD: /bin/ebtables -P br_wan_out RETURN 
   CMD: /bin/ebtables -N br_lan_out 
   CMD: /bin/ebtables -P br_lan_out RETURN 
   CMD: /bin/ebtables -A br_wan -i nas0_0 -j DROP 
RTL9603C
   CMD: /bin/ebtables -A br_wan_out -o nas0_0 -j DROP 
   CMD: /bin/ebtables -A INPUT -j br_wan 
   CMD: /bin/ebtables -A OUTPUT -j br_wan_out 
   CMD: /bin/ebtables -A OUTPUT -j br_lan_out 
   CMD: /bin/ebtables -N br_wan_forward 
   CMD: /bin/ebtables -P br_wan_forward RETURN 
[block_br_wan_forward:3277] Entry.cmode =0, Entry.IpProtocol=3
   CMD: /bin/ebtables -A FORWARD -j br_wan_forward 
   CMD: /bin/iptables -D INPUT -j voip_chain 
iptables v1.4.18: Couldn't load target `voip_chain':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -F voip_chain 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X voip_chain 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N voip_chain 
   CMD: /bin/iptables -I INPUT -j voip_chain 
   CMD: /bin/ebtables -N wlan_block -P RETURN 
   CMD: /bin/ebtables -A FORWARD -j wlan_block 
   CMD: /bin/ebtables -N br_pppoe 
   CMD: /bin/ebtables -P br_pppoe RETURN 
   CMD: /bin/ebtables -N br_pppoe_acl 
   CMD: /bin/ebtables -P br_pppoe_acl DROP 
   CMD: /bin/ebtables -A FORWARD -j br_pppoe 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8100 --vlan-encap 0x8863 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8100 --vlan-encap 0x8864 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8863 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl --proto 0x8864 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl -p IPv4 -d 01:00:5e:00:00:00/ff:ff:ff:00:00:00 -j RETURN 
   CMD: /bin/ebtables -A br_pppoe_acl -p IPv6 -d 33:33:00:00:00:00/ff:ff:00:00:00:00 -j RETURN 
   CMD: /bin/iptables -N domainblk 
   CMD: /bin/iptables -t mangle -N mark_for_domainBLK 
   CMD: /bin/iptables -t mangle -I PREROUTING -j mark_for_domainBLK 
   CMD: /bin/ip6tables -N domainblk 
   CMD: /bin/iptables -A domainblk -p udp --dport 53 -m dns --qname example.com --rmatch -j DROP 
   CMD: /bin/ip6tables -D domainblk -p udp --dport 53 -m dns --qname example.com --rmatch -j DROP 
ip6tables: Bad rule (does a matching rule exist in that chain?).
   CMD: /bin/ip6tables -A domainblk -p udp --dport 53 -m dns --qname example.com --rmatch -j DROP 
   CMD: /bin/iptables -A domainblk -p udp --dport 53 -m dns --qname wpad.domain.name --rmatch -j DROP 
   CMD: /bin/ip6tables -D FORWARD -p udp --dport 53 -m dns --qname wpad.domain.name --rmatch -j DROP 
ip6tables: Bad rule (does a matching rule exist in that chain?).
   CMD: /bin/ip6tables -A FORWARD -p udp --dport 53 -m dns --qname wpad.domain.name --rmatch -j DROP 
   CMD: /bin/iptables -A INPUT -j domainblk 
   CMD: /bin/iptables -A FORWARD -j domainblk 
   CMD: /bin/iptables -A OUTPUT -j domainblk 
   CMD: /bin/ip6tables -A INPUT -j domainblk 
   CMD: /bin/ip6tables -A FORWARD -j domainblk 
   CMD: /bin/ip6tables -A OUTPUT -j domainblk 
   CMD: /bin/iptables -N ntpblk 
   CMD: /bin/iptables -A OUTPUT -j ntpblk 
   CMD: /bin/iptables -N tr069 
   CMD: /bin/iptables -A INPUT -j tr069 
   CMD: /bin/ip6tables -N ipv6_tr069 
   CMD: /bin/ip6tables -A INPUT -j ipv6_tr069 
   CMD: /bin/iptables -F tr069 
   CMD: /bin/ip6tables -F ipv6_tr069 
   CMD: /bin/iptables -t mangle -F interface_grouping_br0 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -t mangle -D PREROUTING -i br0 -j interface_grouping_br0 
iptables v1.4.18: Couldn't load target `interface_grouping_br0':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -t mangle -X interface_grouping_br0 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N dhcp_port_filter 
   CMD: /bin/iptables -A INPUT -j dhcp_port_filter 
   CMD: /bin/iptables -t nat -N address_map_tbl 
   CMD: /bin/iptables -t nat -A POSTROUTING -j address_map_tbl 
   CMD: /bin/ip6tables -t nat -N address_map_tbl 
   CMD: /bin/ip6tables -t nat -A POSTROUTING -j address_map_tbl 
   CMD: /bin/iptables -t mangle -N voip_remarking 
   CMD: /bin/iptables -t mangle -A POSTROUTING -p udp -j voip_remarking 
   CMD: /bin/ip6tables -t mangle -N voip_remarking 
   CMD: /bin/ip6tables -t mangle -A POSTROUTING -p udp -j voip_remarking 
   CMD: /bin/iptables -N urlblock 
   CMD: /bin/iptables -A FORWARD -i br0 -p tcp --tcp-flags PSH,ACK PSH,ACK -m conntrack --ctstate ESTABLISHED -j urlblock 
   CMD: /bin/ip6tables -N urlblock 
   CMD: /bin/ip6tables -A FORWARD -i br0 -p tcp --tcp-flags PSH,ACK PSH,ACK -m conntrack --ctstate ESTABLISHED -j urlblock 
   CMD: /bin/iptables -t mangle -N urlblock_pre 
   CMD: /bin/iptables -t mangle -A PREROUTING -i br0 -p tcp -j urlblock_pre 
   CMD: /bin/iptables -t mangle -N urlblock_post 
   CMD: /bin/iptables -t mangle -A POSTROUTING ! -o br0 -p tcp -j urlblock_post 
   CMD: /bin/ip6tables -t mangle -N urlblock_pre 
   CMD: /bin/ip6tables -t mangle -A PREROUTING -i br0 -p tcp -j urlblock_pre 
   CMD: /bin/ip6tables -t mangle -N urlblock_post 
   CMD: /bin/ip6tables -t mangle -A POSTROUTING [   21.110000] br0: port 4(eth0.5.0) entered forwarding state
! -o br0 -p tcp -j urlblock_post 
   CMD: /bin/iptables -F urlblock 
   CMD: /bin/iptables -t mangle -F urlblock_post 
   CMD: /bin/iptables -t mangle -F urlblock_pre 
   CMD: /bin/ip6tables -F urlblock 
   CMD: /bin/ip6tables -t mangle -F urlblock_post 
   CMD: /bin/ip6tables -t mangle -F urlblock_pre 
   CMD: /bin/iptables -F urlblock_black 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X urlblock_black 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N urlblock_black 
   CMD: /bin/iptables -F urlblock_white 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X urlblock_white 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -N urlblock_white 
   CMD: /bin/ip6tables -F urlblock_black 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X urlblock_black 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -N urlblock_black 
   CMD: /bin/ip6tables -F urlblock_white 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X urlblock_white 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -N urlblock_white 
   CMD: /bin/iptables -F URLBLK_ACT_REJECT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_REJECT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_REJECT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_REJECT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -F URLBLK_ACT_REJECT 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_REJECT 
voip flash client share size = 9384
waiting voip flash server init...)
voip omci line state share size = 384
codec_suporrt_list 1279

[VOIP disable DEBUG]
watch dog pipe mode 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_REJECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_REJECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -F URLBLK_ACT_ACCEPT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_ACCEPT_LOG 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_ACCEPT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_ACCEPT_LOG 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -F URLBLK_ACT_ACCEPT 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -X URLBLK_ACT_ACCEPT 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -F URLBLK_ACT_ACCEPT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -X URLBLK_ACT_ACCEPT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/iptables -N portfw 
   CMD: /bin/iptables -A FORWARD -j portfw 
   CMD: /bin/iptables -t nat -N portfw 
   CMD: /bin/iptables -t nat -A PREROUTING -j portfw 
VoIP RCM LOG is ENABLED!!
Reset register status...
   CMD: /bin/iptables -t nat -N portfwPreNatLB 
   CMD: /bin/iptables -t nat -A PREROUTING -j portfwPreNatLB 
   CMD: /bin/iptables -t nat -N portfwPostNatLB 
   CMD: /bin/iptables -t nat -A POSTROUTING -j portfwPostNatLB 
   CMD: /bin/iptables -F portfw 
   CMD: /bin/iptables -t nat -F portfw 
[   21.610000] pf_rt_ActivateGpon 4120 deactivate GPON fail ret:-1 
[   21.620000] 
omci_wrapper_activateGpon ioctl failed
   CMD: /bin/iptables -t nat -F portfwPreNatLB 
[   21.650000] priority: 10, portmask 2047, rx: 8085074c
[   21.650000] priority: 1, portmask 2047, rx: 808508b0
[   21.660000] insert here, priority: 4, portmask 32, rx: 803d3c70
   CMD: /bin/iptables -t nat -F portfwPostNatLB 
   CMD: /bin/iptables -t nat -A portfw ! -i br0 -m mark --mark 0x1000 -j RETURN 
   CMD: /bin/iptables -N ipfilter 
   CMD: /bin/iptables -A FORWARD -j ipfilter 
   CMD: /bin/iptables -F ipfilter 
   CMD: /bin/iptables -A ipfilter ! -i br+ ! -o br+ -j DROP 
   CMD: /bin/iptables -A ipfilter -d 224.0.0.0/4 -j RETURN 
   CMD: /bin/iptables -A ipfilter -m state --state ESTABLISHED,RELATED -j RETURN 
   CMD: /bin/ethctl conntrack killall 
[   21.770000] unknown cmd(21)
   CMD: /bin/iptables -t nat -N dmzPreNatLB 
   CMD: /bin/iptables -t nat -A PREROUTING -j dmzPreNatLB 
   CMD: /bin/iptables -t nat -N dmzPostNatLB 
   CMD: /bin/iptables -t nat -A POSTROUTING -j dmzPostNatLB 
   CMD: /bin/iptables -N dmz 
   CMD: /bin/iptables -t nat -N dmz 
   CMD: /bin/iptables -F dmz 
   CMD: /bin/iptables -t nat -F dmz 
   CMD: /bin/iptables -t nat -F dmzPreNatLB 
   CMD: /bin/iptables -t nat -F dmzPostNatLB 
   CMD: /bin/modprobe -r nf_nat_ftp 
   CMD: /bin/iptables -A ipfilter -j dmz 
   CMD: /bin/iptables -t nat -A PREROUTING -j dmz 
   CMD: /bin/iptables -A ipfilter ! -i br+ -j DROP 
   CMD: /bin/ebtables -N macfilter_forward 
   CMD: /bin/ebtables -N macfilter_local_in 
   CMD: /bin/ebtables -N macfilter_local_out 
   CMD: /bin/ebtables -t nat -N macfilter_mc 
   CMD: /bin/ebtables -t nat -P macfilter_mc RETURN 
   CMD: /bin/ebtables -F macfilter_forward 
   CMD: /bin/ebtables -F macfilter_local_in 
   CMD: /bin/ebtables -F macfilter_local_out 
   CMD: /bin/iptables -F macfilter_forward 
iptables: No chain/target/match by that name.
   CMD: /bin/ebtables -P macfilter_forward RETURN 
   CMD: /bin/ebtables -P macfilter_local_in RETURN 
   CMD: /bin/ebtables -P macfilter_local_out RETURN 
/bin/ebtables -P macfilter_forward RETURN
   CMD: /bin/echo 2 > /proc/fastbridge
sh: can't create /proc/fastbridge: nonexistent directory
[   21.940000] 0
[   21.960000] 0
   CMD: /bin/ebtables -I INPUT -j macfilter_local_in 
   CMD: /bin/ebtables -A OUTPUT -j macfilter_local_out 
   CMD: /bin/ebtables -I FORWARD -j macfilter_forward 
   CMD: /bin/ip6tables -P INPUT DROP 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type router-solicitation -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type router-advertisement -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbour-solicitation -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbour-advertisement -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 --icmpv6-type 130 -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p icmpv6 -i br+ -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -m state --state NEW -i br+ -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT -p udp --dport 546 -j ACCEPT 
   CMD: /bin/ip6tables -A INPUT ! -i br0 -p udp --dport 547 -j ACCEPT 
   CMD: /bin/ip6tables -N ipv6filter 
   CMD: /bin/ip6tables -A FORWARD -j ipv6filter 
Restart IPv6 Filter!
   CMD: /bin/ip6tables -F ipv6filter 
   CMD: /bin/ip6tables -A ipv6filter -m state --state ESTABLISHED,RELATED -j RETURN 
   CMD: /bin/ip6tables -A ipv6filter ! -i br+ -j DROP 
voip_set_rg_1p_tag
   CMD: /bin/iptables -t mangle -F voip_remarking 
   CMD: /bin/ip6tables -t mangle -F voip_remarking 
   CMD: /bin/ebtables -N ISOLATION_MAP 
   CMD: /bin/ebtables -P ISOLATION_MAP RETURN 
   CMD: /bin/ebtables -I FORWARD -j ISOLATION_MAP 
   CMD: /bin/ebtables -N ISOLATION_BRPORT 
   CMD: /bin/ebtables -P ISOLATION_BRPORT DROP 
   CMD: /bin/ebtables -A ISOLATION_BRPORT -i nas0+ -j RETURN 
   CMD: /bin/ebtables -A ISOLATION_BRPORT -o nas0+ -j RETURN 
   CMD: /bin/ebtables -A ISOLATION_BRPORT -d 1:80:c2:0:0:0/ff:ff:ff:0:0:0 -j RETURN 
   CMD: /bin/ebtables -D ISOLATION_MAP --logical-out br0 -j ISOLATION_BRPORT 
Sorry, rule does not exist.
   CMD: /bin/ebtables -N L2_PPTP_PORT_SERVICE 
   CMD: /bin/ebtables -P L2_PPTP_PORT_SERVICE RETURN 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv4 --ip-proto udp --ip-dport 67:68 -j DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv4 --ip-proto 2 -j DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv6 --ip6-proto udp --ip6-dport 546:547 -j DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_SERVICE -p ipv6 --ip6-proto ipv6-icmp --ip6-icmp-type 130:134 -j DROP 
   CMD: /bin/ebtables -N L2_PPTP_PORT_FORWARD 
   CMD: /bin/ebtables -P L2_PPTP_PORT_FORWARD DROP 
   CMD: /bin/ebtables -A L2_PPTP_PORT_FORWARD -d 01:80:C2:00:00:00/FF:FF:FF:00:00:00 -j RETURN 
   CMD: /bin/ebtables -A L2_PPTP_PORT_FORWARD -i nas+ -j RETURN 
   CMD: /bin/ebtables -N L2_PPTP_PORT_INPUT_TBL 
   CMD: /bin/ebtables -P L2_PPTP_PORT_INPUT_TBL RETURN 
   CMD: /bin/ebtables -I INPUT -j L2_PPTP_PORT_INPUT_TBL 
   CMD: /bin/ebtables -N L2_PPTP_PORT_OUTPU[   22.250000] 0
T_TBL 
   CMD: /bin/ebtables -P L2_PPTP_PORT_OUTPUT_TBL RETURN 
   CMD: /bin/ebtables -I OUTPUT -j L2_PPTP_PORT_OUTPUT_TBL 
   CMD: /bin/ebtables -N L2_PPTP_PORT_FORWARD_TBL 
   CMD: /bin/ebtables -P L2_PPTP_PORT_FORWARD_TBL RETURN 
   CMD: /bin/ebtab[   22.270000] 0
les -I FORWARD -j L2_PPTP_PORT_FORWARD_TBL 
<subr_net.c 25277 startWan> startWan Start all WAN
   CMD: /bin/ifconfig nas0 hw ether 00e04c867001 
   CMD: /bin/ifconfig nas0 up 
   CMD: /bin/ifconfig nas0 mtu 1500 
   CMD: /bin/ifconfig nas0 mtu 1500 
   CMD: /bin/sh -c /bin/smuxctl --if-create-name nas0 nas0_0 --set-if-rsmux --carrier MANUAL 
   CMD: /bin/ifconfig nas0_0 mtu 1500 
cmdStr: echo 130816 1 -1 -1 2 -1 0 0 > /proc/rtk_tr142/wan_info
   CMD: /bin/ifconfig nas0_0 down 
   CMD: /bin/ifconfig nas0_0 down hw ether
   CMD: /bin/ifconfig nas0_0 txqueuelen 10
   CMD: /bin/ifconfig nas0_0 up
   CMD: /bin/mkdir -p /var/network/if-up.d 
   CMD: /bin/mkdir -p /var/network/if-down.d 
[startConnection@23248] pEntry->ifIndex = 130816, pEntry->cmode [   22.380000] device nas0_0 entered promiscuous mode
= 0 
1483 bridged
   CMD: /bin/brctl addif br0 nas0_0 
   CMD: /bin/ip rule del fwmark 0x20000/0x7e000 prohibit 
unlink /var/interface/uptime/nas0_0
RTNETLINK answers: No such file or directory
   CMD: /bin/ip rule add fwmark 0x20000/0x7e000 pref 30000 prohibit 
   CMD: /bin/ip -6 rule del fwmark 0x20000/0x7e000 prohibit 
RTNETLINK answers: No such file or directory
   CMD: /bin/ip -6 rule add fwmark 0x20000/0x7e000 pref 30000 prohibit 
sh: can't create /proc/br_igmpsnoop: nonexistent directory
sh: can't create /proc/br_igmpquery: nonexistent directory
sh: can't create /proc/br_mldsnoop: nonexistent directory
sh: can't create /proc/br_mldquery: nonexistent directory
sh: can't create /sys/devices/virtual/net/br0/brif/./multicast_fast_leave: Permission denied
sh: can't create /sys/devices/virtual/net/br0/brif/./multicast_router: Permission denied
IGMP Snooping: enabled
MLD Snooping: enabled
   CMD: /bin/iptables -t nat -N address_map_tbl 
iptables: Chain already exists.
   CMD: /bin/ip6tables -t nat -N address_map_tbl 
ip6tables: Chain already exists.
[restart_upnp:18960] miniupnpd parameter error! (parameter=0, 1, 130816, 0, upnpItf=65535)
   CMD: /bin/ip -6 rule del from all lookup 257 pref 27900 
RTNETLINK answers: No such file or directory
   CMD: /bin/ip -6 rule add from all lookup 257 pref 27900 
   CMD: /bin/sh -c echo 1 > /sys/devices/virtual/net/br0/bridge/multicast_router 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 1 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 1 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 2 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 2 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 3 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0_0 --rx --tags 3 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if nas0 --rx --tags 4 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c /bin/smuxctl --if [   22.700000] usb 1-1: USB disconnect, device number 2
nas0_0 --rx --tags 4 --rule-remove-alias iptv_mvlan_nas0_0+ 
   CMD: /bin/sh -c echo 1 > /sys/class/net/br0/bridge/multicast_snooping 
   CMD: /bin/sh -c echo 2 > sys/devices/virtual/net/br0/bridge/multicast_router 
   CMD: /bin/sh -c echo 2 > /sys/devices/virtual/net/nas0_0/brport/multicast_router 
   CMD: /bin/sh -c echo 1 > /sys/class/net/br0/bridge/multicast_snooping 
   CMD: /bin/sh -c echo 2 > sys/devices/virtual/net/br0/bridge/multicast_router 
   CMD: /bin/sh -c echo 2 > /sys/devices/virtual/net/nas0_0/brport/multicast_router 
[resetUsbDevice]reset /sys/bus/usb/devices/usb1/authorized
[   22.810000] hub 1-0:1.0: USB hub found
[   22.810000] hub 1-0:1.0: 1 port detected
[   22.810000] usb usb1: authorized to connect
[resetUsbDevice]reset /sys/bus/usb/devices/usb2/authorized
[   23.020000] hub 2-0:1.0: USB hub found
[   23.020000] hub 2-0:1.0: 1 port detected
[   23.020000] usb usb2: authorized to connect
[check_wlan_mib]Sync wlan root mib from table
   CMD: /bin/iwpriv wlan0 set_mib mp_specific=0 
   CMD: /bin/iwpriv wlan0 set_mib regdomain=1 
   CMD: /bin/iwpriv wlan0 set_mib led_type=7 
   CMD: /bin/iwpriv wlan0 set_mib ssid=RTL867x-ADSL 
   CMD: /bin/iwpriv wlan0 set_mib opmode=16 
   CMD: /bin/iwpriv wlan0 set_mib phyBandSelect=1 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelCCK_A=2a2a2a2b2b2b2b2b2b2c2c2c2c2c 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelCCK_B=2d2d2d2d2d2d2d2d2d2e2e2e2e2e 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSICCK_A=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSICCK_B=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelHT40_1S_A=2c2c2c2d2d2d2d2d2d2d2d2d2d2d 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevelHT40_1S_B=2d2d2d2d2d2d2d2d2d2e2e2e2e2e 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSIHT40_1S_A=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrlevel_TSSIHT40_1S_B=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrdiffHT40_2S=0000000000000000000000000000 
   CMD: /bin/iwpriv wlan0 set_mib pwrdiffHT20=1111111010101010100101010101 
   CMD: /bin/iwpriv wlan0 set_mib pwrdiffOFDM=1111110000000000000101010101 
   CMD: /bin/iwpriv wlan0 set_mib tssi_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib ther=35 
   CMD: /bin/iwpriv wlan0 set_mib thermal1=35 
   CMD: /bin/iwpriv wlan0 set_mib xcap=17 
   CMD: /bin/iwpriv wlan0 set_mib countrycode=1 
   CMD: /bin/iwpriv wlan0 set_mib countrystr=US 
   CMD: /bin/iwpriv wlan0 set_mib bDPPathAOK=1 
   CMD: /bin/iwpriv wlan0 set_mib bDPPathBOK=1 
   CMD: /bin/iwpriv wlan0 set_mib p[   23.230000] usb 1-1: new high-speed USB device number 3 using ehci-platform
wsf_2g_a=1d1d1d 
   CMD: /bin/iwpriv wlan0 set_mib pwsf_2g_b=1e1e1e 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_a0=000d67e0000d37e2000d2fe4000d3fe5000d47e6000d5fe7000d8fea000db7ed000dd7ef000deff0000e17f2000e4ff3000e87f5000ed7f9000f3ffb000fcfff000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_a1=000d7feb000d3fed000d3ff0000d4ff0000d[   23.300000] [SMUX] eth0.5.0 carrier off !!!
57f1000d67f2000d8ff4000dc7f7000ddff8000dfffb000e1ffb000e5ffe000e9801000ee002000f5804000fa000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_a2=000daff1000d87f0000d77f2000d7ff3000d8ff5000d97f5000dc7f8000df7fa000e17fc000e2ffd000e5ffe000e8fff000ec801000f1803000f7804000fb800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800[   23.380000] usb-storage 1-1:1.0: USB Mass Storage device detected
000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800[   23.390000] scsi host1: usb-storage 1-1:1.0
000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_a0=000d5fe0000d37e2000d37e4000d3fe6000d4fe6000d77e8000d97eb000dd7ee000dd7ef000e07f1000e2ff2000e6ff5000ebff7000f0ffa000f87fd00100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_a1=000d5fec000d47ee000d37f1000d4ff1000d67f2000d7ff3000d9ff6000ddff7000de7fb000e17fb000e37fd000e7fff000ec001000f1803000f680000100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_a2=000d9ff1000d77f2000d6ff3000d7ff5000d9ff5000db7f6000dd7f8000e0ffb000e17fc000e3ffd000e77ff000ea800000ef001000f4804000fa00000100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_b0=000e1004000dd805000db805000dc808000dd809000de80a000e000d000e200e000e4812000e7013000e580d000e8006000ea804000ee805000f4003000fb003000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_b1=000df003000dc808000db00a000db00c000dc80d000dd80e000df010000e0812000e3815000e5814000e2811000e6007000e8806000ed806000f2805000fb002000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_even_b2=000df803000dc806000dc008000dc809000de00a000df80b000e080d000e2810000e5812000e7812000ea00e000e7005000ea005000ed805000f4004000fb801000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_b0=000df803000dd005000dc007000dd008000dd80a000e000c000e180d000e3010000e7013000e7012000e7007000e8805000ec805000f0804000f780300100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_b1=000de006000dc00a000db00b000db80c000dd00d000df00f000df812000e1813000e5815000e5013000e4808000e7007000eb807000ef805000f600300100000000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7[   23.790000] device wlan0 entered promiscuous mode
800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib lut_2g_odd_b2=00[   23.800000] chip_version=0x100c,WlanSupportAbility = 0x7
0de806000dc007000dc009000dd009000de80b000e000d000e180f000e3010000e7813000e8011000e600d000e800500[   23.820000] eric-8822 [ODM_software_init][15466] 
0ec005000f080400[   23.820000] clock 25MHz
0f780300100000000d7800000d780000[   23.830000] [PHY_REG_PG_8192Fmp]
0d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800000d7800 
   CMD: /bin/iwpriv wlan0 set_mib bcnint=100 
   CMD: /bin/iwpriv wlan0 set_mib channel=0 
   CMD: /bin/iwpriv wlan0 set_mib autoch_timeout=0 
   CMD: /bin/iwpriv wlan0 set_mib autoch_diff_pkt=0 
   CMD: /bin/iwpriv wlan0 set_mib autoch_1611_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib basicrates=15 
   CMD: /bin/iwpriv wlan0 set_mib oprates=4095 
   CMD: /bin/iwpriv wlan0 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0 set_mib dtimperiod=1 
   CMD: /bin/iwpriv wlan0 set_mib expired_time=30000 
   CMD: /bin/iwpriv wlan0 set_mib preamble=0 
   CMD: /bin/iwpriv wlan0 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0 set_mib txbf=1 
   CMD: /bin/iwpriv wlan0 set_mib txbf_mu=0 
Interface doesn't accept private ioctl...
89F1: Operation not permitted
   CMD: /bin/iwpriv wlan0 set_mib mc2u_disable=0 
   CMD: /bin/iwpriv wlan0 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0 set_mib wsc_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0 set_mib band=11 
   CMD: /bin/iwpriv wlan0 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0 set_mib cts2self=1 
   CMD: /bin/iwpriv wlan0 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0 set_mib apsd_enable=0 
   CMD: /bin/iwpriv wlan0 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0 set_mib vap_enable=1 
   CMD: /bin/iwpriv wlan0 set_mib stbc=1 
   CMD: /bin/iwpriv wlan0 set_mib ldpc=1 
   CMD: /bin/iwpriv wlan0 set_mib tdls_prohibited=0 
   CMD: /bin/iwpriv wlan0 set_mib tdls_cs_prohibited=0 
   CMD: /bin/iwpriv wlan0 set_mib gbwcmode=0 
   CMD: /bin/iwpriv wlan0 set_mib gbwcthrd_tx=0 
   CMD: /bin/iwpriv wlan0 set_mib gbwcthrd_rx=0 
   CMD: /bin/brctl addif br0 wlan0 
   CMD: /bin/iwpriv wlan0 set_mib func_off=0 
   CMD: /bin/ifconfig wlan0 up 
[   24.210000] start_addr=(0x2000), end_addr=(0x10000), buffer_size=(0xe000), smp_number_max=(7168)
[   24.400000] scsi 1:0:0:0: Direct-Access     SanDisk  Ultra USB 3.0    1.00 PQ: 0 ANSI: 6
[   24.410000] sd 1:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
Send alarm notif[   25.430000] br0: port 6(wlan0) entered forwarding state
y fail: EthUni, [   25.440000] sd 1:0:0:0: [sda] Write Protect is off
0x101
[   25.440000] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   25.460000] br0: port 6(wlan0) entered forwarding state
[   25.460000] br0: port 4(eth0.5.0) entered disabled state
   CMD: /bin/iwp[   25.470000] [SMUX] eth0.5.0 carrier on !!!
riv wlan0-vap0 set_mib ssid=CTC-[   25.480000] br0: port 4(eth0.5.0) entered forwarding state
1111 
   CMD: /[   25.490000] br0: port 4(eth0.5.0) entered forwarding state
bin/iwpriv wlan0-vap0 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap0 s[   25.500000]  sda: sda1
et_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap0 set_mib dtimperiod=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap0 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap0 set_mib band=11 
RTL9603C
   CMD: /bin/iwpriv wlan0-vap0 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib dot11IEEE80211W=0 
[   25.610000] sd 1:0:0:0: [sda] Attached SCSI removable disk
   CMD: /bin/iwpriv wlan0-vap0 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib rm_activated=0 
RTL9603C
   CMD: /bin/iwpriv wlan0-vap0 set_mib BssTransEnable=0 
Reset register status...
   CMD: /bin/iwpriv wlan0-vap0 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap0 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap0 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap0 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib gbwcmode=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib gbwcthrd_tx=0 
   CMD: /bin/iwpriv wlan0-vap0 set_mib gbwcthrd_rx=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib ssid=CTC-2222 
   CMD: /bin/iwpriv wlan0-vap1 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap1 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap1 set_mib dtimperiod=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap1 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap1 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap1 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap1 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap1 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap1 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib gbwcmode=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib gbwcthrd_tx=0 
   CMD: /bin/iwpriv wlan0-vap1 set_mib gbwcthrd_rx=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib ssid=CTC-3333 
   CMD: /bin/iwpriv wlan0-vap2 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap2 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap2 set_mib dtimperiod=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap2 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap2 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap2 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib dot[   26.040000] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib [   26.060000] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
encmode=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap2 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap2 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap2 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib gbwcmode=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib gbwcthrd_tx=0 
   CMD: /bin/iwpriv wlan0-vap2 set_mib gbwcthrd_rx=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib ssid=CTC-4444 
   CMD: /bin/iwpriv wlan0-vap3 set_mib rtsthres=2347 
   CMD: /bin/iwpriv wlan0-vap3 set_mib fragthres=2346 
   CMD: /bin/iwpriv wlan0-vap3 set_mib dtimperiod=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib aclnum=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib aclmode=0 
   CMD: /bin/ebtables -F wlan_block 
   CMD: /bin/iwpriv wlan0-vap3 set_mib authtype=2 
   CMD: /bin/iwpriv wlan0-vap3 set_mib band=11 
   CMD: /bin/iwpriv wlan0-vap3 set_mib autorate=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib hiddenAP=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib qos_enable=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib block_relay=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib deny_legacy=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib psk_enable=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib dot11IEEE80211W=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib enableSHA256=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib encmode=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib rm_activated=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib BssTransEnable=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib 802_1x=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib lgyEncRstrct=15 
   CMD: /bin/iwpriv wlan0-vap3 set_mib wifi_specific=2 
   CMD: /bin/iwpriv wlan0-vap3 set_mib disable_protection=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib use40M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib 2ndchoffset=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib coexist=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib shortGI20M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib shortGI40M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib shortGI80M=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib ampdu=1 
   CMD: /bin/iwpriv wlan0-vap3 set_mib amsdu=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib gbwcmode=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib gbwcthrd_tx=0 
   CMD: /bin/iwpriv wlan0-vap3 set_mib gbwcthrd_rx=0 
====> wlan_valid_interface:wlan0-vap3 wlan0-vxd pwlan0 wlan0-vap2 wlan0 wlan0-vap1 wlan0-vap0
   CMD: mkdir /var/wps 
   CMD: /bin[   26.330000] Error Channel = 10 Offset = 2, Force to 20M BW 
/sh -c /bin/cp /etc/simplecfg*.xml /var/wps 
   CMD: route del -net 239.255.255.250 netmask 255.255.255.255 br0 
route: SIOCDELRT: No such process
   CMD: route add -net 239.255.255.250 netmask 255.255.255.255 br0 
[   26.460000] br0: port 6(wlan0) entered forwarding state
Open file /var/run/dhcpcV6.leases.nas0_0 fail !

WiFi Simple Config v2.20-wps2.0 (2021.06.11-09:47+0000).

[   26.490000] br0: port 4(eth0.5.0) entered forwarding state
Total WPA/WPA2 number is 1
iwcontrol RegisterPID to (wlan0)
   CMD: /bin/iptables -F tr069 
   CMD: /bin/ip6tables -F ipv6_tr069 
   CMD: /bin/cwmpClient 
sh: can't create /proc/br_igmpsnoop: nonexistent directory
sh: can't create /proc/br_igmpquery: nonexistent directory
sh: can't create /proc/br_mldsnoop: nonexistent directory
sh: can't create /proc/br_mldquery: nonexistent directory
sh: can't create /sys/devices/virtual/net/br0/brif/./multicast_fast_leave: Permission denied
sh: can't create /sys/devices/virtual/net/br0/brif/./multicast_router: Permission denied
IGMP Snooping: enabled
MLD Snooping: enabled
   CMD: /bin/ebtables -D INPUT -j portmapping_input 
Illegal target name 'portmapping_input'.
   CMD: /bin/ebtables -F portmapping_input 
Chain 'portmapping_input' doesn't exist.
   CMD: /bin/ebtables -X portmapping_input 
Chain 'portmapping_input' doesn't exist.
   CMD: /bin/ebtables -D OUTPUT -j portmapping_output 
Illegal target name 'portmapping_output'.
   CMD: /bin/ebtables -F portmapping_output 
Chain 'portmapping_output' doesn't exist.
   CMD: /bin/ebtables -X portmapping_output 
Chain 'portmapping_output' doesn't exist.
   CMD: /bin/ebtables -F portmapping_service 
Chain 'portmapping_service' doesn't exist.
   CMD: /bin/ebtables -X portmapping_service 
Chain 'portmapping_service' doesn't exist.
   CMD: /bin/ebtables -D FORWARD -j portmapping 
Illegal target name 'portmapping'.
   CMD: /bin/ebtables -F portmapping 
Chain 'portmapping' doesn't exist.
   CMD: /bin/ebtables -X portmapping 
Chain 'portmapping' doesn't exist.
   CMD: /bin/ebtables -t broute -D BROUTING -j portmapping_broute 
Illegal target name 'portmapping_broute'.
   CMD: /bin/ebtables -t broute -F portmapping_broute 
Chain 'portmapping_broute' doesn't exist.
   CMD: /bin/ebtables -t broute -X portmapping_broute 

cwmp_flag=30
<main.c>Set No Debug Message!
Chain 'portmapping_broute' doesn't exist.
   CMD: /bin/iptables -t mangle -D FORWARD -j portmapping_rt_tbl 
iptables v1.4.18: Couldn't load target `portmapping_rt_tbl':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -t mangle -F portmapping_rt_tbl 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -t mangle -X portmapping_rt_tbl 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -D PREROUTING -j portmapping_rt_tbl 
ip6tables v1.4.18: Couldn't load target `portmapping_rt_tbl':No such file or directory

Try `ip6tables -h' or 'ip6tables --help' for more information.
   CMD: /bin/ip6tables -t mangle -F portmapping_rt_tbl 
<cwmp_utility.c>Set No Debug Message[1]
<main.c>Set Delay!
<cwmp_utility.c>Set Delay[19]
<cwmp_utility.c>Set gPrintSoap[0]
<cwmp_utility.c>Set gsupportPOST[0]
<cwmp_utility.c>Set gRandomInform[0]
<cwmp_utility.c>Set gLibUseIpv6[1]

enter cwmp_main!
Start cwmp_main() !
========== CWMP library ==========
a864434
Thu Jun 10 17:22:51 2021 +0800
[cwmp][tr181] Fix generic stun connection issue and inform related parameters.
Build time: 20210611_17:47:34 
==================================
<port_update_CWMP_diagnose_status:4536> diagnose_type = 1, status_code = 0
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -X portmapping_rt_tbl 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ebtables -F portmapping__ipv6_ra_in 
Chain 'portmapping__ipv6_ra_in' doesn't exist.
   CMD: /bin/ebtables -X portmapping__ipv6_ra_in 
Chain 'portmapping__ipv6_ra_in' doesn't exist.
   CMD: /bin/ebtables -F portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -F portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -N portmapping_input 
   CMD: /bin/ebtables -P portmapping_input RETURN 
   CMD: /bin/ebtables -A INPUT -j portmapping_input 
   CMD: /bin/ebtables -N portmapping_output 
   CMD: /bin/ebtables -P portmapping_output RETURN 
   CMD: /bin/ebtables -A OUTPUT -j portmapping_output 
   CMD: /bin/ebtables -N portmapping_service 
   CMD: /bin/ebtables -P portmapping_service RETURN 
   CMD: /bin/ebtables -A portmapping_service -p ipv4 --ip-proto udp --ip-dport 67:68 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -p ipv4 --ip-proto 2 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -d multicast -p ipv4 --ip-proto ! icmp -j DROP 
   CMD: /bin/ebtables -A portmapping_service -p ipv6 --ip6-proto udp --ip6-dport 546:547 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -p ipv6 --ip6-proto ipv6-icmp --ip6-icmp-type 130:134 -j DROP 
   CMD: /bin/ebtables -A portmapping_service -d multicast -p ipv6 --ip6-proto ! ipv6-icmp -j DROP 
   CMD: /bin/ebtables -N portmapping 
   CMD: /bin/ebtables -P portmapping RETURN 
   CMD: /bin/ebtables -A FORWARD -j portmapping 
   CMD: /bin/ebtables -t broute -N portmapping_broute 
   CMD: /bin/ebtables -t broute -P portmapping_broute RETURN 
   CMD: /bin/ebtables -t broute -A BROUTING -j portmapping_broute 
   CMD: /bin/iptables -t mangle -N portmapping_rt_tbl 
   CMD: /bin/iptables -t mangle -A FORWARD -j portmapping_rt_tbl 
   CMD: /bin/ip6tables -t mangle -N portmapping_rt_tbl 
   CMD: /bin/ip6tables -t mangle -A PREROUTING -j portmapping_rt_tbl 
   CMD: /bin/ebtables -F portmapping__ipv6_ra_in 
Chain 'portmapping__ipv6_ra_in' doesn't exist.
   CMD: /bin/ebtables -X portmapping__ipv6_ra_in 
Chain 'portmapping__ipv6_ra_in' doesn't exist.
   CMD: /bin/ebtables -F portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_in 
Chain 'portmapping_nas0_0_in' doesn't exist.
   CMD: /bin/ebtables -F portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -X portmapping_nas0_0_out 
Chain 'portmapping_nas0_0_out' doesn't exist.
   CMD: /bin/ebtables -N portmapping__ipv6_ra_in 
   CMD: /bin/ebtables -P portmapping__ipv6_ra_in DROP 
   CMD: /bin/ebtables -N portmapping_nas0_0_in 
   CMD: /bin/ebtables -P portmapping_nas0_0_in DROP 
   CMD: /bin/ebtables -N portmapping_nas0_0_out 
   CMD: /bin/ebtables -P portmapping_nas0_0_out DROP 
   CMD: /bin/ebtables -F portmapping_nas0_0_in 
   CMD: /bin/ebtables -X portmapping_nas0_0_in 
   CMD: /bin/ebtables -F portmapping_nas0_0_out[   28.470000] 0

   CMD: /bin/ebtables -X portmapping_nas0_0_out 
   CMD: /bin/iptables -t mangle -A portmapping_rt_tbl -i nas0_0 -j MARK --set-mark 0x20000/0x7e000 
   CMD: /bin/ip6tables -t mangle -A portmapping_rt_tbl -i nas0_0 -j MARK --set-mark 0x20000/0x7e000 
[   28.490000] 0
subr_qos_3.c: setupIPQ  6490
[setupLanItfMap:816] lan_itf_map.map[1].name:eth0.2.0
[setupLanItfMap:816] lan_itf_map.map[2].name:eth0.3.0
[setupLanItfMap:816] lan_itf_map.map[3].name:eth0.4.0
[setupLanItfMap:816] lan_itf_map.map[4].name:eth0.5.0
[setupLanItfMap:829] lan_itf_map.map[5].name:wlan0
subr_qos_3.c: setupDefaultQdisc  6311
   CMD: tc qdisc add dev nas0_0 root handle 1: prio
<subr_qos_3.c 6588 setupIPQ> Config QoS total upstream 2097144 Kbps downstream 1024000 Kbps
<fc_api.c 3606 rtk_fc_total_upstream_bandwidth_set> bandwidth=2034229
mib_info_id: get mib info id failed! (id=521)
   CMD: /bin/iptables -t mangle -D POSTROUTING -p tcp --tcp-flags ALL ACK -m length --length 40:84 -m conntrack --ctstate ESTABLISHED -j TCP_SMALLACK_PROTECT 
iptables v1.4.18: Couldn't load target `TCP_SMALLACK_PROTECT':No such file or directory

Try `iptables -h' or 'iptables --help' for more information.
   CMD: /bin/iptables -t mangle -F TCP_SMALLACK_PROTECT 
iptables: No chain/target/match by that name.
   CMD: /bin/iptables -t mangle -X TCP_SMALLACK_PROTECT 
iptables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -D POSTROUTING -p tcp --tcp-flags ALL ACK -m length --length 60:104 -m conntrack --ctstate ESTABLISHED -j TCP_SMALLACK_PROTECT 
ip6tables v1.4.18: Couldn't load target `TCP_SMALLACK_PROTECT':No such file or directory

Try `ip6tables -h' or 'ip6tables --help' for more information.
   CMD: /bin/ip6tables -t mangle -F TCP_SMALLACK_PROTECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/ip6tables -t mangle -X TCP_SMALLACK_PROTECT 
ip6tables: No chain/target/match by that name.
   CMD: /bin/sh -c echo 0x0 > /proc/fc/ctrl/flow_swFwded_aclTrapPri_mask 
   CMD: /bin/smbd -s /var/smb.conf --option=netbios name=Realtek --option=server string=Realtek Samba Server -D 
[stop_upnp:18904] Stop miniupnpd! (wanIf=ppp0)
   CMD: /bin/upnpctrl down ppp0 br0 
upnpctrl(down): MINIUPNPD did not start!
   CMD: /bin/sysconf send_unix_sock_message /var/run/systemd.usock do_LanV6Server restart 
do_restartLanV6Server - 450
do_cleanLanV6Server - 506
get_ra_info Open file /var/rainfo_ fail !
[setup_dhcpdv6_conf_with_single_br:765] 
RTL9603C
[   29.150000] WLAN0 Dispatch mode: 1, cpu: 0
   CMD: /bin/sh -c echo 1 > /proc/sys/net/ipv6/conf/br0/dad_transmits 
Internet Systems Consortium DHCP Server 4.4.1
Copyright 2004-2018 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Config file: /var/dhcpd6.conf
Database file: /var/dhcpd6.leases
PID file: /var/run/dhcpd6.pid
Wrote 0 NA, 0 TA, 0 PD leases to lease file.

No subnet6 declaration for br0 (fe80::2e0:4cff:fe86:7001).
** Ignoring requests on br0.  If this is not what
   you want, please write a subnet6 declaration
   in your dhcpd.conf file for the network segment
   to which interface br0 is attached. **


Not configured to listen on any interfaces!

If you think you have received this message due to a bug rather
than a configuration issue please read the section on submitting
bugs on either our web page at www.isc.org or in the README file
before submitting a bug.  These pages explain the proper
process and the information we find helpful for debugging.

exiting.
[stop_upnp:18904] Stop miniupnpd! (wanIf=ppp0)
upnpctrl(down): MINIUPNPD did not start!
wscd[1557]: HTTP REQUEST : GET /simplecfg.xml (HTTP/1.1)
wscd[1557]: HTTP REQUEST : GET /simplecfg.xml (HTTP/1.1)
wscd[1557]: HTTP REQUEST : GET /simplecfg.xml (HTTP/1.1)
wscd[1557]: HTTP REQUEST : GET /simplecfg.xml (HTTP/1.1)
wscd[1557]: HTTP REQUEST : GET /simplecfgservice.xml (HTTP/1.1)
wscd[1557]: HTTP REQUEST : GET /simplecfgservice.xml (HTTP/1.1)
wscd[1557]: HTTP REQUEST : SUBSCRIBE /upnp/event/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: HTTP REQUEST : SUBSCRIBE /upnp/event/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: Subscribe: total_subscription [1]
wscd[1557]: Subscribe: total_subscription [1]
wscd[1557]: HTTP REQUEST : POST /upnp/control/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: HTTP REQUEST : POST /upnp/control/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: SOAPAction: urn:schemas-wifialliance-org:service:WFAWLANConfig:1#GetDeviceInfo
wscd[1557]: SOAPAction: urn:schemas-wifialliance-org:service:WFAWLANConfig:1#GetDeviceInfo
cfg_mib_update_fn:4231 delay mib commit
[   36.220000] boa invoked oom-killer: gfp_mask=0x24201ca, order=0, oom_score_adj=0
[   36.230000] boa cpuset=/ mems_allowed=0
[   36.230000] CPU: 0 PID: 760 Comm: boa Tainted: G           O    4.4.140 #5
[   36.230000] Stack : 00000000 00000000 810d6b6a 0000003e 00000000 00000000 00000009 00000006
          80a25198 80b1c827 832169ac 000002f8 00000000 810d378c 00000468 84487968
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 830abb14
          0000002f 800bb884 00000468 84487968 00000002 810de618 830abb14 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[   36.230000] Call Trace:
[   36.230000] [<80019270>] show_stack+0x8c/0xa8
[   36.230000] [<802723a0>] dump_stack+0x90/0xd0
[   36.230000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[   36.230000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[   36.230000] [<800c14dc>] out_of_memory+0x320/0x374
[   36.230000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[   36.230000] [<800bcfd4>] do_read_cache_page+0x118/0x2ac
[   36.230000] [<800bd180>] read_cache_page+0x18/0x24
[   36.230000] [<80115ee0>] page_getlink.isra.56.constprop.58+0x34/0x88
[   36.230000] [<80115f54>] page_follow_link_light+0x20/0x40
[   36.230000] [<801145b8>] link_path_walk+0x45c/0x580
[   36.230000] [<80114824>] path_lookupat+0xb8/0x174
[   36.230000] [<801164b8>] filename_lookup+0x7c/0x11c
[   36.230000] [<80104f84>] SyS_faccessat+0xac/0x280
[   36.230000] [<8001e9d8>] syscall_common+0x30/0x54
[   36.230000] 
[   36.360000] Mem-Info:
[   36.370000] active_anon:1443 inactive_anon:5 isolated_anon:0
[   36.370000]  active_file:4432 inactive_file:5845 isolated_file:32
[   36.370000]  unevictable:94 dirty:5387 writeback:541 unstable:0
[   36.370000]  slab_reclaimable:1213 slab_unreclaimable:8250
[   36.370000]  mapped:2123 shmem:8 pagetables:120 bounce:0
[   36.370000]  free:1022 free_pcp:2 free_cma:0
[   36.400000] Normal free:4088kB min:4096kB low:5120kB high:6144kB active_anon:5772kB inactive_anon:20kB active_file:17728kB inactive_file:23380kB unevictable:376kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:94332kB mlocked:0kB dirty:21548kB writeback:2164kB mapped:8492kB shmem:32kB slab_reclaimable:4852kB slab_unreclaimable:33000kB kernel_stack:1568kB pagetables:480kB unstable:0kB bounce:0kB free_pcp:8kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:258296 all_unreclaimable? yes
[   36.450000] lowmem_reserve[]: 0 0 0
[   36.460000] Normal: 12*4kB (UME) 13*8kB (UE) 4*16kB (UE) 5*32kB (UE) 28*64kB (UME) 9*128kB (ME) 1*256kB (E) 1*512kB (E) 0*1024kB 0*2048kB 0*4096kB = 4088kB
[   36.470000] 10414 total pagecache pages
[   36.480000] 29440 pages RAM
[   36.480000] 0 pages HighMem/MovableOnly
[   36.480000] 5857 pages reserved
[   36.490000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[   36.500000] [  126]     0   126     1594      479       4       0        0             0 configd
[   36.510000] [  277]     0   277     1288      445       4       0        0             0 tr142_app
[   36.520000] [  340]     0   340    19064     1148      14       0        0             0 omci_app
[   36.520000] [  342]     0   342      815      274       4       0        0             0 pondetect
[   36.530000] [  381]     0   381     8010      527       7       0        0             0 systemd
[   36.540000] [  383]     0   383     1242      438       5       0        0             0 ramonitor
[   36.550000] [  507]     0   507      615      125       4       0        0             0 init
[   36.560000] [  508]     0   508      526      224       4       0        0             0 inetd
[   36.570000] [  670]     0   670      492      194       4       0        0             0 voip_gwdt
[   36.580000] [  737]     0   737     1286      456       4       0        0             0 udhcpd
[   36.590000] [  743]     0   743     1292      400       4       0        0             0 spppd
[   36.600000] [  745]     0   745     1274      373       4       0        0             0 dnsmasq
[   36.610000] [  760]     0   760     2285      782       5       0        0             0 boa
[   36.620000] [  788]     0   788      669      257       4       0        0             0 arp_monitor
[   36.630000] [  837]     0   837     2877      402       4       0        0             0 VoIP_maserati
[   36.640000] [ 1557]     0  1557     1356      468       5       0        0             0 wscd
[   36.650000] [ 1559]     0  1559      499      174       4       0        0             0 iwcontrol
[   36.660000] [ 1561]     0  1561      501      227       4       0        0             0 mini_upnpd
[   36.670000] [ 1573]     0  1573     8319      589       7       0        0             0 cwmpClient
[   36.680000] [ 1710]     0  1710     2684      628       5       0        0             0 nmbd
[   36.690000] [ 1711]     0  1711     2760      733       5       0        0             0 smbd
[   36.700000] [ 1713]     0  1713     2795      784       5       0        0             0 smbd
[   36.710000] [ 1716]     0  1716      515      257       3       0        0             0 radvd
[   36.720000] [ 1717]     0  1717      515      192       3       0        0             0 radvd
[   36.730000] Out of memory: Kill process 340 (omci_app) score 47 or sacrifice child
[   36.740000] Killed process 340 (omci_app) total-vm:76256kB, anon-rss:1104kB, file-rss:3488kB
[   78.130000] smbd invoked oom-killer: gfp_mask=0x34200ca, order=0, oom_score_adj=0
[   78.140000] smbd cpuset=/ mems_allowed=0
[   78.140000] CPU: 1 PID: 1713 Comm: smbd Tainted: G           O    4.4.140 #5
[   78.150000] Stack : 00000000 00000000 810d6b6a 00000040 00000000 00000000 00000009 00000006
          80a25198 80b1c827 83231c2c 000006b1 00000001 810d378c 00000313 83231928
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 8322ba34
          00000021 800bb884 00000313 83231928 00000002 810dfbe0 8322ba34 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[   78.190000] Call Trace:
[   78.190000] [<80019270>] show_stack+0x8c/0xa8
[   78.200000] [<802723a0>] dump_stack+0x90/0xd0
[   78.200000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[   78.210000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[   78.210000] [<800c14dc>] out_of_memory+0x320/0x374
[   78.220000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[   78.220000] [<800bccd0>] pagecache_get_page+0xd4/0x2c0
[   78.230000] [<800bd950>] grab_cache_page_write_begin+0x28/0x48
[   78.240000] [<801417b8>] block_write_begin+0x30/0xa4
[   78.240000] [<80141ae8>] cont_write_begin+0x2bc/0x438
[   78.250000] [<8018b80c>] fat_write_begin+0x64/0xbc
[   78.250000] [<800bdbc8>] generic_perform_write+0x168/0x264
[   78.260000] [<800bea78>] __generic_file_write_iter+0x1f0/0x25c
[   78.270000] [<800bec0c>] generic_file_write_iter+0x128/0x2e4
[   78.270000] [<801063d8>] __vfs_write+0xc0/0x110
[   78.280000] [<80106dbc>] vfs_write+0xa0/0x18c
[   78.280000] [<801077e4>] SyS_write+0x58/0xe8
[   78.290000] [<8001e9d8>] syscall_common+0x30/0x54
[   78.290000] 
[   78.290000] Mem-Info:
[   78.300000] active_anon:1173 inactive_anon:5 isolated_anon:0
[   78.300000]  active_file:3878 inactive_file:6772 isolated_file:32
[   78.300000]  unevictable:96 dirty:6512 writeback:312 unstable:0
[   78.300000]  slab_reclaimable:1247 slab_unreclaimable:8137
[   78.300000]  mapped:1688 shmem:8 pagetables:107 bounce:0
[   78.300000]  free:1024 free_pcp:0 free_cma:0
[   78.330000] Normal free:4096kB min:4096kB low:5120kB high:6144kB active_anon:4692kB inactive_anon:20kB active_file:15512kB inactive_file:27088kB unevictable:384kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:94332kB mlocked:0kB dirty:26048kB writeback:1248kB mapped:6752kB shmem:32kB slab_reclaimable:4988kB slab_unreclaimable:32548kB kernel_stack:1440kB pagetables:428kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:271000 all_unreclaimable? yes
[   78.380000] lowmem_reserve[]: 0 0 0
[   78.380000] Normal: 20*4kB (UME) 22*8kB (UM) 9*16kB (U) 4*32kB (UME) 8*64kB (UME) 14*128kB (UME) 3*256kB (UM) 1*512kB (M) 0*1024kB 0*2048kB 0*4096kB = 4112kB
[   78.400000] 10790 total pagecache pages
[   78.400000] 29440 pages RAM
[   78.410000] 0 pages HighMem/MovableOnly
[   78.410000] 5857 pages reserved
[   78.410000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[   78.420000] [  126]     0   126     1594      479       4       0        0             0 configd
[   78.430000] [  277]     0   277     1288      445       4       0        0             0 tr142_app
[   78.440000] [  342]     0   342      815      274       4       0        0             0 pondetect
[   78.450000] [  381]     0   381     8010      527       7       0        0             0 systemd
[   78.460000] [  383]     0   383     1242      438       5       0        0             0 ramonitor
[   78.470000] [  507]     0   507      615      125       4       0        0             0 init
[   78.480000] [  508]     0   508      526      224       4       0        0             0 inetd
[   78.490000] [  670]     0   670      492      194       4       0        0             0 voip_gwdt
[   78.500000] [  737]     0   737     1286      456       4       0        0             0 udhcpd
[   78.510000] [  743]     0   743     1292      400       4       0        0             0 spppd
[   78.520000] [  745]     0   745     1274      373       4       0        0             0 dnsmasq
[   78.530000] [  760]     0   760     2285      782       5       0        0             0 boa
[   78.540000] [  788]     0   788      669      257       4       0        0             0 arp_monitor
[   78.550000] [  837]     0   837     3133      407       5       0        0             0 VoIP_maserati
[   78.560000] [ 1557]     0  1557     1356      468       5       0        0             0 wscd
[   78.570000] [ 1559]     0  1559      499      174       4       0        0             0 iwcontrol
[   78.580000] [ 1561]     0  1561      501      227       4       0        0             0 mini_upnpd
[   78.590000] [ 1573]     0  1573     8319      589       7       0        0             0 cwmpClient
[   78.600000] [ 1710]     0  1710     2684      628       5       0        0             0 nmbd
[   78.610000] [ 1711]     0  1711     2760      733       5       0        0             0 smbd
[   78.620000] [ 1713]     0  1713     2818      806       5       0        0             0 smbd
[   78.630000] [ 1716]     0  1716      515      257       3       0        0             0 radvd
[   78.640000] [ 1717]     0  1717      515      192       3       0        0             0 radvd
[   78.650000] Out of memory: Kill process 1713 (smbd) score 33 or sacrifice child
[   78.650000] Killed process 1713 (smbd) total-vm:11272kB, anon-rss:268kB, file-rss:2956kB
[   78.940000] smbd invoked oom-killer: gfp_mask=0x24200ca, order=0, oom_score_adj=0
[   78.950000] smbd cpuset=/ mems_allowed=0
[   78.950000] CPU: 1 PID: 1725 Comm: smbd Tainted: G           O    4.4.140 #5
[   78.960000] Stack : 00000000 00000000 810d6b6a 00000040 00000000 00000000 00000009 00000006
          80a25198 80b1c827 83231c2c 000006bd 00000001 810d378c 00000317 83231928
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 85a87bec
          00000021 800bb884 00000317 83231928 00000002 810e1208 85a87bec 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[   79.000000] Call Trace:
[   79.000000] [<80019270>] show_stack+0x8c/0xa8
[   79.010000] [<802723a0>] dump_stack+0x90/0xd0
[   79.010000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[   79.020000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[   79.020000] [<800c14dc>] out_of_memory+0x320/0x374
[   79.030000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[   79.030000] [<800e7244>] handle_mm_fault+0xc3c/0x14c8
[   79.040000] [<80022048>] __do_page_fault+0x118/0x4b8
[   79.040000] [<80014300>] ret_from_exception+0x0/0x10
[   79.050000] 
[   79.050000] Mem-Info:
[   79.050000] active_anon:1165 inactive_anon:5 isolated_anon:0
[   79.050000]  active_file:3881 inactive_file:6772 isolated_file:32
[   79.050000]  unevictable:96 dirty:6512 writeback:312 unstable:0
[   79.050000]  slab_reclaimable:1247 slab_unreclaimable:8152
[   79.050000]  mapped:1692 shmem:8 pagetables:105 bounce:0
[   79.050000]  free:1024 free_pcp:0 free_cma:0
[   79.090000] Normal free:4096kB min:4096kB low:5120kB high:6144kB active_anon:4660kB inactive_anon:20kB active_file:15524kB inactive_file:27088kB unevictable:384kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:94332kB mlocked:0kB dirty:26048kB writeback:1248kB mapped:6768kB shmem:32kB slab_reclaimable:4988kB slab_unreclaimable:32608kB kernel_stack:1440kB pagetables:420kB unstable:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:270900 all_unreclaimable? yes
[   79.140000] lowmem_reserve[]: 0 0 0
[   79.140000] Normal: 22*4kB (UME) 21*8kB (U) 7*16kB (U) 5*32kB (UME) 8*64kB (UME) 14*128kB (UME) 3*256kB (UM) 1*512kB (M) 0*1024kB 0*2048kB 0*4096kB = 4112kB
[   79.160000] 10793 total pagecache pages
[   79.160000] 29440 pages RAM
[   79.170000] 0 pages HighMem/MovableOnly
[   79.170000] 5857 pages reserved
[   79.170000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[   79.180000] [  126]     0   126     1594      479       4       0        0             0 configd
[   79.190000] [  277]     0   277     1288      445       4       0        0             0 tr142_app
[   79.200000] [  342]     0   342      815      274       4       0        0             0 pondetect
[   79.210000] [  381]     0   381     8010      527       7       0        0             0 systemd
[   79.220000] [  383]     0   383     1242      438       5       0        0             0 ramonitor
[   79.230000] [  507]     0   507      615      125       4       0        0             0 init
[   79.240000] [  508]     0   508      526      224       4       0        0             0 inetd
[   79.250000] [  670]     0   670      492      194       4       0        0             0 voip_gwdt
[   79.260000] [  737]     0   737     1286      456       4       0        0             0 udhcpd
[   79.270000] [  743]     0   743     1292      400       4       0        0             0 spppd
[   79.280000] [  745]     0   745     1274      373       4       0        0             0 dnsmasq
[   79.290000] [  760]     0   760     2285      782       5       0        0             0 boa
[   79.300000] [  788]     0   788      669      257       4       0        0             0 arp_monitor
[   79.310000] [  837]     0   837     3133      407       5       0        0             0 VoIP_maserati
[   79.320000] [ 1557]     0  1557     1356      468       5       0        0             0 wscd
[   79.330000] [ 1559]     0  1559      499      174       4       0        0             0 iwcontrol
[   79.340000] [ 1561]     0  1561      501      227       4       0        0             0 mini_upnpd
[   79.350000] [ 1573]     0  1573     8319      589       7       0        0             0 cwmpClient
[   79.360000] [ 1710]     0  1710     2684      628       5       0        0             0 nmbd
[   79.370000] [ 1711]     0  1711     2760      733       5       0        0             0 smbd
[   79.380000] [ 1716]     0  1716      515      257       3       0        0             0 radvd
[   79.380000] [ 1717]     0  1717      515      192       3       0        0             0 radvd
[   79.390000] [ 1725]     0  1725     2795      810       5       0        0             0 smbd
[   79.400000] Out of memory: Kill process 1725 (smbd) score 33 or sacrifice child
[   79.410000] Killed process 1725 (smbd) total-vm:11180kB, anon-rss:236kB, file-rss:3004kB
[   79.640000] iwcontrol invoked oom-killer: gfp_mask=0x24200c2, order=0, oom_score_adj=0
[   79.650000] iwcontrol cpuset=/ mems_allowed=0
[   79.650000] CPU: 1 PID: 1559 Comm: iwcontrol Tainted: G           O    4.4.140 #5
[   79.660000] Stack : 00000000 00000000 810d6b6a 00000045 00000000 00000000 00000009 00000006
          80a25198 80b1c827 8300b5ec 00000617 00000001 810d378c 00000317 8301e0a8
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 830dbc24
          00000021 800bb884 00000317 8301e0a8 00000002 810e2610 830dbc24 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[   79.700000] Call Trace:
[   79.700000] [<80019270>] show_stack+0x8c/0xa8
[   79.710000] [<802723a0>] dump_stack+0x90/0xd0
[   79.710000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[   79.720000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[   79.720000] [<800c14dc>] out_of_memory+0x320/0x374
[   79.730000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[   79.730000] [<8010f2c0>] pipe_write+0x2bc/0x410
[   79.740000] [<801063d8>] __vfs_write+0xc0/0x110
[   79.740000] [<80106dbc>] vfs_write+0xa0/0x18c
[   79.750000] [<801077e4>] SyS_write+0x58/0xe8
[   79.750000] [<8001e9d8>] syscall_common+0x30/0x54
[   79.760000] 
[   79.760000] Mem-Info:
[   79.760000] active_anon:1156 inactive_anon:5 isolated_anon:0
[   79.760000]  active_file:3878 inactive_file:6771 isolated_file:32
[   79.760000]  unevictable:96 dirty:6514 writeback:315 unstable:0
[   79.760000]  slab_reclaimable:1250 slab_unreclaimable:8154
[   79.760000]  mapped:1692 shmem:8 pagetables:100 bounce:0
[   79.760000]  free:1021 free_pcp:2 free_cma:0
[   79.800000] Normal free:4084kB min:4096kB low:5120kB high:6144kB active_anon:4624kB inactive_anon:20kB active_file:15512kB inactive_file:27084kB unevictable:384kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:94332kB mlocked:0kB dirty:26056kB writeback:1260kB mapped:6768kB shmem:32kB slab_reclaimable:5000kB slab_unreclaimable:32616kB kernel_stack:1440kB pagetables:400kB unstable:0kB bounce:0kB free_pcp:8kB local_pcp:8kB free_cma:0kB writeback_tmp:0kB pages_scanned:284392 all_unreclaimable? yes
[   79.850000] lowmem_reserve[]: 0 0 0
[   79.850000] Normal: 4*4kB (UE) 25*8kB (UM) 7*16kB (U) 5*32kB (UME) 8*64kB (UME) 14*128kB (UME) 3*256kB (UM) 1*512kB (M) 0*1024kB 0*2048kB 0*4096kB = 4072kB
[   79.870000] 10790 total pagecache pages
[   79.870000] 29440 pages RAM
[   79.870000] 0 pages HighMem/MovableOnly
[   79.880000] 5857 pages reserved
[   79.880000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[   79.890000] [  126]     0   126     1594      479       4       0        0             0 configd
[   79.900000] [  277]     0   277     1288      445       4       0        0             0 tr142_app
[   79.910000] [  342]     0   342      815      274       4       0        0             0 pondetect
[   79.920000] [  381]     0   381     8010      527       7       0        0             0 systemd
[   79.930000] [  383]     0   383     1242      438       5       0        0             0 ramonitor
[   79.940000] [  507]     0   507      615      125       4       0        0             0 init
[   79.950000] [  508]     0   508      526      224       4       0        0             0 inetd
[   79.960000] [  670]     0   670      492      194       4       0        0             0 voip_gwdt
[   79.970000] [  737]     0   737     1286      456       4       0        0             0 udhcpd
[   79.980000] [  743]     0   743     1292      400       4       0        0             0 spppd
[   79.990000] [  745]     0   745     1274      373       4       0        0             0 dnsmasq
[   80.000000] [  760]     0   760     2285      782       5       0        0             0 boa
[   80.010000] [  788]     0   788      669      257       4       0        0             0 arp_monitor
[   80.020000] [  837]     0   837     3133      407       5       0        0             0 VoIP_maserati
[   80.030000] [ 1557]     0  1557     1356      468       5       0        0             0 wscd
[   80.040000] [ 1559]     0  1559      499      174       4       0        0             0 iwcontrol
[   80.050000] [ 1561]     0  1561      501      227       4       0        0             0 mini_upnpd
[   80.060000] [ 1573]     0  1573     8319      589       7       0        0             0 cwmpClient
[   80.060000] [ 1710]     0  1710     2684      628       5       0        0             0 nmbd
[   80.070000] [ 1711]     0  1711     2760      733       5       0        0             0 smbd
[   80.080000] [ 1716]     0  1716      515      257       3       0        0             0 radvd
[   80.090000] [ 1717]     0  1717      515      192       3       0        0             0 radvd
[   80.100000] [ 1726]     0  1726     2795      810       5       0        0             0 smbd
[   80.110000] Out of memory: Kill process 1726 (smbd) score 33 or sacrifice child
[   80.120000] Killed process 1726 (smbd) total-vm:11180kB, anon-rss:220kB, file-rss:3020kB
[   80.480000] smbd invoked oom-killer: gfp_mask=0x26142c0, order=0, oom_score_adj=0
[   80.490000] smbd cpuset=/ mems_allowed=0
[   80.500000] CPU: 1 PID: 1727 Comm: smbd Tainted: G           O    4.4.140 #5
[   80.500000] Stack : 00000000 00000000 810d6b6a 00000040 00000000 00000000 00000009 00000006
          80a25198 80b1c827 83231c2c 000006bf 00000001 810d378c 00000314 83231928
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 85a879c4
          00000021 800bb884 00000314 83231928 00000002 810e3a70 85a879c4 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[   80.540000] Call Trace:
[   80.550000] [<80019270>] show_stack+0x8c/0xa8
[   80.550000] [<802723a0>] dump_stack+0x90/0xd0
[   80.560000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[   80.560000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[   80.570000] [<800c14dc>] out_of_memory+0x320/0x374
[   80.570000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[   80.580000] [<800f7fa0>] cache_alloc_refill+0x410/0x720
[   80.580000] [<800f9048>] __kmalloc_track_caller+0x118/0x1b4
[   80.590000] [<806dcedc>] __kmalloc_reserve.isra.50+0x40/0xa4
[   80.600000] [<806dcfc0>] __alloc_skb+0x80/0x198
[   80.600000] [<80762f4c>] sk_stream_alloc_skb+0x68/0x1bc
[   80.610000] [<80763300>] tcp_sendpage+0x260/0x650
[   80.610000] [<80138210>] pipe_to_sendpage+0x7c/0x90
[   80.620000] [<80138a98>] __splice_from_pipe+0x154/0x248
[   80.620000] [<8013a5a4>] splice_from_pipe+0x58/0x78
[   80.630000] [<8013a5e4>] generic_splice_sendpage+0x20/0x2c
[   80.630000] [<8013816c>] direct_splice_actor+0x34/0x5c
[   80.640000] [<801390f8>] splice_direct_to_actor+0xa8/0x270
[   80.650000] [<80139354>] do_splice_direct+0x94/0xcc
[   80.650000] [<801074b0>] do_sendfile+0x21c/0x410
[   80.660000] [<80107fe4>] SyS_sendfile64+0x6c/0xd8
[   80.660000] [<8001e9d8>] syscall_common+0x30/0x54
[   80.670000] 
[   80.670000] Mem-Info:
[   80.670000] active_anon:1162 inactive_anon:5 isolated_anon:0
[   80.670000]  active_file:3883 inactive_file:6773 isolated_file:32
[   80.670000]  unevictable:96 dirty:6486 writeback:322 unstable:0
[   80.670000]  slab_reclaimable:1250 slab_unreclaimable:8140
[   80.670000]  mapped:1695 shmem:8 pagetables:103 bounce:0
[   80.670000]  free:1035 free_pcp:0 free_cma:0
[   80.710000] Normal free:4200kB min:4096kB low:5120kB high:6144kB active_anon:4648kB inactive_anon:20kB active_file:15532kB inactive_file:26948kB unevictable:384kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:94332kB mlocked:0kB dirty:25832kB writeback:1288kB mapped:6780kB shmem:32kB slab_reclaimable:5000kB slab_unreclaimable:32560kB kernel_stack:1440kB pagetables:412kB unstable:0kB bounce:0kB free_pcp:60kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:128 all_unreclaimable? no
[   80.760000] lowmem_reserve[]: 0 0 0
[   80.760000] Normal: 138*4kB (ME) 28*8kB (UMEH) 8*16kB (UMH) 6*32kB (UME) 9*64kB (UME) 13*128kB (UME) 3*256kB (UM) 1*512kB (M) 0*1024kB 0*2048kB 0*4096kB = 4616kB
[   80.780000] 10609 total pagecache pages
[   80.780000] 29440 pages RAM
[   80.780000] 0 pages HighMem/MovableOnly
[   80.790000] 5857 pages reserved
[   80.790000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[   80.800000] [  126]     0   126     1594      479       4       0        0             0 configd
[   80.810000] [  277]     0   277     1288      445       4       0        0             0 tr142_app
[   80.820000] [  342]     0   342      815      274       4       0        0             0 pondetect
[   80.830000] [  381]     0   381     8010      527       7       0        0             0 systemd
[   80.840000] [  383]     0   383     1242      438       5       0        0             0 ramonitor
[   80.850000] [  507]     0   507      615      125       4       0        0             0 init
[   80.860000] [  508]     0   508      526      224       4       0        0             0 inetd
[   80.870000] [  670]     0   670      492      194       4       0        0             0 voip_gwdt
[   80.880000] [  737]     0   737     1286      456       4       0        0             0 udhcpd
[   80.890000] [  743]     0   743     1292      400       4       0        0             0 spppd
[   80.900000] [  745]     0   745     1274      373       4       0        0             0 dnsmasq
[   80.910000] [  760]     0   760     2285      782       5       0        0             0 boa
[   80.920000] [  788]     0   788      669      257       4       0        0             0 arp_monitor
[   80.930000] [  837]     0   837     3133      407       5       0        0             0 VoIP_maserati
[   80.940000] [ 1557]     0  1557     1356      471       5       0        0             0 wscd
[   80.950000] [ 1559]     0  1559      499      175       4       0        0             0 iwcontrol
[   80.960000] [ 1561]     0  1561      501      227       4       0        0             0 mini_upnpd
[   80.970000] [ 1573]     0  1573     8319      589       7       0        0             0 cwmpClient
[   80.980000] [ 1710]     0  1710     2684      628       5       0        0             0 nmbd
[   80.990000] [ 1711]     0  1711     2760      733       5       0        0             0 smbd
[   80.990000] [ 1716]     0  1716      515      257       3       0        0             0 radvd
[   81.000000] [ 1717]     0  1717      515      192       3       0        0             0 radvd
[   81.010000] [ 1727]     0  1727     2795      807       5       0        0             0 smbd
[   81.020000] Out of memory: Kill process 1727 (smbd) score 33 or sacrifice child
[   81.030000] Killed process 1727 (smbd) total-vm:11180kB, anon-rss:224kB, file-rss:3004kB
wscd[1557]: HTTP REQUEST : SUBSCRIBE /upnp/event/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: HTTP REQUEST : SUBSCRIBE /upnp/event/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: Renewal subscription: total_subscription [1]
wscd[1557]: Renewal subscription: total_subscription [1]
STA's Registration timeout, abort registration!
wscd[1557]: HTTP REQUEST : UNSUBSCRIBE /upnp/event/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: HTTP REQUEST : UNSUBSCRIBE /upnp/event/WFAWLANConfig1 (HTTP/1.1)
wscd[1557]: UNSUBSCRIBE: total_subscription [0]
wscd[1557]: UNSUBSCRIBE: total_subscription [0]
[  177.270000] boa invoked oom-killer: gfp_mask=0x24201ca, order=0, oom_score_adj=0
[  177.280000] boa cpuset=/ mems_allowed=0
[  177.290000] CPU: 0 PID: 760 Comm: boa Tainted: G           O    4.4.140 #5
[  177.290000] Stack : 00000000 00000000 810d6b6a 0000003e 00000000 00000000 00000009 00000006
          80a25198 80b1c827 832169ac 000002f8 00000000 810d378c 00000331 83231928
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 830abb14
          00000022 800bb884 00000331 83231928 00000002 810e5178 830abb14 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[  177.290000] Call Trace:
[  177.290000] [<80019270>] show_stack+0x8c/0xa8
[  177.290000] [<802723a0>] dump_stack+0x90/0xd0
[  177.290000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[  177.290000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[  177.290000] [<800c14dc>] out_of_memory+0x320/0x374
[  177.290000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[  177.290000] [<800bcfd4>] do_read_cache_page+0x118/0x2ac
[  177.290000] [<800bd180>] read_cache_page+0x18/0x24
[  177.290000] [<80115ee0>] page_getlink.isra.56.constprop.58+0x34/0x88
[  177.290000] [<80115f54>] page_follow_link_light+0x20/0x40
[  177.290000] [<801145b8>] link_path_walk+0x45c/0x580
[  177.290000] [<80114824>] path_lookupat+0xb8/0x174
[  177.290000] [<801164b8>] filename_lookup+0x7c/0x11c
[  177.290000] [<80104f84>] SyS_faccessat+0xac/0x280
[  177.290000] [<8001e9d8>] syscall_common+0x30/0x54
[  177.290000] 
[  177.420000] Mem-Info:
[  177.420000] active_anon:1178 inactive_anon:5 isolated_anon:0
[  177.420000]  active_file:3904 inactive_file:5758 isolated_file:32
[  177.420000]  unevictable:96 dirty:4365 writeback:1451 unstable:0
[  177.420000]  slab_reclaimable:1121 slab_unreclaimable:8229
[  177.420000]  mapped:1704 shmem:8 pagetables:107 bounce:0
[  177.420000]  free:2043 free_pcp:0 free_cma:0
[  177.460000] Normal free:8172kB min:4096kB low:5120kB high:6144kB active_anon:4712kB inactive_anon:20kB active_file:15616kB inactive_file:23032kB unevictable:384kB isolated(anon):0kB isolated(file):128kB present:117760kB managed:94332kB mlocked:0kB dirty:17460kB writeback:5804kB mapped:6816kB shmem:32kB slab_reclaimable:4484kB slab_unreclaimable:32916kB kernel_stack:1440kB pagetables:428kB unstable:0kB bounce:0kB free_pcp:8kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:243524 all_unreclaimable? yes
[  177.510000] lowmem_reserve[]: 0 0 0
[  177.510000] Normal: 76*4kB (UMEH) 21*8kB (MEH) 5*16kB (MEH) 12*32kB (UEH) 69*64kB (UMEH) 22*128kB (UME) 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB = 8168kB
[  177.530000] 9799 total pagecache pages
[  177.530000] 29440 pages RAM
[  177.530000] 0 pages HighMem/MovableOnly
[  177.540000] 5857 pages reserved
[  177.540000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[  177.550000] [  126]     0   126     1594      479       4       0        0             0 configd
[  177.560000] [  277]     0   277     1288      445       4       0        0             0 tr142_app
[  177.570000] [  342]     0   342      815      274       4       0        0             0 pondetect
[  177.580000] [  381]     0   381     8010      527       7       0        0             0 systemd
[  177.590000] [  383]     0   383     1242      438       5       0        0             0 ramonitor
[  177.600000] [  507]     0   507      615      125       4       0        0             0 init
[  177.610000] [  508]     0   508      526      224       4       0        0             0 inetd
[  177.620000] [  670]     0   670      492      194       4       0        0             0 voip_gwdt
[  177.630000] [  737]     0   737     1286      456       4       0        0             0 udhcpd
[  177.640000] [  743]     0   743     1292      400       4       0        0             0 spppd
[  177.650000] [  745]     0   745     1274      373       4       0        0             0 dnsmasq
[  177.660000] [  760]     0   760     2285      782       5       0        0             0 boa
[  177.670000] [  788]     0   788      669      257       4       0        0             0 arp_monitor
[  177.680000] [  837]     0   837     3133      407       5       0        0             0 VoIP_maserati
[  177.690000] [ 1557]     0  1557     1356      471       5       0        0             0 wscd
[  177.700000] [ 1559]     0  1559      499      175       4       0        0             0 iwcontrol
[  177.710000] [ 1561]     0  1561      501      227       4       0        0             0 mini_upnpd
[  177.720000] [ 1573]     0  1573     8319      589       7       0        0             0 cwmpClient
[  177.730000] [ 1710]     0  1710     2688      647       5       0        0             0 nmbd
[  177.740000] [ 1711]     0  1711     2764      748       5       0        0             0 smbd
[  177.750000] [ 1716]     0  1716      515      257       3       0        0             0 radvd
[  177.760000] [ 1717]     0  1717      515      192       3       0        0             0 radvd
[  177.770000] [ 1728]     0  1728     2818      837       5       0        0             0 smbd
[  177.780000] Out of memory: Kill process 1728 (smbd) score 34 or sacrifice child
[  177.790000] Killed process 1728 (smbd) total-vm:11272kB, anon-rss:276kB, file-rss:3072kB
[  250.740000] smbd invoked oom-killer: gfp_mask=0x34200ca, order=0, oom_score_adj=0
[  250.750000] smbd cpuset=/ mems_allowed=0
[  250.760000] CPU: 1 PID: 1729 Comm: smbd Tainted: G           O    4.4.140 #5
[  250.760000] Stack : 00000000 00000000 810d6b6a 00000040 00000000 00000000 00000009 00000006
          80a25198 80b1c827 8449842c 000006c1 00000001 810d378c 000002f0 84498128
          80b1caa4 800793b0 00000000 80078f44 810f0000 00000000 80a29cb0 833a7a34
          0000001f 800bb884 000002f0 84498128 00000002 810e66d8 833a7a34 80a25198
          00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
          ...
[  250.800000] Call Trace:
[  250.800000] [<80019270>] show_stack+0x8c/0xa8
[  250.810000] [<802723a0>] dump_stack+0x90/0xd0
[  250.810000] [<80102290>] dump_header.isra.7+0x70/0x1c0
[  250.820000] [<800c0f24>] oom_kill_process+0x2ec/0x4fc
[  250.830000] [<800c14dc>] out_of_memory+0x320/0x374
[  250.830000] [<800c651c>] __alloc_pages_nodemask+0x8d4/0x96c
[  250.840000] [<800bccd0>] pagecache_get_page+0xd4/0x2c0
[  250.840000] [<800bd950>] grab_cache_page_write_begin+0x28/0x48
[  250.850000] [<801417b8>] block_write_begin+0x30/0xa4
[  250.850000] [<80141ae8>] cont_write_begin+0x2bc/0x438
[  250.860000] [<8018b80c>] fat_write_begin+0x64/0xbc
[  250.870000] [<800bdbc8>] generic_perform_write+0x168/0x264
[  250.870000] [<800bea78>] __generic_file_write_iter+0x1f0/0x25c
[  250.880000] [<800bec0c>] generic_file_write_iter+0x128/0x2e4
[  250.880000] [<801063d8>] __vfs_write+0xc0/0x110
[  250.890000] [<80106dbc>] vfs_write+0xa0/0x18c
[  250.890000] [<801077e4>] SyS_write+0x58/0xe8
[  250.900000] [<8001e9d8>] syscall_common+0x30/0x54
[  250.900000] 
[  250.910000] Mem-Info:
[  250.910000] active_anon:1175 inactive_anon:5 isolated_anon:0
[  250.910000]  active_file:2052 inactive_file:7389 isolated_file:0
[  250.910000]  unevictable:152 dirty:3351 writeback:4074 unstable:0
[  250.910000]  slab_reclaimable:1203 slab_unreclaimable:8226
[  250.910000]  mapped:1565 shmem:8 pagetables:107 bounce:0
[  250.910000]  free:2139 free_pcp:19 free_cma:0
[  250.940000] Normal free:8556kB min:4096kB low:5120kB high:6144kB active_anon:4700kB inactive_anon:20kB active_file:8208kB inactive_file:29556kB unevictable:608kB isolated(anon):0kB isolated(file):0kB present:117760kB managed:94332kB mlocked:0kB dirty:13404kB writeback:16296kB mapped:6260kB shmem:32kB slab_reclaimable:4812kB slab_unreclaimable:32904kB kernel_stack:1440kB pagetables:428kB unstable:0kB bounce:0kB free_pcp:76kB local_pcp:0kB free_cma:0kB writeback_tmp:0kB pages_scanned:128 all_unreclaimable? no
[  250.990000] lowmem_reserve[]: 0 0 0
[  251.000000] Normal: 213*4kB (MH) 29*8kB (MEH) 6*16kB (UMH) 2*32kB (EH) 53*64kB (UMEH) 27*128kB (UME) 2*256kB (ME) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 8604kB
[  251.010000] 9602 total pagecache pages
[  251.020000] 29440 pages RAM
[  251.020000] 0 pages HighMem/MovableOnly
[  251.020000] 5857 pages reserved
[  251.030000] [ pid ]   uid  tgid total_vm      rss nr_ptes nr_pmds swapents oom_score_adj name
[  251.040000] [  126]     0   126     1594      429       4       0        0             0 configd
[  251.050000] [  277]     0   277     1288      401       4       0        0             0 tr142_app
[  251.060000] [  342]     0   342      815      264       4       0        0             0 pondetect
[  251.070000] [  381]     0   381     8010      473       7       0        0             0 systemd
[  251.080000] [  383]     0   383     1242      388       5       0        0             0 ramonitor
[  251.080000] [  507]     0   507      615      123       4       0        0             0 init
[  251.090000] [  508]     0   508      526      210       4       0        0             0 inetd
[  251.100000] [  670]     0   670      492      180       4       0        0             0 voip_gwdt
[  251.110000] [  737]     0   737     1286      411       4       0        0             0 udhcpd
[  251.120000] [  743]     0   743     1292      371       4       0        0             0 spppd
[  251.130000] [  745]     0   745     1274      354       4       0        0             0 dnsmasq
[  251.140000] [  760]     0   760     2285      733       5       0        0             0 boa
[  251.150000] [  788]     0   788      669      241       4       0        0             0 arp_monitor
[  251.160000] [  837]     0   837     3133      374       5       0        0             0 VoIP_maserati
[  251.170000] [ 1557]     0  1557     1356      437       5       0        0             0 wscd
[  251.180000] [ 1559]     0  1559      499      169       4       0        0             0 iwcontrol
[  251.190000] [ 1561]     0  1561      501      213       4       0        0             0 mini_upnpd
[  251.200000] [ 1573]     0  1573     8319      527       7       0        0             0 cwmpClient
[  251.210000] [ 1710]     0  1710     2688      600       5       0        0             0 nmbd
[  251.220000] [ 1711]     0  1711     2764      701       5       0        0             0 smbd
[  251.230000] [ 1716]     0  1716      515      224       3       0        0             0 radvd
[  251.240000] [ 1717]     0  1717      515      172       3       0        0             0 radvd
[  251.250000] [ 1729]     0  1729     2799      770       5       0        0             0 smbd
[  251.260000] Out of memory: Kill process 1729 (smbd) score 31 or sacrifice child
[  251.270000] Killed process 1729 (smbd) total-vm:11196kB, anon-rss:264kB, file-rss:2816kB
[  268.390000] num = 0x[1], val = 0x[0]
[  268.400000] dying gasp interrupt!
Edit
Pub: 11 Jun 2021 10:26 UTC
Views: 151