Skip to content
Snippets Groups Projects
kallsyms.txt 5.22 MiB
Newer Older
4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000
ffffff800818e270 t get_futex_value_locked
ffffff800818e3b8 t futex_lock_pi_atomic
ffffff800818e580 t attach_to_pi_state
ffffff800818e6d8 t attach_to_pi_owner
ffffff800818e8f0 t unqueue_me_pi
ffffff800818e990 t fixup_pi_state_owner
ffffff800818ed90 T smpcfd_prepare_cpu
ffffff800818ede8 T smpcfd_dead_cpu
ffffff800818ee18 T smpcfd_dying_cpu
ffffff800818ee38 t flush_smp_call_function_queue
ffffff800818efb8 T generic_smp_call_function_single_interrupt
ffffff800818efd0 T smp_call_function_single
ffffff800818f170 t generic_exec_single
ffffff800818f298 T smp_call_function_single_async
ffffff800818f340 T smp_call_function_any
ffffff800818f460 T smp_call_function_many
ffffff800818f868 T smp_call_function
ffffff800818f8d8 W arch_disable_smp_support
ffffff800818f8e0 T on_each_cpu
ffffff800818f998 T on_each_cpu_mask
ffffff800818fa48 T on_each_cpu_cond
ffffff800818fbd8 T kick_all_cpus_sync
ffffff800818fc40 t do_nothing
ffffff800818fc48 T wake_up_all_idle_cpus
ffffff800818fd50 T smp_call_on_cpu
ffffff800818fe70 t smp_call_on_cpu_callback
ffffff800818fea8 T __arm64_sys_chown16
ffffff800818fee8 T __arm64_sys_lchown16
ffffff800818ff28 T __arm64_sys_fchown16
ffffff800818ff60 T __arm64_sys_setregid16
ffffff800818ff90 T __arm64_sys_setgid16
ffffff800818ffb8 T __arm64_sys_setreuid16
ffffff800818ffe8 T __arm64_sys_setuid16
ffffff8008190010 T __arm64_sys_setresuid16
ffffff8008190050 T __arm64_sys_getresuid16
ffffff80081903e8 T __arm64_sys_setresgid16
ffffff8008190428 T __arm64_sys_getresgid16
ffffff80081907c0 T __arm64_sys_setfsuid16
ffffff80081907e8 T __arm64_sys_setfsgid16
ffffff8008190810 T __arm64_sys_getgroups16
ffffff80081909c0 T __arm64_sys_setgroups16
ffffff8008190be0 T __arm64_sys_getuid16
ffffff8008190c10 T __arm64_sys_geteuid16
ffffff8008190c40 T __arm64_sys_getgid16
ffffff8008190c70 T __arm64_sys_getegid16
ffffff8008190ca0 t trace_event_raw_event_module_load
ffffff8008190da0 t perf_trace_module_load
ffffff8008190ec8 t trace_event_raw_event_module_free
ffffff8008190fb8 t perf_trace_module_free
ffffff80081910d0 t trace_event_raw_event_module_refcnt
ffffff80081911d8 t perf_trace_module_refcnt
ffffff8008191310 t trace_event_raw_event_module_request
ffffff8008191420 t perf_trace_module_request
ffffff8008191558 t __bpf_trace_module_load
ffffff80081915c0 t __bpf_trace_module_free
ffffff8008191628 t __bpf_trace_module_refcnt
ffffff80081916b8 t __bpf_trace_module_request
ffffff8008191768 T is_module_sig_enforced
ffffff8008191778 T register_module_notifier
ffffff8008191798 T unregister_module_notifier
ffffff80081917b8 T __module_put_and_exit
ffffff80081917d8 T module_put
ffffff8008191918 T each_symbol_section
ffffff8008191ad0 T find_symbol
ffffff8008191b68 t find_symbol_in_section
ffffff8008191c38 T find_module
ffffff8008191cd8 T __is_module_percpu_address
ffffff8008191e28 T is_module_percpu_address
ffffff8008191e48 T ref_module
ffffff8008191f68 T module_refcount
ffffff8008191f78 T __arm64_sys_delete_module
ffffff80081921c8 T __symbol_put
ffffff8008192270 T symbol_put_addr
ffffff8008192318 T __module_text_address
ffffff8008192378 T __module_get
ffffff8008192478 T try_module_get
ffffff80081925c0 t store_uevent
ffffff80081925f8 T module_disable_ro
ffffff8008192730 T module_enable_ro
ffffff8008192870 T set_all_modules_text_rw
ffffff8008192928 T set_all_modules_text_ro
ffffff80081929e8 W module_memfree
ffffff8008192a00 W module_arch_cleanup
ffffff8008192a08 W module_arch_freeing_init
ffffff8008192a10 T __symbol_get
ffffff8008192af8 W arch_mod_section_prepend
ffffff8008192b28 T __arm64_sys_init_module
ffffff8008192cf0 T __arm64_sys_finit_module
ffffff8008192de0 W dereference_module_function_descriptor
ffffff8008192de8 T module_address_lookup
ffffff8008192e98 T __module_address
ffffff8008192f88 t get_ksymbol
ffffff8008193130 T lookup_module_symbol_name
ffffff8008193240 T lookup_module_symbol_attrs
ffffff8008193380 T module_get_kallsym
ffffff8008193520 T module_kallsyms_lookup_name
ffffff80081936e0 T module_kallsyms_on_each_symbol
ffffff80081937b0 T search_module_extables
ffffff8008193828 T is_module_address
ffffff8008193880 T is_module_text_address
ffffff8008193928 T print_modules
ffffff8008193b00 T module_layout
ffffff8008193b08 t trace_raw_output_module_load
ffffff8008193b90 t trace_raw_output_module_free
ffffff8008193be8 t trace_raw_output_module_refcnt
ffffff8008193c48 t trace_raw_output_module_request
ffffff8008193ca8 t cmp_name
ffffff8008193cc8 t free_module
ffffff8008194008 t module_unload_free
ffffff80081940d0 t mod_tree_remove
ffffff8008194180 t disable_ro_nx
ffffff8008194310 t load_module
ffffff80081978c0 t unknown_module_param_cb
ffffff8008197948 t do_init_module
ffffff8008197b38 t check_version
ffffff8008197c20 t __mod_tree_insert
ffffff8008197d30 t show_modinfo_version
ffffff8008197d60 t setup_modinfo_version
ffffff8008197d98 t modinfo_version_exists
ffffff8008197da8 t free_modinfo_version
ffffff8008197dd0 t show_modinfo_srcversion
ffffff8008197e00 t setup_modinfo_srcversion
ffffff8008197e38 t modinfo_srcversion_exists
ffffff8008197e48 t free_modinfo_srcversion
ffffff8008197e70 t show_initstate
ffffff8008197eb8 t show_coresize
ffffff8008197ee8 t show_initsize
ffffff8008197f18 t show_taint
ffffff8008197f88 t show_refcnt
ffffff8008197fb8 t resolve_symbol
ffffff80081980c8 t module_sect_show
ffffff8008198110 t module_notes_read
ffffff8008198148 t do_free_init
ffffff8008198178 t modules_open
ffffff80081981c8 t m_start
ffffff8008198200 t m_stop
ffffff8008198220 t m_next
ffffff8008198240 t m_show
ffffff80081984b0 T mod_verify_sig
ffffff80081985c8 T kallsyms_lookup_name
ffffff8008198720 T kallsyms_on_each_symbol
ffffff8008198888 T kallsyms_lookup_size_offset
ffffff8008198958 t get_symbol_pos
ffffff8008198a88 T kallsyms_lookup
ffffff8008198c10 T lookup_symbol_name
ffffff8008198d38 T lookup_symbol_attrs
ffffff8008198e68 T sprint_symbol
ffffff8008198e88 t __sprint_symbol
ffffff8008198f88 T sprint_symbol_no_offset
ffffff8008198fa8 T sprint_backtrace
ffffff8008198fc8 W arch_get_kallsym
ffffff8008198fd0 T kallsyms_show_value
ffffff8008199028 t kallsyms_open
ffffff80081990c8 t s_start
ffffff8008199100 t s_stop
ffffff8008199108 t s_next
ffffff8008199148 t s_show
ffffff80081991e8 t update_iter
ffffff8008199448 T compat_get_timex
ffffff8008199590 T compat_put_timex
ffffff80081996c0 T compat_get_timeval
ffffff8008199948 T compat_put_timeval
ffffff8008199bb8 T compat_get_timespec
ffffff8008199e40 T compat_put_timespec
ffffff800819a0b0 T get_compat_itimerval
ffffff800819a198 T put_compat_itimerval
ffffff800819a260 T __arm64_compat_sys_sigprocmask
ffffff800819a560 T put_compat_rusage
ffffff800819a678 T __arm64_compat_sys_sched_setaffinity
ffffff800819a710 T __arm64_compat_sys_sched_getaffinity
ffffff800819a7c0 T get_compat_sigevent
ffffff800819ac98 T compat_get_bitmap
ffffff800819b058 T compat_put_bitmap
ffffff800819b410 T get_compat_sigset
ffffff800819b4b8 T compat_alloc_user_space
ffffff800819b530 t trace_event_raw_event_cgroup_root
ffffff800819b640 t perf_trace_cgroup_root
ffffff800819b770 t trace_event_raw_event_cgroup
ffffff800819b888 t perf_trace_cgroup
ffffff800819b9c0 t trace_event_raw_event_cgroup_migrate
ffffff800819bb28 t perf_trace_cgroup_migrate
ffffff800819bcb0 t __bpf_trace_cgroup_root
ffffff800819bd18 t __bpf_trace_cgroup
ffffff800819bda8 t __bpf_trace_cgroup_migrate
ffffff800819be80 T cgroup_ssid_enabled
ffffff800819bea0 T cgroup_on_dfl
ffffff800819beb8 T cgroup_is_threaded
ffffff800819bec8 T cgroup_is_thread_root
ffffff800819bf10 T cgroup_get_e_css
ffffff800819c1c0 T of_css
ffffff800819c1e8 T put_css_set_locked
ffffff800819c4f0 T cgroup_root_from_kf
ffffff800819c500 T cgroup_free_root
ffffff800819c530 T task_cgroup_from_root
ffffff800819c5a0 T cgroup_kn_unlock
ffffff800819c6a0 T cgroup_kn_lock_live
ffffff800819c808 T cgroup_lock_and_drain_offline
ffffff800819cbf0 T rebind_subsystems
ffffff800819d0d8 T css_next_child
ffffff800819d150 t cgroup_apply_control
ffffff800819d398 t cgroup_finalize_control
ffffff800819d798 T cgroup_show_path
ffffff800819d8d8 T init_cgroup_root
ffffff800819da90 T cgroup_setup_root
ffffff800819e078 t cgroup_idr_alloc
ffffff800819e120 t css_release
ffffff800819e160 t css_populate_dir
ffffff800819e290 t link_css_set
ffffff800819e370 T cgroup_do_mount
ffffff800819e580 t cgroup_mount
ffffff800819ea20 t cgroup_kill_sb
ffffff800819eb40 T cgroup_path_ns_locked
ffffff800819ebd8 T cgroup_path_ns
ffffff800819ecc0 T task_cgroup_path
ffffff800819ee68 T cgroup_taskset_first
ffffff800819eed8 T cgroup_taskset_next
ffffff800819ef60 T cgroup_migrate_vet_dst
ffffff800819f038 T cgroup_migrate_finish
ffffff800819f170 T cgroup_migrate_add_src
ffffff800819f2d8 T cgroup_migrate_prepare_dst
ffffff800819f588 t find_css_set
ffffff800819fce8 T cgroup_migrate
ffffff800819fd70 t cgroup_migrate_add_task
ffffff800819fe90 t cgroup_migrate_execute
ffffff80081a01f0 T cgroup_attach_task
ffffff80081a0510 T cgroup_procs_write_start
ffffff80081a05e8 T cgroup_procs_write_finish
ffffff80081a06c0 T css_next_descendant_post
ffffff80081a0788 t cgroup_get_live
ffffff80081a0858 T cgroup_rm_cftypes
ffffff80081a0928 T cgroup_add_dfl_cftypes
ffffff80081a0960 t cgroup_add_cftypes
ffffff80081a0ab8 T cgroup_add_legacy_cftypes
ffffff80081a0af0 T cgroup_file_notify
ffffff80081a0b80 T css_next_descendant_pre
ffffff80081a0c40 T css_rightmost_descendant
ffffff80081a0cd8 T css_has_online_children
ffffff80081a0d88 T css_task_iter_start
ffffff80081a0e28 t css_task_iter_advance
ffffff80081a0f00 T css_task_iter_next
ffffff80081a0f98 T css_task_iter_end
ffffff80081a1070 T cgroup_mkdir
ffffff80081a1708 t cgroup_apply_control_enable
ffffff80081a1c48 t cgroup_destroy_locked
ffffff80081a1ec8 T cgroup_rmdir
ffffff80081a2008 t cgroup_init_cftypes
ffffff80081a2140 t css_set_hash
ffffff80081a2178 T cgroup_path_from_kernfs_id
ffffff80081a21d8 T proc_cgroup_show
ffffff80081a2690 T cgroup_fork
ffffff80081a26b0 T cgroup_can_fork
ffffff80081a27f0 T cgroup_cancel_fork
ffffff80081a28b8 T cgroup_post_fork
ffffff80081a29d8 t css_set_move_task
ffffff80081a2d78 T cgroup_exit
ffffff80081a2eb8 T cgroup_release
ffffff80081a3010 T cgroup_free
ffffff80081a3068 T css_tryget_online_from_dir
ffffff80081a31e8 T css_from_id
ffffff80081a3208 T cgroup_get_from_path
ffffff80081a3298 T cgroup_get_from_fd
ffffff80081a33b0 T cgroup_sk_alloc
ffffff80081a3588 T cgroup_sk_free
ffffff80081a3668 T cgroup_bpf_attach
ffffff80081a36d8 T cgroup_bpf_detach
ffffff80081a3748 T cgroup_bpf_query
ffffff80081a37a8 T cgroup_parse_float
ffffff80081a38b0 t trace_raw_output_cgroup_root
ffffff80081a3910 t trace_raw_output_cgroup
ffffff80081a3970 t trace_raw_output_cgroup_migrate
ffffff80081a39d8 t cgroup_addrm_files
ffffff80081a3d58 t cgroup_file_notify_timer
ffffff80081a3de0 t cgroup_propagate_control
ffffff80081a4008 t kill_css
ffffff80081a4168 t css_killed_ref_fn
ffffff80081a41d0 t css_killed_work_fn
ffffff80081a4340 t cgroup_apply_cftypes
ffffff80081a4548 t css_task_iter_advance_css_set
ffffff80081a46f8 t css_release_work_fn
ffffff80081a49a0 t css_free_rwork_fn
ffffff80081a4ea8 t init_and_link_css
ffffff80081a5050 t cgroup_remount
ffffff80081a5168 t cgroup_show_options
ffffff80081a5198 t cgroup_file_open
ffffff80081a51c8 t cgroup_file_release
ffffff80081a51f0 t cgroup_seqfile_show
ffffff80081a5298 t cgroup_seqfile_start
ffffff80081a52c0 t cgroup_seqfile_next
ffffff80081a52e8 t cgroup_seqfile_stop
ffffff80081a5310 t cgroup_file_write
ffffff80081a5460 t cgroup_file_poll
ffffff80081a5490 t cgroup_type_show
ffffff80081a5580 t cgroup_type_write
ffffff80081a5890 t cgroup_procs_release
ffffff80081a58c0 t cgroup_procs_show
ffffff80081a5908 t cgroup_procs_start
ffffff80081a5968 t cgroup_procs_next
ffffff80081a5998 t cgroup_procs_write
ffffff80081a5aa0 t cgroup_threads_start
ffffff80081a5ab8 t cgroup_threads_write
ffffff80081a5be0 t cgroup_controllers_show
ffffff80081a5c80 t cgroup_subtree_control_show
ffffff80081a5cc8 t cgroup_subtree_control_write
ffffff80081a6180 t cgroup_events_show
ffffff80081a61e8 t cgroup_max_descendants_show
ffffff80081a6258 t cgroup_max_descendants_write
ffffff80081a6330 t cgroup_max_depth_show
ffffff80081a63a0 t cgroup_max_depth_write
ffffff80081a6478 t cgroup_stat_show
ffffff80081a64f0 t cpu_stat_show
ffffff80081a6730 t cgroup_pressure_release
ffffff80081a6750 t cgroup_io_pressure_show
ffffff80081a6798 t cgroup_io_pressure_write
ffffff80081a67b0 t cgroup_pressure_poll
ffffff80081a67d0 t cgroup_memory_pressure_show
ffffff80081a6818 t cgroup_memory_pressure_write
ffffff80081a6830 t cgroup_cpu_pressure_show
ffffff80081a6878 t cgroup_cpu_pressure_write
ffffff80081a6890 t __cgroup_procs_start
ffffff80081a69e0 t cgroup_procs_write_permission
ffffff80081a6b18 t cgroup_print_ss_mask
ffffff80081a6c30 t cgroup_pressure_write
ffffff80081a6ed0 t delegate_show
ffffff80081a7050 t features_show
ffffff80081a7078 T cgroup_rstat_updated
ffffff80081a7130 T cgroup_rstat_flush
ffffff80081a7170 t cgroup_rstat_flush_locked
ffffff80081a7498 T cgroup_rstat_flush_irqsafe
ffffff80081a74e8 T cgroup_rstat_flush_hold
ffffff80081a7520 T cgroup_rstat_flush_release
ffffff80081a7540 T cgroup_rstat_init
ffffff80081a75e0 T cgroup_rstat_exit
ffffff80081a7690 T __cgroup_account_cputime
ffffff80081a77a0 T __cgroup_account_cputime_field
ffffff80081a78d8 T cgroup_base_stat_cputime_show
ffffff80081a79c8 T free_cgroup_ns
ffffff80081a7a40 T copy_cgroup_ns
ffffff80081a7bc0 t cgroupns_get
ffffff80081a7c20 t cgroupns_put
ffffff80081a7c58 t cgroupns_install
ffffff80081a7cf8 t cgroupns_owner
ffffff80081a7d00 T cgroup1_ssid_disabled
ffffff80081a7d18 T cgroup_attach_task_all
ffffff80081a7e08 T cgroup_transfer_tasks
ffffff80081a80e0 T cgroup1_pidlist_destroy_all
ffffff80081a8170 T cgroup_task_count
ffffff80081a81d8 t cgroup_pidlist_show
ffffff80081a8200 t cgroup_pidlist_start
ffffff80081a8620 t cgroup_pidlist_next
ffffff80081a8668 t cgroup_pidlist_stop
ffffff80081a86c0 t cgroup1_procs_write
ffffff80081a86d8 t cgroup_clone_children_read
ffffff80081a86e8 t cgroup_clone_children_write
ffffff80081a8718 t cgroup_sane_behavior_show
ffffff80081a8738 t cgroup1_tasks_write
ffffff80081a8750 t cgroup_read_notify_on_release
ffffff80081a8760 t cgroup_write_notify_on_release
ffffff80081a8790 t cgroup_release_agent_show
ffffff80081a87f8 t cgroup_release_agent_write
ffffff80081a8890 T proc_cgroupstats_show
ffffff80081a8aa0 T cgroupstats_build
ffffff80081a8c10 T cgroup1_check_for_release
ffffff80081a8c78 T cgroup1_release_agent
ffffff80081a8dc8 t cgroup1_remount
ffffff80081a9030 t cgroup1_show_options
ffffff80081a9388 t cgroup1_rename
ffffff80081a9530 T cgroup1_mount
ffffff80081a9b08 t parse_cgroupfs_options
ffffff80081aa0d0 t cmppid
ffffff80081aa0e0 t cgroup_pidlist_destroy_work_fn
ffffff80081aa168 t __cgroup1_procs_write
ffffff80081aa2a8 T cgroup_freezing
ffffff80081aa2e8 T unfreezer_fork
ffffff80081aa348 t freezer_change_state
ffffff80081aa598 t freezer_css_alloc
ffffff80081aa5d0 t freezer_css_online
ffffff80081aa648 t freezer_css_offline
ffffff80081aa6a0 t freezer_css_free
ffffff80081aa6b8 t freezer_attach
ffffff80081aa770 t freezer_fork
ffffff80081aa7e8 t freezer_apply_state
ffffff80081aa988 t freezer_read
ffffff80081aacd8 t freezer_write
ffffff80081aad58 t freezer_self_freezing_read
ffffff80081aad68 t freezer_parent_freezing_read
ffffff80081aad78 T rebuild_sched_domains
ffffff80081aadb8 t rebuild_sched_domains_locked
ffffff80081ab320 T current_cpuset_is_being_rebound
ffffff80081ab360 t cpuset_css_alloc
ffffff80081ab3d8 t cpuset_css_online
ffffff80081ab5c0 t cpuset_css_offline
ffffff80081ab6b0 t cpuset_css_free
ffffff80081ab6c8 t cpuset_can_attach
ffffff80081ab7f8 t cpuset_cancel_attach
ffffff80081ab870 t cpuset_attach
ffffff80081abb78 t cpuset_post_attach
ffffff80081abb98 t cpuset_fork
ffffff80081abbe0 t cpuset_bind
ffffff80081abc78 T cpuset_force_rebuild
ffffff80081abc88 T cpuset_update_active_cpus
ffffff80081abcb0 T cpuset_wait_for_hotplug
ffffff80081abcd0 T cpuset_cpus_allowed
ffffff80081abd58 T cpuset_cpus_allowed_fallback
ffffff80081abdc0 T cpuset_mems_allowed
ffffff80081abe40 T cpuset_nodemask_valid_mems_allowed
ffffff80081abe58 T __cpuset_node_allowed
ffffff80081abf40 T cpuset_mem_spread_node
ffffff80081abf80 T cpuset_slab_spread_node
ffffff80081abfc0 T cpuset_mems_allowed_intersects
ffffff80081abfd8 T cpuset_print_current_mems_allowed
ffffff80081ac038 T __cpuset_memory_pressure_bump
ffffff80081ac110 T proc_cpuset_show
ffffff80081ac388 T cpuset_task_status_allowed
ffffff80081ac3e0 t update_domain_attr_tree
ffffff80081ac460 t update_flag
ffffff80081ac610 t validate_change
ffffff80081ac870 t cpuset_migrate_mm_workfn
ffffff80081ac8a0 t cpuset_common_seq_show
ffffff80081ac970 t cpuset_write_resmask
ffffff80081ad2d8 t cpuset_read_u64
ffffff80081ad420 t cpuset_write_u64
ffffff80081ad518 t cpuset_read_s64
ffffff80081ad530 t cpuset_write_s64
ffffff80081ad5f8 t update_tasks_cpumask
ffffff80081ad6b8 t update_tasks_nodemask
ffffff80081ad880 t cpuset_mount
ffffff80081ad940 t cpuset_hotplug_workfn
ffffff80081adf10 T copy_utsname
ffffff80081ae060 T free_uts_ns
ffffff80081ae0a0 t utsns_get
ffffff80081ae0f8 t utsns_put
ffffff80081ae148 t utsns_install
ffffff80081ae1e8 t utsns_owner
ffffff80081ae1f0 t ikconfig_read_current
ffffff80081ae228 t ikheaders_read
ffffff80081ae260 T stop_one_cpu
ffffff80081ae310 t cpu_stop_queue_work
ffffff80081ae458 T stop_two_cpus
ffffff80081ae700 t multi_cpu_stop
ffffff80081ae890 T stop_one_cpu_nowait
ffffff80081ae8b8 T stop_cpus
ffffff80081ae918 t __stop_cpus
ffffff80081ae9e8 T try_stop_cpus
ffffff80081aea50 T stop_machine_park
ffffff80081aea88 T stop_machine_unpark
ffffff80081aeac0 T stop_machine_cpuslocked
ffffff80081aebb8 T stop_machine
ffffff80081aec08 T stop_machine_from_inactive_cpu
ffffff80081aed80 t queue_stop_cpus_work
ffffff80081aee90 t cpu_stop_should_run
ffffff80081aeee8 t cpu_stopper_thread
ffffff80081af030 t cpu_stop_create
ffffff80081af060 t cpu_stop_park
ffffff80081af0b0 T auditd_test_task
ffffff80081af100 T audit_ctl_lock
ffffff80081af130 T audit_ctl_unlock
ffffff80081af150 T audit_panic
ffffff80081af1b8 T audit_log_lost
ffffff80081af2d0 T audit_send_list
ffffff80081af3a8 T audit_make_reply
ffffff80081af498 T is_audit_feature_set
ffffff80081af4b8 T audit_serial
ffffff80081af4d8 T audit_log_start
ffffff80081af868 T audit_log_format
ffffff80081af908 t audit_log_vformat
ffffff80081afaf0 T audit_log_n_hex
ffffff80081afc38 T audit_log_n_string
ffffff80081afd28 T audit_string_contains_control
ffffff80081afd70 T audit_log_n_untrustedstring
ffffff80081afdc8 T audit_log_untrustedstring
ffffff80081afe48 T audit_log_d_path
ffffff80081aff70 T audit_log_session_info
ffffff80081aff98 T audit_log_key
ffffff80081b0038 T audit_log_cap
ffffff80081b0098 T audit_copy_inode
ffffff80081b0158 T audit_log_name
ffffff80081b0498 T audit_log_end
ffffff80081b0590 T audit_log_task_context
ffffff80081b0690 T audit_log_d_path_exe
ffffff80081b06f0 T audit_get_tty
ffffff80081b0758 T audit_put_tty
ffffff80081b0770 T audit_log_task_info
ffffff80081b09c8 T audit_log_link_denied
ffffff80081b0a58 T audit_log
ffffff80081b0b10 t kauditd_thread
ffffff80081b0df0 t audit_net_init
ffffff80081b0ef8 t audit_net_exit
ffffff80081b0f38 t audit_receive
ffffff80081b25b8 t audit_bind
ffffff80081b25d8 t audit_send_reply
ffffff80081b2720 t audit_set_enabled
ffffff80081b27b8 t audit_log_config_change
ffffff80081b2868 t auditd_reset
ffffff80081b2908 t audit_send_reply_thread
ffffff80081b29a8 t auditd_conn_free
ffffff80081b29f0 t kauditd_hold_skb
ffffff80081b2a98 t kauditd_send_queue
ffffff80081b2c90 t kauditd_send_multicast_skb
ffffff80081b2d30 t kauditd_retry_skb
ffffff80081b2d50 T audit_free_rule_rcu
ffffff80081b2e18 T audit_unpack_string
ffffff80081b2ec0 T audit_match_class
ffffff80081b2f08 T audit_dupe_rule
ffffff80081b3198 T audit_del_rule
ffffff80081b3390 t audit_match_signal
ffffff80081b34c8 T audit_rule_change
ffffff80081b3918 t audit_data_to_entry
ffffff80081b4010 t audit_log_rule_change
ffffff80081b40b0 T audit_list_rules_send
ffffff80081b43f0 T audit_comparator
ffffff80081b4478 T audit_uid_comparator
ffffff80081b44e8 T audit_gid_comparator
ffffff80081b4558 T parent_len
ffffff80081b45e0 T audit_compare_dname_path
ffffff80081b46d0 T audit_filter
ffffff80081b4a90 T audit_update_lsm_rules
ffffff80081b4c98 t audit_compare_rule
ffffff80081b4e58 T audit_filter_inodes
ffffff80081b4f68 T audit_alloc
ffffff80081b50e8 T __audit_free
ffffff80081b53c0 t audit_log_exit
ffffff80081b5f58 T __audit_syscall_entry
ffffff80081b6048 T __audit_syscall_exit
ffffff80081b6358 T __audit_reusename
ffffff80081b63a8 T __audit_getname
ffffff80081b64d0 T __audit_inode
ffffff80081b6af0 T __audit_file
ffffff80081b6b10 T __audit_inode_child
ffffff80081b70c8 T auditsc_get_stamp
ffffff80081b7150 T audit_set_loginuid
ffffff80081b72f0 T __audit_mq_open
ffffff80081b7358 T __audit_mq_sendrecv
ffffff80081b73c8 T __audit_mq_notify
ffffff80081b73f8 T __audit_mq_getsetattr
ffffff80081b7440 T __audit_ipc_obj
ffffff80081b7490 T __audit_ipc_set_perm
ffffff80081b74b8 T __audit_bprm
ffffff80081b74d8 T __audit_socketcall
ffffff80081b7530 T __audit_fd_pair
ffffff80081b7548 T __audit_sockaddr
ffffff80081b75c8 T __audit_ptrace
ffffff80081b7640 T audit_signal_info
ffffff80081b7830 T __audit_log_bprm_fcaps
ffffff80081b7948 T __audit_log_capset
ffffff80081b7998 T __audit_mmap_fd
ffffff80081b79b8 T __audit_log_kern_module
ffffff80081b7a00 T __audit_fanotify
ffffff80081b7a38 T audit_core_dumps
ffffff80081b7b38 T audit_seccomp
ffffff80081b7c70 T audit_seccomp_actions_logged
ffffff80081b7d18 T audit_killed_trees
ffffff80081b7d40 t audit_filter_rules
ffffff80081b8a28 t audit_log_pid_context
ffffff80081b8b58 T audit_get_watch
ffffff80081b8b70 T audit_put_watch
ffffff80081b8be8 T audit_watch_path
ffffff80081b8bf0 T audit_watch_compare
ffffff80081b8c18 T audit_to_watch
ffffff80081b8cf8 T audit_add_watch
ffffff80081b90b0 T audit_remove_watch_rule
ffffff80081b91e0 T audit_dupe_exe
ffffff80081b9268 T audit_exe_compare
ffffff80081b92b8 t audit_watch_handle_event
ffffff80081b9558 t audit_watch_free_mark
ffffff80081b95a0 t audit_update_watch
ffffff80081b9a00 t audit_watch_log_rule_change
ffffff80081b9ab8 T audit_mark_path
ffffff80081b9ac0 T audit_mark_compare
ffffff80081b9ae8 T audit_alloc_mark
ffffff80081b9c58 T audit_remove_mark
ffffff80081b9c90 T audit_remove_mark_rule
ffffff80081b9cc8 t audit_mark_handle_event
ffffff80081b9e28 t audit_fsnotify_free_mark
ffffff80081b9e58 T audit_tree_path
ffffff80081b9e60 T audit_put_chunk
ffffff80081b9f00 T audit_tree_lookup
ffffff80081b9f60 T audit_tree_match
ffffff80081b9fa0 T audit_remove_tree_rule
ffffff80081ba0d0 T audit_trim_trees
ffffff80081ba308 t compare_root
ffffff80081ba320 t trim_marked
ffffff80081ba4b0 T audit_make_tree
ffffff80081ba598 T audit_put_tree
ffffff80081ba5c8 T audit_add_tree_rule
ffffff80081ba900 t tag_mount
ffffff80081bae48 T audit_tag_tree
ffffff80081bb318 T audit_kill_trees
ffffff80081bb428 t kill_rules
ffffff80081bb5b0 t untag_chunk
ffffff80081bb9e0 t alloc_chunk
ffffff80081bba88 t prune_tree_thread
ffffff80081bbb88 t audit_tree_handle_event
ffffff80081bbb90 t audit_tree_freeing_mark
ffffff80081bbe08 t audit_tree_destroy_watch
ffffff80081bbe28 t __put_chunk
ffffff80081bbed0 T proc_dohung_task_timeout_secs
ffffff80081bbf10 T reset_hung_task_detector
ffffff80081bbf20 t hungtask_pm_notify
ffffff80081bbf48 t watchdog
ffffff80081bc1a8 t hung_task_panic
ffffff80081bc1c0 W arch_seccomp_spec_mitigate
ffffff80081bc1c8 T get_seccomp_filter
ffffff80081bc1e8 T put_seccomp_filter
ffffff80081bc230 T __secure_computing
ffffff80081bc2f0 t __seccomp_filter
ffffff80081bc710 T prctl_get_seccomp
ffffff80081bc720 T __arm64_sys_seccomp
ffffff80081bc748 T prctl_set_seccomp
ffffff80081bc790 t do_seccomp
ffffff80081bcef0 t seccomp_check_filter
ffffff80081bcf78 t seccomp_actions_logged_handler
ffffff80081bd450 T uts_proc_notify
ffffff80081bd478 t proc_do_uts_string
ffffff80081bd5a8 T taskstats_exit
ffffff80081bd918 t prepare_reply
ffffff80081bda20 t mk_reply
ffffff80081bdb50 t taskstats_user_cmd
ffffff80081bde80 t taskstats2_user_cmd
ffffff80081be318 t taskstats2_foreach
ffffff80081be590 t cgroupstats_user_cmd
ffffff80081be6e8 t sysstats_user_cmd
ffffff80081beac8 t parse
ffffff80081beb70 t add_del_listener
ffffff80081bedd0 t next_tgid
ffffff80081bee98 T bacct_add_tsk
ffffff80081bf080 T xacct_add_tsk
ffffff80081bf180 T acct_update_integrals
ffffff80081bf208 T acct_account_cputime
ffffff80081bf280 T acct_clear_integrals
ffffff80081bf290 T tracepoint_probe_register_prio
ffffff80081bf508 T tracepoint_probe_register
ffffff80081bf520 T tracepoint_probe_unregister
ffffff80081bf758 T trace_module_has_bad_taint
ffffff80081bf770 T register_tracepoint_module_notifier
ffffff80081bf800 T unregister_tracepoint_module_notifier
ffffff80081bf890 T for_each_kernel_tracepoint
ffffff80081bf8f8 T syscall_regfunc
ffffff80081bf998 T syscall_unregfunc
ffffff80081bfa30 t rcu_free_old_probes
ffffff80081bfa58 t srcu_free_old_probes
ffffff80081bfa70 t tracepoint_module_notify
ffffff80081bfc20 W elf_core_extra_phdrs
ffffff80081bfc28 W elf_core_write_extra_phdrs
ffffff80081bfc30 W elf_core_write_extra_data
ffffff80081bfc38 W elf_core_extra_data_size
ffffff80081bfc40 T trace_clock_local
ffffff80081bfc98 T trace_clock
ffffff80081bfcb0 T trace_clock_jiffies
ffffff80081bfcd8 T trace_clock_global
ffffff80081bfd80 T trace_clock_counter
ffffff80081bfda0 T ring_buffer_print_entry_header
ffffff80081bfe78 T ring_buffer_event_length
ffffff80081bfef0 T ring_buffer_event_data
ffffff80081bff30 T ring_buffer_event_time_stamp
ffffff80081bff40 T ring_buffer_page_len
ffffff80081bff50 T ring_buffer_print_page_header
ffffff80081bfff0 T ring_buffer_wait
ffffff80081c0288 T ring_buffer_empty
ffffff80081c03c0 T ring_buffer_empty_cpu
ffffff80081c04d0 T ring_buffer_poll_wait
ffffff80081c0598 T ring_buffer_time_stamp
ffffff80081c05f0 T ring_buffer_normalize_time_stamp
ffffff80081c05f8 T __ring_buffer_alloc
ffffff80081c0840 t rb_wake_up_waiters
ffffff80081c0890 t rb_allocate_cpu_buffer
ffffff80081c0b38 t rb_free_cpu_buffer
ffffff80081c0c38 T ring_buffer_free
ffffff80081c0cd0 T ring_buffer_set_clock
ffffff80081c0cd8 T ring_buffer_set_time_stamp_abs
ffffff80081c0ce8 T ring_buffer_time_stamp_abs
ffffff80081c0cf0 T ring_buffer_resize
ffffff80081c1128 t __rb_allocate_pages
ffffff80081c13f8 t rb_update_pages
ffffff80081c1698 t rb_check_pages
ffffff80081c18b0 T ring_buffer_change_overwrite
ffffff80081c1908 T ring_buffer_nest_start
ffffff80081c1940 T ring_buffer_nest_end
ffffff80081c19a0 T ring_buffer_unlock_commit
ffffff80081c1a78 t rb_commit
ffffff80081c1cf8 T ring_buffer_lock_reserve
ffffff80081c2248 T ring_buffer_discard_commit
ffffff80081c2708 T ring_buffer_write
ffffff80081c2d28 T ring_buffer_record_disable
ffffff80081c2d40 T ring_buffer_record_enable
ffffff80081c2d60 T ring_buffer_record_off
ffffff80081c2d90 T ring_buffer_record_on
ffffff80081c2dc0 T ring_buffer_record_is_on
ffffff80081c2dd0 T ring_buffer_record_is_set_on
ffffff80081c2de0 T ring_buffer_record_disable_cpu
ffffff80081c2e20 T ring_buffer_record_enable_cpu
ffffff80081c2e68 T ring_buffer_oldest_event_ts
ffffff80081c2f08 t rb_set_head_page
ffffff80081c3048 T ring_buffer_bytes_cpu
ffffff80081c3088 T ring_buffer_entries_cpu
ffffff80081c30d0 T ring_buffer_overrun_cpu
ffffff80081c3108 T ring_buffer_commit_overrun_cpu
ffffff80081c3140 T ring_buffer_dropped_events_cpu
ffffff80081c3178 T ring_buffer_read_events_cpu
ffffff80081c31b0 T ring_buffer_entries
ffffff80081c3238 T ring_buffer_overruns
ffffff80081c32b0 T ring_buffer_iter_reset
ffffff80081c3328 T ring_buffer_iter_empty
ffffff80081c3398 T ring_buffer_peek
ffffff80081c34c0 T ring_buffer_iter_peek
ffffff80081c3538 t rb_buffer_peek
ffffff80081c36a0 t rb_advance_reader
ffffff80081c37c0 t rb_iter_peek
ffffff80081c3b38 T ring_buffer_consume
ffffff80081c3c78 T ring_buffer_read_prepare
ffffff80081c3d18 T ring_buffer_read_prepare_sync
ffffff80081c3d30 T ring_buffer_read_start
ffffff80081c3df0 T ring_buffer_read_finish
ffffff80081c3e68 T ring_buffer_read
ffffff80081c3ee8 t rb_advance_iter
ffffff80081c4050 T ring_buffer_size
ffffff80081c4090 T ring_buffer_reset_cpu
ffffff80081c4290 T ring_buffer_reset
ffffff80081c4300 T ring_buffer_alloc_read_page
ffffff80081c4400 T ring_buffer_free_read_page
ffffff80081c44b8 T ring_buffer_read_page
ffffff80081c4870 t rb_get_reader_page
ffffff80081c4a78 T trace_rb_cpu_prepare
ffffff80081c4b80 t update_pages_handler
ffffff80081c4bb0 t rb_handle_timestamp
ffffff80081c4c20 t rb_move_tail
ffffff80081c51e8 t rb_add_time_stamp
ffffff80081c5230 T ns2usecs
ffffff80081c5258 T trace_array_get
ffffff80081c52d0 T trace_array_put
ffffff80081c5330 T call_filter_check_discard
ffffff80081c5430 T trace_free_pid_list
ffffff80081c5460 T trace_find_filtered_pid
ffffff80081c5498 T trace_ignore_this_task
ffffff80081c54e0 T trace_filter_add_remove_task
ffffff80081c5570 T trace_pid_next
ffffff80081c55b8 T trace_pid_start
ffffff80081c5658 T trace_pid_show
ffffff80081c5680 T trace_pid_write
ffffff80081c5928 T trace_parser_get_init
ffffff80081c5980 T trace_parser_put
ffffff80081c59a8 T trace_get_user
ffffff80081c5e80 T ftrace_now
ffffff80081c5f08 T tracing_is_enabled
ffffff80081c5f28 T tracer_tracing_on
ffffff80081c5f58 T tracing_on
ffffff80081c5f90 T __trace_puts
ffffff80081c61d8 T __trace_bputs
ffffff80081c63d0 T tracing_snapshot
ffffff80081c6410 T tracing_alloc_snapshot
ffffff80081c6450 T tracing_snapshot_alloc
ffffff80081c6490 T tracer_tracing_off
ffffff80081c64c8 T tracing_off
ffffff80081c6500 T disable_trace_on_warning
ffffff80081c6548 T tracer_tracing_is_on
ffffff80081c6580 T tracing_is_on
ffffff80081c65b8 T nsecs_to_usecs
ffffff80081c65d8 T trace_clock_in_ns
ffffff80081c65f0 t dummy_set_flag
ffffff80081c65f8 t add_tracer_options
ffffff80081c6840 t tracing_set_tracer
ffffff80081c6a20 T tracing_reset
ffffff80081c6a68 T tracing_reset_online_cpus
ffffff80081c6b68 T tracing_reset_all_online_cpus
ffffff80081c6bb8 T is_tracing_stopped
ffffff80081c6bc8 T tracing_start
ffffff80081c6c80 T tracing_stop
ffffff80081c6d28 T trace_find_cmdline
ffffff80081c6dd0 t __trace_find_cmdline
ffffff80081c6e60 T trace_find_tgid
ffffff80081c6e88 T tracing_record_taskinfo
ffffff80081c6f80 t trace_save_cmdline
ffffff80081c7090 T tracing_record_taskinfo_sched_switch
ffffff80081c71d0 T tracing_record_cmdline
ffffff80081c7248 T tracing_record_tgid
ffffff80081c72d8 T trace_handle_return
ffffff80081c7300 T tracing_generic_entry_update
ffffff80081c7358 T trace_buffer_lock_reserve
ffffff80081c73f8 T trace_buffered_event_enable
ffffff80081c75e8 T trace_buffered_event_disable
ffffff80081c7760 t disable_trace_buffered_event
ffffff80081c77c8 t enable_trace_buffered_event
ffffff80081c7838 T trace_event_buffer_lock_reserve
ffffff80081c7ab8 T tracepoint_printk_sysctl
ffffff80081c7c18 T trace_event_buffer_commit
ffffff80081c7e70 T trace_buffer_unlock_commit_regs
ffffff80081c7fd0 T ftrace_trace_userstack
ffffff80081c81f0 T trace_buffer_unlock_commit_nostack
ffffff80081c82e8 T ftrace_exports
ffffff80081c8378 T register_ftrace_export
ffffff80081c8440 T unregister_ftrace_export
ffffff80081c8518 T trace_function
ffffff80081c8738 T __trace_stack
ffffff80081c87b8 t __ftrace_trace_stack
ffffff80081c8ab8 T trace_dump_stack
ffffff80081c8b10 T trace_printk_init_buffers
ffffff80081c8c28 T tracing_update_buffers
ffffff80081c8d08 T trace_printk_start_comm
ffffff80081c8d30 T trace_vbprintk
ffffff80081c90c0 T trace_array_vprintk
ffffff80081c9118 t __trace_array_vprintk
ffffff80081c9458 T trace_array_printk
ffffff80081c9508 T trace_array_printk_buf
ffffff80081c95b0 T trace_vprintk
ffffff80081c9628 T trace_find_next_entry
ffffff80081c9648 t __find_next_entry
ffffff80081c9878 T trace_find_next_entry_inc
ffffff80081c9900 T tracing_iter_reset
ffffff80081c99f0 T print_trace_header
ffffff80081c9c98 T trace_empty
ffffff80081c9d80 T print_trace_line
ffffff80081ca1a0 T trace_latency_header
ffffff80081ca208 T trace_default_header
ffffff80081ca3d8 T tracing_open_generic
ffffff80081ca400 T tracing_is_disabled
ffffff80081ca418 T tracing_lseek
ffffff80081ca448 T trace_keep_overwrite
ffffff80081ca468 T set_tracer_flag
ffffff80081ca5d8 T tracer_init
ffffff80081ca610 T tracing_set_clock
ffffff80081ca760 T tracing_set_time_stamp_abs
ffffff80081ca7e0 T trace_create_file
ffffff80081ca820 T tracing_init_dentry
ffffff80081ca880 T trace_printk_seq
ffffff80081ca900 T trace_init_global_iter
ffffff80081ca990 T ftrace_dump
ffffff80081cad98 T trace_run_command
ffffff80081cae30 T trace_parse_run_command
ffffff80081cb080 t print_event_info
ffffff80081cb1a8 t trace_set_options
ffffff80081cb348 t trace_options_read
ffffff80081cb398 t trace_options_write
ffffff80081cb4d0 t allocate_trace_buffers
ffffff80081cb5c0 t init_trace_flags_index
ffffff80081cb618 t free_saved_cmdlines_buffer
ffffff80081cb658 t allocate_cmdlines_buffer
ffffff80081cb710 t trace_panic_handler
ffffff80081cb738 t trace_die_handler
ffffff80081cb768 t init_tracer_tracefs
ffffff80081cc048 t show_traces_open
ffffff80081cc148 t show_traces_release
ffffff80081cc1c0 t t_start
ffffff80081cc258 t t_stop
ffffff80081cc278 t t_next
ffffff80081cc2b8 t t_show
ffffff80081cc308 t tracing_set_trace_read
ffffff80081cc3b8 t tracing_set_trace_write
ffffff80081cc520 t tracing_cpumask_read
ffffff80081cc600 t tracing_cpumask_write
ffffff80081cc7d0 t tracing_open_generic_tr
ffffff80081cc878 t tracing_release_generic_tr
ffffff80081cc8d8 t tracing_trace_options_write
ffffff80081cca10 t tracing_trace_options_open
ffffff80081ccb10 t tracing_single_release_tr
ffffff80081ccb88 t tracing_trace_options_show
ffffff80081ccc78 t tracing_write_stub
ffffff80081ccc80 t tracing_open
ffffff80081cd128 t tracing_release
ffffff80081cd308 t s_start
ffffff80081cd508 t s_stop
ffffff80081cd588 t s_next
ffffff80081cd718 t s_show
ffffff80081cd7d8 t tracing_read_pipe
ffffff80081cdc08 t tracing_poll_pipe
ffffff80081cdc60 t tracing_open_pipe
ffffff80081cde30 t tracing_release_pipe
ffffff80081cdee0 t tracing_splice_read_pipe
ffffff80081ce4c0 t tracing_spd_release_pipe
ffffff80081ce4e0 t tracing_entries_read
ffffff80081ce670 t tracing_entries_write
ffffff80081ce730 t tracing_resize_ring_buffer
ffffff80081ce868 t tracing_total_entries_read
ffffff80081ce9d8 t tracing_free_buffer_write
ffffff80081ce9f0 t tracing_free_buffer_release
ffffff80081cea80 t tracing_mark_write
ffffff80081cedb0 t tracing_mark_raw_write
ffffff80081cf118 t tracing_clock_write
ffffff80081cf258 t tracing_clock_open
ffffff80081cf358 t tracing_clock_show
ffffff80081cf508 t rb_simple_read
ffffff80081cf5b0 t rb_simple_write
ffffff80081cf6e8 t tracing_time_stamp_mode_open
ffffff80081cf7e8 t tracing_time_stamp_mode_show
ffffff80081cf858 t trace_options_core_read
ffffff80081cf8b0 t trace_options_core_write
ffffff80081cf9b8 t tracing_buffers_read
ffffff80081cfc18 t tracing_buffers_poll
ffffff80081cfc70 t tracing_buffers_open
ffffff80081cfe20 t tracing_buffers_release
ffffff80081cfeb8 t tracing_buffers_splice_read
ffffff80081d0218 t buffer_spd_release
ffffff80081d0278 t buffer_pipe_buf_release
ffffff80081d02c0 t buffer_pipe_buf_get
ffffff80081d02f8 t tracing_stats_read
ffffff80081d05a0 t tracing_thresh_read
ffffff80081d0658 t tracing_thresh_write
ffffff80081d0730 t tracing_readme_read
ffffff80081d0788 t tracing_saved_cmdlines_open
ffffff80081d07c8 t saved_cmdlines_start
ffffff80081d08a8 t saved_cmdlines_stop
ffffff80081d08f0 t saved_cmdlines_next
ffffff80081d0958 t saved_cmdlines_show
ffffff80081d09d0 t tracing_saved_cmdlines_size_read
ffffff80081d0ab0 t tracing_saved_cmdlines_size_write
ffffff80081d0c08 t tracing_saved_tgids_open
ffffff80081d0c48 t saved_tgids_start
ffffff80081d0cc8 t saved_tgids_stop
ffffff80081d0cd0 t saved_tgids_next
ffffff80081d0d50 t saved_tgids_show
ffffff80081d0da0 t trace_module_notify
ffffff80081d0df0 t instance_mkdir
ffffff80081d1048 t instance_rmdir
ffffff80081d1208 t e843419@0110_00001c3a_6dd4
ffffff80081d2208 T trace_print_bputs_msg_only
ffffff80081d2260 T trace_print_bprintk_msg_only
ffffff80081d22c0 T trace_print_printk_msg_only
ffffff80081d2318 T trace_print_flags_seq
ffffff80081d2470 T trace_print_symbols_seq
ffffff80081d2530 T trace_print_bitmask_seq
ffffff80081d2578 T trace_print_hex_seq
ffffff80081d2660 T trace_print_array_seq
ffffff80081d2890 T trace_raw_output_prep
ffffff80081d2928 T trace_output_call
ffffff80081d2a08 T seq_print_ip_sym
ffffff80081d2b10 T trace_print_lat_fmt
ffffff80081d2c38 T trace_find_mark
ffffff80081d2ce0 T trace_print_context
ffffff80081d2e48 T trace_print_lat_context
ffffff80081d3118 T ftrace_find_event
ffffff80081d3148 T trace_event_read_lock
ffffff80081d3168 T trace_event_read_unlock
ffffff80081d3188 T register_trace_event
ffffff80081d3400 T trace_nop_print
ffffff80081d3440 T __unregister_trace_event
ffffff80081d34a8 T unregister_trace_event
ffffff80081d3528 t trace_fn_trace
ffffff80081d35d0 t trace_fn_raw
ffffff80081d3638 t trace_fn_hex
ffffff80081d36a8 t trace_fn_bin
ffffff80081d3718 t trace_ctx_print
ffffff80081d37e8 t trace_ctx_raw
ffffff80081d3858 t trace_ctx_hex
ffffff80081d3870 t trace_ctxwake_bin
ffffff80081d3910 t trace_ctxwake_hex
ffffff80081d3a08 t trace_wake_print
ffffff80081d3ad8 t trace_wake_raw
ffffff80081d3b48 t trace_wake_hex
ffffff80081d3b60 t trace_stack_print
ffffff80081d3c60 t trace_user_stack_print
ffffff80081d3ff8 t trace_bputs_print
ffffff80081d4080 t trace_bputs_raw
ffffff80081d40f0 t trace_bprint_print
ffffff80081d4178 t trace_bprint_raw
ffffff80081d41e8 t trace_print_print
ffffff80081d4268 t trace_print_raw
ffffff80081d42d0 t trace_hwlat_print
ffffff80081d4360 t trace_hwlat_raw
ffffff80081d43c8 t trace_raw_data
ffffff80081d4490 T trace_print_seq
ffffff80081d44f8 T trace_seq_printf
ffffff80081d45f8 T trace_seq_bitmask
ffffff80081d4680 T trace_seq_vprintf
ffffff80081d4738 T trace_seq_bprintf
ffffff80081d47b0 T trace_seq_puts
ffffff80081d4840 T trace_seq_putc
ffffff80081d48b8 T trace_seq_putmem
ffffff80081d4930 T trace_seq_putmem_hex
ffffff80081d49d8 T trace_seq_path
ffffff80081d4a90 T trace_seq_to_user
ffffff80081d4ad0 T register_stat_tracer
ffffff80081d4cb0 T unregister_stat_tracer
ffffff80081d4da0 t tracing_stat_open
ffffff80081d50e8 t tracing_stat_release
ffffff80081d5188 t dummy_cmp
ffffff80081d5190 t stat_seq_start
ffffff80081d5200 t stat_seq_stop
ffffff80081d5220 t stat_seq_next
ffffff80081d5260 t stat_seq_show
ffffff80081d52a0 T trace_printk_control
ffffff80081d52b0 T __trace_bprintk
ffffff80081d5368 T __ftrace_vbprintk
ffffff80081d53d8 T __trace_printk
ffffff80081d5488 T __ftrace_vprintk
ffffff80081d54f0 t ftrace_formats_open
ffffff80081d5510 t t_start
ffffff80081d5630 t t_stop
ffffff80081d5650 t t_next
ffffff80081d57a0 t t_show
ffffff80081d5898 t module_trace_bprintk_format_notify
ffffff80081d5a00 T tracing_start_cmdline_record
ffffff80081d5a18 t tracing_start_sched_switch
ffffff80081d5b48 T tracing_stop_cmdline_record
ffffff80081d5be0 T tracing_start_tgid_record
ffffff80081d5bf8 T tracing_stop_tgid_record
ffffff80081d5c90 t probe_sched_wakeup
ffffff80081d5cd0 t probe_sched_switch
ffffff80081d5d18 t nop_trace_init
ffffff80081d5d20 t nop_trace_reset
ffffff80081d5d28 t nop_set_flag
ffffff80081d5d80 T blk_fill_rwbs
ffffff80081d5e78 T trace_find_event_field