Newer
Older
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
ffffff80080c0390 T idle_notifier_unregister
ffffff80080c03b0 T idle_notifier_call_chain
ffffff80080c03d8 T cpu_mitigations_off
ffffff80080c03f0 T cpu_mitigations_auto_nosmt
ffffff80080c0408 t trace_raw_output_cpuhp_enter
ffffff80080c0468 t trace_raw_output_cpuhp_multi_enter
ffffff80080c04c8 t trace_raw_output_cpuhp_exit
ffffff80080c0520 t trace_raw_output_cpuhp_latency
ffffff80080c0598 t cpuhp_should_run
ffffff80080c05b0 t cpuhp_thread_fun
ffffff80080c0718 t cpuhp_create
ffffff80080c0788 t cpuhp_kick_ap_work
ffffff80080c09f8 t cpu_hotplug_pm_callback
ffffff80080c0ab8 t bringup_cpu
ffffff80080c0c38 t takedown_cpu
ffffff80080c0d40 t take_cpu_down
ffffff80080c0e00 t show_cpuhp_states
ffffff80080c0ea0 t show_cpuhp_state
ffffff80080c0ee8 t show_cpuhp_target
ffffff80080c0f30 t write_cpuhp_target
ffffff80080c10b0 t show_cpuhp_fail
ffffff80080c10f8 t write_cpuhp_fail
ffffff80080c11f8 T release_task
ffffff80080c1688 t delayed_put_task_struct
ffffff80080c1780 T task_rcu_dereference
ffffff80080c1808 T rcuwait_wake_up
ffffff80080c1840 T is_current_pgrp_orphaned
ffffff80080c1908 T mm_update_next_owner
ffffff80080c1ae8 T do_exit
ffffff80080c24f0 T complete_and_exit
ffffff80080c2510 T __arm64_sys_exit
ffffff80080c2520 t __se_sys_exit
ffffff80080c2538 T do_group_exit
ffffff80080c25d8 T __arm64_sys_exit_group
ffffff80080c25e8 t __se_sys_exit_group
ffffff80080c25f8 T __wake_up_parent
ffffff80080c2620 T __arm64_sys_waitid
ffffff80080c2e40 T kernel_wait4
ffffff80080c3078 t do_wait
ffffff80080c32a0 T __arm64_sys_wait4
ffffff80080c3380 T __arm64_compat_sys_wait4
ffffff80080c3410 T __arm64_compat_sys_waitid
ffffff80080c3be0 W abort
ffffff80080c3be8 t kill_orphaned_pgrp
ffffff80080c3d10 t child_wait_callback
ffffff80080c3d80 t wait_consider_task
ffffff80080c45c0 t trace_event_raw_event_irq_handler_entry
ffffff80080c46c0 t perf_trace_irq_handler_entry
ffffff80080c47f0 t trace_event_raw_event_irq_handler_exit
ffffff80080c48a8 t perf_trace_irq_handler_exit
ffffff80080c4978 t trace_event_raw_event_softirq
ffffff80080c4a30 t perf_trace_softirq
ffffff80080c4af8 t trace_event_raw_event_tasklet
ffffff80080c4bb0 t perf_trace_tasklet
ffffff80080c4c78 t __bpf_trace_irq_handler_entry
ffffff80080c4d08 t __bpf_trace_irq_handler_exit
ffffff80080c4db8 t __bpf_trace_softirq
ffffff80080c4e20 t __bpf_trace_tasklet
ffffff80080c4e88 T _local_bh_enable
ffffff80080c4eb8 T __local_bh_enable_ip
ffffff80080c4f70 T do_softirq
ffffff80080c4fc0 T irq_enter
ffffff80080c5040 T irq_exit
ffffff80080c50f8 T raise_softirq_irqoff
ffffff80080c5148 T __raise_softirq_irqoff
ffffff80080c5228 T raise_softirq
ffffff80080c5280 T open_softirq
ffffff80080c5290 T __tasklet_schedule
ffffff80080c5310 T __tasklet_hi_schedule
ffffff80080c5390 T tasklet_init
ffffff80080c53a0 T tasklet_kill
ffffff80080c5428 T tasklet_hrtimer_init
ffffff80080c5478 t __hrtimer_tasklet_trampoline
ffffff80080c5520 t __tasklet_hrtimer_trampoline
ffffff80080c5560 t tasklet_action
ffffff80080c5588 t tasklet_hi_action
ffffff80080c55b0 T tasklet_kill_immediate
ffffff80080c5648 W arch_dynirq_lower_bound
ffffff80080c5650 t trace_raw_output_irq_handler_entry
ffffff80080c56b0 t trace_raw_output_irq_handler_exit
ffffff80080c5720 t trace_raw_output_softirq
ffffff80080c5798 t trace_raw_output_tasklet
ffffff80080c57f0 t tasklet_action_common
ffffff80080c5a38 t takeover_tasklets
ffffff80080c5bc8 t ksoftirqd_should_run
ffffff80080c5be0 t run_ksoftirqd
ffffff80080c5c20 T release_child_resources
ffffff80080c5c60 t __release_child_resources
ffffff80080c5cc8 T request_resource_conflict
ffffff80080c5d78 t __request_resource
ffffff80080c5df0 T request_resource
ffffff80080c5ea8 T release_resource
ffffff80080c5f28 T walk_iomem_res_desc
ffffff80080c6148 T walk_system_ram_res
ffffff80080c6290 T walk_mem_res
ffffff80080c63d8 T walk_system_ram_range
ffffff80080c64f0 W page_is_ram
ffffff80080c65e8 T region_intersects
ffffff80080c67b8 W arch_remove_reservations
ffffff80080c67c0 T allocate_resource
ffffff80080c6aa8 t simple_align_resource
ffffff80080c6ab0 T lookup_resource
ffffff80080c6b08 T insert_resource_conflict
ffffff80080c6b60 t __insert_resource
ffffff80080c6cb8 T insert_resource
ffffff80080c6d18 T insert_resource_expand_to_fit
ffffff80080c6dd8 T remove_resource
ffffff80080c6e90 T adjust_resource
ffffff80080c6f78 T resource_alignment
ffffff80080c6fb0 T __request_region
ffffff80080c7270 t alloc_resource
ffffff80080c7308 t free_resource
ffffff80080c73a8 T __release_region
ffffff80080c7518 T devm_request_resource
ffffff80080c7650 t devm_resource_release
ffffff80080c76c0 T devm_release_resource
ffffff80080c7708 t devm_resource_match
ffffff80080c7718 T __devm_request_region
ffffff80080c77c8 t devm_region_release
ffffff80080c77e8 T __devm_release_region
ffffff80080c7880 t devm_region_match
ffffff80080c78c0 T iomem_map_sanity_check
ffffff80080c7990 t r_next
ffffff80080c79c8 T iomem_is_exclusive
ffffff80080c7a98 T resource_list_create_entry
ffffff80080c7ae0 T resource_list_free
ffffff80080c7b60 t r_start
ffffff80080c7bf0 t r_stop
ffffff80080c7c10 t r_show
ffffff80080c7d30 t __find_resource
ffffff80080c7f28 T proc_dostring
ffffff80080c83a0 T proc_dointvec
ffffff80080c83d8 T proc_dointvec_oem
ffffff80080c8430 T proc_douintvec
ffffff80080c8450 t do_proc_douintvec
ffffff80080c86b8 t do_proc_douintvec_conv
ffffff80080c86f0 T proc_dointvec_minmax
ffffff80080c8760 t do_proc_dointvec_minmax_conv
ffffff80080c8800 T proc_douintvec_minmax
ffffff80080c8858 t do_proc_douintvec_minmax_conv
ffffff80080c88c8 T proc_doulongvec_minmax
ffffff80080c88e8 t do_proc_doulongvec_minmax
ffffff80080c8c10 T proc_doulongvec_ms_jiffies_minmax
ffffff80080c8c30 T proc_dointvec_jiffies
ffffff80080c8c70 t do_proc_dointvec_jiffies_conv
ffffff80080c8ce8 T proc_dointvec_userhz_jiffies
ffffff80080c8d28 t do_proc_dointvec_userhz_jiffies_conv
ffffff80080c8db0 T proc_dointvec_ms_jiffies
ffffff80080c8df0 t do_proc_dointvec_ms_jiffies_conv
ffffff80080c8e70 T proc_do_large_bitmap
ffffff80080c9258 t proc_get_long
ffffff80080c93c0 t proc_put_char
ffffff80080c9510 t proc_put_long
ffffff80080c9648 T proc_douintvec_capacity
ffffff80080c9688 t do_proc_douintvec_capacity_conv
ffffff80080c96f0 T proc_douintvec_ravg_window
ffffff80080c9730 t do_proc_douintvec_rwin
ffffff80080c9778 t proc_douintvec_minmax_schedhyst
ffffff80080c97f0 t proc_dostring_coredump
ffffff80080c9850 t proc_taint
ffffff80080c9968 t sysrq_sysctl_handler
ffffff80080c99c8 t proc_do_cad_pid
ffffff80080c9ab0 t proc_dointvec_minmax_sysadmin
ffffff80080c9b60 t __do_proc_dointvec
ffffff80080c9eb8 t do_proc_dointvec_conv
ffffff80080c9f30 t proc_dointvec_minmax_coredump
ffffff80080c9ff0 t proc_dopipe_max_size
ffffff80080ca010 t do_proc_dopipe_max_size_conv
ffffff80080ca060 T __arm64_sys_sysctl
ffffff80080ca3a0 T __arm64_compat_sys_sysctl
ffffff80080ca6d0 t do_sysctl
ffffff80080ca998 T __arm64_sys_capget
ffffff80080cac78 T __arm64_sys_capset
ffffff80080cafe8 T has_ns_capability
ffffff80080cb040 T has_capability
ffffff80080cb090 T has_ns_capability_noaudit
ffffff80080cb0e8 T has_capability_noaudit
ffffff80080cb138 T ns_capable
ffffff80080cb1a0 T ns_capable_noaudit
ffffff80080cb208 T capable
ffffff80080cb278 T file_ns_capable
ffffff80080cb2b0 T privileged_wrt_inode_uidgid
ffffff80080cb2d8 T capable_wrt_inode_uidgid
ffffff80080cb368 T ptracer_capable
ffffff80080cb3c0 t cap_validate_magic
ffffff80080cb6e8 T ptrace_access_vm
ffffff80080cb7a8 T __ptrace_link
ffffff80080cb838 T __ptrace_unlink
ffffff80080cb958 T ptrace_may_access
ffffff80080cb9b0 t __ptrace_may_access
ffffff80080cbb10 T exit_ptrace
ffffff80080cbbd8 t __ptrace_detach
ffffff80080cbcb8 T ptrace_readdata
ffffff80080cbe10 T ptrace_writedata
ffffff80080cbf88 T ptrace_request
ffffff80080ccac8 T generic_ptrace_peekdata
ffffff80080ccc50 T generic_ptrace_pokedata
ffffff80080cccb0 t ptrace_resume
ffffff80080ccd78 t ptrace_regset
ffffff80080ccef8 T __arm64_sys_ptrace
ffffff80080cd120 T compat_ptrace_request
ffffff80080cd848 T __arm64_compat_sys_ptrace
ffffff80080cda78 t ptrace_attach
ffffff80080cdca0 t ptrace_check_attach
ffffff80080cddb8 T find_user
ffffff80080cde58 T free_uid
ffffff80080cdf08 T alloc_uid
ffffff80080ce0a0 t trace_event_raw_event_signal_generate
ffffff80080ce1d0 t perf_trace_signal_generate
ffffff80080ce318 t trace_event_raw_event_signal_deliver
ffffff80080ce428 t perf_trace_signal_deliver
ffffff80080ce548 t __bpf_trace_signal_generate
ffffff80080ce640 t __bpf_trace_signal_deliver
ffffff80080ce6f0 T recalc_sigpending_and_wake
ffffff80080ce770 T recalc_sigpending
ffffff80080ce7f8 T calculate_sigpending
ffffff80080ce8a8 T next_signal
ffffff80080ce8e8 T task_set_jobctl_pending
ffffff80080ce958 T task_clear_jobctl_trapping
ffffff80080ce990 T task_clear_jobctl_pending
ffffff80080cea00 T task_join_group_stop
ffffff80080cea58 T flush_sigqueue
ffffff80080ceb00 T flush_signals
ffffff80080cec50 T flush_itimer_signals
ffffff80080cee38 T ignore_signals
ffffff80080cee70 T flush_signal_handlers
ffffff80080ceec8 T unhandled_signal
ffffff80080cef10 T dequeue_signal
ffffff80080cf150 t __dequeue_signal
ffffff80080cf2d8 T signal_wake_up_state
ffffff80080cf320 T __group_send_sig_info
ffffff80080cf338 T do_send_sig_info
ffffff80080cf440 T force_sig_info
ffffff80080cf580 T zap_other_threads
ffffff80080cf660 T __lock_task_sighand
ffffff80080cf6d0 T group_send_sig_info
ffffff80080cf788 t check_kill_permission
ffffff80080cf890 T __kill_pgrp_info
ffffff80080cf918 T kill_pid_info
ffffff80080cf998 T kill_pid_info_as_cred
ffffff80080cfaf0 t __send_signal
ffffff80080cff60 T send_sig_info
ffffff80080cff88 T send_sig
ffffff80080cffc0 T force_sig
ffffff80080cffe0 T force_sigsegv
ffffff80080d0038 T force_sig_fault
ffffff80080d00c0 T send_sig_fault
ffffff80080d0160 T force_sig_mceerr
ffffff80080d0210 T send_sig_mceerr
ffffff80080d02c8 T force_sig_bnderr
ffffff80080d0358 T force_sig_pkuerr
ffffff80080d03d8 T force_sig_ptrace_errno_trap
ffffff80080d0458 T kill_pgrp
ffffff80080d0508 T kill_pid
ffffff80080d0590 T sigqueue_alloc
ffffff80080d05c8 t __sigqueue_alloc
ffffff80080d06f0 T sigqueue_free
ffffff80080d0798 T send_sigqueue
ffffff80080d0a10 t prepare_signal
ffffff80080d0fd0 t complete_signal
ffffff80080d1230 T do_notify_parent
ffffff80080d1488 T ptrace_notify
ffffff80080d1570 T get_signal
ffffff80080d1da8 t do_notify_parent_cldstop
ffffff80080d1f38 t do_signal_stop
ffffff80080d22d8 T signal_setup_done
ffffff80080d23d0 T exit_signals
ffffff80080d2640 t task_participate_group_stop
ffffff80080d2718 T sigprocmask
ffffff80080d27b8 T __arm64_sys_restart_syscall
ffffff80080d27d8 T do_no_restart_syscall
ffffff80080d27e0 T set_current_blocked
ffffff80080d2808 T __set_current_blocked
ffffff80080d2960 T __arm64_sys_rt_sigprocmask
ffffff80080d2b10 T __arm64_compat_sys_rt_sigprocmask
ffffff80080d2c58 T __arm64_sys_rt_sigpending
ffffff80080d2d70 T __arm64_compat_sys_rt_sigpending
ffffff80080d2e88 T siginfo_layout
ffffff80080d2f48 T copy_siginfo_to_user
ffffff80080d2fd0 T copy_siginfo_to_user32
ffffff80080d31f0 T copy_siginfo_from_user32
ffffff80080d3460 T __arm64_sys_rt_sigtimedwait
ffffff80080d3668 T __arm64_compat_sys_rt_sigtimedwait
ffffff80080d3738 T __arm64_sys_kill
ffffff80080d39c0 T __arm64_sys_pidfd_send_signal
ffffff80080d3c48 T __arm64_sys_tgkill
ffffff80080d3d28 T __arm64_sys_tkill
ffffff80080d3e40 T __arm64_sys_rt_sigqueueinfo
ffffff80080d3f30 T __arm64_compat_sys_rt_sigqueueinfo
ffffff80080d3fa0 T __arm64_sys_rt_tgsigqueueinfo
ffffff80080d40e8 T __arm64_compat_sys_rt_tgsigqueueinfo
ffffff80080d41b8 T kernel_sigaction
ffffff80080d4410 W sigaction_compat_abi
ffffff80080d4418 T do_sigaction
ffffff80080d46e8 T __arm64_sys_sigaltstack
ffffff80080d4880 T restore_altstack
ffffff80080d4a08 t do_sigaltstack
ffffff80080d4b50 T __save_altstack
ffffff80080d4ec8 T __arm64_compat_sys_sigaltstack
ffffff80080d4ee8 T compat_restore_altstack
ffffff80080d4f08 t do_compat_sigaltstack
ffffff80080d50d8 T __compat_save_altstack
ffffff80080d5450 T __arm64_sys_sigpending
ffffff80080d5540 T __arm64_compat_sys_sigpending
ffffff80080d56b0 T __arm64_sys_sigprocmask
ffffff80080d5860 T __arm64_sys_rt_sigaction
ffffff80080d59f0 T __arm64_compat_sys_rt_sigaction
ffffff80080d61f8 T __arm64_compat_sys_sigaction
ffffff80080d6bb8 T __arm64_sys_pause
ffffff80080d6bf8 T __arm64_sys_rt_sigsuspend
ffffff80080d6d50 T __arm64_compat_sys_rt_sigsuspend
ffffff80080d6e38 T __arm64_sys_sigsuspend
ffffff80080d6ef0 W arch_vma_name
ffffff80080d6ef8 t trace_raw_output_signal_generate
ffffff80080d6f68 t trace_raw_output_signal_deliver
ffffff80080d6fc8 t ptrace_stop
ffffff80080d7270 t do_sigtimedwait
ffffff80080d75a0 t do_send_specific
ffffff80080d7650 t do_rt_sigqueueinfo
ffffff80080d7718 T __arm64_sys_setpriority
ffffff80080d79c0 T __arm64_sys_getpriority
ffffff80080d7be0 T __sys_setregid
ffffff80080d7ce8 T __arm64_sys_setregid
ffffff80080d7d08 T __sys_setgid
ffffff80080d7db8 T __arm64_sys_setgid
ffffff80080d7e68 T __sys_setreuid
ffffff80080d7ff8 T __arm64_sys_setreuid
ffffff80080d8018 T __sys_setuid
ffffff80080d8148 T __arm64_sys_setuid
ffffff80080d8160 T __sys_setresuid
ffffff80080d8310 T __arm64_sys_setresuid
ffffff80080d8338 T __arm64_sys_getresuid
ffffff80080d86b0 T __sys_setresgid
ffffff80080d87e0 T __arm64_sys_setresgid
ffffff80080d8808 T __arm64_sys_getresgid
ffffff80080d8b80 T __sys_setfsuid
ffffff80080d8c50 T __arm64_sys_setfsuid
ffffff80080d8c68 T __sys_setfsgid
ffffff80080d8d28 T __arm64_sys_setfsgid
ffffff80080d8d40 T __arm64_sys_getpid
ffffff80080d8d68 T __arm64_sys_gettid
ffffff80080d8d90 T __arm64_sys_getppid
ffffff80080d8dd0 T __arm64_sys_getuid
ffffff80080d8df0 T __arm64_sys_geteuid
ffffff80080d8e10 T __arm64_sys_getgid
ffffff80080d8e30 T __arm64_sys_getegid
ffffff80080d8e50 T __arm64_sys_times
ffffff80080d8f68 T __arm64_compat_sys_times
ffffff80080d9130 T __arm64_sys_setpgid
ffffff80080d92a0 T __arm64_sys_getpgid
ffffff80080d9318 T __arm64_sys_getpgrp
ffffff80080d9350 T __arm64_sys_getsid
ffffff80080d93c8 T ksys_setsid
ffffff80080d94b8 T __arm64_sys_setsid
ffffff80080d94d0 T __arm64_sys_newuname
ffffff80080d9728 T __arm64_sys_sethostname
ffffff80080d9890 T __arm64_sys_gethostname
ffffff80080d99c0 T __arm64_sys_setdomainname
ffffff80080d9b28 T __arm64_sys_getrlimit
ffffff80080d9c60 T __arm64_compat_sys_setrlimit
ffffff80080d9d68 T __arm64_compat_sys_getrlimit
ffffff80080d9ea8 T do_prlimit
ffffff80080da010 T __arm64_sys_prlimit64
ffffff80080da2b8 T __arm64_sys_setrlimit
ffffff80080da3a8 T getrusage
ffffff80080da698 T __arm64_sys_getrusage
ffffff80080da778 T __arm64_compat_sys_getrusage
ffffff80080da7f8 T __arm64_sys_umask
ffffff80080da838 T __arm64_sys_prctl
ffffff80080db5a0 T __arm64_sys_getcpu
ffffff80080db820 T __arm64_sys_sysinfo
ffffff80080db8e0 T __arm64_compat_sys_sysinfo
ffffff80080dc8b0 t set_one_prio
ffffff80080dc970 t propagate_has_child_subreaper
ffffff80080dc9b0 t do_sysinfo
ffffff80080dcab0 T usermodehelper_read_trylock
ffffff80080dcbb8 T usermodehelper_read_lock_wait
ffffff80080dccc0 T usermodehelper_read_unlock
ffffff80080dcce0 T __usermodehelper_set_disable_depth
ffffff80080dcd38 T __usermodehelper_disable
ffffff80080dce90 T call_usermodehelper_setup
ffffff80080dcf28 t call_usermodehelper_exec_work
ffffff80080dd058 T call_usermodehelper_setup_file
ffffff80080dd0e0 T fork_usermode_blob
ffffff80080dd210 t umh_pipe_setup
ffffff80080dd328 t umh_save_pid
ffffff80080dd338 T call_usermodehelper_exec
ffffff80080dd4c0 T call_usermodehelper
ffffff80080dd560 t proc_cap_handler
ffffff80080dd6e0 t call_usermodehelper_exec_async
ffffff80080dd850 t trace_event_raw_event_workqueue_work
ffffff80080dd908 t perf_trace_workqueue_work
ffffff80080dd9d0 t trace_event_raw_event_workqueue_queue_work
ffffff80080ddab8 t perf_trace_workqueue_queue_work
ffffff80080ddbb0 t trace_event_raw_event_workqueue_execute_start
ffffff80080ddc70 t perf_trace_workqueue_execute_start
ffffff80080ddd40 t __bpf_trace_workqueue_queue_work
ffffff80080dddf0 t __bpf_trace_workqueue_work
ffffff80080dde58 t __bpf_trace_workqueue_execute_start
ffffff80080ddec0 T wq_worker_waking_up
ffffff80080ddf18 T wq_worker_sleeping
ffffff80080ddfb8 T wq_worker_last_func
ffffff80080ddfd0 T queue_work_on
ffffff80080de038 t __queue_work
ffffff80080de698 T delayed_work_timer_fn
ffffff80080de6c0 T queue_delayed_work_on
ffffff80080de7b8 T mod_delayed_work_on
ffffff80080de8f0 t try_to_grab_pending
ffffff80080dea80 T queue_rcu_work
ffffff80080dead8 t rcu_work_rcufn
ffffff80080deb00 T flush_workqueue
ffffff80080df038 t flush_workqueue_prep_pwqs
ffffff80080df208 t check_flush_dependency
ffffff80080df328 T drain_workqueue
ffffff80080df488 T flush_work
ffffff80080df4a8 t __flush_work
ffffff80080df740 T cancel_work_sync
ffffff80080df760 t __cancel_work_timer
ffffff80080df8f8 T flush_delayed_work
ffffff80080df948 T flush_rcu_work
ffffff80080df998 T cancel_delayed_work
ffffff80080dfa50 T cancel_delayed_work_sync
ffffff80080dfa70 T schedule_on_each_cpu
ffffff80080dfbf0 T execute_in_process_context
ffffff80080dfc88 T free_workqueue_attrs
ffffff80080dfca0 T alloc_workqueue_attrs
ffffff80080dfce8 T apply_workqueue_attrs
ffffff80080dfd48 t apply_workqueue_attrs_locked
ffffff80080dff00 T __alloc_workqueue_key
ffffff80080e03c8 t wq_clamp_max_active
ffffff80080e0450 t init_rescuer
ffffff80080e0538 T workqueue_sysfs_register
ffffff80080e0680 t pwq_adjust_max_active
ffffff80080e0750 T destroy_workqueue
ffffff80080e0a60 T show_workqueue_state
ffffff80080e10a8 t rcu_free_wq
ffffff80080e10f8 T workqueue_set_max_active
ffffff80080e1190 T current_work
ffffff80080e11d8 T current_is_workqueue_rescuer
ffffff80080e1228 T workqueue_congested
ffffff80080e12b8 T work_busy
ffffff80080e13a0 T set_worker_desc
ffffff80080e1470 T print_worker_info
ffffff80080e15a8 T wq_worker_comm
ffffff80080e1670 T workqueue_prepare_cpu
ffffff80080e1700 t create_worker
ffffff80080e1940 T workqueue_online_cpu
ffffff80080e1b80 T workqueue_offline_cpu
ffffff80080e1ce8 T work_on_cpu
ffffff80080e1db8 t work_for_cpu_fn
ffffff80080e1de0 T work_on_cpu_safe
ffffff80080e1ef8 T freeze_workqueues_begin
ffffff80080e1fb8 T freeze_workqueues_busy
ffffff80080e20d0 T thaw_workqueues
ffffff80080e2180 T workqueue_set_unbound_cpumask
ffffff80080e2568 t wq_device_release
ffffff80080e2580 t init_worker_pool
ffffff80080e2690 T dump_workqueue
ffffff80080e2860 t trace_raw_output_workqueue_queue_work
ffffff80080e28c0 t trace_raw_output_workqueue_work
ffffff80080e2918 t trace_raw_output_workqueue_execute_start
ffffff80080e2970 t pwq_activate_delayed_work
ffffff80080e2af0 t pwq_dec_nr_in_flight
ffffff80080e2c18 t wq_barrier_func
ffffff80080e2c30 t cwt_wakefn
ffffff80080e2c60 t apply_wqattrs_prepare
ffffff80080e3158 t apply_wqattrs_commit
ffffff80080e3280 t put_unbound_pool
ffffff80080e3490 t destroy_worker
ffffff80080e3550 t rcu_free_pool
ffffff80080e3590 t pwq_unbound_release_workfn
ffffff80080e3660 t rcu_free_pwq
ffffff80080e3688 t rescuer_thread
ffffff80080e3b38 t process_one_work
ffffff80080e3f78 t worker_thread
ffffff80080e4420 t worker_enter_idle
ffffff80080e4540 t wq_unbound_cpumask_show
ffffff80080e45a0 t wq_unbound_cpumask_store
ffffff80080e4640 t per_cpu_show
ffffff80080e4680 t max_active_show
ffffff80080e46b0 t max_active_store
ffffff80080e47b0 t wq_pool_ids_show
ffffff80080e4860 t wq_nice_show
ffffff80080e48c0 t wq_nice_store
ffffff80080e49c8 t wq_cpumask_show
ffffff80080e4a30 t wq_cpumask_store
ffffff80080e4b48 t wq_numa_show
ffffff80080e4bb0 t wq_numa_store
ffffff80080e4ce8 t idle_worker_timeout
ffffff80080e4db8 t pool_mayday_timeout
ffffff80080e4ed8 T put_pid
ffffff80080e4f30 T free_pid
ffffff80080e5040 t delayed_put_pid
ffffff80080e5098 T alloc_pid
ffffff80080e5310 T disable_pid_allocation
ffffff80080e5350 T find_pid_ns
ffffff80080e5370 T find_vpid
ffffff80080e53a8 T task_active_pid_ns
ffffff80080e53c8 T attach_pid
ffffff80080e5418 T detach_pid
ffffff80080e54a0 T change_pid
ffffff80080e5588 T transfer_pid
ffffff80080e55e0 T pid_task
ffffff80080e5608 T find_task_by_pid_ns
ffffff80080e5648 T find_task_by_vpid
ffffff80080e56a0 T find_get_task_by_vpid
ffffff80080e5718 T get_task_pid
ffffff80080e5778 T get_pid_task
ffffff80080e57d8 T find_get_pid
ffffff80080e5838 T pid_nr_ns
ffffff80080e5878 T pid_vnr
ffffff80080e58d0 T __task_pid_nr_ns
ffffff80080e5990 T find_ge_pid
ffffff80080e59e0 T __arm64_sys_pidfd_open
ffffff80080e5b40 T task_work_add
ffffff80080e5bd0 T task_work_cancel
ffffff80080e5c70 T task_work_run
ffffff80080e5d18 T search_exception_tables
ffffff80080e5d70 T init_kernel_text
ffffff80080e5d98 T core_kernel_text
ffffff80080e5df0 T core_kernel_data
ffffff80080e5e18 T __kernel_text_address
ffffff80080e5ef0 T kernel_text_address
ffffff80080e5fa0 T func_ptr_is_kernel_text
ffffff80080e6010 T parameqn
ffffff80080e6060 T parameq
ffffff80080e60d8 T parse_args
ffffff80080e6400 T param_set_byte
ffffff80080e6420 T param_get_byte
ffffff80080e6448 T param_set_short
ffffff80080e6468 T param_get_short
ffffff80080e6490 T param_set_ushort
ffffff80080e64b0 T param_get_ushort
ffffff80080e64d8 T param_set_int
ffffff80080e64f8 T param_get_int
ffffff80080e6520 T param_set_uint
ffffff80080e6540 T param_get_uint
ffffff80080e6568 T param_set_long
ffffff80080e6588 T param_get_long
ffffff80080e65b0 T param_set_ulong
ffffff80080e65d0 T param_get_ulong
ffffff80080e65f8 T param_set_ullong
ffffff80080e6618 T param_get_ullong
ffffff80080e6640 T param_set_charp
ffffff80080e67c0 T param_get_charp
ffffff80080e67e8 T param_free_charp
ffffff80080e6880 T param_set_bool
ffffff80080e68a8 T param_get_bool
ffffff80080e68e0 T param_set_bool_enable_only
ffffff80080e6980 T param_set_invbool
ffffff80080e69f8 T param_get_invbool
ffffff80080e6a30 T param_set_bint
ffffff80080e6aa0 t param_array_set
ffffff80080e6c18 t param_array_get
ffffff80080e6d40 t param_array_free
ffffff80080e6dc0 T param_set_copystring
ffffff80080e6e30 T param_get_string
ffffff80080e6e58 T kernel_param_lock
ffffff80080e6e80 T kernel_param_unlock
ffffff80080e6ea8 T module_param_sysfs_setup
ffffff80080e6f78 t add_sysfs_param
ffffff80080e7158 T module_param_sysfs_remove
ffffff80080e71a8 T destroy_params
ffffff80080e7208 T __modver_version_show
ffffff80080e7238 t module_kobj_release
ffffff80080e7250 t param_attr_show
ffffff80080e72e0 t param_attr_store
ffffff80080e73b0 t module_attr_show
ffffff80080e73e8 t module_attr_store
ffffff80080e7420 t uevent_filter
ffffff80080e7438 T free_kthread_struct
ffffff80080e7498 T kthread_should_stop
ffffff80080e74e0 T kthread_should_park
ffffff80080e7528 T kthread_freezable_should_stop
ffffff80080e75a8 T kthread_data
ffffff80080e75e8 T kthread_probe_data
ffffff80080e7668 T kthread_parkme
ffffff80080e76a8 t __kthread_parkme
ffffff80080e7738 T tsk_fork_get_node
ffffff80080e7740 T kthread_create_on_node
ffffff80080e77c8 t __kthread_create_on_node
ffffff80080e7988 T kthread_bind_mask
ffffff80080e7a08 T kthread_bind
ffffff80080e7aa0 T kthread_create_on_cpu
ffffff80080e7bb0 T kthread_unpark
ffffff80080e7c98 T kthread_park
ffffff80080e7d50 T kthread_stop
ffffff80080e7f18 T kthreadd
ffffff80080e80b8 T __kthread_init_worker
ffffff80080e8100 T kthread_worker_fn
ffffff80080e8288 T kthread_create_worker
ffffff80080e8338 t __kthread_create_worker
ffffff80080e84c8 T kthread_create_worker_on_cpu
ffffff80080e8558 T kthread_queue_work
ffffff80080e8638 T kthread_delayed_work_timer_fn
ffffff80080e8740 T __kthread_queue_delayed_work
ffffff80080e8878 T kthread_queue_delayed_work
ffffff80080e8900 T kthread_flush_work
ffffff80080e8ac0 t kthread_flush_work_fn
ffffff80080e8ad8 T kthread_mod_delayed_work
ffffff80080e8be0 T kthread_cancel_work_sync
ffffff80080e8c00 t __kthread_cancel_work_sync
ffffff80080e8d38 T kthread_cancel_delayed_work_sync
ffffff80080e8d58 T kthread_flush_worker
ffffff80080e8df0 T kthread_destroy_worker
ffffff80080e8ee0 T kthread_associate_blkcg
ffffff80080e90b0 T kthread_blkcg
ffffff80080e90d8 t kthread
ffffff80080e9200 T sys_ni_syscall
ffffff80080e9300 W __arm64_sys_acct
ffffff80080e9348 W __arm64_sys_kexec_load
ffffff80080e9350 W __arm64_compat_sys_kexec_load
ffffff80080e93d0 W __arm64_sys_mq_open
ffffff80080e93d8 W __arm64_compat_sys_mq_open
ffffff80080e93e0 W __arm64_sys_mq_unlink
ffffff80080e93e8 W __arm64_sys_mq_timedsend
ffffff80080e93f0 W __arm64_compat_sys_mq_timedsend
ffffff80080e93f8 W __arm64_sys_mq_timedreceive
ffffff80080e9400 W __arm64_compat_sys_mq_timedreceive
ffffff80080e9408 W __arm64_sys_mq_notify
ffffff80080e9410 W __arm64_compat_sys_mq_notify
ffffff80080e9418 W __arm64_sys_mq_getsetattr
ffffff80080e9420 W __arm64_compat_sys_mq_getsetattr
ffffff80080e9428 W __arm64_sys_msgget
ffffff80080e9430 W __arm64_sys_msgctl
ffffff80080e9438 W __arm64_compat_sys_msgctl
ffffff80080e9440 W __arm64_sys_msgrcv
ffffff80080e9448 W __arm64_compat_sys_msgrcv
ffffff80080e9450 W __arm64_sys_msgsnd
ffffff80080e9458 W __arm64_compat_sys_msgsnd
ffffff80080e9460 W __arm64_sys_semget
ffffff80080e9468 W __arm64_sys_semctl
ffffff80080e9470 W __arm64_compat_sys_semctl
ffffff80080e9478 W __arm64_sys_semtimedop
ffffff80080e9480 W __arm64_compat_sys_semtimedop
ffffff80080e9488 W __arm64_sys_semop
ffffff80080e9490 W __arm64_sys_shmget
ffffff80080e9498 W __arm64_sys_shmctl
ffffff80080e94a0 W __arm64_compat_sys_shmctl
ffffff80080e94a8 W __arm64_sys_shmat
ffffff80080e94b0 W __arm64_compat_sys_shmat
ffffff80080e94b8 W __arm64_sys_shmdt
ffffff80080e95e8 W __arm64_sys_mbind
ffffff80080e95f0 W __arm64_compat_sys_mbind
ffffff80080e95f8 W __arm64_sys_get_mempolicy
ffffff80080e9600 W __arm64_compat_sys_get_mempolicy
ffffff80080e9608 W __arm64_sys_set_mempolicy
ffffff80080e9610 W __arm64_compat_sys_set_mempolicy
ffffff80080e9618 W __arm64_sys_migrate_pages
ffffff80080e9620 W __arm64_compat_sys_migrate_pages
ffffff80080e9628 W __arm64_sys_move_pages
ffffff80080e9630 W __arm64_compat_sys_move_pages
ffffff80080e9658 W __arm64_sys_fanotify_init
ffffff80080e9660 W __arm64_sys_fanotify_mark
ffffff80080e9668 W __arm64_sys_name_to_handle_at
ffffff80080e9670 W __arm64_sys_open_by_handle_at
ffffff80080e9678 W __arm64_compat_sys_open_by_handle_at
ffffff80080e96b0 W __arm64_sys_kcmp
ffffff80080e96e0 W __arm64_sys_userfaultfd
ffffff80080e9700 W __arm64_sys_pkey_mprotect
ffffff80080e9708 W __arm64_sys_pkey_alloc
ffffff80080e9710 W __arm64_sys_pkey_free
ffffff80080e9728 W __arm64_sys_pciconfig_iobase
ffffff80080e9730 W __arm64_sys_socketcall
ffffff80080e9748 W __arm64_compat_sys_fanotify_mark
ffffff80080e9750 W __arm64_sys_vm86old
ffffff80080e9758 W __arm64_sys_modify_ldt
ffffff80080e9760 W __arm64_compat_sys_quotactl32
ffffff80080e9768 W __arm64_sys_vm86
ffffff80080e9770 W __arm64_sys_kexec_file_load
ffffff80080e9778 W __arm64_sys_s390_pci_mmio_read
ffffff80080e9780 W __arm64_sys_s390_pci_mmio_write
ffffff80080e9788 W __arm64_compat_sys_s390_ipc
ffffff80080e9790 W __arm64_sys_rtas
ffffff80080e9798 W __arm64_sys_spu_run
ffffff80080e97a0 W __arm64_sys_spu_create
ffffff80080e97a8 W __arm64_sys_subpage_prot
ffffff80080e97d8 W __arm64_sys_fadvise64
ffffff80080e9808 W __arm64_sys_uselib
ffffff80080e9810 W __arm64_sys_sgetmask
ffffff80080e9818 W __arm64_sys_ssetmask
ffffff80080e9828 W __arm64_sys_ipc
ffffff80080e9830 W __arm64_compat_sys_ipc
ffffff80080e98d8 T copy_namespaces
ffffff80080e9990 t create_new_namespaces
ffffff80080e9b28 T free_nsproxy
ffffff80080e9bb0 T unshare_nsproxy_namespaces
ffffff80080e9c40 T switch_task_namespaces
ffffff80080e9ca8 T exit_task_namespaces
ffffff80080e9d10 T __arm64_sys_setns
ffffff80080e9e28 T atomic_notifier_chain_register
ffffff80080e9eb8 T atomic_notifier_chain_unregister
ffffff80080e9f38 T __atomic_notifier_call_chain
ffffff80080ea008 T atomic_notifier_call_chain
ffffff80080ea090 T blocking_notifier_chain_register
ffffff80080ea170 T blocking_notifier_chain_cond_register
ffffff80080ea1e0 T blocking_notifier_chain_unregister
ffffff80080ea2a8 T __blocking_notifier_call_chain
ffffff80080ea390 T blocking_notifier_call_chain
ffffff80080ea428 T raw_notifier_chain_register
ffffff80080ea488 T raw_notifier_chain_unregister
ffffff80080ea4d0 T __raw_notifier_call_chain
ffffff80080ea588 T raw_notifier_call_chain
ffffff80080ea5f0 T srcu_notifier_chain_register
ffffff80080ea6d8 T srcu_notifier_chain_unregister
ffffff80080ea7b8 T __srcu_notifier_call_chain
ffffff80080ea8a0 T srcu_notifier_call_chain
ffffff80080ea940 T srcu_init_notifier_head
ffffff80080ea988 T notify_die
ffffff80080eaa40 T register_die_notifier
ffffff80080eaae8 T unregister_die_notifier
ffffff80080eab70 t fscaps_show
ffffff80080eaba0 t uevent_seqnum_show
ffffff80080eabd0 t uevent_helper_show
ffffff80080eac00 t uevent_helper_store
ffffff80080eac68 t profiling_show
ffffff80080eac98 t profiling_store
ffffff80080eacf0 t rcu_expedited_show
ffffff80080ead20 t rcu_expedited_store
ffffff80080ead60 t rcu_normal_show
ffffff80080ead90 t rcu_normal_store
ffffff80080eadd0 t notes_read
ffffff80080eae08 T __put_cred
ffffff80080eae68 t put_cred_rcu
ffffff80080eaf08 T exit_creds
ffffff80080eb010 T get_task_cred
ffffff80080eb078 T cred_alloc_blank
ffffff80080eb150 T abort_creds
ffffff80080eb1f0 T prepare_creds
ffffff80080eb340 T prepare_exec_creds
ffffff80080eb380 T copy_creds
ffffff80080eb4f0 T commit_creds
ffffff80080eb760 T override_creds
ffffff80080eb790 T revert_creds
ffffff80080eb828 T prepare_kernel_cred
ffffff80080eba80 T set_security_override
ffffff80080eba98 T set_security_override_from_ctx
ffffff80080ebb10 T set_create_files_as
ffffff80080ebb58 T emergency_restart
ffffff80080ebb78 T kernel_restart_prepare
ffffff80080ebbb8 T register_reboot_notifier
ffffff80080ebbd8 T unregister_reboot_notifier
ffffff80080ebbf8 T devm_register_reboot_notifier
ffffff80080ebc88 t devm_unregister_reboot_notifier
ffffff80080ebcc8 T register_restart_handler
ffffff80080ebce8 T unregister_restart_handler
ffffff80080ebd08 T do_kernel_restart
ffffff80080ebd30 T migrate_to_reboot_cpu
ffffff80080ebdc0 T kernel_restart
ffffff80080ebef0 T kernel_halt
ffffff80080ebfc8 T kernel_power_off
ffffff80080ec0b0 T __arm64_sys_reboot
ffffff80080ec2b0 T ctrl_alt_del
ffffff80080ec300 t deferred_cad
ffffff80080ec318 T orderly_poweroff
ffffff80080ec350 T orderly_reboot
ffffff80080ec378 t poweroff_work_func
ffffff80080ec420 t reboot_work_func
ffffff80080ec4a0 T async_schedule
ffffff80080ec4c0 t __async_schedule
ffffff80080ec678 T async_schedule_domain
ffffff80080ec690 T async_synchronize_full
ffffff80080ec6b0 T async_synchronize_full_domain
ffffff80080ec6d0 T async_unregister_domain
ffffff80080ec738 T async_synchronize_cookie_domain
ffffff80080ec968 T async_synchronize_cookie
ffffff80080ec988 T current_is_async
ffffff80080ec9e0 t async_run_entry_fn
ffffff80080ecae0 T add_range
ffffff80080ecb08 T add_range_with_merge
ffffff80080ecbf0 T subtract_range
ffffff80080ecd18 T clean_sort_range
ffffff80080ece20 t cmp_range
ffffff80080ece38 T sort_range
ffffff80080ece60 T idle_thread_get
ffffff80080eceb0 T smpboot_create_threads
ffffff80080ecf30 t __smpboot_create_thread
ffffff80080ed048 T smpboot_unpark_threads
ffffff80080ed0d8 T smpboot_park_threads
ffffff80080ed168 T smpboot_register_percpu_thread
ffffff80080ed280 t smpboot_destroy_threads
ffffff80080ed348 T smpboot_unregister_percpu_thread
ffffff80080ed3b8 T cpu_report_state
ffffff80080ed3d8 T cpu_check_up_prepare
ffffff80080ed430 T cpu_set_state_online
ffffff80080ed468 T cpu_wait_death
ffffff80080ed578 T cpu_report_death
ffffff80080ed5d8 t smpboot_thread_fn
ffffff80080ed848 T setup_userns_sysctls
ffffff80080ed930 t set_is_seen
ffffff80080ed948 T retire_userns_sysctls
ffffff80080ed980 T inc_ucount
ffffff80080edbd8 T dec_ucount
ffffff80080edca8 t set_lookup
ffffff80080edcb8 t set_permissions
ffffff80080edd08 T __request_module
ffffff80080ee170 t free_modprobe_argv
ffffff80080ee1a0 T groups_alloc
ffffff80080ee200 T groups_free
ffffff80080ee218 T groups_sort
ffffff80080ee248 t gid_cmp
ffffff80080ee268 T groups_search
ffffff80080ee2b8 T set_groups
ffffff80080ee310 T set_current_groups
ffffff80080ee378 T __arm64_sys_getgroups
ffffff80080ee510 T may_setgroups
ffffff80080ee538 T __arm64_sys_setgroups
ffffff80080ee7a8 T in_group_p
ffffff80080ee818 T in_egroup_p
ffffff80080ee888 T __window_print
ffffff80080ee910 t trace_event_raw_event_sched_kthread_stop
ffffff80080ee9e0 t perf_trace_sched_kthread_stop
ffffff80080eeac8 t trace_event_raw_event_sched_kthread_stop_ret
ffffff80080eeb80 t perf_trace_sched_kthread_stop_ret
ffffff80080eec48 t trace_event_raw_event_sched_enq_deq_task
ffffff80080eed98 t perf_trace_sched_enq_deq_task
ffffff80080eef08 t trace_event_raw_event_sched_wakeup_template
ffffff80080eefe8 t perf_trace_sched_wakeup_template
ffffff80080ef0d8 t trace_event_raw_event_sched_switch
ffffff80080ef260 t perf_trace_sched_switch
ffffff80080ef400 t trace_event_raw_event_sched_migrate_task
ffffff80080ef4e0 t perf_trace_sched_migrate_task
ffffff80080ef5e0 t trace_event_raw_event_sched_load_balance
ffffff80080ef6f8 t perf_trace_sched_load_balance
ffffff80080ef820 t trace_event_raw_event_sched_load_balance_nohz_kick
ffffff80080ef938 t perf_trace_sched_load_balance_nohz_kick
ffffff80080efa70 t trace_event_raw_event_sched_load_balance_sg_stats
ffffff80080efb80 t perf_trace_sched_load_balance_sg_stats
ffffff80080efca0 t trace_event_raw_event_sched_load_balance_stats
ffffff80080efda8 t perf_trace_sched_load_balance_stats
ffffff80080efec0 t trace_event_raw_event_sched_process_template
ffffff80080eff98 t perf_trace_sched_process_template
ffffff80080f0088 t trace_event_raw_event_sched_process_wait
ffffff80080f0170 t perf_trace_sched_process_wait
ffffff80080f0270 t trace_event_raw_event_sched_process_fork
ffffff80080f0358 t perf_trace_sched_process_fork
ffffff80080f0460 t trace_event_raw_event_sched_process_exec
ffffff80080f0578 t perf_trace_sched_process_exec
ffffff80080f06b8 t trace_event_raw_event_sched_stat_template
ffffff80080f0790 t perf_trace_sched_stat_template
ffffff80080f0880 t trace_event_raw_event_sched_blocked_reason
ffffff80080f0958 t perf_trace_sched_blocked_reason
ffffff80080f0a48 t trace_event_raw_event_sched_stat_runtime
ffffff80080f0b28 t perf_trace_sched_stat_runtime
ffffff80080f0c28 t trace_event_raw_event_sched_pi_setprio
ffffff80080f0d18 t perf_trace_sched_pi_setprio
ffffff80080f0e28 t trace_event_raw_event_sched_process_hang
ffffff80080f0ef8 t perf_trace_sched_process_hang
ffffff80080f0fe0 t trace_event_raw_event_sched_move_task_template
ffffff80080f10b8 t perf_trace_sched_move_task_template
ffffff80080f11a0 t trace_event_raw_event_sched_swap_numa
ffffff80080f1290 t perf_trace_sched_swap_numa
ffffff80080f1398 t trace_event_raw_event_sched_wake_idle_without_ipi
ffffff80080f1450 t perf_trace_sched_wake_idle_without_ipi
ffffff80080f1518 t trace_event_raw_event_sched_load_cfs_rq
ffffff80080f16e0 t perf_trace_sched_load_cfs_rq
ffffff80080f18d0 t trace_event_raw_event_sched_load_rt_rq
ffffff80080f1990 t perf_trace_sched_load_rt_rq
ffffff80080f1a60 t trace_event_raw_event_sched_load_avg_cpu
ffffff80080f1b70 t perf_trace_sched_load_avg_cpu
ffffff80080f1c98 t trace_event_raw_event_sched_load_se
ffffff80080f1eb8 t perf_trace_sched_load_se
ffffff80080f20f8 t trace_event_raw_event_sched_load_tg
ffffff80080f2288 t perf_trace_sched_load_tg
ffffff80080f2440 t trace_event_raw_event_sched_util_est_task
ffffff80080f2530 t perf_trace_sched_util_est_task
ffffff80080f2640 t trace_event_raw_event_sched_util_est_cpu
ffffff80080f2708 t perf_trace_sched_util_est_cpu
ffffff80080f27e8 t trace_event_raw_event_sched_cpu_util
ffffff80080f2a48 t perf_trace_sched_cpu_util
ffffff80080f2cc0 t trace_event_raw_event_sched_compute_energy
ffffff80080f2dd8 t perf_trace_sched_compute_energy
ffffff80080f2f08 t trace_event_raw_event_sched_task_util
ffffff80080f30b0 t perf_trace_sched_task_util
ffffff80080f3278 t trace_event_raw_event_sched_find_best_target
ffffff80080f3398 t perf_trace_sched_find_best_target
ffffff80080f34e0 t trace_event_raw_event_sched_boost_cpu
ffffff80080f35a8 t perf_trace_sched_boost_cpu
ffffff80080f3680 t trace_event_raw_event_core_ctl_eval_need
ffffff80080f3750 t perf_trace_core_ctl_eval_need
ffffff80080f3838 t trace_event_raw_event_core_ctl_set_busy
ffffff80080f3950 t perf_trace_core_ctl_set_busy
ffffff80080f3a80 t trace_event_raw_event_core_ctl_set_boost
ffffff80080f3b38 t perf_trace_core_ctl_set_boost
ffffff80080f3c08 t trace_event_raw_event_core_ctl_update_nr_need
ffffff80080f3ce8 t perf_trace_core_ctl_update_nr_need
ffffff80080f3de0 t trace_event_raw_event_core_ctl_notif_data
ffffff80080f3ed0 t perf_trace_core_ctl_notif_data
ffffff80080f3fd8 t trace_event_raw_event_sched_tune_tasks_update
ffffff80080f40e0 t perf_trace_sched_tune_tasks_update
ffffff80080f4200 t trace_event_raw_event_sched_tune_boostgroup_update
ffffff80080f42c8 t perf_trace_sched_tune_boostgroup_update
ffffff80080f43a0 t trace_event_raw_event_sched_boost_task
ffffff80080f4480 t perf_trace_sched_boost_task
ffffff80080f4580 t trace_event_raw_event_sched_overutilized
ffffff80080f4660 t perf_trace_sched_overutilized
ffffff80080f4760 t trace_event_raw_event_sched_get_nr_running_avg
ffffff80080f4840 t perf_trace_sched_get_nr_running_avg
ffffff80080f4930 t trace_event_raw_event_sched_isolate
ffffff80080f4a28 t perf_trace_sched_isolate
ffffff80080f4b40 t trace_event_raw_event_sched_update_pred_demand
ffffff80080f4c40 t perf_trace_sched_update_pred_demand
ffffff80080f4d58 t trace_event_raw_event_sched_update_history
ffffff80080f4e80 t perf_trace_sched_update_history
ffffff80080f4fc8 t trace_event_raw_event_sched_get_task_cpu_cycles
ffffff80080f5120 t perf_trace_sched_get_task_cpu_cycles
ffffff80080f5290 t trace_event_raw_event_sched_update_task_ravg
ffffff80080f5500 t perf_trace_sched_update_task_ravg
ffffff80080f5798 t trace_event_raw_event_sched_update_task_ravg_mini
ffffff80080f5908 t perf_trace_sched_update_task_ravg_mini
ffffff80080f5a98 t trace_event_raw_event_sched_set_preferred_cluster
ffffff80080f5b60 t perf_trace_sched_set_preferred_cluster
ffffff80080f5c40 t trace_event_raw_event_sched_migration_update_sum
ffffff80080f5dd8 t perf_trace_sched_migration_update_sum
ffffff80080f5f80 t trace_event_raw_event_sched_set_boost
ffffff80080f6038 t perf_trace_sched_set_boost
ffffff80080f6100 t trace_event_raw_event_sched_load_balance_skip_tasks
ffffff80080f6228 t perf_trace_sched_load_balance_skip_tasks
ffffff80080f6360 t trace_event_raw_event_sched_load_to_gov
ffffff80080f64a0 t perf_trace_sched_load_to_gov
ffffff80080f65f0 t __bpf_trace_sched_kthread_stop
ffffff80080f6658 t __bpf_trace_sched_kthread_stop_ret
ffffff80080f66c0 t __bpf_trace_sched_enq_deq_task
ffffff80080f6770 t __bpf_trace_sched_wakeup_template
ffffff80080f67d8 t __bpf_trace_sched_switch
ffffff80080f6890 t __bpf_trace_sched_migrate_task
ffffff80080f6920 t __bpf_trace_sched_load_balance
ffffff80080f6b10 t __bpf_trace_sched_load_balance_nohz_kick
ffffff80080f6ba0 t __bpf_trace_sched_load_balance_sg_stats
ffffff80080f6d70 t __bpf_trace_sched_load_balance_stats
ffffff80080f6f18 t __bpf_trace_sched_process_template
ffffff80080f6f80 t __bpf_trace_sched_process_wait
ffffff80080f6fe8 t __bpf_trace_sched_process_fork
ffffff80080f7078 t __bpf_trace_sched_process_exec
ffffff80080f7128 t __bpf_trace_sched_stat_template
ffffff80080f71b8 t __bpf_trace_sched_blocked_reason
ffffff80080f7220 t __bpf_trace_sched_stat_runtime
ffffff80080f72d0 t __bpf_trace_sched_pi_setprio
ffffff80080f7360 t __bpf_trace_sched_process_hang
ffffff80080f73c8 t __bpf_trace_sched_move_task_template
ffffff80080f7478 t __bpf_trace_sched_swap_numa
ffffff80080f7550 t __bpf_trace_sched_wake_idle_without_ipi
ffffff80080f75b8 t __bpf_trace_sched_load_cfs_rq
ffffff80080f7620 t __bpf_trace_sched_load_rt_rq
ffffff80080f7688 t __bpf_trace_sched_load_avg_cpu
ffffff80080f7718 t __bpf_trace_sched_load_se
ffffff80080f7780 t __bpf_trace_sched_load_tg
ffffff80080f77e8 t __bpf_trace_sched_util_est_task
ffffff80080f7878 t __bpf_trace_sched_util_est_cpu
ffffff80080f7908 t __bpf_trace_sched_cpu_util
ffffff80080f7970 t __bpf_trace_sched_compute_energy
ffffff80080f7a90 t __bpf_trace_sched_task_util
ffffff80080f7c90 t __bpf_trace_sched_find_best_target
ffffff80080f7e18 t __bpf_trace_sched_boost_cpu
ffffff80080f7ec8 t __bpf_trace_core_ctl_eval_need
ffffff80080f7fa0 t __bpf_trace_core_ctl_set_busy
ffffff80080f8078 t __bpf_trace_core_ctl_set_boost
ffffff80080f8108 t __bpf_trace_core_ctl_update_nr_need
ffffff80080f8228 t __bpf_trace_core_ctl_notif_data
ffffff80080f8300 t __bpf_trace_sched_tune_tasks_update
ffffff80080f8440 t __bpf_trace_sched_tune_boostgroup_update
ffffff80080f84f0 t __bpf_trace_sched_boost_task
ffffff80080f85a0 t __bpf_trace_sched_overutilized
ffffff80080f8650 t __bpf_trace_sched_get_nr_running_avg
ffffff80080f8748 t __bpf_trace_sched_isolate
ffffff80080f8820 t __bpf_trace_sched_update_pred_demand
ffffff80080f88f8 t __bpf_trace_sched_update_history
ffffff80080f89f0 t __bpf_trace_sched_get_task_cpu_cycles
ffffff80080f8ae8 t __bpf_trace_sched_update_task_ravg
ffffff80080f8c08 t __bpf_trace_sched_update_task_ravg_mini
ffffff80080f8d28 t __bpf_trace_sched_set_preferred_cluster
ffffff80080f8db8 t __bpf_trace_sched_migration_update_sum
ffffff80080f8e68 t __bpf_trace_sched_set_boost
ffffff80080f8ed0 t __bpf_trace_sched_load_balance_skip_tasks
ffffff80080f9010 t __bpf_trace_sched_load_to_gov
ffffff80080f9180 T __task_rq_lock
ffffff80080f9220 T task_rq_lock
ffffff80080f92e8 T update_rq_clock
ffffff80080f9408 T hrtick_start
ffffff80080f9490 T wake_q_add
ffffff80080f94f8 T wake_up_q
ffffff80080f9588 t try_to_wake_up
ffffff80080f9c50 T resched_curr
ffffff80080f9c98 T resched_cpu
ffffff80080f9d60 T get_nohz_timer_target
ffffff80080f9f58 T idle_cpu
ffffff80080f9fa8 T wake_up_nohz_cpu
ffffff80080fa028 T walk_tg_tree_from
ffffff80080fa0d8 T tg_nop
ffffff80080fa0e0 T uclamp_task
ffffff80080fa200 T uclamp_boosted
ffffff80080fa220 T uclamp_latency_sensitive
ffffff80080fa240 T activate_task
ffffff80080fa448 T deactivate_task
ffffff80080fa6a0 T restore_user_nice_safe
ffffff80080fa7f8 T task_curr
ffffff80080fa828 T check_preempt_curr
ffffff80080fa9b0 T set_cpus_allowed_common
ffffff80080fa9e0 T do_set_cpus_allowed
ffffff80080faca0 T set_cpus_allowed_ptr