Todd E Brandt | a6fbdbb2 | 2018-01-30 00:17:18 -0800 | [diff] [blame] | 1 | # ----------------------------------------------- |
| 2 | # CallGraph function skip list |
| 3 | # |
| 4 | # This file contains a list of functions which are |
| 5 | # meant to be skipped in the callgraph trace. It reduces |
| 6 | # the callgraph html file size by treating these functions |
| 7 | # as leaves with no child calls. It can be editted by |
| 8 | # adding or removing function symbol names. |
| 9 | # |
| 10 | # The sleepgraph tool automatically pulls this file in when |
| 11 | # it is found in the config folder. It can be ignored if |
| 12 | # the tool is called with "-cgskip off". |
| 13 | # ----------------------------------------------- |
| 14 | |
| 15 | # low level scheduling and timing |
| 16 | up |
| 17 | down_timeout |
| 18 | mutex_lock |
| 19 | down_read |
| 20 | complete_all |
| 21 | schedule_timeout |
| 22 | wake_up_process |
| 23 | msleep |
| 24 | __udelay |
| 25 | ktime_get |
| 26 | |
| 27 | # console calls |
| 28 | printk |
| 29 | dev_printk |
Todd Brandt | 18d3f8f | 2018-10-08 15:56:32 -0700 | [diff] [blame] | 30 | __dev_printk |
Todd E Brandt | a6fbdbb2 | 2018-01-30 00:17:18 -0800 | [diff] [blame] | 31 | console_unlock |
| 32 | |
| 33 | # memory handling |
| 34 | __kmalloc |
| 35 | __kmalloc_track_caller |
| 36 | kmem_cache_alloc |
| 37 | kmem_cache_alloc_trace |
| 38 | kmem_cache_free |
| 39 | kstrdup |
| 40 | kstrdup_const |
| 41 | kmalloc_slab |
| 42 | new_slab |
| 43 | __slab_alloc |
| 44 | __slab_free |
| 45 | raw_pci_read |
| 46 | pci_read |
| 47 | alloc_pages_current |
| 48 | |
| 49 | # debugfs and sysfs setup |
| 50 | debugfs_remove_recursive |
| 51 | debugfs_create_dir |
| 52 | debugfs_create_files |
| 53 | debugfs_create_dir |
| 54 | debugfs_get_inode |
| 55 | sysfs_add_file_mode_ns |
| 56 | sysfs_add_file |
| 57 | sysfs_create_dir_ns |
| 58 | sysfs_create_link |
| 59 | sysfs_create_group |
| 60 | sysfs_create_groups |
| 61 | sysfs_create_bin_file |
| 62 | dpm_sysfs_add |
| 63 | sysfs_create_file_ns |
| 64 | sysfs_merge_group |
| 65 | sysfs_add_link_to_group |
| 66 | sysfs_create_link_sd |