cgskip.txt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. # low level scheduling and timing
  15. up
  16. down_timeout
  17. mutex_lock
  18. down_read
  19. complete_all
  20. schedule_timeout
  21. wake_up_process
  22. msleep
  23. __udelay
  24. ktime_get
  25. # console calls
  26. printk
  27. dev_printk
  28. console_unlock
  29. # memory handling
  30. __kmalloc
  31. __kmalloc_track_caller
  32. kmem_cache_alloc
  33. kmem_cache_alloc_trace
  34. kmem_cache_free
  35. kstrdup
  36. kstrdup_const
  37. kmalloc_slab
  38. new_slab
  39. __slab_alloc
  40. __slab_free
  41. raw_pci_read
  42. pci_read
  43. alloc_pages_current
  44. # debugfs and sysfs setup
  45. debugfs_remove_recursive
  46. debugfs_create_dir
  47. debugfs_create_files
  48. debugfs_create_dir
  49. debugfs_get_inode
  50. sysfs_add_file_mode_ns
  51. sysfs_add_file
  52. sysfs_create_dir_ns
  53. sysfs_create_link
  54. sysfs_create_group
  55. sysfs_create_groups
  56. sysfs_create_bin_file
  57. dpm_sysfs_add
  58. sysfs_create_file_ns
  59. sysfs_merge_group
  60. sysfs_add_link_to_group
  61. sysfs_create_link_sd