Newer
Older
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
ffffff80080facb8 t __set_cpus_allowed_ptr
ffffff80080faf98 T set_task_cpu
ffffff80080fb1e0 T migrate_swap
ffffff80080fb3c8 t migrate_swap_stop
ffffff80080fb578 T wait_task_inactive
ffffff80080fb828 T kick_process
ffffff80080fb8f8 T sched_set_stop_task
ffffff80080fb9d8 T sched_setscheduler_nocheck
ffffff80080fba68 T sched_ttwu_pending
ffffff80080fbb58 t ttwu_do_activate
ffffff80080fbda8 T scheduler_ipi
ffffff80080fbef8 T wake_up_if_idle
ffffff80080fbf80 T cpus_share_cache
ffffff80080fbfb0 T wake_up_process
ffffff80080fbfd0 T wake_up_state
ffffff80080fbff0 T force_schedstat_enabled
ffffff80080fc080 T sysctl_schedstats
ffffff80080fc210 T sched_fork
ffffff80080fc4d0 T to_ratio
ffffff80080fc4f0 T wake_up_new_task
ffffff80080fc848 T schedule_tail
ffffff80080fca38 t finish_task_switch
ffffff80080fcbf8 T nr_running
ffffff80080fcc90 T single_task_running
ffffff80080fccb0 T nr_context_switches
ffffff80080fcd48 T nr_iowait
ffffff80080fcde0 T nr_iowait_cpu
ffffff80080fce00 T get_iowait_load
ffffff80080fce28 T sched_exec
ffffff80080fcf40 t migration_cpu_stop
ffffff80080fd0b8 T task_sched_runtime
ffffff80080fd1f0 T scheduler_tick
ffffff80080fd3d0 T do_task_dead
ffffff80080fd418 T default_wake_function
ffffff80080fd438 T rt_mutex_setprio
ffffff80080fdb58 T set_user_nice_no_cache
ffffff80080fdff0 T set_user_nice
ffffff80080fe498 T can_nice
ffffff80080fe4d8 T __arm64_sys_nice
ffffff80080fe590 T task_prio
ffffff80080fe5a0 T available_idle_cpu
ffffff80080fe5f0 T idle_task
ffffff80080fe610 T sched_setscheduler
ffffff80080fe6a0 T sched_setattr
ffffff80080fe6c0 t __sched_setscheduler
ffffff80080ff130 T sched_setattr_nocheck
ffffff80080ff150 T __arm64_sys_sched_setscheduler
ffffff80080ff188 T __arm64_sys_sched_setparam
ffffff80080ff1b0 T __arm64_sys_sched_setattr
ffffff80080ff758 T __arm64_sys_sched_getscheduler
ffffff80080ff7d0 T __arm64_sys_sched_getparam
ffffff80080ff900 T __arm64_sys_sched_getattr
ffffff80080ffaf8 T sched_setaffinity
ffffff80080ffda0 T is_sched_lib_based_app
ffffff80080fff98 T __arm64_sys_sched_setaffinity
ffffff80081000a8 T sched_getaffinity
ffffff8008100160 T __arm64_sys_sched_getaffinity
ffffff8008100270 T __arm64_sys_sched_yield
ffffff8008100288 t do_sched_yield
ffffff8008100390 T __cond_resched_lock
ffffff8008100440 T io_schedule_prepare
ffffff8008100480 T io_schedule_finish
ffffff80081004a0 T __arm64_sys_sched_get_priority_max
ffffff80081004c8 T __arm64_sys_sched_get_priority_min
ffffff80081004f0 T __arm64_sys_sched_rr_get_interval
ffffff8008100560 T __arm64_compat_sys_sched_rr_get_interval
ffffff80081005d0 T sched_show_task
ffffff8008100700 T show_state_filter
ffffff8008100850 T init_idle
ffffff8008100a30 T cpuset_cpumask_can_shrink
ffffff8008100a70 T task_can_attach
ffffff8008100ae0 T idle_task_exit
ffffff8008100bc8 T do_isolation_work_cpu_stop
ffffff8008100d80 T set_rq_offline
ffffff8008100df8 t migrate_tasks
ffffff8008101388 T set_rq_online
ffffff8008101400 T do_unisolation_work_cpu_stop
ffffff8008101408 T sched_isolate_count
ffffff8008101458 T sched_isolate_cpu
ffffff8008101760 t sched_update_group_capacities
ffffff8008101800 T sched_unisolate_cpu_unlocked
ffffff8008101a40 T sched_unisolate_cpu
ffffff8008101a78 T sched_cpu_activate
ffffff8008101bc8 T sched_cpu_deactivate
ffffff8008101c80 T sched_cpu_starting
ffffff8008101cf8 T sched_cpu_dying
ffffff8008101e90 T in_sched_functions
ffffff8008101ee0 T normalize_rt_tasks
ffffff8008102040 T sched_create_group
ffffff80081020d0 T sched_online_group
ffffff80081021b0 T sched_destroy_group
ffffff80081021d0 t sched_free_group_rcu
ffffff8008102218 T sched_offline_group
ffffff80081022a0 T sched_move_task
ffffff8008102660 t cpu_cgroup_css_alloc
ffffff8008102690 t cpu_cgroup_css_online
ffffff80081026b0 t cpu_cgroup_css_released
ffffff8008102738 t cpu_cgroup_css_free
ffffff8008102778 t cpu_extra_stat_show
ffffff8008102780 t cpu_cgroup_can_attach
ffffff8008102820 t cpu_cgroup_attach
ffffff8008102888 t cpu_cgroup_fork
ffffff80081029e0 T dump_cpu_task
ffffff8008102a30 T set_task_boost
ffffff8008102a98 T sched_exit
ffffff8008102f08 t trace_raw_output_sched_kthread_stop
ffffff8008102f60 t trace_raw_output_sched_kthread_stop_ret
ffffff8008102fb8 t trace_raw_output_sched_enq_deq_task
ffffff8008103060 t trace_raw_output_sched_wakeup_template
ffffff80081030c0 t trace_raw_output_sched_switch
ffffff80081031a0 t trace_raw_output_sched_migrate_task
ffffff8008103200 t trace_raw_output_sched_load_balance
ffffff80081032b8 t trace_raw_output_sched_load_balance_nohz_kick
ffffff8008103318 t trace_raw_output_sched_load_balance_sg_stats
ffffff80081033a0 t trace_raw_output_sched_load_balance_stats
ffffff8008103420 t trace_raw_output_sched_process_template
ffffff8008103478 t trace_raw_output_sched_process_wait
ffffff80081034d0 t trace_raw_output_sched_process_fork
ffffff8008103530 t trace_raw_output_sched_process_exec
ffffff8008103590 t trace_raw_output_sched_stat_template
ffffff80081035f0 t trace_raw_output_sched_blocked_reason
ffffff8008103650 t trace_raw_output_sched_stat_runtime
ffffff80081036b0 t trace_raw_output_sched_pi_setprio
ffffff8008103710 t trace_raw_output_sched_process_hang
ffffff8008103768 t trace_raw_output_sched_move_task_template
ffffff80081037d8 t trace_raw_output_sched_swap_numa
ffffff8008103858 t trace_raw_output_sched_wake_idle_without_ipi
ffffff80081038b0 t trace_raw_output_sched_load_cfs_rq
ffffff8008103918 t trace_raw_output_sched_load_rt_rq
ffffff8008103970 t trace_raw_output_sched_load_avg_cpu
ffffff80081039d0 t trace_raw_output_sched_load_se
ffffff8008103a48 t trace_raw_output_sched_load_tg
ffffff8008103aa8 t trace_raw_output_sched_util_est_task
ffffff8008103b08 t trace_raw_output_sched_util_est_cpu
ffffff8008103b60 t trace_raw_output_sched_cpu_util
ffffff8008103bf8 t trace_raw_output_sched_compute_energy
ffffff8008103c80 t trace_raw_output_sched_task_util
ffffff8008103d50 t trace_raw_output_sched_find_best_target
ffffff8008103dd0 t trace_raw_output_sched_boost_cpu
ffffff8008103e28 t trace_raw_output_core_ctl_eval_need
ffffff8008103e80 t trace_raw_output_core_ctl_set_busy
ffffff8008103ee0 t trace_raw_output_core_ctl_set_boost
ffffff8008103f38 t trace_raw_output_core_ctl_update_nr_need
ffffff8008103f98 t trace_raw_output_core_ctl_notif_data
ffffff8008104008 t trace_raw_output_sched_tune_tasks_update
ffffff8008104080 t trace_raw_output_sched_tune_boostgroup_update
ffffff80081040d8 t trace_raw_output_sched_boost_task
ffffff8008104138 t trace_raw_output_sched_overutilized
ffffff8008104190 t trace_raw_output_sched_get_nr_running_avg
ffffff80081041f0 t trace_raw_output_sched_isolate
ffffff8008104250 t trace_raw_output_sched_update_pred_demand
ffffff8008104308 t trace_raw_output_sched_update_history
ffffff80081043b0 t trace_raw_output_sched_get_task_cpu_cycles
ffffff8008104428 t trace_raw_output_sched_update_task_ravg
ffffff80081046b8 t trace_raw_output_sched_update_task_ravg_mini
ffffff8008104760 t trace_raw_output_sched_set_preferred_cluster
ffffff80081047c0 t trace_raw_output_sched_migration_update_sum
ffffff8008104848 t trace_raw_output_sched_set_boost
ffffff80081048a0 t trace_raw_output_sched_load_balance_skip_tasks
ffffff8008104920 t trace_raw_output_sched_load_to_gov
ffffff80081049b0 t move_queued_task
ffffff8008104e40 t __migrate_swap_task
ffffff8008104f00 t ttwu_do_wakeup
ffffff80081050c0 t ttwu_stat
ffffff80081051e8 t select_fallback_rq
ffffff80081055a0 t __schedule_bug
ffffff8008105610 t do_sched_setscheduler
ffffff8008105778 t sched_rr_get_interval
ffffff80081058d0 t put_prev_task_fake
ffffff80081058d8 t __hrtick_start
ffffff8008105928 t hrtick
ffffff80081059b0 t cpu_weight_read_u64
ffffff80081059e0 t cpu_weight_write_u64
ffffff8008105a30 t cpu_weight_nice_read_s64
ffffff8008105aa8 t cpu_weight_nice_write_s64
ffffff8008105b00 t cpu_shares_read_u64
ffffff8008105b20 t cpu_shares_write_u64
ffffff8008105b48 T get_avenrun
ffffff8008105b88 T calc_load_fold_active
ffffff8008105bb0 T calc_load_n
ffffff8008105c20 T calc_load_nohz_start
ffffff8008105ca0 T calc_load_nohz_stop
ffffff8008105cf0 T calc_global_load
ffffff8008105fb0 T calc_global_load_tick
ffffff8008106038 T sched_clock_cpu
ffffff8008106068 W running_clock
ffffff8008106080 T enable_sched_clock_irqtime
ffffff8008106090 T disable_sched_clock_irqtime
ffffff80081060a0 T irqtime_account_irq
ffffff8008106248 T account_user_time
ffffff8008106310 T account_guest_time
ffffff80081063b8 T account_system_index_time
ffffff8008106478 T account_system_time
ffffff8008106580 T account_steal_time
ffffff80081065a0 T account_idle_time
ffffff80081065e8 T thread_group_cputime
ffffff80081066e0 T account_process_tick
ffffff80081067b0 t irqtime_account_process_tick
ffffff8008106988 T account_idle_ticks
ffffff8008106a28 T cputime_adjust
ffffff8008106b30 T task_cputime_adjusted
ffffff8008106b98 T thread_group_cputime_adjusted
ffffff8008106c10 T sched_idle_set_state
ffffff8008106c38 T cpu_idle_poll_ctrl
ffffff8008106c68 W arch_cpu_idle_prepare
ffffff8008106ca0 T cpu_in_idle
ffffff8008106cc8 T play_idle
ffffff8008106e18 t idle_inject_timer_fn
ffffff8008106e40 t do_idle
ffffff80081070d0 T cpu_startup_entry
ffffff80081070f8 t dequeue_task_idle
ffffff8008107130 t check_preempt_curr_idle
ffffff8008107148 t pick_next_task_idle
ffffff8008107198 t put_prev_task_idle
ffffff80081071a0 t select_task_rq_idle
ffffff80081071a8 t set_curr_task_idle
ffffff80081071b0 t task_tick_idle
ffffff80081071b8 t switched_to_idle
ffffff80081071c0 t prio_changed_idle
ffffff80081071c8 t get_rr_interval_idle
ffffff80081071d0 t update_curr_idle
ffffff80081071d8 W arch_asym_cpu_priority
ffffff80081071e0 T sched_init_granularity
ffffff80081071f8 t update_sysctl
ffffff8008107290 T __pick_first_entity
ffffff80081072a8 T __pick_last_entity
ffffff80081072d0 T sched_proc_update_handler
ffffff80081073a0 T init_entity_runnable_average
ffffff80081073f8 T post_init_entity_util_avg
ffffff8008107500 t attach_entity_cfs_rq
ffffff8008107a40 T reweight_task
ffffff8008107a98 t reweight_entity
ffffff8008107d68 T set_task_rq_fair
ffffff8008107da8 T sync_entity_load_avg
ffffff8008107dc8 T remove_entity_load_avg
ffffff8008107e50 T task_util_est
ffffff8008107e58 T init_cfs_bandwidth
ffffff8008107e60 T __cpu_overutilized
ffffff8008107ea8 T cpu_overutilized
ffffff8008107ef0 T cpu_load_update_nohz_start
ffffff8008107f10 T cpu_load_update_nohz_stop
ffffff8008107fa0 T cpu_load_update_active
ffffff8008108010 T schedtune_task_margin
ffffff8008108098 T stune_util
ffffff80081081f0 T capacity_curr_of
ffffff8008108228 T init_max_cpu_capacity
ffffff8008108240 T update_group_capacity
ffffff80081084d0 T update_max_interval
ffffff8008108520 T nohz_balance_exit_idle
ffffff8008108610 T nohz_balance_enter_idle
ffffff8008108790 T trigger_load_balance
ffffff8008108a28 T init_cfs_rq
ffffff8008108a40 T free_fair_sched_group
ffffff8008108ae8 T alloc_fair_sched_group
ffffff8008108cc8 T init_tg_cfs_entry
ffffff8008108d40 T online_fair_sched_group
ffffff8008108e10 T unregister_fair_sched_group
ffffff8008108fa8 T sched_group_set_shares
ffffff8008109618 t update_cfs_group
ffffff80081096e0 t enqueue_task_fair
ffffff800810b148 t dequeue_task_fair
ffffff800810c3d8 t yield_task_fair
ffffff800810c4e0 t yield_to_task_fair
ffffff800810c5a0 t check_preempt_wakeup
ffffff800810c890 t pick_next_task_fair
ffffff800810d578 t put_prev_task_fair
ffffff800810d5b0 t select_task_rq_fair
ffffff800810e648 t migrate_task_rq_fair
ffffff800810e710 t rq_online_fair
ffffff800810e728 t rq_offline_fair
ffffff800810e740 t set_curr_task_fair
ffffff800810e778 t task_tick_fair
ffffff800810f1e0 t task_fork_fair
ffffff800810f398 t task_dead_fair
ffffff800810f420 t switched_from_fair
ffffff800810f498 t switched_to_fair
ffffff800810f530 t prio_changed_fair
ffffff800810f578 t get_rr_interval_fair
ffffff800810f5c0 t update_curr_fair
ffffff800810f5e0 t task_change_group_fair
ffffff800810f760 t walt_fixup_sched_stats_fair
ffffff800810f778 T print_cfs_stats
ffffff800810f810 t run_rebalance_domains
ffffff800810f8d0 T walt_rotate_work_init
ffffff800810f968 t walt_rotate_work_func
ffffff800810fa20 T check_for_migration
ffffff800810fec0 t find_energy_efficient_cpu
ffffff80081121a8 t active_load_balance_cpu_stop
ffffff8008112548 t update_curr
ffffff8008112968 t cpu_load_update
ffffff8008112ae8 t decay_load_missed
ffffff8008112b50 t kick_ilb
ffffff8008112e20 t attach_entity_load_avg
ffffff8008113008 t propagate_entity_cfs_rq
ffffff8008113570 t place_entity
ffffff80081137a0 t sched_slice
ffffff8008113940 t set_sd_overutilized
ffffff8008113a20 t pick_next_entity
ffffff8008113e80 t put_prev_entity
ffffff8008114410 t set_next_entity
ffffff8008114b48 t update_blocked_averages
ffffff8008115408 t load_balance
ffffff80081180e8 t _nohz_idle_balance
ffffff8008118520 t rebalance_domains
ffffff80081188b0 t can_migrate_task
ffffff8008118f10 t detach_task
ffffff8008118fd8 t detach_entity_cfs_rq
ffffff80081195e8 t compute_energy
ffffff80081197f0 t attach_one_task
ffffff80081198e0 T init_rt_bandwidth
ffffff8008119920 t sched_rt_period_timer
ffffff8008119bf8 T init_rt_rq
ffffff8008119c78 T free_rt_sched_group
ffffff8008119c80 T alloc_rt_sched_group
ffffff8008119c88 T sched_rt_bandwidth_account
ffffff8008119cd0 T task_may_not_preempt
ffffff8008119d38 T rto_push_irq_work_func
ffffff8008119e40 t push_rt_tasks
ffffff800811a198 t enqueue_task_rt
ffffff800811a4f8 t dequeue_task_rt
ffffff800811a648 t yield_task_rt
ffffff800811a6f0 t check_preempt_curr_rt
ffffff800811a810 t pick_next_task_rt
ffffff800811aaa8 t put_prev_task_rt
ffffff800811ab88 t select_task_rq_rt
ffffff800811acc0 t task_woken_rt
ffffff800811ad20 t rq_online_rt
ffffff800811ade8 t rq_offline_rt
ffffff800811afe8 t set_curr_task_rt
ffffff800811b080 t task_tick_rt
ffffff800811b240 t switched_from_rt
ffffff800811b2c0 t switched_to_rt
ffffff800811b388 t prio_changed_rt
ffffff800811b420 t get_rr_interval_rt
ffffff800811b438 t update_curr_rt
ffffff800811b950 T sched_rt_handler
ffffff800811bb08 T sched_rr_handler
ffffff800811bba8 T print_rt_stats
ffffff800811bc00 t balance_runtime
ffffff800811bd70 t enqueue_top_rt_rq
ffffff800811be50 t find_lowest_rq
ffffff800811c4e0 t dequeue_rt_stack
ffffff800811c880 t dequeue_top_rt_rq
ffffff800811c940 t update_rt_migration
ffffff800811ca10 t pull_rt_task
ffffff800811cb78 T dl_change_utilization
ffffff800811cd38 T init_dl_bandwidth
ffffff800811cd48 T init_dl_bw
ffffff800811cdb8 T init_dl_rq
ffffff800811ce58 T init_dl_rq_bw_ratio
ffffff800811cee0 T init_dl_task_timer
ffffff800811cf18 t dl_task_timer
ffffff800811d5a8 T init_dl_inactive_task_timer
ffffff800811d5e0 t inactive_task_timer
ffffff800811d980 t enqueue_task_dl
ffffff800811e2a8 t dequeue_task_dl
ffffff800811e408 t yield_task_dl
ffffff800811e450 t check_preempt_curr_dl
ffffff800811e4e8 t pick_next_task_dl
ffffff800811e6e0 t put_prev_task_dl
ffffff800811e820 t select_task_rq_dl
ffffff800811e8f0 t migrate_task_rq_dl
ffffff800811ea88 t task_woken_dl
ffffff800811eb00 t set_cpus_allowed_dl
ffffff800811ec78 t rq_online_dl
ffffff800811ed08 t rq_offline_dl
ffffff800811ed90 t set_curr_task_dl
ffffff800811ee40 t task_tick_dl
ffffff800811eeb0 t task_fork_dl
ffffff800811eeb8 t switched_from_dl
ffffff800811f070 t switched_to_dl
ffffff800811f198 t prio_changed_dl
ffffff800811f220 t update_curr_dl
ffffff800811f490 T sched_dl_global_validate
ffffff800811f5a0 T sched_dl_do_global
ffffff800811f738 T sched_dl_overflow
ffffff800811fac8 T __setparam_dl
ffffff800811fb30 T __getparam_dl
ffffff800811fb60 T __checkparam_dl
ffffff800811fbb8 T __dl_clear_params
ffffff800811fbe8 T dl_param_changed
ffffff800811fc38 T dl_task_can_attach
ffffff800811fde8 T dl_cpuset_cpumask_can_shrink
ffffff800811fec0 T dl_cpu_busy
ffffff800811ffc8 T print_dl_stats
ffffff800811fff8 t replenish_dl_entity
ffffff80081201b8 t push_dl_task
ffffff80081205b8 t find_lock_later_rq
ffffff8008120728 t find_later_rq
ffffff80081208f8 t task_contending
ffffff8008120a48 t start_dl_timer
ffffff8008120b40 t update_dl_migration
ffffff8008120c10 t __dequeue_task_dl
ffffff8008120e68 t task_non_contending
ffffff80081211b0 t pull_dl_task
ffffff8008121600 t push_dl_tasks
ffffff8008121628 T __init_waitqueue_head
ffffff8008121640 T add_wait_queue
ffffff80081216c0 T add_wait_queue_exclusive
ffffff8008121740 T remove_wait_queue
ffffff80081217a8 T __wake_up
ffffff80081217c8 t __wake_up_common_lock
ffffff8008121890 T __wake_up_locked
ffffff8008121920 t __wake_up_common
ffffff8008121ab0 T __wake_up_locked_key
ffffff8008121b38 T __wake_up_locked_key_bookmark
ffffff8008121b60 T __wake_up_sync_key
ffffff8008121b88 T __wake_up_sync
ffffff8008121bb0 T prepare_to_wait
ffffff8008121c60 T prepare_to_wait_exclusive
ffffff8008121d10 T init_wait_entry
ffffff8008121d38 T prepare_to_wait_event
ffffff8008121e70 T do_wait_intr
ffffff8008121f18 T do_wait_intr_irq
ffffff8008121fc0 T finish_wait
ffffff8008122048 T bit_waitqueue
ffffff8008122080 T wake_bit_function
ffffff80081220e0 T __wake_up_bit
ffffff8008122148 T wake_up_bit
ffffff80081221e8 T __var_waitqueue
ffffff8008122218 T init_wait_var_entry
ffffff8008122248 t var_wake_function
ffffff8008122288 T wake_up_var
ffffff8008122320 T __init_swait_queue_head
ffffff8008122338 T swake_up_locked
ffffff8008122388 T swake_up_one
ffffff80081223f8 T swake_up_all
ffffff80081224f0 T prepare_to_swait_exclusive
ffffff80081225a0 T prepare_to_swait_event
ffffff80081226a0 T __finish_swait
ffffff80081226f8 T finish_swait
ffffff8008122780 T complete
ffffff80081227e8 T complete_all
ffffff8008122840 T try_wait_for_completion
ffffff80081228c0 T completion_done
ffffff8008122908 T cpupri_find
ffffff8008122bc8 T cpupri_set
ffffff8008122cb0 T cpupri_init
ffffff8008122d60 T cpupri_cleanup
ffffff8008122d78 T cpupri_check_rt
ffffff8008122db8 T cpudl_find
ffffff8008122ed8 T cpudl_clear
ffffff8008122fe0 t cpudl_heapify
ffffff8008123190 T cpudl_set
ffffff8008123328 T cpudl_set_freecpu
ffffff8008123350 T cpudl_clear_freecpu
ffffff8008123378 T cpudl_init
ffffff8008123418 T cpudl_cleanup
ffffff8008123430 T sched_energy_aware_handler
ffffff8008123508 T rq_attach_root
ffffff8008123628 t free_rootdomain
ffffff8008123678 T sched_get_rd
ffffff8008123690 T sched_put_rd
ffffff80081236d0 T init_defrootdomain
ffffff8008123768 T group_balance_cpu
ffffff8008123790 T init_sched_groups_capacity
ffffff80081238d0 T set_sched_topology
ffffff80081238f8 T alloc_sched_domains
ffffff8008123920 T free_sched_domains
ffffff8008123938 T sched_init_domains
ffffff80081239e8 t build_sched_domains
ffffff8008124a10 T partition_sched_domains
ffffff8008125430 t cpu_core_flags
ffffff8008125438 t cpu_cpu_mask
ffffff8008125448 t cpu_attach_domain
ffffff8008125bf8 t destroy_sched_domains_rcu
ffffff8008125cc8 t destroy_perf_domain_rcu
ffffff8008125cf8 t enqueue_task_stop
ffffff8008125e18 t dequeue_task_stop
ffffff8008125f28 t yield_task_stop
ffffff8008125f30 t check_preempt_curr_stop
ffffff8008125f38 t pick_next_task_stop
ffffff8008125fc0 t put_prev_task_stop
ffffff80081260e0 t select_task_rq_stop
ffffff80081260e8 t set_curr_task_stop
ffffff8008126148 t task_tick_stop
ffffff8008126150 t switched_to_stop
ffffff8008126158 t prio_changed_stop
ffffff8008126160 t get_rr_interval_stop
ffffff8008126168 t update_curr_stop
ffffff8008126170 T __update_load_avg_blocked_se
ffffff8008126360 T __update_load_avg_se
ffffff80081265d8 T __update_load_avg_cfs_rq
ffffff8008126840 T update_rt_rq_load_avg
ffffff8008126a78 T update_dl_rq_load_avg
ffffff8008126bf8 T update_irq_load_avg
ffffff8008126ea0 T sched_ktime_clock
ffffff8008126ed8 T inc_rq_walt_stats
ffffff8008126f90 T dec_rq_walt_stats
ffffff8008127028 T fixup_walt_sched_stats_common
ffffff8008127088 T clear_ed_task
ffffff80081270a0 T early_detection_notify
ffffff8008127130 T sched_account_irqstart
ffffff8008127218 T walt_big_tasks
ffffff8008127238 T clear_walt_request
ffffff80081272f8 T sched_account_irqtime
ffffff8008127400 T update_task_ravg
ffffff8008128b50 T cpu_util_freq_walt
ffffff80081297d8 T update_cluster_load_subtractions
ffffff8008129ad8 T fixup_busy_time
ffffff800812bda8 T set_window_start
ffffff800812bea0 T update_task_pred_demand
ffffff800812bfb8 T clear_top_tasks_bitmap
ffffff800812bff0 T sched_set_io_is_busy
ffffff800812c000 T do_pl_notif
ffffff800812c0c0 T sched_get_init_task_load
ffffff800812c0c8 T sched_set_init_task_load
ffffff800812c0e8 T init_new_task_load
ffffff800812c200 T free_task_load_ptrs
ffffff800812c238 T reset_task_stats
ffffff800812c2d0 T mark_task_starting
ffffff800812c420 T init_clusters
ffffff800812c488 T sort_clusters
ffffff800812c638 t compare_clusters
ffffff800812c670 T update_cluster_topology
ffffff800812cad0 t update_all_clusters_stats
ffffff800812cd10 t register_walt_callback
ffffff800812cd50 T register_cpu_cycle_counter_cb
ffffff800812cea8 T preferred_cluster
ffffff800812cf20 T set_preferred_cluster
ffffff800812cf58 t _set_preferred_cluster
ffffff800812d238 T update_preferred_cluster
ffffff800812d2e0 T alloc_related_thread_groups
ffffff800812d3a0 T add_new_task_to_grp
ffffff800812d478 T sched_set_group_id
ffffff800812d4a0 t __sched_set_group_id
ffffff800812d720 T sched_get_group_id
ffffff800812d760 T sync_cgroup_colocation
ffffff800812d778 T thermal_cap
ffffff800812d798 T do_thermal_cap
ffffff800812d888 T sched_update_cpu_freq_min_max
ffffff800812da00 t walt_cpus_capacity_changed
ffffff800812dbb0 T note_task_waking
ffffff800812dbb8 T is_rtgb_active
ffffff800812dbe0 T get_rtgb_active_time
ffffff800812dc28 T walt_irq_work
ffffff800812f8a0 T walt_rotation_checkpoint
ffffff800812f918 T walt_fill_ta_data
ffffff800812fb00 T walt_proc_group_thresholds_handler
ffffff800812fc90 T walt_sched_init_rq
ffffff800812fe88 T walt_proc_user_hint_handler
ffffff800812ff40 T group_show
ffffff8008130038 T group_remove
ffffff80081300a8 T sched_ravg_window_handler
ffffff80081301a0 T sched_set_refresh_rate
ffffff8008130228 T sched_updown_migrate_handler
ffffff8008130540 t sched_suspend
ffffff8008130570 t sched_resume
ffffff8008130580 t get_pred_busy
ffffff80081307b0 t update_history
ffffff8008130e50 t cpufreq_notifier_policy
ffffff8008131a70 t cpufreq_notifier_trans
ffffff8008131c48 t transfer_busy_time
ffffff8008135480 T sched_boost_parse_dt
ffffff8008135530 T sched_set_boost
ffffff8008135588 t _sched_set_boost
ffffff8008135828 T sched_boost_handler
ffffff80081358c8 t sched_no_boost_nop
ffffff80081358d0 t sched_full_throttle_boost_enter
ffffff8008135900 t sched_full_throttle_boost_exit
ffffff8008135920 t sched_conservative_boost_enter
ffffff8008135938 t sched_conservative_boost_exit
ffffff8008135950 t sched_restrained_boost_enter
ffffff8008135960 t sched_restrained_boost_exit
ffffff8008135970 T sched_get_nr_running_avg
ffffff8008135c98 T sched_update_hyst_times
ffffff8008135df8 T sched_update_nr_prod
ffffff8008135fa8 T sched_get_cpu_util
ffffff8008136038 T sched_lpm_disallowed_time
ffffff8008136078 T autogroup_free
ffffff8008136090 T task_wants_autogroup
ffffff80081360b8 T sched_autogroup_exit_task
ffffff80081360d0 T sched_autogroup_create_attach
ffffff8008136208 t autogroup_move_group
ffffff80081362f8 T sched_autogroup_detach
ffffff8008136318 T sched_autogroup_fork
ffffff80081363b8 T sched_autogroup_exit
ffffff80081363f0 T proc_sched_autogroup_set_nice
ffffff8008136588 T proc_sched_autogroup_show_task
ffffff8008136670 T autogroup_path
ffffff80081366b8 t schedstat_start
ffffff8008136738 t schedstat_stop
ffffff8008136740 t schedstat_next
ffffff80081367c8 t show_schedstat
ffffff80081369e8 T register_sched_domain_sysctl
ffffff8008136f08 t sd_alloc_ctl_entry
ffffff8008136f40 t sd_free_ctl_entry
ffffff8008136fb0 T dirty_sched_domain_sysctl
ffffff8008136ff0 T unregister_sched_domain_sysctl
ffffff8008137018 T print_cfs_rq
ffffff8008137e50 T print_rt_rq
ffffff8008138078 T print_dl_rq
ffffff80081381e0 T sysrq_sched_debug_show
ffffff8008138260 t sched_debug_header
ffffff8008138788 t print_cpu
ffffff8008139418 T proc_sched_show_task
ffffff800813a3e8 T proc_sched_set_task
ffffff800813a408 t sched_debug_start
ffffff800813a488 t sched_debug_stop
ffffff800813a490 t sched_debug_next
ffffff800813a518 t sched_debug_show
ffffff800813a548 t e843419@009e_00000ebe_620
ffffff800813b548 T update_cgroup_boost_settings
ffffff800813b5d0 T restore_cgroup_boost_settings
ffffff800813b638 T task_sched_boost
ffffff800813b670 T schedtune_enqueue_task
ffffff800813b838 T schedtune_can_attach
ffffff800813b9b8 T schedtune_task_colocated
ffffff800813ba10 T schedtune_cancel_attach
ffffff800813ba30 T schedtune_dequeue_task
ffffff800813bbb0 T schedtune_cpu_boost
ffffff800813bc10 t schedtune_cpu_update
ffffff800813bd70 T schedtune_task_boost
ffffff800813bdc0 T schedtune_prefer_idle
ffffff800813be10 t schedtune_css_alloc
ffffff800813bf80 t schedtune_css_free
ffffff800813c038 t schedtune_attach
ffffff800813c0c0 t schedtune_init
ffffff800813c1a8 t sched_boost_override_read
ffffff800813c1b0 t sched_boost_override_write
ffffff800813c1c8 t sched_colocate_read
ffffff800813c1d0 t sched_colocate_write
ffffff800813c200 t boost_read
ffffff800813c208 t boost_write
ffffff800813c4e0 t prefer_idle_read
ffffff800813c4e8 t prefer_idle_write
ffffff800813c500 T cpuacct_charge
ffffff800813c588 T cpuacct_account_field
ffffff800813c600 t cpuacct_css_alloc
ffffff800813c690 t cpuacct_css_free
ffffff800813c6c8 t cpuusage_read
ffffff800813c760 t cpuusage_write
ffffff800813c7e8 t cpuusage_user_read
ffffff800813c878 t cpuusage_sys_read
ffffff800813c910 t cpuacct_percpu_seq_show
ffffff800813c930 t cpuacct_percpu_user_seq_show
ffffff800813c9f8 t cpuacct_percpu_sys_seq_show
ffffff800813cac0 t cpuacct_all_seq_show
ffffff800813cc10 t cpuacct_stats_show
ffffff800813cd60 t __cpuacct_percpu_seq_show
ffffff800813ce98 T cpufreq_add_update_util_hook
ffffff800813cf10 T cpufreq_remove_update_util_hook
ffffff800813cf30 T cpufreq_this_cpu_can_update
ffffff800813cf90 T cc_cal_next_freq_with_extra_util
ffffff800813d080 T schedutil_cpu_util
ffffff800813d100 t sugov_init
ffffff800813d528 t sugov_exit
ffffff800813d688 t sugov_start
ffffff800813d850 t sugov_stop
ffffff800813d8e0 t sugov_limits
ffffff800813da18 t sugov_work
ffffff800813dad8 t sugov_irq_work
ffffff800813daf8 t up_rate_limit_us_show
ffffff800813db28 t up_rate_limit_us_store
ffffff800813dc00 t down_rate_limit_us_show
ffffff800813dc30 t down_rate_limit_us_store
ffffff800813dd08 t hispeed_load_show
ffffff800813dd38 t hispeed_load_store
ffffff800813dd90 t hispeed_freq_show
ffffff800813ddc0 t hispeed_freq_store
ffffff800813def0 t rtg_boost_freq_show
ffffff800813df20 t rtg_boost_freq_store
ffffff800813e050 t pl_show
ffffff800813e080 t pl_store
ffffff800813e0b8 t sugov_update_shared
ffffff800813e6a0 t sugov_update_single
ffffff800813ebc0 t sugov_fast_switch
ffffff800813ed98 t sugov_walt_adjust
ffffff800813eec8 t get_next_freq
ffffff800813f008 T __arm64_sys_membarrier
ffffff800813f320 t membarrier_private_expedited
ffffff800813f4e0 t ipi_mb
ffffff800813f4e8 T housekeeping_any_cpu
ffffff800813f548 T housekeeping_cpumask
ffffff800813f580 T housekeeping_affine
ffffff800813f5c8 T housekeeping_test_cpu
ffffff800813f618 T core_ctl_set_boost
ffffff800813f878 T core_ctl_notifier_register
ffffff800813f898 T core_ctl_notifier_unregister
ffffff800813f8b8 T core_ctl_check
ffffff8008140078 t eval_need
ffffff80081404b8 T core_ctl_op_boost
ffffff80081406c8 t core_ctl_isolation_online_cpu
ffffff80081406e8 t core_ctl_isolation_dead_cpu
ffffff8008140708 t isolation_cpuhp_state
ffffff8008140950 t __try_to_unisolate
ffffff8008140cb8 t show
ffffff8008140ce8 t store
ffffff8008140d20 t show_min_cpus
ffffff8008140d50 t store_min_cpus
ffffff8008140e10 t show_max_cpus
ffffff8008140e40 t store_max_cpus
ffffff8008140f00 t show_offline_delay_ms
ffffff8008140f30 t store_offline_delay_ms
ffffff8008140ff0 t show_busy_up_thres
ffffff8008141098 t store_busy_up_thres
ffffff80081411c0 t show_busy_down_thres
ffffff8008141268 t store_busy_down_thres
ffffff8008141390 t show_task_thres
ffffff80081413c0 t store_task_thres
ffffff8008141488 t show_nr_prev_assist_thresh
ffffff80081414b8 t store_nr_prev_assist_thresh
ffffff8008141578 t show_enable
ffffff80081415a8 t store_enable
ffffff8008141678 t show_need_cpus
ffffff80081416a8 t show_active_cpus
ffffff80081416d8 t show_global_state
ffffff80081419b0 t show_not_preferred
ffffff8008141a80 t store_not_preferred
ffffff8008141b98 t trace_event_raw_event_psi_window_vmstat
ffffff8008141cc8 t perf_trace_psi_window_vmstat
ffffff8008141e18 t trace_event_raw_event_psi_event
ffffff8008141ed8 t perf_trace_psi_event
ffffff8008141fb0 t __bpf_trace_psi_window_vmstat
ffffff80081420f0 t __bpf_trace_psi_event
ffffff8008142180 t group_init
ffffff80081422c0 T psi_emergency_trigger
ffffff8008142470 T psi_is_trigger_active
ffffff8008142538 T psi_task_change
ffffff8008142908 t psi_avgs_work
ffffff80081429c8 T psi_memstall_tick
ffffff8008142b40 T psi_memstall_enter
ffffff8008142bd0 T psi_memstall_leave
ffffff8008142c50 T psi_cgroup_alloc
ffffff8008142ca8 T psi_cgroup_free
ffffff8008142d18 T cgroup_move_task
ffffff8008142e20 T psi_show
ffffff8008142f88 t collect_percpu_times
ffffff80081432b0 t update_averages
ffffff8008143530 T psi_trigger_create
ffffff8008143810 t psi_poll_work
ffffff8008143b80 T psi_trigger_replace
ffffff8008143d30 T psi_trigger_poll
ffffff8008143f60 t trace_raw_output_psi_window_vmstat
ffffff8008143fd0 t trace_raw_output_psi_event
ffffff8008144028 t psi_io_write
ffffff8008144040 t psi_fop_poll
ffffff8008144068 t psi_io_open
ffffff8008144090 t psi_fop_release
ffffff80081440d0 t psi_write
ffffff8008144258 t psi_io_show
ffffff8008144278 t psi_memory_write
ffffff8008144290 t psi_memory_open
ffffff80081442b8 t psi_memory_show
ffffff80081442d8 t psi_cpu_write
ffffff80081442f0 t psi_cpu_open
ffffff8008144318 t psi_cpu_show
ffffff8008144338 T __mutex_init
ffffff8008144358 T atomic_dec_and_mutex_lock
ffffff8008144428 t mutex_spin_on_owner
ffffff8008144538 T down
ffffff8008144588 T down_interruptible
ffffff80081445e8 T down_killable
ffffff8008144648 T down_trylock
ffffff8008144688 T down_timeout
ffffff80081446f0 T up
ffffff8008144748 T down_read_trylock
ffffff80081447b0 T down_write_trylock
ffffff8008144800 T up_read
ffffff8008144858 T up_write
ffffff80081448a8 T downgrade_write
ffffff80081448f0 T __percpu_init_rwsem
ffffff8008144960 T percpu_free_rwsem
ffffff8008144998 T __percpu_down_read
ffffff8008144ac8 T __percpu_up_read
ffffff8008144af8 T percpu_down_write
ffffff8008144c28 T percpu_up_write
ffffff8008144c60 T in_lock_functions
ffffff8008144c88 T osq_lock
ffffff8008144e00 T osq_unlock
ffffff8008144ee8 T queued_spin_lock_slowpath
ffffff8008145160 T rt_mutex_adjust_pi
ffffff8008145200 t rt_mutex_adjust_prio_chain
ffffff8008145a10 T rt_mutex_init_waiter
ffffff8008145a28 T rt_mutex_postunlock
ffffff8008145a68 T rt_mutex_timed_lock
ffffff8008145ab8 t mark_wakeup_next_waiter
ffffff8008145b78 T rt_mutex_destroy
ffffff8008145ba8 T __rt_mutex_init
ffffff8008145bb8 T rt_mutex_init_proxy_locked
ffffff8008145bd8 T rt_mutex_proxy_unlock
ffffff8008145bf0 T __rt_mutex_start_proxy_lock
ffffff8008145c58 t try_to_take_rt_mutex
ffffff8008145e58 t task_blocks_on_rt_mutex
ffffff8008146180 T rt_mutex_start_proxy_lock
ffffff8008146210 t remove_waiter
ffffff8008146430 T rt_mutex_next_owner
ffffff8008146460 T rt_mutex_wait_proxy_lock
ffffff80081464e8 T rt_mutex_cleanup_proxy_lock
ffffff8008146580 T __init_rwsem
ffffff80081465a0 T rwsem_wake
ffffff8008146668 t __rwsem_mark_wake
ffffff8008146888 T rwsem_downgrade_wake
ffffff8008146930 t rwsem_spin_on_owner
ffffff80081469b0 T queued_read_lock_slowpath
ffffff8008146aa0 T queued_write_lock_slowpath
ffffff8008146b88 T pm_qos_read_value
ffffff8008146b90 T pm_qos_update_target
ffffff8008146f70 T pm_qos_update_flags
ffffff80081471b8 T pm_qos_request
ffffff80081471d0 T pm_qos_request_for_cpu
ffffff8008147218 T pm_qos_request_active
ffffff8008147228 T pm_qos_request_for_cpumask
ffffff80081472f0 T pm_qos_add_request
ffffff8008147568 t pm_qos_irq_notify
ffffff8008147608 t pm_qos_irq_release
ffffff8008147678 t pm_qos_work_fn
ffffff8008147698 T pm_qos_update_request
ffffff80081476f0 t __pm_qos_update_request
ffffff80081477f0 T pm_qos_update_request_timeout
ffffff8008147958 T pm_qos_remove_request
ffffff8008147ab8 T pm_qos_add_notifier
ffffff8008147ae0 T pm_qos_remove_notifier
ffffff8008147b08 t pm_qos_power_read
ffffff8008147c28 t pm_qos_power_write
ffffff8008147d70 t pm_qos_power_open
ffffff8008147fd8 t pm_qos_power_release
ffffff8008148008 T lock_system_sleep
ffffff8008148038 T unlock_system_sleep
ffffff8008148068 T register_pm_notifier
ffffff8008148088 T unregister_pm_notifier
ffffff80081480a8 T __pm_notifier_call_chain
ffffff80081480e8 T pm_notifier_call_chain
ffffff8008148128 t state_show
ffffff80081481c0 t state_store
ffffff80081482f8 t pm_async_show
ffffff8008148328 t pm_async_store
ffffff80081483a8 t wakeup_count_show
ffffff8008148420 t wakeup_count_store
ffffff80081484a0 t mem_sleep_show
ffffff8008148560 t mem_sleep_store
ffffff8008148668 t wake_lock_show
ffffff8008148688 t wake_lock_store
ffffff80081486b8 t wake_unlock_show
ffffff80081486d8 t wake_unlock_store
ffffff8008148708 t pm_freeze_timeout_show
ffffff8008148738 t pm_freeze_timeout_store
ffffff80081487b0 t success_show
ffffff80081487e0 t fail_show
ffffff8008148818 t failed_freeze_show
ffffff8008148850 t failed_prepare_show
ffffff8008148888 t failed_suspend_show
ffffff80081488c0 t failed_suspend_late_show
ffffff80081488f8 t failed_suspend_noirq_show
ffffff8008148930 t failed_resume_show
ffffff8008148968 t failed_resume_early_show
ffffff80081489a0 t failed_resume_noirq_show
ffffff80081489d8 t last_failed_dev_show
ffffff8008148a30 t last_failed_errno_show
ffffff8008148a88 t last_failed_step_show
ffffff8008148b00 T pm_vt_switch_required
ffffff8008148bc8 T pm_vt_switch_unregister
ffffff8008148c60 T pm_prepare_console
ffffff8008148d00 T pm_restore_console
ffffff8008148da0 T freeze_processes
ffffff8008148e88 t try_to_freeze_tasks
ffffff8008149288 T thaw_processes
ffffff8008149528 T freeze_kernel_threads
ffffff80081495a0 T thaw_kernel_threads
ffffff8008149660 T pm_suspend_via_s2idle
ffffff8008149678 T s2idle_set_ops
ffffff80081496a8 T s2idle_wake
ffffff8008149700 T suspend_set_ops
ffffff80081497d8 T suspend_valid_only_mem
ffffff80081497e8 W arch_suspend_disable_irqs
ffffff80081497f0 W arch_suspend_enable_irqs
ffffff80081497f8 T suspend_devices_and_enter
ffffff800814a120 T pm_suspend
ffffff800814a770 T pm_show_wakelocks
ffffff800814a850 T pm_wake_lock
ffffff800814a990 t wakelock_lookup_add
ffffff800814aad0 T pm_wake_unlock
ffffff800814abd8 t handle_poweroff
ffffff800814ac10 t do_poweroff
ffffff800814ac28 T em_cpu_get
ffffff800814ac48 T em_register_perf_domain
ffffff800814af68 T log_irq_wakeup_reason
ffffff800814aff0 t add_sibling_node_sorted
ffffff800814b0f8 T log_threaded_irq_wakeup_reason
ffffff800814b240 T log_suspend_abort_reason
ffffff800814b350 T log_abnormal_wakeup_reason
ffffff800814b460 T clear_wakeup_reasons
ffffff800814b568 t wakeup_reason_pm_event
ffffff800814b698 t last_resume_reason_show
ffffff800814b798 t last_suspend_time_show
ffffff800814b860 t trace_event_raw_event_console
ffffff800814b968 t perf_trace_console
ffffff800814ba90 t __bpf_trace_console
ffffff800814bb20 T devkmsg_sysctl_set_loglvl
ffffff800814bc90 t __control_devkmsg
ffffff800814bd30 T log_buf_addr_get
ffffff800814bd40 T log_buf_len_get
ffffff800814bd50 t devkmsg_llseek
ffffff800814be20 t devkmsg_read
ffffff800814c150 t devkmsg_write
ffffff800814c2c0 t devkmsg_poll
ffffff800814c360 t devkmsg_open
ffffff800814c4b8 t devkmsg_release
ffffff800814c510 T printk
ffffff800814c5a8 T do_syslog
ffffff800814d0a8 t msg_print_text
ffffff800814d2d0 T __arm64_sys_syslog
ffffff800814d300 T vprintk_store
ffffff800814d6b8 T vprintk_emit
ffffff800814d918 T console_unlock
ffffff800814def0 T wake_up_klogd
ffffff800814dfb0 T vprintk
ffffff800814e004 T printk_emit
ffffff800814e090 T vprintk_default
ffffff800814e0f8 t console_setup
ffffff800814e210 T force_oem_console_setup
ffffff800814e228 T add_preferred_console
ffffff800814e240 t __add_preferred_console
ffffff800814e480 T suspend_console
ffffff800814e500 T console_lock
ffffff800814e538 T resume_console
ffffff800814e570 T console_trylock
ffffff800814e600 T is_console_locked
ffffff800814e610 t msg_print_ext_body
ffffff800814e788 T console_unblank
ffffff800814e838 T console_flush_on_panic
ffffff800814e8c0 T console_device
ffffff800814e948 T console_stop
ffffff800814e998 T console_start
ffffff800814e9e8 T register_console
ffffff800814ed78 T unregister_console
ffffff800814eea0 T defer_console_output
ffffff800814ef18 T vprintk_deferred
ffffff800814efec T printk_deferred
ffffff800814f088 T __printk_ratelimit
ffffff800814f0a8 T printk_timed_ratelimit
ffffff800814f108 T kmsg_dump_register
ffffff800814f1b0 T kmsg_dump_unregister
ffffff800814f238 T kmsg_dump
ffffff800814f338 T kmsg_dump_get_line_nolock
ffffff800814f420 T kmsg_dump_get_line
ffffff800814f550 T kmsg_dump_get_buffer
ffffff800814f8b8 T kmsg_dump_rewind_nolock
ffffff800814f8e8 T kmsg_dump_rewind
ffffff800814f960 t trace_raw_output_console
ffffff800814f9b8 t cont_add
ffffff800814fad8 t log_store
ffffff800814fe30 t wake_up_klogd_work_func
ffffff800814fef8 T printk_safe_flush
ffffff800814ffb0 t __printk_safe_flush
ffffff8008150230 T printk_safe_flush_on_panic
ffffff8008150310 T printk_nmi_enter
ffffff8008150378 T printk_nmi_exit
ffffff80081503e0 T printk_nmi_direct_enter
ffffff8008150490 T printk_nmi_direct_exit
ffffff80081504f8 T __printk_safe_enter
ffffff8008150560 T __printk_safe_exit
ffffff80081505c8 T vprintk_func
ffffff80081507b8 t printk_safe_log_store
ffffff80081508e0 T irq_to_desc
ffffff8008150900 T irq_lock_sparse
ffffff8008150920 T irq_unlock_sparse
ffffff8008150940 t alloc_desc
ffffff8008150ac8 T generic_handle_irq
ffffff8008150b08 T __handle_domain_irq
ffffff8008150bc8 T irq_free_descs
ffffff8008150cd0 T irq_get_next_irq
ffffff8008150cf8 T __irq_get_desc_lock
ffffff8008150d88 T __irq_put_desc_unlock
ffffff8008150dd0 T irq_set_percpu_devid_partition
ffffff8008150e78 T irq_set_percpu_devid
ffffff8008150f10 T irq_get_percpu_devid_partition
ffffff8008150f70 T kstat_incr_irq_this_cpu
ffffff8008150fc8 T kstat_irqs_cpu
ffffff8008151018 T kstat_irqs
ffffff80081510e0 T kstat_irqs_usr
ffffff80081511b8 t irq_sysfs_add
ffffff8008151210 t irq_kobj_release
ffffff8008151240 t per_cpu_count_show
ffffff80081513c8 t chip_name_show
ffffff8008151438 t hwirq_show
ffffff80081514a8 t type_show
ffffff8008151520 t wakeup_show
ffffff8008151598 t name_show
ffffff8008151600 t actions_show
ffffff80081516e8 t delayed_free_desc
ffffff8008151700 T handle_bad_irq
ffffff8008151950 T no_action
ffffff8008151958 T __irq_wake_thread
ffffff80081519c8 T __handle_irq_event_percpu
ffffff8008151c80 T handle_irq_event_percpu
ffffff8008151d08 T handle_irq_event
ffffff8008151dd8 T synchronize_hardirq
ffffff8008151e50 T synchronize_irq
ffffff8008151f68 T irq_can_set_affinity
ffffff8008151fb0 T irq_can_set_affinity_usr
ffffff8008152000 T irq_set_thread_affinity
ffffff8008152038 T irq_do_set_affinity
ffffff8008152110 T irq_set_affinity_locked
ffffff8008152288 T __irq_set_affinity
ffffff8008152300 T irq_set_affinity_hint
ffffff80081523c8 T irq_set_affinity_notifier
ffffff80081524a0 t irq_affinity_notify
ffffff8008152550 T irq_setup_affinity
ffffff80081526f0 T irq_set_vcpu_affinity