categories.py revision 1758
12SN/Acategories = {
21762SN/A    'CALL_PALrdunique_' : 'interrupt', #
32SN/A    'Call_Pal_Callsys' : 'interrupt', #
42SN/A    'Call_Pal_Rdps' : 'interrupt', #
52SN/A    'Call_Pal_Rdusp' : 'interrupt', #
62SN/A    'Call_Pal_Rti' : 'interrupt', #
72SN/A    'Call_Pal_Swpctx' : 'interrupt', #
82SN/A    'Call_Pal_Swpipl' : 'interrupt', #
92SN/A    'Call_Pal_Wrusp' : 'interrupt', #
102SN/A    'SHATransform': 'driver', # drivers/char/random.c,
112SN/A    'TRAP_INTERRUPT_10_' : 'interrupt', #
122SN/A    'Trap_Dtbmiss_Single' : 'bufmgt', #
132SN/A    'Trap_Dtbmiss_double' : 'bufmgt', #
142SN/A    'Trap_Interrupt' : 'interrupt', #
152SN/A    'Trap_Itbmiss' : 'bufmgt', #
162SN/A    'Trap_Unalign' : 'alignment',
172SN/A    'UNALIGN_NO_DISMISS' : 'alignment',
182SN/A    'UNALIGN_NO_DISMISS_10_' : 'alignment',
192SN/A    '__alloc_pages' : 'bufmgt', # mm/page_alloc.c,
202SN/A    '__anon_vma_link': 'bufmgt', # mm/rmap.c, include/linux/rmap.h,
212SN/A    '__bio_add_page' : 'other', # fs/bio.c,
222SN/A    '__bitmap_weight' : 'other', # lib/bitmap.c, include/linux/bitmap.h,
232SN/A    '__blk_put_request' : 'other', # drivers/block/ll_rw_blk.c,
242SN/A    '__block_commit_write' : 'other', # fs/buffer.c,
252SN/A    '__block_prepare_write' : 'other', # fs/buffer.c,
262SN/A    '__block_write_full_page': 'other', # fs/buffer.c,
272665Ssaidi@eecs.umich.edu    '__bread' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
282665Ssaidi@eecs.umich.edu    '__brelse' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
292665Ssaidi@eecs.umich.edu    '__bss_start' : 'user',
302665Ssaidi@eecs.umich.edu    '__bss_stop' : 'other', # include/asm-generic/sections.h,
312SN/A    '__cond_resched' : 'other', # kernel/sched.c, include/linux/sched.h,
322SN/A    '__const_udelay': 'other', # include/asm-i386/delay.h,
332623SN/A    '__constant_c_memset' : 'other', # include/asm-alpha/string.h,
342623SN/A    '__copy_from_user_ll': 'copy', # include/asm-i386/uaccess.h,
352SN/A    '__copy_to_user_ll': 'copy', # include/asm-i386/uaccess.h,
364182Sgblack@eecs.umich.edu    '__copy_user' : 'copy', # include/asm-alpha/uaccess.h,
371354SN/A    '__d_lookup' : 'other', # fs/dcache.c, include/linux/dcache.h,
381858SN/A    '__d_path': 'other', # fs/dcache.c,
391717SN/A    '__delay': 'other', # arch/alpha/lib/udelay.c, include/asm-alpha/delay.h, include/asm-i386/delay.h,
402683Sktlim@umich.edu    '__dequeue_signal' : 'other', # kernel/signal.c,
411354SN/A    '__divl' : 'other', # arch/alpha/kernel/alpha_ksyms.c,
421354SN/A    '__divlu' : 'other', # arch/alpha/kernel/alpha_ksyms.c,
432387SN/A    '__divq' : 'other', # arch/alpha/kernel/alpha_ksyms.c,
442387SN/A    '__divqu' : 'other', # arch/alpha/kernel/alpha_ksyms.c,
452387SN/A    '__do_softirq' : 'stack', # kernel/softirq.c,
4656SN/A    '__down': 'interrupt', # include/asm-alpha/semaphore.h, include/asm-i386/semaphore.h,
472SN/A    '__down_failed' : 'other', # arch/alpha/kernel/semaphore.c, include/asm-alpha/semaphore.h,
482SN/A    '__down_trylock': 'interrupt', # include/asm-alpha/semaphore.h, include/asm-i386/semaphore.h,
491858SN/A    '__elv_add_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
502SN/A    '__end_that_request_first' : 'other', # drivers/block/ll_rw_blk.c,
513453Sgblack@eecs.umich.edu    '__exit_sighand': 'other', # kernel/signal.c, include/linux/sched.h,
523453Sgblack@eecs.umich.edu    '__exit_signal': 'other', # kernel/signal.c, include/linux/sched.h,
533453Sgblack@eecs.umich.edu    '__filemap_copy_from_user_iovec' : 'bufmgt', # mm/filemap.c,
543453Sgblack@eecs.umich.edu    '__filemap_fdatawrite' : 'bufmgt', # mm/filemap.c,
553453Sgblack@eecs.umich.edu    '__find_get_block' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
562462SN/A    '__find_get_block_slow' : 'other', # fs/buffer.c,
572SN/A    '__fput' : 'other', # fs/file_table.c,
58715SN/A    '__free_pages' : 'bufmgt', # mm/page_alloc.c,
59715SN/A    '__free_pages_ok': 'bufmgt', # mm/page_alloc.c,
60715SN/A    '__generic_file_aio_read': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
61715SN/A    '__generic_unplug_device' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
622SN/A    '__get_free_pages' : 'other', # mm/page_alloc.c, drivers/md/raid6.h,
632SN/A    '__get_page_state': 'bufmgt', # mm/page_alloc.c,
643960Sgblack@eecs.umich.edu    '__get_user_4': 'other', # include/asm-i386/uaccess.h,
653960Sgblack@eecs.umich.edu    '__get_zone_counts': 'other', #
663960Sgblack@eecs.umich.edu    '__getblk' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
674182Sgblack@eecs.umich.edu    '__getblk_slow' : 'other', # fs/buffer.c,
684182Sgblack@eecs.umich.edu    '__group_complete_signal' : 'user', # kernel/signal.c,  is kinda syscall
694182Sgblack@eecs.umich.edu    '__group_send_sig_info' : 'user', # kernel/signal.c,  is kinda syscall
704182Sgblack@eecs.umich.edu    '__iget' : 'other', # fs/inode.c, include/linux/fs.h,
712680Sktlim@umich.edu    '__insert_inode_hash': 'other', # fs/inode.c, include/linux/fs.h,
72237SN/A    '__insert_vm_struct': 'bufmgt', # mm/mmap.c,
732SN/A    '__ip_conntrack_confirm' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_core.h,
742SN/A    '__ip_conntrack_find' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c,
752SN/A    '__ip_ct_find_proto' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_core.h,
762SN/A    '__ip_route_output_key' : 'stack', # net/ipv4/route.c,
772SN/A    '__kfree_skb' : 'bufmgt', # net/core/skbuff.c, include/linux/skbuff.h,
782420SN/A    '__kmalloc' : 'bufmgt', # mm/slab.c, include/linux/slab.h,
792623SN/A    '__load_new_mm_context': 'bufmgt',
802SN/A    '__lookup': 'other', # lib/radix-tree.c,
812107SN/A    '__lookup_hash': 'other', # fs/namei.c,
822159SN/A    '__lookup_tag' : 'bufmgt', # lib/radix-tree.c,
832455SN/A    '__make_request' : 'driver', # drivers/block/ll_rw_blk.c, drivers/block/ll_rw_blk.c,
842455SN/A    '__mark_inode_dirty' : 'other', # fs/fs-writeback.c, include/linux/fs.h,
852386SN/A    '__memcpy_aligned_up' : 'copy', # arch/alpha/lib/memcpy.c,
862623SN/A    '__memcpy_unaligned_up' : 'copy', # arch/alpha/lib/memcpy.c,
872SN/A    '__memset' : 'copy', # include/asm-alpha/string.h,
881371SN/A    '__mmdrop': 'other', # kernel/fork.c,
892SN/A    '__mod_timer' : 'other', # kernel/timer.c, include/linux/timer.h,
902SN/A    '__modify_IO_APIC_irq': 'interrupt', #
912SN/A    '__net_random': 'other', #
922SN/A    '__page_cache_release' : 'bufmgt', # mm/swap.c,
932SN/A    '__pagevec_free': 'bufmgt', # mm/page_alloc.c, include/linux/pagevec.h,
942SN/A    '__pagevec_lru_add' : 'bufmgt', # mm/swap.c, include/linux/pagevec.h,
952SN/A    '__pagevec_lru_add_active': 'bufmgt', # mm/swap.c, include/linux/pagevec.h,
962SN/A    '__pagevec_release' : 'bufmgt', # mm/swap.c, include/linux/pagevec.h,
972SN/A    '__pollwait' : 'other', # fs/select.c, fs/select.c,
982SN/A    '__pskb_trim_head': 'stack', # net/ipv4/tcp_output.c,
992SN/A    '__put_task_struct': 'other', # kernel/fork.c, include/linux/sched.h,
1001400SN/A    '__queue_work': 'other', # kernel/workqueue.c,
1011400SN/A    '__rb_erase_color' : 'bufmgt', # lib/rbtree.c,
1021400SN/A    '__rb_rotate_left' : 'bufmgt', # lib/rbtree.c,
1031858SN/A    '__rb_rotate_right' : 'bufmgt', # lib/rbtree.c,
1043453Sgblack@eecs.umich.edu    '__rcu_process_callbacks': 'other', #
1053453Sgblack@eecs.umich.edu    '__read_page_state' : 'bufmgt', # mm/page_alloc.c, include/linux/page-flags.h,
1062SN/A    '__release_sock' : 'stack', # net/core/sock.c,
1071400SN/A    '__remlu' : 'other', # arch/alpha/kernel/alpha_ksyms.c,
1082SN/A    '__remove_from_page_cache': 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
1091400SN/A    '__remove_shared_vm_struct': 'bufmgt', # mm/mmap.c,
1102623SN/A    '__remqu' : 'other', # arch/alpha/kernel/alpha_ksyms.c,
1112623SN/A    '__rmqueue' : 'bufmgt', # mm/page_alloc.c,
1122SN/A    '__scsi_done' : 'other', # drivers/scsi/scsi.c, drivers/scsi/scsi_priv.h,
1131400SN/A    '__scsi_get_command' : 'other', # drivers/scsi/scsi.c,
1142683Sktlim@umich.edu    '__set_page_buffers' : 'other', # fs/buffer.c,
1152683Sktlim@umich.edu    '__set_page_dirty_nobuffers' : 'bufmgt', # mm/page-writeback.c, include/linux/mm.h,
1162190SN/A    '__sk_stream_mem_reclaim' : 'bufmgt', # net/core/stream.c,
1172683Sktlim@umich.edu    '__sock_create': 'stack', # net/socket.c,
1182683Sktlim@umich.edu    '__strncpy_from_user' : 'copy', # include/asm-alpha/uaccess.h,
1192683Sktlim@umich.edu    '__strnlen_user': 'user',
1202680Sktlim@umich.edu    '__switch_to': 'interrupt', #
1212SN/A    '__sync_single_inode' : 'other', # fs/fs-writeback.c,
1221858SN/A    '__tasklet_schedule' : 'other', # kernel/softirq.c,
1232SN/A    '__tcp_ack_snd_check' : 'stack', # net/ipv4/tcp_input.c,
1242SN/A    '__tcp_data_snd_check' : 'stack', # net/ipv4/tcp_input.c,
1252SN/A    '__tcp_grow_window' : 'stack', # net/ipv4/tcp_input.c,
1262SN/A    '__tcp_put_port' : 'stack', # net/ipv4/tcp_ipv4.c,
1272SN/A    '__tcp_select_window' : 'stack', # net/ipv4/tcp_output.c,
1282SN/A    '__tcp_tw_hashdance' : 'stack', # net/ipv4/tcp_minisocks.c,
1294181Sgblack@eecs.umich.edu    '__tcp_v4_check_established':'stack',
1304181Sgblack@eecs.umich.edu    '__unhash_process': 'other', # kernel/exit.c,
1314182Sgblack@eecs.umich.edu    '__unmask_IO_APIC_irq': 'interrupt', #
1324182Sgblack@eecs.umich.edu    '__up_wakeup' : 'interrupt', # arch/alpha/kernel/semaphore.c, include/asm-alpha/semaphore.h,
1332SN/A    '__user_walk' : 'other', # fs/namei.c,
1342566SN/A    '__vm_stat_account': 'other', #
1354040Ssaidi@eecs.umich.edu    '__vma_link': 'bufmgt', # mm/mmap.c,
1362566SN/A    '__vma_link_rb': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
1372107SN/A    '__wait_on_buffer' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1383276Sgblack@eecs.umich.edu    '__wake_up' : 'other', # kernel/sched.c,
1391469SN/A    '__wake_up_common' : 'other', # kernel/sched.c,
1404377Sgblack@eecs.umich.edu    '__wake_up_locked': 'other', # kernel/sched.c,
1414377Sgblack@eecs.umich.edu    '__wake_up_parent': 'other', # kernel/signal.c,
1424377Sgblack@eecs.umich.edu    '__wake_up_sync': 'other', # kernel/sched.c,
1434377Sgblack@eecs.umich.edu    '__writeback_single_inode' : 'other', # fs/fs-writeback.c,
1444377Sgblack@eecs.umich.edu    'acct_process': 'other', # kernel/acct.c, include/linux/acct.h, include/linux/acct.h,
1454377Sgblack@eecs.umich.edu    'ack_edge_ioapic_irq': 'interrupt', #
1462623SN/A    'ack_edge_ioapic_vector': 'interrupt', #
1472662Sstever@eecs.umich.edu    'activate_page' : 'bufmgt', # mm/swap.c,
1482623SN/A    'activate_task' : 'other', # kernel/sched.c,
1492623SN/A    'add_disk_randomness' : 'other', # drivers/char/random.c, include/linux/genhd.h,
1502623SN/A    'add_interrupt_randomness': 'driver', # drivers/char/random.c, include/linux/random.h,
151180SN/A    'add_timer_randomness' : 'driver', # drivers/char/random.c,
152393SN/A    'add_to_page_cache' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
153393SN/A    'add_to_page_cache_lru' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
1542SN/A    'add_wait_queue' : 'other', # kernel/fork.c,
1552SN/A    'add_wait_queue_exclusive' : 'other', # kernel/fork.c,
156334SN/A    'aligned' : 'other', #
157334SN/A    'alloc_buffer_head' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1582SN/A    'alloc_dcookie': 'other', # fs/dcookies.c,
1592SN/A    'alloc_fd_array': 'other', # fs/file.c, include/linux/file.h,
1602SN/A    'alloc_inode' : 'other', # fs/inode.c,
161334SN/A    'alloc_pidmap': 'other', # kernel/pid.c, include/linux/pid.h,
162729SN/A    'alloc_skb' : 'bufmgt', # net/core/skbuff.c, include/linux/skbuff.h,
163707SN/A    'alloc_slabmgmt' : 'bufmgt', # mm/slab.c,
164707SN/A    'alpha_switch_to' : 'other', # include/asm-alpha/system.h,
165707SN/A    'anon_vma_link': 'bufmgt', # mm/rmap.c, include/linux/rmap.h, include/linux/rmap.h,
166707SN/A    'anon_vma_prepare': 'bufmgt', # mm/rmap.c, include/linux/rmap.h, include/linux/rmap.h,
167707SN/A    'anon_vma_unlink': 'bufmgt', # mm/rmap.c, include/linux/rmap.h,
1682SN/A    'apache': 'other', #
1694564Sgblack@eecs.umich.edu    'apic_timer_interrupt': 'interrupt', # include/asm-i386/hw_irq.h,
1704564Sgblack@eecs.umich.edu    'arch_get_unmapped_area': 'bufmgt',
1714564Sgblack@eecs.umich.edu    'arch_get_unmapped_area_1': 'bufmgt',
1722SN/A    'arch_get_unmapped_area_topdown': 'other', #
173729SN/A    'arch_pick_mmap_layout': 'other', #
1742SN/A    'arch_unmap_area_topdown': 'other', #
175124SN/A    'arp_hash': 'stack', # net/ipv4/arp.c, net/ipv4/arp.c,
176124SN/A    'arp_process': 'stack', # net/ipv4/arp.c,
177334SN/A    'arp_rcv': 'stack', # net/ipv4/arp.c,
178124SN/A    'artsd': 'other', #
1792SN/A    'as_add_arq_hash' : 'other', # drivers/block/as-iosched.c,
180729SN/A    'as_add_arq_rb' : 'other', # drivers/block/as-iosched.c,
181729SN/A    'as_add_request' : 'other', # drivers/block/as-iosched.c,
1822SN/A    'as_antic_stop' : 'other', # drivers/block/as-iosched.c,
1832390SN/A    'as_choose_req' : 'other', # drivers/block/as-iosched.c,
184729SN/A    'as_completed_request' : 'other', # drivers/block/as-iosched.c,
1852SN/A    'as_dispatch_request' : 'other', # drivers/block/as-iosched.c,
1862SN/A    'as_fifo_expired' : 'other', # drivers/block/as-iosched.c,
1872390SN/A    'as_find_arq_hash' : 'other', # drivers/block/as-iosched.c,
1882390SN/A    'as_find_arq_rb' : 'other', # drivers/block/as-iosched.c,
1892390SN/A    'as_find_first_arq' : 'other', # drivers/block/as-iosched.c,
1902390SN/A    'as_find_next_arq' : 'other', # drivers/block/as-iosched.c,
1912390SN/A    'as_former_request' : 'other', # drivers/block/as-iosched.c,
192729SN/A    'as_get_io_context' : 'other', # drivers/block/as-iosched.c,
1932SN/A    'as_insert_request' : 'other', # drivers/block/as-iosched.c,
1942SN/A    'as_latter_request' : 'other', # drivers/block/as-iosched.c,
1952390SN/A    'as_merge' : 'other', # drivers/block/as-iosched.c,
1962390SN/A    'as_merged_request' : 'other', # drivers/block/as-iosched.c,
1972390SN/A    'as_merged_requests' : 'other', # drivers/block/as-iosched.c,
1982390SN/A    'as_move_to_dispatch' : 'other', # drivers/block/as-iosched.c,
199217SN/A    'as_next_request' : 'other', # drivers/block/as-iosched.c,
200237SN/A    'as_put_request' : 'other', # drivers/block/as-iosched.c,
2012SN/A    'as_queue_empty' : 'other', # drivers/block/as-iosched.c,
2021371SN/A    'as_remove_dispatched_request' : 'other', # drivers/block/as-iosched.c,
2031371SN/A    'as_remove_merge_hints' : 'other', # drivers/block/as-iosched.c,
2042623SN/A    'as_remove_queued_request' : 'other', # drivers/block/as-iosched.c,
2053918Ssaidi@eecs.umich.edu    'as_remove_request' : 'other', # drivers/block/as-iosched.c,
2063918Ssaidi@eecs.umich.edu    'as_set_request' : 'other', # drivers/block/as-iosched.c,
2071371SN/A    'as_update_arq' : 'other', # drivers/block/as-iosched.c,
208581SN/A    'as_update_iohist' : 'other', # drivers/block/as-iosched.c,
2092SN/A    'atomic_dec_and_lock' : 'other', # lib/dec_and_lock.c, include/linux/spinlock.h, include/linux/spinlock.h,
2102SN/A    'atomic_dec_and_lock_1' : 'other', # arch/alpha/lib/dec_and_lock.c,
2112SN/A    'attach_pid': 'other', # kernel/pid.c,
2122SN/A    'attempt_merge' : 'other', # drivers/block/ll_rw_blk.c,
213753SN/A    'auth_domain_drop' : 'other', # net/sunrpc/svcauth.c,
2142SN/A    'auth_domain_put' : 'other', # net/sunrpc/svcauth.c, include/linux/sunrpc/svcauth.h,
2152SN/A    'autoremove_wake_function' : 'other', # kernel/fork.c, include/linux/wait.h,
2162SN/A    'bad_range' : 'bufmgt', # mm/page_alloc.c,
217594SN/A    'balance_dirty_pages' : 'bufmgt', # mm/page-writeback.c,
2184661Sksewell@umich.edu    'balance_dirty_pages_ratelimited' : 'bufmgt', # mm/page-writeback.c, include/linux/writeback.h,
219595SN/A    'basename': 'other', #
220594SN/A    'bash': 'other', #
221595SN/A    'batch_entropy_store' : 'interrupt', # drivers/char/random.c, include/linux/random.h,
222705SN/A    'bh_lru_install' : 'other', # fs/buffer.c,
223726SN/A    'bh_waitq_head' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
224726SN/A    'bh_wake_function' : 'other', # fs/buffer.c,
225726SN/A    'bio_add_page' : 'other', # fs/bio.c, include/linux/bio.h,
226726SN/A    'bio_alloc' : 'other', # fs/bio.c, include/linux/bio.h,
227726SN/A    'bio_destructor' : 'other', # fs/bio.c,
228726SN/A    'bio_endio' : 'other', # fs/bio.c, include/linux/bio.h,
229726SN/A    'bio_get_nr_vecs' : 'other', # fs/bio.c, include/linux/bio.h,
230726SN/A    'bio_hw_segments' : 'other', # fs/bio.c, include/linux/bio.h,
231726SN/A    'bio_phys_segments' : 'other', # fs/bio.c, include/linux/bio.h,
232726SN/A    'bio_put' : 'other', # fs/bio.c, include/linux/bio.h,
233705SN/A    'blk_backing_dev_unplug' : 'other', # drivers/block/ll_rw_blk.c,
2343735Sstever@eecs.umich.edu    'blk_cleanup_queue': 'driver', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
235726SN/A    'blk_get_queue': 'driver', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
2362683Sktlim@umich.edu    'blk_hw_contig_segment' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
237726SN/A    'blk_phys_contig_segment' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
238705SN/A    'blk_plug_device' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
2393735Sstever@eecs.umich.edu    'blk_queue_bounce' : 'bufmgt', # mm/highmem.c, include/linux/blkdev.h,
240726SN/A    'blk_recount_segments' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
241726SN/A    'blk_remove_plug' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
2422683Sktlim@umich.edu    'blk_rq_map_sg' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
243726SN/A    'blk_run_queue' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
244705SN/A    'blkdev_ioctl': 'driver', # drivers/block/ioctl.c, include/linux/fs.h,
2453735Sstever@eecs.umich.edu    'block_ioctl': 'other', # fs/block_dev.c,
246726SN/A    'block_prepare_write' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
247726SN/A    'block_read_full_page': 'other', # fs/buffer.c, include/linux/buffer_head.h,
2482683Sktlim@umich.edu    'block_write_full_page': 'other', # fs/buffer.c, include/linux/buffer_head.h,
249726SN/A    'bmap': 'other', # fs/jfs/jfs_dmap.h, fs/inode.c, include/linux/fs.h,
250705SN/A    'buffer_insert_list' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
2513735Sstever@eecs.umich.edu    'buffered_rmqueue' : 'bufmgt', # mm/page_alloc.c,
2523735Sstever@eecs.umich.edu    'cache_alloc_refill' : 'bufmgt', # mm/slab.c,
253726SN/A    'cache_check' : 'other', # net/sunrpc/cache.c, include/linux/sunrpc/cache.h,
254726SN/A    'cache_flusharray' : 'bufmgt', # mm/slab.c,
2552683Sktlim@umich.edu    'cache_grow' : 'bufmgt', # mm/slab.c,
2562455SN/A    'cache_init_objs' : 'bufmgt', # mm/slab.c,
2572455SN/A    'cache_reap': 'bufmgt', # mm/slab.c,
2583735Sstever@eecs.umich.edu    'cached_lookup': 'other', # fs/namei.c,
2592455SN/A    'call_rcu' : 'other', # kernel/rcupdate.c,
2602455SN/A    'can_share_swap_page': 'bufmgt', # mm/swapfile.c, include/linux/swap.h, include/linux/swap.h,
2612683Sktlim@umich.edu    'can_vma_merge_after': 'bufmgt', # mm/mmap.c,
262726SN/A    'can_vma_merge_before': 'bufmgt', # mm/mmap.c,
263705SN/A    'capable': 'other',
2643735Sstever@eecs.umich.edu    'cascade' : 'interrupt', # kernel/timer.c,
265726SN/A    'cat': 'other', #
2662683Sktlim@umich.edu    'cdev_get': 'other', # fs/char_dev.c, include/linux/cdev.h,
267726SN/A    'cdrom': 'other', #
268705SN/A    'check_kill_permission' : 'other', # kernel/signal.c,
2693735Sstever@eecs.umich.edu    'chrdev_open': 'other', # fs/char_dev.c, include/linux/fs.h,
2703735Sstever@eecs.umich.edu    'cleanup_rbuf' : 'stack', # net/ipv4/tcp.c,
271726SN/A    'clear_inode' : 'other', # fs/inode.c, include/linux/fs.h,
272726SN/A    'clear_page' : 'bufmgt', # include/asm-alpha/page.h,
2732683Sktlim@umich.edu    'clear_page_dirty_for_io' : 'bufmgt', # mm/page-writeback.c, include/linux/mm.h,
274726SN/A    'clear_page_tables': 'bufmgt', # mm/memory.c, include/linux/mm.h,
275705SN/A    'clear_queue_congested' : 'other', # drivers/block/ll_rw_blk.c,
2763735Sstever@eecs.umich.edu    'clear_user': 'other', # include/asm-alpha/uaccess.h, include/asm-i386/uaccess.h,
277726SN/A    'clock_panelapplet.so': 'other', #
278726SN/A    'close_private_file' : 'other', # fs/file_table.c, include/linux/fs.h,
2792683Sktlim@umich.edu    'copy_skb_header' : 'copy',
280726SN/A    'common_interrupt': 'interrupt', #
281726SN/A    'complete': 'other', # kernel/sched.c,
2823735Sstever@eecs.umich.edu    'compute_creds': 'other', # fs/exec.c, include/linux/binfmts.h,
2833735Sstever@eecs.umich.edu    'con_chars_in_buffer': 'driver', # drivers/char/vt.c,
284726SN/A    'con_write_room': 'driver', # drivers/char/vt.c,
285726SN/A    'convert_fxsr_from_user': 'interrupt', #
2862683Sktlim@umich.edu    'convert_fxsr_to_user': 'interrupt', #
2872455SN/A    'copy_files': 'other', # kernel/fork.c,
2882455SN/A    'copy_from_user': 'copy', # include/asm-alpha/uaccess.h, include/asm-i386/uaccess.h,
2893735Sstever@eecs.umich.edu    'copy_mm': 'other', # kernel/fork.c,
2903735Sstever@eecs.umich.edu    'copy_namespace': 'other', # fs/namespace.c, include/linux/namespace.h,
2912455SN/A    'copy_page': 'copy',
2922455SN/A    'copy_page_range': 'bufmgt', # mm/memory.c, include/linux/mm.h,
2932683Sktlim@umich.edu    'copy_process': 'other', # kernel/fork.c, include/linux/sched.h,
294726SN/A    'copy_semundo': 'other', # ipc/sem.c, include/linux/sem.h,
295705SN/A    'copy_strings': 'other', # fs/exec.c, include/linux/binfmts.h,
2962683Sktlim@umich.edu    'copy_strings_kernel': 'other', # fs/exec.c, include/linux/binfmts.h,
2972683Sktlim@umich.edu    'copy_thread': 'syscall', # arch/alpha/kernel/process.c, include/linux/sched.h,
2982683Sktlim@umich.edu    'copy_to_user': 'copy', # include/asm-alpha/uaccess.h, include/asm-i386/uaccess.h,
2992447SN/A    'copy_vma': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
3002683Sktlim@umich.edu    'count': 'driver', # fs/exec.c, init/initramfs.c, drivers/char/serial_tx3912.c, drivers/char/rocket.c, drivers/isdn/hardware/eicon/diva_didd.c, drivers/isdn/hardware/eicon/divasmain.c, drivers/isdn/hardware/eicon/divasmain.c, drivers/isdn/hardware/eicon/capimain.c, drivers/isdn/hardware/eicon/divasi.c, drivers/isdn/hardware/eicon/divasi.c, drivers/isdn/hardware/eicon/divasi.c, drivers/isdn/hardware/eicon/divasi.c, drivers/isdn/hardware/eicon/divasi.c, drivers/isdn/hardware/eicon/divamnt.c, drivers/isdn/hardware/eicon/divamnt.c, drivers/isdn/hardware/eicon/divamnt.c, drivers/isdn/hardware/eicon/divamnt.c, drivers/isdn/hardware/eicon/divamnt.c, drivers/media/video/w9966.c, drivers/media/video/w9966.c,
3012683Sktlim@umich.edu    'count_open_files': 'other', # kernel/fork.c,
3022683Sktlim@umich.edu    'cp_new_stat' : 'other', # fs/stat.c,
303705SN/A    'cp_new_stat64': 'other', # fs/stat.c,
3044172Ssaidi@eecs.umich.edu    'cpu_idle' : 'idle', # arch/alpha/kernel/process.c, init/main.c,
3054172Ssaidi@eecs.umich.edu    'cpu_quiet' : 'other', # kernel/rcupdate.c,
3064172Ssaidi@eecs.umich.edu    'create_buffers' : 'other', # fs/buffer.c,
3074172Ssaidi@eecs.umich.edu    'create_elf_tables': 'other', # fs/binfmt_elf.c,
3084172Ssaidi@eecs.umich.edu    'create_empty_buffers' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
3092159SN/A    'cron': 'other', #
3102159SN/A    'csum_partial' : 'stack', # arch/alpha/lib/checksum.c, include/asm-alpha/checksum.h,
3112683Sktlim@umich.edu    'csum_partial_copy_nocheck' : 'copy', # arch/alpha/lib/csum_partial_copy.c, include/asm-alpha/checksum.h,
3122159SN/A    'csum_partial_copy_to_xdr' : 'copy', # net/sunrpc/xprt.c, net/sunrpc/svcsock.c,
313705SN/A    'csum_tcpudp_magic' : 'stack', # arch/alpha/lib/checksum.c, include/asm-alpha/checksum.h,
3144172Ssaidi@eecs.umich.edu    'csum_tcpudp_nofold' : 'stack', # arch/alpha/lib/checksum.c, include/asm-alpha/checksum.h,
3152159SN/A    'current_kernel_time' : 'other', # kernel/time.c, include/linux/time.h,
3164172Ssaidi@eecs.umich.edu    'cut': 'other', #
3172159SN/A    'd_alloc' : 'other', # fs/dcache.c, include/linux/dcache.h,
3182159SN/A    'd_alloc_anon' : 'other', # fs/dcache.c, include/linux/dcache.h,
3193468Sgblack@eecs.umich.edu    'd_callback' : 'other', # fs/dcache.c,
3202159SN/A    'd_find_alias' : 'other', # fs/dcache.c, include/linux/dcache.h,
3212683Sktlim@umich.edu    'd_free' : 'other', # fs/dcache.c,
3222159SN/A    'd_instantiate' : 'other', # fs/dcache.c, include/linux/dcache.h,
3232159SN/A    'd_lookup': 'other', # fs/dcache.c, include/linux/dcache.h,
3244185Ssaidi@eecs.umich.edu    'd_path': 'other', # fs/dcache.c, include/linux/dcache.h,
3252159SN/A    'd_rehash' : 'other', # fs/dcache.c, include/linux/dcache.h,
3264172Ssaidi@eecs.umich.edu    'deactivate_task' : 'other', # kernel/sched.c,
3274172Ssaidi@eecs.umich.edu    'default_idle' : 'idle', # arch/alpha/kernel/process.c, include/linux/platform.h,
3282159SN/A    'default_llseek': 'other', # fs/read_write.c, include/linux/fs.h,
329705SN/A    'default_wake_function' : 'other', # kernel/sched.c, include/linux/wait.h,
3304185Ssaidi@eecs.umich.edu    'del_singleshot_timer_sync' : 'other', # kernel/timer.c, include/linux/timer.h, include/linux/timer.h,
3313792Sgblack@eecs.umich.edu    'del_timer' : 'other', # kernel/timer.c, include/linux/timer.h,
3323792Sgblack@eecs.umich.edu    'delay_pmtmr': 'interrupt', #
3333792Sgblack@eecs.umich.edu    'delayed_work_timer_fn': 'other', # kernel/workqueue.c,
3343792Sgblack@eecs.umich.edu    'dentry_open': 'other', # fs/open.c, include/linux/fs.h,
3353792Sgblack@eecs.umich.edu    'deny_write_access': 'other', # fs/namei.c, include/linux/fs.h,
3364185Ssaidi@eecs.umich.edu    'dequeue_signal' : 'other', # kernel/signal.c, include/linux/sched.h,
3373792Sgblack@eecs.umich.edu    'dequeue_task' : 'other', # kernel/sched.c,
3383792Sgblack@eecs.umich.edu    'destroy_context': 'interrupt', # include/asm-alpha/mmu_context.h, include/asm-i386/mmu_context.h,
3394172Ssaidi@eecs.umich.edu    'destroy_inode' : 'other', # fs/inode.c, include/linux/fs.h,
3403792Sgblack@eecs.umich.edu    'detach_pid': 'other', # kernel/pid.c,
3413792Sgblack@eecs.umich.edu    'detach_vmas_to_be_unmapped': 'bufmgt', # mm/mmap.c,
3424185Ssaidi@eecs.umich.edu    'dev_queue_xmit' : 'stack', # net/core/dev.c, include/linux/netdevice.h,
3433792Sgblack@eecs.umich.edu    'dev_shutdown' : 'stack', # net/sched/sch_generic.c,
3443792Sgblack@eecs.umich.edu    'dev_watchdog': 'stack', # net/sched/sch_generic.c,
3453792Sgblack@eecs.umich.edu    'device_not_available': 'interrupt', #
3464172Ssaidi@eecs.umich.edu    'disable_irq_nosync': 'interrupt', # arch/alpha/kernel/irq.c, include/asm-alpha/irq.h, include/asm-i386/irq.h,
3473792Sgblack@eecs.umich.edu    'disk_round_stats' : 'other', # drivers/block/ll_rw_blk.c, include/linux/genhd.h,
3483792Sgblack@eecs.umich.edu    'dnotify_flush' : 'other', # fs/dnotify.c, include/linux/dnotify.h,
3494027Sstever@eecs.umich.edu    'dnotify_parent' : 'other', # fs/dnotify.c, include/linux/dnotify.h,
3504027Sstever@eecs.umich.edu    'do_IRQ': 'driver', # drivers/s390/cio/cio.c,
3514027Sstever@eecs.umich.edu    'do_anonymous_page' : 'bufmgt', # mm/memory.c,
3524027Sstever@eecs.umich.edu    'do_bindings' : 'stack', # net/ipv4/netfilter/ip_nat_core.c, include/linux/netfilter_ipv4/ip_nat_core.h,
3534027Sstever@eecs.umich.edu    'do_brk': 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h,
3544027Sstever@eecs.umich.edu    'do_csum_partial_copy_from_user' : 'copy', # arch/alpha/lib/csum_partial_copy.c,
3554027Sstever@eecs.umich.edu    'do_entInt' : 'interrupt', # arch/alpha/kernel/irq_alpha.c,
3564027Sstever@eecs.umich.edu    'do_entUna': 'alignment',
3574661Sksewell@umich.edu    'do_execve': 'other', # fs/exec.c, include/linux/sched.h,
3584661Sksewell@umich.edu    'do_exit': 'other', # kernel/exit.c,
3594661Sksewell@umich.edu    'do_fcntl' : 'user', # fs/fcntl.c, used to be syscall`
3604661Sksewell@umich.edu    'do_fork': 'other', # kernel/fork.c, include/linux/sched.h,
3614661Sksewell@umich.edu    'do_futex': 'other', # kernel/futex.c, include/linux/futex.h,
3624661Sksewell@umich.edu    'do_generic_mapping_read': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
3634661Sksewell@umich.edu    'do_gettimeofday' : 'user', # arch/alpha/kernel/time.c, include/linux/time.h,  used to by syscall
3644661Sksewell@umich.edu    'do_group_exit': 'other', # kernel/exit.c, include/linux/sched.h,
3654661Sksewell@umich.edu    'do_invalidatepage': 'bufmgt', # mm/truncate.c,
3664661Sksewell@umich.edu    'do_lookup' : 'user', # fs/namei.c,  used to by syscall
3674661Sksewell@umich.edu    'do_mmap_pgoff': 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h,
3684661Sksewell@umich.edu    'do_mpage_readpage': 'other', # fs/mpage.c,
3691858SN/A    'do_mremap': 'bufmgt', # mm/mremap.c,
3702683Sktlim@umich.edu    'do_munmap': 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h,
3712680Sktlim@umich.edu    'do_no_page' : 'user', # mm/memory.c,  used to by syscall
3722683Sktlim@umich.edu    'do_nosym': 'other', #
373705SN/A    'do_notify_parent': 'other', # kernel/signal.c, include/linux/sched.h,
3742683Sktlim@umich.edu    'do_notify_resume': 'interrupt', # arch/alpha/kernel/signal.c,
375705SN/A    'do_osf_sigprocmask' : 'user', # arch/alpha/kernel/signal.c,  used to by syscall
376705SN/A    'do_page_cache_readahead': 'bufmgt', # mm/readahead.c, include/linux/mm.h,
3772683Sktlim@umich.edu    'do_page_fault' : 'user', # arch/alpha/mm/fault.c,  used to by syscall
3782680Sktlim@umich.edu    'do_pipe': 'syscall', # fs/pipe.c, arch/alpha/kernel/osf_sys.c, include/linux/fs.h,
3792SN/A    'do_poll' : 'user', # fs/select.c, drivers/macintosh/apm_emu.c,  used to by syscall
3802SN/A    'do_pollfd' : 'user', # fs/select.c,  used to by syscall
3812623SN/A    'do_posix_clock_monotonic_gettime': 'other', # kernel/posix-timers.c, kernel/posix-timers.c, include/linux/time.h,
382    'do_posix_clock_monotonic_gettime_parts': 'other', # kernel/posix-timers.c, kernel/posix-timers.c,
383    'do_posix_gettime': 'other', # kernel/posix-timers.c, kernel/posix-timers.c,
384    'do_readv_writev' : 'user', # fs/read_write.c,  used to by syscall
385    'do_select': 'other', # fs/select.c, include/linux/poll.h,
386    'do_setitimer': 'other', # kernel/itimer.c, include/linux/time.h,
387    'do_sigaction': 'other', # kernel/signal.c, include/linux/sched.h,
388    'do_signal' : 'user', # arch/alpha/kernel/signal.c, arch/alpha/kernel/signal.c,  used to by syscall
389    'do_sigreturn' : 'user', # arch/alpha/kernel/signal.c,  used to by syscall
390    'do_sigsuspend' : 'user', # arch/alpha/kernel/signal.c,  used to by syscall
391    'do_softirq' : 'interrupt', # kernel/softirq.c, include/linux/interrupt.h,
392    'do_switch_stack' : 'other', #
393    'do_sync_read' : 'other', # fs/read_write.c, include/linux/fs.h,
394    'do_sync_write': 'other', # fs/read_write.c, include/linux/fs.h,
395    'do_timer' : 'other', # kernel/timer.c, include/linux/sched.h,
396    'do_truncate': 'other', # fs/open.c, include/linux/fs.h,
397    'do_tx_done' : 'driver', # drivers/net/ns83820.c,
398    'do_wait': 'other', #
399    'do_wp_page': 'bufmgt', # mm/memory.c,
400    'do_writepages' : 'bufmgt', # mm/page-writeback.c, include/linux/writeback.h,
401    'done' : 'other', # drivers/usb/gadget/net2280.c, drivers/usb/gadget/goku_udc.c, drivers/usb/gadget/pxa2xx_udc.c, drivers/scsi/aha152x.c, drivers/scsi/aha152x.c, include/linux/wavefront.h,
402    'dp264_disable_irq' : 'interrupt', # arch/alpha/kernel/sys_dp264.c,
403    'dp264_enable_irq' : 'interrupt', # arch/alpha/kernel/sys_dp264.c,
404    'dp264_end_irq' : 'interrupt', # arch/alpha/kernel/sys_dp264.c,
405    'dp264_srm_device_interrupt' : 'interrupt', # arch/alpha/kernel/sys_dp264.c,
406    'dput' : 'other', # fs/dcache.c, include/linux/dcache.h,
407    'drain_array_locked': 'bufmgt', # mm/slab.c, mm/slab.c,
408    'drive_stat_acct' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
409    'drop_buffers': 'other', # fs/buffer.c,
410    'drop_key_refs': 'other', # kernel/futex.c,
411    'dst_alloc': 'stack', # net/core/dst.c,
412    'dst_output' : 'stack', #
413    'dummy_bprm_alloc_security': 'other', # security/dummy.c,
414    'dummy_bprm_apply_creds': 'other', # security/dummy.c,
415    'dummy_bprm_check_security': 'other', # security/dummy.c,
416    'dummy_bprm_secureexec': 'other', # security/dummy.c,
417    'dummy_bprm_set_security': 'other', # security/dummy.c,
418    'dummy_capable': 'other', # security/dummy.c,
419    'dummy_d_instantiate': 'other', # security/dummy.c,
420    'dummy_file_alloc_security': 'other', # security/dummy.c,
421    'dummy_file_free_security': 'other', # security/dummy.c,
422    'dummy_file_ioctl': 'other', # security/dummy.c,
423    'dummy_file_mmap': 'other', # security/dummy.c,
424    'dummy_file_permission': 'other', # security/dummy.c,
425    'dummy_inode_alloc_security': 'other', # security/dummy.c,
426    'dummy_inode_create': 'other', # security/dummy.c,
427    'dummy_inode_free_security': 'other', # security/dummy.c,
428    'dummy_inode_getattr': 'other', # security/dummy.c,
429    'dummy_inode_mkdir': 'other', # security/dummy.c,
430    'dummy_inode_permission': 'other', # security/dummy.c,
431    'dummy_inode_post_create': 'other', # security/dummy.c,
432    'dummy_inode_post_mkdir': 'other', # security/dummy.c,
433    'dummy_task_create': 'other', # security/dummy.c,
434    'dummy_task_free_security': 'other', # security/dummy.c,
435    'dummy_task_kill': 'other', # security/dummy.c,
436    'dummy_task_wait': 'other', # security/dummy.c,
437    'dummy_vm_enough_memory': 'other', # security/dummy.c,
438    'dup_task_struct': 'other', # kernel/fork.c,
439    'e100': 'driver', #
440    'e1000': 'driver',
441    'effective_prio' : 'other', # kernel/sched.c,
442    'ehci_hcd': 'driver', # drivers/usb/host/ehci.h,
443    'elf_map': 'other', # fs/binfmt_elf.c, fs/binfmt_elf.c,
444    'eligible_child': 'other', # kernel/exit.c,
445    'elv_completed_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
446    'elv_former_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
447    'elv_latter_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
448    'elv_merge' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
449    'elv_merge_requests' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
450    'elv_merged_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
451    'elv_next_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
452    'elv_put_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
453    'elv_queue_empty' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
454    'elv_remove_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
455    'elv_rq_merge_ok' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
456    'elv_set_request' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
457    'elv_try_last_merge' : 'other', # drivers/block/elevator.c, include/linux/elevator.h,
458    'enable_irq': 'driver', # arch/alpha/kernel/irq.c, drivers/net/wan/sdla_ppp.c, drivers/net/wan/sdla_x25.c, drivers/net/wan/wanpipe_multppp.c, drivers/net/wan/sdla_chdlc.c, drivers/net/wan/sdlamain.c, drivers/net/wan/sdla_fr.c, include/asm-alpha/irq.h, include/asm-i386/irq.h,
459    'encode_post_op_attr' : 'other', # fs/nfsd/nfs3xdr.c,
460    'encode_wcc_data' : 'other', # fs/nfsd/nfs3xdr.c,
461    'end' : 'other', # arch/alpha/boot/misc.c, drivers/media/video/w9966.c, drivers/media/video/w9966.c,
462    'end_bio_bh_io_sync' : 'other', # fs/buffer.c,
463    'end_buffer_async_write': 'other', # fs/buffer.c, include/linux/buffer_head.h,
464    'end_buffer_write_sync' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
465    'end_edge_ioapic_vector': 'other', # include/asm-i386/io_apic.h,
466    'end_level_ioapic_irq': 'interrupt', #
467    'end_level_ioapic_vector': 'interrupt', #
468    'end_page_writeback' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
469    'end_that_request_chunk' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
470    'end_that_request_first': 'driver', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
471    'end_that_request_last' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
472    'enqueue_task' : 'other', # kernel/sched.c,
473    'entInt' : 'interrupt', # arch/alpha/kernel/proto.h,
474    'entMM' : 'interrupt', # arch/alpha/kernel/proto.h,
475    'entSys' : 'interrupt', # arch/alpha/kernel/proto.h,
476    'entUna' : 'alignment',
477    'entUnaUser':'alignment',
478    'error_code': 'other', #
479    'eth_header' : 'stack', # net/ethernet/eth.c, include/linux/etherdevice.h,
480    'eth_type_trans' : 'stack', # net/ethernet/eth.c, include/linux/etherdevice.h,
481    'ev5_flush_tlb_current_page': 'bufmgt',
482    'ev5_switch_mm' : 'other', # include/asm-alpha/mmu_context.h,
483    'eventpoll_init_file' : 'other', # fs/eventpoll.c, include/linux/eventpoll.h,
484    'exec_mmap': 'other', # fs/exec.c,
485    'exim4': 'other', #
486    'exit_aio': 'other', # fs/aio.c,
487    'exit_itimers': 'other', # kernel/posix-timers.c, include/linux/sched.h,
488    'exit_mmap': 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h,
489    'exit_notify': 'other', # kernel/exit.c,
490    'exit_sem': 'other', # ipc/sem.c, include/linux/sem.h, include/linux/sem.h,
491    'exp_find_key' : 'other', # fs/nfsd/export.c, include/linux/nfsd/export.h,
492    'exp_readlock' : 'other', # fs/nfsd/export.c, include/linux/nfsd/export.h,
493    'exp_readunlock' : 'other', # fs/nfsd/export.c, include/linux/nfsd/export.h,
494    'expand_fd_array': 'other', # fs/file.c, include/linux/file.h,
495    'expand_files': 'other', # fs/fcntl.c,
496    'expand_stack': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
497    'expkey_put' : 'other', # fs/nfsd/export.c, include/linux/nfsd/export.h,
498    'export_decode_fh' : 'other', # fs/exportfs/expfs.c,
499    'export_iget' : 'other', # fs/exportfs/expfs.c,
500    'expr': 'other', #
501    'ext2_alloc_block' : 'other', # fs/ext2/inode.c,
502    'ext2_alloc_branch' : 'other', # fs/ext2/inode.c,
503    'ext2_block_to_path' : 'other', # fs/ext2/inode.c,
504    'ext2_discard_prealloc' : 'other', # fs/ext2/inode.c, fs/ext2/ext2.h,
505    'ext2_find_near' : 'other', # fs/ext2/inode.c,
506    'ext2_free_blocks' : 'other', # fs/ext2/balloc.c, fs/ext2/ext2.h,
507    'ext2_get_block' : 'other', # fs/ext2/inode.c,
508    'ext2_get_branch' : 'other', # fs/ext2/inode.c,
509    'ext2_get_group_desc' : 'other', # fs/ext2/balloc.c, fs/ext2/ext2.h,
510    'ext2_get_inode' : 'other', # fs/ext2/inode.c,
511    'ext2_new_block' : 'other', # fs/ext2/balloc.c, fs/ext2/ext2.h,
512    'ext2_prepare_write' : 'other', # fs/ext2/inode.c,
513    'ext2_put_inode' : 'other', # fs/ext2/inode.c, fs/ext2/ext2.h,
514    'ext2_release_file' : 'other', # fs/ext2/file.c,
515    'ext2_setattr' : 'other', # fs/ext2/inode.c, fs/ext2/ext2.h,
516    'ext2_sync_file' : 'other', # fs/ext2/fsync.c, fs/ext2/ext2.h,
517    'ext2_sync_inode' : 'other', # fs/ext2/inode.c, fs/ext2/ext2.h,
518    'ext2_update_inode' : 'other', # fs/ext2/inode.c, fs/ext2/inode.c,
519    'ext2_write_inode' : 'other', # fs/ext2/inode.c, fs/ext2/ext2.h,
520    'ext2_writepages' : 'other', # fs/ext2/inode.c,
521    'ext3': 'other', #
522    'fasync_helper': 'other', # fs/fcntl.c, include/linux/fs.h,
523    'fd_install' : 'other', # fs/open.c,
524    'fget' : 'other', # fs/file_table.c,
525    'fget_light' : 'other', # fs/file_table.c,
526    'fh_put' : 'other', # fs/nfsd/nfsfh.c, include/linux/nfsd/nfsfh.h,
527    'fh_verify' : 'other', # fs/nfsd/nfsfh.c, include/linux/nfsd/nfsfh.h,
528    'fib_lookup': 'stack', # net/ipv4/fib_rules.c,
529    'fib_rule_put': 'stack', # net/ipv4/fib_rules.c,
530    'fib_semantic_match': 'stack', # net/ipv4/fib_semantics.c,
531    'file_ioctl': 'other', # fs/ioctl.c,
532    'file_kill' : 'other', # fs/file_table.c, include/linux/fs.h,
533    'file_move': 'other', # fs/file_table.c, include/linux/fs.h,
534    'file_ra_state_init': 'bufmgt', # mm/readahead.c, include/linux/fs.h,
535    'file_read_actor': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
536    'filemap_fdatawait' : 'bufmgt', # mm/filemap.c, include/linux/fs.h,
537    'filemap_fdatawrite' : 'bufmgt', # mm/filemap.c, include/linux/fs.h,
538    'filemap_nopage': 'bufmgt', # mm/filemap.c, include/linux/mm.h,
539    'filesystems_read_proc': 'other', # fs/proc/proc_misc.c,
540    'filp_close' : 'other', # fs/open.c, include/linux/fs.h,
541    'filp_open' : 'other', # fs/open.c, include/linux/fs.h,
542    'find_best_ips_proto_fast' : 'stack', # net/ipv4/netfilter/ip_nat_core.c,
543    'find_busiest_group' : 'other', # kernel/sched.c,
544    'find_dcookie': 'other', # fs/dcookies.c,
545    'find_exported_dentry' : 'other', # fs/exportfs/expfs.c, fs/nfsd/export.c,
546    'find_extend_vma': 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h,
547    'find_get_page' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
548    'find_get_pages': 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
549    'find_get_pages_tag' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
550    'find_inode_fast' : 'other', # fs/inode.c,
551    'find_inode_number' : 'other', # fs/dcache.c, include/linux/fs.h,
552    'find_lock_page' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
553    'find_mergeable_anon_vma': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
554    'find_nat_proto' : 'stack', # net/ipv4/netfilter/ip_nat_core.c, include/linux/netfilter_ipv4/ip_nat_protocol.h,
555    'find_next_zero_bit': 'other', # include/asm-alpha/bitops.h, include/asm-i386/bitops.h,
556    'find_or_create_page' : 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
557    'find_pid' : 'user', # kernel/pid.c, used to be syscall
558    'find_snap_client': 'stack', # net/802/psnap.c,
559    'find_task_by_pid' : 'user', # kernel/pid.c, include/linux/sched.h, used to be syscall
560    'find_task_by_pid_type': 'other', #
561    'find_vma' : 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h, used to be syscall
562    'find_vma_prepare': 'bufmgt', # mm/mmap.c,
563    'find_vma_prev': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
564    'finish_task_switch' : 'other', # kernel/sched.c, used to be syscall
565    'finish_wait' : 'other', # kernel/fork.c, used to be syscall
566    'flush_old_exec': 'other', # fs/exec.c, include/linux/binfmts.h,
567    'flush_signal_handlers': 'other', # kernel/signal.c, include/linux/sched.h,
568    'flush_sigqueue': 'other', # kernel/signal.c,
569    'flush_thread': 'syscall', # arch/alpha/kernel/process.c, include/linux/sched.h,
570    'fn_hash_lookup': 'stack', # net/ipv4/fib_hash.c,
571    'follow_mount' : 'user', # fs/namei.c, used to be syscall
572    'found' : 'other', # sound/oss/forte.c, scripts/kconfig/gconf.c, drivers/net/fec.c, drivers/scsi/ibmmca.c, drivers/scsi/fd_mcs.c,
573    'fput' : 'user', # fs/file_table.c, used to be syscall
574    'free_block' : 'bufmgt', # mm/slab.c, drivers/char/drm/radeon_mem.c, mm/slab.c,
575    'free_buffer_head': 'other', # fs/buffer.c, include/linux/buffer_head.h,
576    'free_fd_array': 'other', # fs/file.c, include/linux/file.h,
577    'free_hot_cold_page' : 'bufmgt', # mm/page_alloc.c,
578    'free_hot_page' : 'bufmgt', # mm/page_alloc.c,
579    'free_page_and_swap_cache': 'bufmgt', # mm/swap_state.c, include/linux/swap.h, include/linux/swap.h,
580    'free_pages' : 'bufmgt', # mm/page_alloc.c, drivers/char/drm/drm_memory_debug.h, drivers/md/raid6.h, drivers/char/drm/drmP.h,
581    'free_pages_bulk': 'bufmgt', # mm/page_alloc.c,
582    'free_pgtables': 'bufmgt', # mm/mmap.c,
583    'free_pidmap': 'other', # kernel/pid.c,
584    'free_task': 'other', # kernel/fork.c,
585    'free_uid' : 'other', # kernel/user.c, include/linux/sched.h,
586    'freed_request' : 'other', # drivers/block/ll_rw_blk.c,
587    'fs_may_remount_ro' : 'other', # fs/file_table.c, include/linux/fs.h,
588    'fsync_buffers_list' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
589    'futex_wait': 'other', # kernel/futex.c,
590    'futex_wake': 'other', # kernel/futex.c,
591    'gconfd-2': 'other', #
592    'generic_commit_write' : 'user', # fs/buffer.c, include/linux/buffer_head.h, used to be syscall
593    'generic_delete_inode': 'other', # fs/inode.c, include/linux/fs.h,
594    'generic_drop_inode' : 'user', # fs/inode.c, used to be syscall
595    'generic_file_aio_read': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
596    'generic_file_aio_write': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
597    'generic_file_aio_write_nolock' : 'user', # mm/filemap.c, include/linux/fs.h, used to be syscall
598    'generic_file_buffered_write': 'other', #
599    'generic_file_llseek': 'other', # fs/read_write.c, include/linux/fs.h,
600    'generic_file_mmap': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
601    'generic_file_open' : 'user', # fs/open.c, include/linux/fs.h, used to be syscall
602    'generic_file_write' : 'user', # mm/filemap.c, include/linux/fs.h, used to be syscall
603    'generic_file_write_nolock' : 'user', # mm/filemap.c, include/linux/fs.h, used to be syscall
604    'generic_file_writev' : 'user', # mm/filemap.c, include/linux/fs.h, used to be syscall
605    'generic_fillattr' : 'user', # fs/stat.c, include/linux/fs.h, used to be syscall
606    'generic_forget_inode' : 'user', # fs/inode.c, used to be syscall
607    'generic_make_request' : 'user', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h, used to be syscall
608    'generic_unplug_device' : 'driver', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
609    'get_conntrack_index' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_tcp.c,
610    'get_device' : 'driver', # drivers/base/core.c, include/linux/device.h,
611    'get_dirty_limits' : 'bufmgt', # mm/page-writeback.c,
612    'get_empty_filp' : 'other', # fs/file_table.c, include/linux/fs.h,
613    'get_free_idx': 'interrupt', #
614    'get_futex_key': 'other', # kernel/futex.c,
615    'get_io_context' : 'other', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
616    'get_jiffies_64': 'other', # kernel/time.c, include/linux/jiffies.h, include/linux/jiffies.h,
617    'get_new_inode_fast': 'other', # fs/inode.c,
618    'get_object' : 'other', # fs/exportfs/expfs.c,
619    'get_offset_pmtmr': 'interrupt', #
620    'get_one_pte_map_nested': 'bufmgt', # mm/mremap.c,
621    'get_page_state': 'bufmgt', # mm/page_alloc.c, include/linux/page-flags.h,
622    'get_pipe_inode': 'other', # fs/pipe.c,
623    'get_request' : 'other', # drivers/block/ll_rw_blk.c,
624    'get_sample_stats' : 'stack', # net/core/dev.c,
625    'get_signal_to_deliver' : 'other', # kernel/signal.c, include/linux/signal.h,
626    'get_task_mm': 'other', # include/linux/sched.h,
627    'get_tuple' : 'driver', # net/ipv4/netfilter/ip_conntrack_core.c, drivers/isdn/hisax/elsa_cs.c, drivers/isdn/hisax/teles_cs.c, drivers/isdn/hisax/avma1_cs.c, drivers/isdn/hardware/avm/avm_cs.c, drivers/bluetooth/bt3c_cs.c, drivers/bluetooth/btuart_cs.c, drivers/bluetooth/dtl1_cs.c, include/linux/netfilter_ipv4/ip_conntrack_core.h,
628    'get_unique_tuple' : 'stack', # net/ipv4/netfilter/ip_nat_core.c,
629    'get_unmapped_area': 'bufmgt', # mm/mmap.c, mm/nommu.c, include/linux/mm.h,
630    'get_unused_fd' : 'other', # fs/open.c, include/linux/file.h,  used to be syscall
631    'get_vmalloc_info': 'other', # fs/proc/proc_misc.c,
632    'get_write_access' : 'other', # fs/namei.c, include/linux/fs.h,  used to be syscall
633    'get_writeback_state' : 'other', # mm/page-writeback.c,  used to be syscall
634    'get_zone_counts': 'bufmgt', # mm/page_alloc.c, include/linux/mmzone.h,
635    'getname' : 'other', # fs/namei.c, include/linux/fs.h,  used to be syscall
636    'getnstimeofday': 'other', #
637    'getrusage': 'other', # kernel/sys.c, kernel/exit.c,
638    'grab_block' : 'other', # fs/ext2/balloc.c,
639    'grep': 'other', #
640    'group_release_blocks' : 'other', # fs/ext2/balloc.c,
641    'group_reserve_blocks' : 'other', # fs/ext2/balloc.c,
642    'group_send_sig_info' : 'other', # kernel/signal.c, include/linux/signal.h,
643    'groups_alloc' : 'other', # kernel/sys.c, include/linux/sched.h,  used to be syscall
644    'groups_free' : 'other', # kernel/sys.c, include/linux/sched.h,  used to be syscall
645    'groups_search' : 'other', # kernel/sys.c,  used to be syscall
646    'groups_sort' : 'other', # kernel/sys.c,  used to be syscall
647    'groups_to_user': 'other', # kernel/sys.c,
648    'grow_dev_page' : 'other', # fs/buffer.c,
649    'halfMD4Transform' : 'other', # fs/ext3/hash.c, drivers/char/random.c,
650    'handle_IRQ_event' : 'interrupt', # arch/alpha/kernel/irq.c, include/asm-alpha/irq.h,
651    'handle_irq' : 'interrupt', # arch/alpha/kernel/irq.c, arch/alpha/kernel/irq_impl.h,
652    'handle_mm_fault' : 'interrupt', # mm/memory.c, include/linux/mm.h,
653    'handle_signal': 'interrupt', # arch/alpha/kernel/signal.c,
654    'handle_stop_signal' : 'interrupt', # kernel/signal.c,
655    'hash_conntrack' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c,
656    'hash_futex': 'other', # kernel/futex.c,
657    'hash_refile' : 'other', # fs/nfsd/nfscache.c,
658    'i8042_interrupt': 'interrupt', # drivers/input/serio/i8042.c, drivers/input/serio/i8042.c,
659    'i8042_timer_func': 'driver', # drivers/input/serio/i8042.c,
660    'i_waitq_head' : 'other', # fs/inode.c,
661    'ide_cd': 'other', #
662    'ide_core': 'other', #
663    'ide_disk': 'other', # include/linux/ide.h,
664    'idle_cpu' : 'idle', # kernel/sched.c, include/linux/sched.h,
665    'iget_locked' : 'other', # fs/inode.c, include/linux/fs.h,
666    'in_group_p' : 'other', # kernel/sys.c, include/linux/sched.h,
667    'inet_accept' : 'stack', # net/ipv4/af_inet.c,
668    'inet_create': 'stack', # net/ipv4/af_inet.c,
669    'inet_getname' : 'stack', # net/ipv4/af_inet.c,
670    'inet_release' : 'stack', # net/ipv4/af_inet.c,
671    'inet_sendmsg' : 'stack', # net/ipv4/af_inet.c,
672    'inet_sendpage' : 'stack', # net/ipv4/af_inet.c,
673    'inet_shutdown' : 'stack', # net/ipv4/af_inet.c,
674    'inet_sock_destruct' : 'stack', # net/ipv4/af_inet.c,
675    'init': 'driver', # net/core/pktgen.c, net/ipv4/netfilter/ip_conntrack_ftp.c, net/ipv4/netfilter/ip_conntrack_irc.c, net/ipv4/netfilter/ip_tables.c, net/ipv4/netfilter/ipt_ECN.c, net/ipv4/netfilter/ipt_LOG.c, net/ipv4/netfilter/ipt_helper.c, net/ipv4/netfilter/ipt_TOS.c, net/ipv4/netfilter/ipt_addrtype.c, net/ipv4/netfilter/ipt_limit.c, net/ipv4/netfilter/ipt_tcpmss.c, net/ipv4/netfilter/ipt_ecn.c, net/ipv4/netfilter/ipt_esp.c, net/ipv4/netfilter/ipt_mac.c, net/ipv4/netfilter/ipt_tos.c, net/ipv4/netfilter/ipt_ttl.c, net/ipv4/netfilter/ip_nat_ftp.c, net/ipv4/netfilter/ip_nat_irc.c, net/ipv4/netfilter/ipt_multiport.c, net/ipv4/netfilter/ipt_dscp.c, net/ipv4/netfilter/arp_tables.c, net/ipv4/netfilter/ip_conntrack_tftp.c, net/ipv4/netfilter/ipt_physdev.c, net/ipv4/netfilter/ipt_state.c, net/ipv4/netfilter/ipt_ah.c, net/ipv4/netfilter/ipt_mark.c, net/ipv4/netfilter/ip_queue.c, net/ipv4/netfilter/ipt_conntrack.c, net/ipv4/netfilter/ip_fw_compat.c, net/ipv4/netfilter/ipt_NETMAP.c, net/ipv4/netfilter/ipt_pkttype.c, net/ipv4/netfilter/ipt_MASQUERADE.c, net/ipv4/netfilter/ip_conntrack_standalone.c, net/ipv4/netfilter/ip_nat_snmp_basic.c, net/ipv4/netfilter/ipt_length.c, net/ipv4/netfilter/arpt_mangle.c, net/ipv4/netfilter/ipt_CLASSIFY.c, net/ipv4/netfilter/ip_nat_standalone.c, net/ipv4/netfilter/ipt_NOTRACK.c, net/ipv4/netfilter/ip_nat_amanda.c, net/ipv4/netfilter/ipt_REDIRECT.c, net/ipv4/netfilter/ipt_TCPMSS.c, net/ipv4/netfilter/ipt_REJECT.c, net/ipv4/netfilter/ip_conntrack_amanda.c, net/ipv4/netfilter/ipt_owner.c, net/ipv4/netfilter/ipt_DSCP.c, net/ipv4/netfilter/ip_nat_tftp.c, net/ipv4/netfilter/arptable_filter.c, net/ipv4/netfilter/ipt_iprange.c, net/ipv4/netfilter/ipt_MARK.c, net/ipv4/netfilter/iptable_filter.c, net/ipv4/netfilter/iptable_mangle.c, net/ipv4/netfilter/ipt_SAME.c, net/ipv4/netfilter/ipt_realm.c, net/ipv4/netfilter/ipt_ULOG.c, net/ipv4/netfilter/iptable_raw.c, net/ipv6/netfilter/ip6t_length.c, net/ipv6/netfilter/ip6t_eui64.c, net/ipv6/netfilter/ip6t_frag.c, net/ipv6/netfilter/ip6t_multiport.c, net/ipv6/netfilter/ip6t_ah.c, net/ipv6/netfilter/ip6t_hl.c, net/ipv6/netfilter/ip6t_rt.c, net/ipv6/netfilter/ip6t_mark.c, net/ipv6/netfilter/ip6_queue.c, net/ipv6/netfilter/ip6table_filter.c, net/ipv6/netfilter/ip6table_mangle.c, net/ipv6/netfilter/ip6t_owner.c, net/ipv6/netfilter/ip6t_LOG.c, net/ipv6/netfilter/ip6t_dst.c, net/ipv6/netfilter/ip6t_esp.c, net/ipv6/netfilter/ip6t_hbh.c, net/ipv6/netfilter/ip6t_mac.c, net/ipv6/netfilter/ip6_tables.c, net/ipv6/netfilter/ip6t_MARK.c, net/ipv6/netfilter/ip6table_raw.c, net/ipv6/netfilter/ip6t_limit.c, net/bridge/netfilter/ebt_among.c, net/bridge/netfilter/ebt_dnat.c, net/bridge/netfilter/ebt_802_3.c, net/bridge/netfilter/ebt_mark.c, net/bridge/netfilter/ebt_redirect.c, net/bridge/netfilter/ebt_pkttype.c, net/bridge/netfilter/ebt_snat.c, net/bridge/netfilter/ebt_vlan.c, net/bridge/netfilter/ebt_arp.c, net/bridge/netfilter/ebt_log.c, net/bridge/netfilter/ebt_stp.c, net/bridge/netfilter/ebtables.c, net/bridge/netfilter/ebt_limit.c, net/bridge/netfilter/ebtable_broute.c, net/bridge/netfilter/ebt_arpreply.c, net/bridge/netfilter/ebt_ip.c, net/bridge/netfilter/ebtable_filter.c, net/bridge/netfilter/ebt_mark_m.c, net/bridge/netfilter/ebtable_nat.c, net/decnet/netfilter/dn_rtmsg.c, init/main.c, scripts/kconfig/qconf.cc, , as member of class ConfigItemdrivers/usb/host/ehci-hcd.c, drivers/usb/gadget/ether.c, drivers/usb/gadget/net2280.c, drivers/usb/gadget/goku_udc.c, drivers/usb/gadget/zero.c, drivers/usb/gadget/dummy_hcd.c, drivers/usb/gadget/inode.c, drivers/media/dvb/frontends/grundig_29504-401.c, crypto/tcrypt.c, crypto/khazad.c, crypto/digest.c, crypto/des.c, crypto/md4.c, crypto/md5.c, crypto/tea.c, crypto/serpent.c, crypto/blowfish.c, crypto/sha1.c, crypto/crypto_null.c, crypto/crc32c.c, crypto/deflate.c, crypto/cast5.c, crypto/cast6.c, crypto/sha256.c, crypto/sha512.c, crypto/twofish.c, kernel/futex.c, init/main.c, net/ipv4/netfilter/ipt_recent.c, drivers/i2c/chips/w83781d.c, drivers/i2c/chips/w83627hf.c, drivers/media/video/saa7114.c,
676    'init_bictcp' : 'stack', # net/ipv4/tcp_input.c,
677    'init_buffer_head' : 'other', # fs/buffer.c,
678    'init_conntrack' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c,
679    'init_fpu': 'interrupt', # include/asm-i386/i387.h,
680    'init_new_context': 'interrupt', # include/asm-alpha/mmu_context.h, include/asm-i386/mmu_context.h,
681    'init_page_buffers' : 'other', # fs/buffer.c,
682    'init_westwood' : 'stack', # net/ipv4/tcp_input.c,
683    'inode_add_bytes' : 'other', # fs/stat.c, include/linux/fs.h,
684    'inode_change_ok': 'other', # fs/attr.c, include/linux/fs.h,
685    'inode_has_buffers' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
686    'inode_setattr': 'other', # fs/attr.c, include/linux/fs.h,
687    'inode_sub_bytes' : 'other', # fs/stat.c, include/linux/fs.h,
688    'inode_times_differ' : 'other', # fs/inode.c,
689    'inode_update_time' : 'other', # fs/inode.c, include/linux/fs.h,
690    'insert_vm_struct': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
691    'install_arg_page': 'other', # fs/exec.c, include/linux/mm.h,
692    'internal_add_timer' : 'other', # kernel/timer.c,
693    'invalid_dpte_no_dismiss_10_' : 'interrupt', #
694    'invalidate_inode_buffers' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
695    'invert_tuple' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c,
696    'invert_tuplepr' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack.h,
697    'io_schedule' : 'other', # kernel/sched.c, include/linux/sched.h,
698    'ip_append_data' : 'stack', # net/ipv4/ip_output.c,
699    'ip_append_page' : 'stack', # net/ipv4/ip_output.c,
700    'ip_build_and_send_pkt' : 'stack', # net/ipv4/ip_output.c,
701    'ip_cmsg_recv': 'stack', # net/ipv4/ip_sockglue.c,
702    'ip_cmsg_send' : 'stack', # net/ipv4/ip_sockglue.c,
703    'ip_confirm' : 'stack', # net/ipv4/netfilter/ip_conntrack_standalone.c,
704    'ip_conntrack': 'other', # include/linux/netfilter_ipv4/ip_conntrack.h,
705    'ip_conntrack_alter_reply' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack.h,
706    'ip_conntrack_defrag' : 'stack', # net/ipv4/netfilter/ip_conntrack_standalone.c,
707    'ip_conntrack_find_get' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_core.h,
708    'ip_conntrack_get' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack.h,
709    'ip_conntrack_in' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_core.h,
710    'ip_conntrack_local' : 'stack', # net/ipv4/netfilter/ip_conntrack_standalone.c,
711    'ip_conntrack_tuple_taken' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack.h,
712    'ip_conntrack_unexpect_related' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_helper.h,
713    'ip_ct_find_helper' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_helper.h,
714    'ip_ct_find_proto' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack_core.h,
715    'ip_ct_gather_frags' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack.h,
716    'ip_ct_refresh' : 'stack', # net/ipv4/netfilter/ip_conntrack_core.c, include/linux/netfilter_ipv4/ip_conntrack.h,
717    'ip_defrag' : 'stack', # net/ipv4/ip_fragment.c,
718    'ip_evictor' : 'stack', # net/ipv4/ip_fragment.c,
719    'ip_fast_csum' : 'stack', # arch/alpha/lib/checksum.c, include/asm-alpha/checksum.h,
720    'ip_finish_output' : 'stack', # net/ipv4/ip_output.c,
721    'ip_finish_output2' : 'stack', # net/ipv4/ip_output.c,
722    'ip_frag_create' : 'stack', # net/ipv4/ip_fragment.c,
723    'ip_frag_destroy' : 'stack', # net/ipv4/ip_fragment.c,
724    'ip_frag_intern' : 'stack', # net/ipv4/ip_fragment.c,
725    'ip_frag_queue' : 'stack', # net/ipv4/ip_fragment.c,
726    'ip_frag_reasm' : 'stack', # net/ipv4/ip_fragment.c,
727    'ip_local_deliver' : 'stack', # net/ipv4/ip_input.c,
728    'ip_local_deliver_finish' : 'stack', # net/ipv4/ip_input.c,
729    'ip_map_lookup' : 'stack', # net/sunrpc/svcauth_unix.c,
730    'ip_map_put' : 'stack', # net/sunrpc/svcauth_unix.c,
731    'ip_mc_drop_socket' : 'stack', # net/ipv4/igmp.c, net/ipv4/af_inet.c, include/linux/igmp.h,
732    'ip_nat_fn' : 'stack', # net/ipv4/netfilter/ip_nat_standalone.c,
733    'ip_nat_out' : 'stack', # net/ipv4/netfilter/ip_nat_standalone.c,
734    'ip_nat_rule_find' : 'stack', # net/ipv4/netfilter/ip_nat_rule.c, include/linux/netfilter_ipv4/ip_nat_rule.h,
735    'ip_nat_setup_info' : 'stack', # net/ipv4/netfilter/ip_nat_core.c, include/linux/netfilter_ipv4/ip_nat.h,
736    'ip_nat_used_tuple' : 'stack', # net/ipv4/netfilter/ip_nat_core.c, include/linux/netfilter_ipv4/ip_nat.h,
737    'ip_output' : 'stack', # net/ipv4/ip_output.c,
738    'ip_push_pending_frames' : 'stack', # net/ipv4/ip_output.c,
739    'ip_queue_xmit' : 'stack', # net/ipv4/ip_output.c,
740    'ip_rcv' : 'stack', # net/ipv4/ip_input.c,
741    'ip_rcv_finish' : 'stack', # net/ipv4/ip_input.c,
742    'ip_refrag' : 'stack', # net/ipv4/netfilter/ip_conntrack_standalone.c,
743    'ip_route_input' : 'stack', # net/ipv4/route.c,
744    'ip_route_input_slow': 'stack', # net/ipv4/route.c,
745    'ip_route_output_flow' : 'stack', # net/ipv4/route.c,
746    'ip_send_check' : 'stack', # net/ipv4/ip_output.c,
747    'ip_tables': 'other', #
748    'ipq_kill' : 'stack', # net/ipv4/ip_fragment.c,
749    'ipqhashfn' : 'stack', # net/ipv4/ip_fragment.c,
750    'ipt_do_table' : 'stack', # net/ipv4/netfilter/ip_tables.c, include/linux/netfilter_ipv4/ip_tables.h,
751    'ipt_find_target_lock' : 'stack', # net/ipv4/netfilter/ip_tables.c, include/linux/netfilter_ipv4/ip_tables.h, include/linux/netfilter.h,
752    'ipt_hook' : 'stack', # net/ipv4/netfilter/iptable_filter.c, net/ipv4/netfilter/iptable_raw.c,
753    'ipt_local_hook' : 'stack', # net/ipv4/netfilter/iptable_mangle.c,
754    'ipt_local_out_hook' : 'stack', # net/ipv4/netfilter/iptable_filter.c,
755    'ipt_route_hook' : 'stack', # net/ipv4/netfilter/iptable_mangle.c,
756    'iptable_filter': 'other', #
757    'iptable_mangle': 'other', #
758    'iptable_nat': 'other', #
759    'iput' : 'other', # fs/inode.c, include/linux/fs.h,
760    'ipv4_sabotage_in' : 'stack', # net/bridge/br_netfilter.c,
761    'ipv4_sabotage_out' : 'stack', # net/bridge/br_netfilter.c,
762    'irq_entries_start': 'interrupt', #
763    'is_bad_inode' : 'other', # fs/bad_inode.c, include/linux/fs.h,
764    'it_real_fn': 'other', # kernel/itimer.c, include/linux/timer.h,
765    'jbd': 'other', #
766    'juk': 'other', #
767    'kded_kmilod.so': 'other', #
768    'kdeinit': 'other', #
769    'kernel_read': 'other', # fs/exec.c, include/linux/fs.h,
770    'kfree' : 'bufmgt', # mm/slab.c, include/linux/slab.h,
771    'kfree_skbmem' : 'bufmgt', # net/core/skbuff.c, include/linux/skbuff.h,
772    'kill_fasync': 'other', # fs/fcntl.c, include/linux/fs.h,
773    'kill_proc_info' : 'other', # kernel/signal.c, include/linux/sched.h,
774    'kill_something_info' : 'other', # kernel/signal.c,
775    'kmap': 'bufmgt', # include/asm-i386/highmem.h,
776    'kmap_atomic': 'bufmgt', # include/linux/highmem.h, include/asm-i386/highmem.h,
777    'kmap_high': 'bufmgt', # mm/highmem.c,
778    'kmem_cache_alloc' : 'bufmgt', # mm/slab.c, include/linux/slab.h,
779    'kmem_cache_free' : 'bufmgt', # mm/slab.c, include/linux/slab.h,
780    'kmem_flagcheck' : 'bufmgt', # mm/slab.c,
781    'kmem_freepages' : 'bufmgt', # mm/slab.c,
782    'kmem_getpages' : 'bufmgt', # mm/slab.c,
783    'kobject_get' : 'other', # lib/kobject.c, include/linux/kobject.h,
784    'kobject_put' : 'other', # lib/kobject.c, include/linux/kobject.h,
785    'kref_get': 'other', # lib/kref.c, include/linux/kref.h,
786    'kscd': 'other', #
787    'ksoftirqd' : 'interrupt', # kernel/softirq.c,
788    'ksysguardd': 'other', #
789    'kthread_should_stop' : 'other', # kernel/kthread.c, include/linux/kthread.h,
790    'kunmap': 'bufmgt', # include/linux/highmem.h, include/asm-i386/highmem.h,
791    'kunmap_atomic': 'bufmgt', # include/linux/highmem.h, include/asm-i386/highmem.h,
792    'kunmap_high': 'bufmgt', # mm/highmem.c,
793    'kwrapper': 'other', #
794    'ld-2.3.2.so': 'other', #
795    'lease_get_mtime' : 'other', # fs/locks.c, include/linux/fs.h,
796    'libORBit-2.so.0.0.0': 'other', #
797    'libX11.so.6.2': 'other', #
798    'libXext.so.6.4': 'other', #
799    'libXft.so.2.1.1': 'other', #
800    'libXrender.so.1.2.2': 'other', #
801    'libacl.so.1.1.0': 'other', #
802    'libarts.so': 'other', #
803    'libartsdsp.so.0.0.0': 'other', #
804    'libartsflow.so.1.0.0': 'other', #
805    'libartsmidi.so.0.0.0': 'other', #
806    'libattr.so.1.1.0': 'other', #
807    'libc-2.3.2.so' : 'user',
808    'libcdaudio.so': 'other', #
809    'libcrypt-2.3.2.so': 'other', #
810    'libcrypto.so.0.9.7': 'other', #
811    'libdb3.so.3.0.2': 'other', #
812    'libdl-2.3.2.so': 'other', #
813    'libgcc_s.so.1': 'other', #
814    'libgconf-2.so.4.1.0': 'other', #
815    'libgcrypt.so.11.1.1': 'other', #
816    'libgdk-1.2.so.0.9.1': 'other', #
817    'libgdk-x11-2.0.so.0.400.13': 'other', #
818    'libgfx_gtk.so': 'other', #
819    'libgkgfx.so': 'other', #
820    'libgklayout.so': 'other', #
821    'libglib-1.2.so.0.0.10': 'other', #
822    'libglib-2.0.so.0.400.8': 'other', #
823    'libgnutls.so.11.1.16': 'other', #
824    'libgobject-2.0.so.0.400.8': 'other', #
825    'libgthread-2.0.so.0.400.8': 'other', #
826    'libgtk-x11-2.0.so.0.400.13': 'other', #
827    'libhtmlpars.so': 'other', #
828    'libimglib2.so': 'other', #
829    'libkdecore.so.4.2.0': 'other', #
830    'libkdefx.so.4.2.0': 'other', #
831    'libkdeinit_kded.so': 'other', #
832    'libkdeinit_kdesktop.so': 'other', #
833    'libkdeinit_kicker.so': 'other', #
834    'libkdeinit_klauncher.so': 'other', #
835    'libkdeinit_klipper.so': 'other', #
836    'libkdeui.so.4.2.0': 'other', #
837    'libksgrd.so.1.2.0': 'other', #
838    'libm-2.3.2.so': 'other', #
839    'libmcop.so.1.0.0': 'other', #
840    'libmcop_mt.so.1.0.0': 'other', #
841    'libmikmod.so': 'other', #
842    'libmpg123.so': 'other', #
843    'libncurses.so.5.4': 'other', #
844    'libnecko.so': 'other', #
845    'libnsl-2.3.2.so': 'other', #
846    'libnspr4.so': 'other', #
847    'libnss_compat-2.3.2.so': 'other', #
848    'libnss_files-2.3.2.so': 'other', #
849    'libnss_nis-2.3.2.so': 'other', #
850    'libpcre.so.3.10.0': 'other', #
851    'libplc4.so': 'other', #
852    'libplds4.so': 'other', #
853    'libpref.so': 'other', #
854    'libpthread-0.10.so': 'user',
855    'libpthread-0.60.so': 'other', #
856    'libpthread-0.60.so': 'other', #
857    'libpthread-0.60.so': 'other', #
858    'libpthread-0.60.so': 'other', #
859    'libpthread-0.60.so': 'other', #
860    'libpthread-0.60.so': 'other', #
861    'libpthread-0.60.so': 'other', #
862    'libpthread-0.60.so': 'other', #
863    'libpthread-0.60.so': 'other', #
864    'libpthread-0.60.so': 'other', #
865    'libpthread-0.60.so': 'other', #
866    'libpthread-0.60.so': 'other', #
867    'libpthread-0.60.so': 'other', #
868    'libpthread-0.60.so': 'other', #
869    'libpthread-0.60.so': 'other', #
870    'libpthread-0.60.so': 'other', #
871    'libpthread-0.60.so': 'other', #
872    'libpthread-0.60.so': 'other', #
873    'libpthread-0.60.so': 'other', #
874    'libpthread-0.60.so': 'other', #
875    'libpthread-0.60.so': 'other', #
876    'libpthread-0.60.so': 'other', #
877    'libpthread-0.60.so': 'other', #
878    'libpthread-0.60.so': 'other', #
879    'libqt-mt.so.3.3.3': 'other', #
880    'libqtmcop.so.1.0.0': 'other', #
881    'librdf.so': 'other', #
882    'libresolv-2.3.2.so': 'other', #
883    'librt-2.3.2.so': 'other', #
884    'libstdc++.so.5.0.7': 'other', #
885    'libtasn1.so.2.0.10': 'other', #
886    'libuconv.so': 'other', #
887    'libwidget_gtk2.so': 'other', #
888    'libwrap.so.0.7.6': 'other', #
889    'libxmms.so.1.3.1': 'other', #
890    'libxpcom.so': 'other', #
891    'link_path_walk' : 'other', # fs/namei.c,
892    'll_back_merge_fn' : 'other', # drivers/block/ll_rw_blk.c,
893    'll_front_merge_fn' : 'other', # drivers/block/ll_rw_blk.c,
894    'll_merge_requests_fn' : 'other', # drivers/block/ll_rw_blk.c,
895    'll_rw_block' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
896    'llc_rcv': 'stack', # net/llc/llc_input.c,
897    'llc_sap_find': 'stack', # net/llc/llc_core.c,
898    'load_balance' : 'other', # kernel/sched.c,
899    'load_balance_newidle' : 'other', # kernel/sched.c,
900    'load_elf_binary': 'other', # fs/binfmt_elf.c, fs/binfmt_elf.c,
901    'load_elf_interp': 'other', # fs/binfmt_elf.c,
902    'load_script': 'other', # fs/binfmt_script.c,
903    'local_bh_enable' : 'interrupt', # kernel/softirq.c, include/linux/interrupt.h,
904    'lock_sock' : 'stack', # net/core/sock.c,
905    'lockfile-create': 'other', #
906    'lockfile-remove': 'other', #
907    'locks_remove_flock' : 'other', # fs/locks.c, include/linux/fs.h,
908    'locks_remove_posix' : 'other', # fs/locks.c, include/linux/fs.h,
909    'lookup_create': 'other', # fs/namei.c, include/linux/dcache.h,
910    'lookup_hash': 'other', # fs/namei.c, include/linux/namei.h,
911    'lookup_mnt' : 'other', # fs/namespace.c, include/linux/dcache.h,
912    'loop' : 'interrupt', #
913    'loopback_xmit': 'driver',
914    'lru_add_drain' : 'bufmgt', # mm/swap.c, include/linux/swap.h,
915    'lru_cache_add' : 'bufmgt', # mm/swap.c,
916    'lru_cache_add_active': 'bufmgt', # mm/swap.c,
917    'lru_put_front' : 'other', # fs/nfsd/nfscache.c,
918    'ls': 'driver', # drivers/fc4/fc.c,
919    'mail': 'other', #
920    'mapping_tagged' : 'bufmgt', # mm/page-writeback.c, include/linux/fs.h,
921    'mark_buffer_dirty' : 'other', # fs/buffer.c,
922    'mark_buffer_dirty_inode' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
923    'mark_offset_pmtmr': 'interrupt', #
924    'mark_page_accessed' : 'bufmgt', # mm/swap.c,
925    'mask_and_ack_level_ioapic_vector': 'interrupt', # include/asm-i386/io_apic.h,
926    'math_state_restore': 'interrupt', #
927    'mawk': 'other', #
928    'max_sane_readahead': 'bufmgt', # mm/readahead.c, include/linux/mm.h,
929    'max_select_fd': 'other', # fs/select.c,
930    'may_open': 'other', # fs/namei.c, include/linux/fs.h,
931    'memcmp' : 'copy', # lib/string.c,
932    'memcpy' : 'copy', # lib/string.c, arch/alpha/lib/memcpy.c, arch/alpha/kernel/alpha_ksyms.c, include/asm-alpha/string.h, include/asm-alpha/string.h,
933    'memcpy_fromiovec': 'copy', # net/core/iovec.c, include/linux/socket.h,
934    'memcpy_fromiovecend': 'copy', # net/core/iovec.c, include/linux/socket.h,
935    'memcpy_toiovec' : 'copy', # net/core/iovec.c, include/linux/socket.h,
936    'meminfo_read_proc': 'other', # fs/proc/proc_misc.c,
937    'memmove' : 'copy', # lib/string.c, include/asm-alpha/string.h,
938    'mempool_alloc' : 'bufmgt', # mm/mempool.c, include/linux/mempool.h,
939    'mempool_alloc_slab' : 'bufmgt', # mm/mempool.c, include/linux/mempool.h,
940    'mempool_free' : 'bufmgt', # mm/mempool.c, include/linux/mempool.h,
941    'mempool_free_slab' : 'bufmgt', # mm/mempool.c, include/linux/mempool.h,
942    'memscan' : 'copy', # lib/string.c,
943    'mkdir': 'other', #
944    'mm_alloc': 'bufmgt', # kernel/fork.c, include/linux/sched.h,
945    'mm_init': 'driver', # drivers/block/umem.c, kernel/fork.c,
946    'mm_release': 'other', # kernel/fork.c, include/linux/sched.h,
947    'mmput': 'other', # kernel/fork.c, include/linux/sched.h,
948    'mod_timer' : 'other', # kernel/timer.c, include/linux/timer.h,
949    'move_addr_to_user' : 'copy', # net/socket.c, include/linux/socket.h,
950    'move_one_page': 'bufmgt', # mm/mremap.c,
951    'move_vma': 'bufmgt', # mm/mremap.c,
952    'mpage_alloc' : 'other', # fs/mpage.c,
953    'mpage_bio_submit' : 'other', # fs/mpage.c,
954    'mpage_end_io_write' : 'other', # fs/mpage.c,
955    'mpage_readpage': 'other', # fs/mpage.c, include/linux/mpage.h,
956    'mpage_readpages': 'other', # fs/mpage.c, include/linux/mpage.h,
957    'mpage_writepage' : 'other', # fs/mpage.c,
958    'mpage_writepages' : 'other', # fs/mpage.c, include/linux/mpage.h,
959    'mv': 'other', #
960    'n_tty_chars_in_buffer': 'driver', # drivers/char/n_tty.c,
961    'n_tty_receive_buf': 'driver', # drivers/char/n_tty.c,
962    'n_tty_receive_room': 'driver', # drivers/char/n_tty.c,
963    'need_resched': 'driver', # include/linux/sched.h, drivers/char/tipar.c,
964    'neigh_lookup': 'stack', # net/core/neighbour.c,
965    'neigh_periodic_timer': 'stack', # net/core/neighbour.c,
966    'neigh_resolve_output' : 'stack', # net/core/neighbour.c,
967    'neigh_timer_handler': 'stack', # net/core/neighbour.c, net/core/neighbour.c,
968    'neigh_update': 'stack', # net/core/neighbour.c,
969    'net_rx_action' : 'driver', # net/core/dev.c,
970    'net_tx_action' : 'driver', # net/core/dev.c,
971    'netif_receive_skb' : 'driver', # net/core/dev.c, include/linux/netdevice.h,
972    'netif_rx' : 'driver', # net/core/dev.c, include/linux/netdevice.h,
973    'netperf' : 'user',
974    'netserver': 'user',
975    'new_inode' : 'other', # fs/inode.c, include/linux/fs.h,
976    'next_signal' : 'other', # kernel/signal.c,
977    'next_thread': 'other', # kernel/exit.c,
978    'nf_hook_slow' : 'stack', # net/core/netfilter.c, include/linux/netfilter.h,
979    'nf_iterate' : 'stack', # net/core/netfilter.c,
980    'nfs3svc_decode_commitargs' : 'other', # fs/nfsd/nfs3xdr.c, include/linux/nfsd/xdr3.h,
981    'nfs3svc_decode_writeargs' : 'other', # fs/nfsd/nfs3xdr.c, include/linux/nfsd/xdr3.h,
982    'nfs3svc_encode_commitres' : 'other', # fs/nfsd/nfs3xdr.c, include/linux/nfsd/xdr3.h,
983    'nfs3svc_encode_writeres' : 'other', # fs/nfsd/nfs3xdr.c, include/linux/nfsd/xdr3.h,
984    'nfs3svc_release_fhandle' : 'other', # fs/nfsd/nfs3xdr.c, include/linux/nfsd/xdr3.h,
985    'nfsd' : 'other', # fs/nfsd/nfssvc.c, fs/nfsd/nfssvc.c,
986    'nfsd3_proc_commit' : 'other', # fs/nfsd/nfs3proc.c,
987    'nfsd3_proc_write' : 'other', # fs/nfsd/nfs3proc.c,
988    'nfsd_acceptable' : 'other', # fs/nfsd/nfsfh.c,
989    'nfsd_cache_append' : 'other', # fs/nfsd/nfscache.c, fs/nfsd/nfscache.c,
990    'nfsd_cache_lookup' : 'other', # fs/nfsd/nfscache.c, include/linux/nfsd/cache.h,
991    'nfsd_cache_update' : 'other', # fs/nfsd/nfscache.c, include/linux/nfsd/cache.h,
992    'nfsd_close' : 'other', # fs/nfsd/vfs.c, include/linux/nfsd/nfsd.h,
993    'nfsd_commit' : 'other', # fs/nfsd/vfs.c, include/linux/nfsd/nfsd.h,
994    'nfsd_dispatch' : 'other', # fs/nfsd/nfssvc.c, include/linux/nfsd/nfsd.h,
995    'nfsd_open' : 'other', # fs/nfsd/vfs.c, include/linux/nfsd/nfsd.h,
996    'nfsd_permission' : 'other', # fs/nfsd/vfs.c, include/linux/nfsd/nfsd.h,
997    'nfsd_setuser' : 'other', # fs/nfsd/auth.c, include/linux/nfsd/auth.h,
998    'nfsd_sync' : 'other', # fs/nfsd/vfs.c,
999    'nfsd_write' : 'other', # fs/nfsd/vfs.c, include/linux/nfsd/nfsd.h,
1000    'no_pm_change_10_' : 'interrupt', #
1001    'no_quad' : 'interrupt', #
1002    'nonseekable_open' : 'other', # fs/open.c, include/linux/fs.h,
1003    'normal_int' : 'other', #
1004    'normal_poll': 'driver', # drivers/char/n_tty.c,
1005    'note_interrupt': 'interrupt', #
1006    'notifier_call_chain': 'other', # kernel/sys.c, include/linux/notifier.h,
1007    'notify_change': 'other', # fs/attr.c, include/linux/fs.h,
1008    'nr_blockdev_pages': 'other', # fs/block_dev.c, include/linux/blkdev.h,
1009    'nr_free_pages': 'bufmgt', # mm/page_alloc.c, include/linux/swap.h,
1010    'nr_running': 'other', # kernel/sched.c, include/linux/sched.h,
1011    'ns83820': 'driver',
1012    'ns83820_do_isr' : 'driver',
1013    'ns83820_hard_start_xmit' : 'driver',
1014    'ns83820_irq' : 'driver',
1015    'ns83820_rx_kick' : 'driver',
1016    'ns83820_tx_watch' : 'driver',
1017    'ns83821_do_isr' : 'driver', #
1018    'ns83821_hard_start_xmit' : 'driver', #
1019    'ns83821_irq' : 'driver', #
1020    'ns83821_rx_kick' : 'driver', #
1021    'number' : 'interrupt', # lib/vsprintf.c, arch/alpha/kernel/srm_env.c,
1022    'nvidia': 'other', #
1023    'old_mmap': 'interrupt', #
1024    'open_exec': 'other', # fs/exec.c, include/linux/fs.h,
1025    'open_namei' : 'user', # fs/namei.c, include/linux/fs.h,  used to by syscall
1026    'open_private_file' : 'user', # fs/file_table.c, include/linux/fs.h,  used to by syscall
1027    'oprofile': 'other', #
1028    'oprofiled': 'other', #
1029    'osf_brk': 'user',
1030    'osf_mmap': 'user',
1031    'osf_sigprocmask' : 'other', #
1032    'osync_buffers_list' : 'other', # fs/buffer.c,
1033    'padzero': 'other', # fs/binfmt_elf.c,
1034    'page_add_anon_rmap' : 'bufmgt', # mm/rmap.c, include/linux/rmap.h,
1035    'page_add_file_rmap': 'bufmgt', # mm/rmap.c, include/linux/rmap.h,
1036    'page_address': 'bufmgt', # mm/highmem.c, include/linux/mm.h, include/linux/mm.h, include/linux/mm.h,
1037    'page_cache_readahead': 'bufmgt', # mm/readahead.c, include/linux/mm.h,
1038    'page_fault': 'interrupt', #
1039    'page_remove_rmap': 'bufmgt', # mm/rmap.c, include/linux/rmap.h,
1040    'page_slot': 'bufmgt', # mm/highmem.c,
1041    'page_symlink' : 'other', # fs/namei.c, include/linux/fs.h,
1042    'page_waitqueue' : 'bufmgt', # mm/filemap.c,
1043    'pagevec_lookup': 'bufmgt', # mm/swap.c, include/linux/pagevec.h,
1044    'pagevec_lookup_tag' : 'bufmgt', # mm/swap.c, include/linux/pagevec.h,
1045    'pal_dtb_ldq' : 'interrupt', #
1046    'pal_itb_ldq' : 'interrupt', #
1047    'pal_post_interrupt' : 'interrupt', #
1048    'path_lookup' : 'user', # fs/namei.c,  used to by syscall
1049    'path_release' : 'user', # fs/namei.c, include/linux/namei.h,  used to by syscall
1050    'pci_bus_read_config_word': 'driver', # include/linux/pci.h,
1051    'pci_conf1_read': 'driver', #
1052    'pci_dac_dma_supported' : 'driver', # arch/alpha/kernel/pci_iommu.c, include/asm-alpha/pci.h,
1053    'pci_map_page' : 'driver', # arch/alpha/kernel/pci_iommu.c, include/asm-generic/pci-dma-compat.h, include/asm-alpha/pci.h,
1054    'pci_map_single' : 'driver', # arch/alpha/kernel/pci_iommu.c, arch/alpha/kernel/pci-noop.c, include/asm-generic/pci-dma-compat.h, drivers/net/wan/wanxl.c, drivers/net/wan/wanxl.c, drivers/scsi/aic7xxx/aic79xx_osm.h, drivers/scsi/aic7xxx/aic7xxx_osm.h, include/asm-alpha/pci.h,
1055    'pci_map_single_1' : 'driver', # arch/alpha/kernel/pci_iommu.c,
1056    'pci_read': 'driver', #
1057    'pci_unmap_page' : 'driver', # arch/alpha/kernel/pci_iommu.c, include/asm-generic/pci-dma-compat.h, include/asm-alpha/pci.h,
1058    'pci_unmap_single' : 'driver', # arch/alpha/kernel/pci_iommu.c, arch/alpha/kernel/pci-noop.c, include/asm-generic/pci-dma-compat.h, drivers/scsi/aic7xxx/aic79xx_osm.h, drivers/scsi/aic7xxx/aic7xxx_osm.h, include/asm-alpha/pci.h,
1059    'percpu_counter_mod' : 'bufmgt', # mm/swap.c, include/linux/percpu_counter.h,
1060    'perl': 'other', #
1061    'permission' : 'user', # fs/namei.c, include/linux/fs.h, used to be syscall
1062    'pfifo_fast_dequeue' : 'stack', # net/sched/sch_generic.c,
1063    'pfifo_fast_enqueue' : 'stack', # net/sched/sch_generic.c,
1064    'pgd_alloc': 'bufmgt', # arch/alpha/mm/init.c, include/asm-alpha/pgalloc.h, include/asm-i386/pgalloc.h,
1065    'pgd_ctor': 'bufmgt', # include/asm-i386/pgtable.h,
1066    'pgd_free': 'bufmgt', # include/asm-alpha/pgalloc.h, include/asm-i386/pgalloc.h,
1067    'pipe_ioctl': 'other', # fs/pipe.c,
1068    'pipe_new': 'other', # fs/pipe.c, include/linux/pipe_fs_i.h,
1069    'pipe_poll': 'other', # fs/pipe.c,
1070    'pipe_read': 'other', # fs/pipe.c,
1071    'pipe_read_release': 'other', # fs/pipe.c,
1072    'pipe_readv': 'other', # fs/pipe.c,
1073    'pipe_release': 'other', # fs/pipe.c,
1074    'pipe_wait': 'other', # fs/pipe.c, include/linux/pipe_fs_i.h,
1075    'pipe_write': 'other', # fs/pipe.c,
1076    'pipe_write_fasync': 'other', # fs/pipe.c,
1077    'pipe_write_release': 'other', # fs/pipe.c,
1078    'pipe_writev': 'other', # fs/pipe.c,
1079    'pipefs_delete_dentry': 'other', # fs/pipe.c,
1080    'place_in_hashes' : 'stack', # net/ipv4/netfilter/ip_nat_core.c, include/linux/netfilter_ipv4/ip_nat_core.h,
1081    'poll_freewait' : 'other', # fs/select.c, include/linux/poll.h,
1082    'poll_idle': 'idle', #
1083    'poll_initwait' : 'other', # fs/select.c, include/linux/poll.h,
1084    'portmap': 'other', #
1085    'preempt_schedule': 'other', # kernel/sched.c, include/linux/preempt.h,
1086    'prep_new_page' : 'bufmgt', # mm/page_alloc.c,
1087    'prepare_binprm': 'other', # fs/exec.c, include/linux/binfmts.h,
1088    'prepare_to_copy': 'interrupt', # include/asm-alpha/processor.h, include/asm-i386/processor.h,
1089    'prepare_to_wait' : 'other', # kernel/fork.c,
1090    'prio_tree_expand': 'bufmgt', # mm/prio_tree.c,
1091    'prio_tree_insert': 'bufmgt', # mm/prio_tree.c,
1092    'prio_tree_remove': 'bufmgt', # mm/prio_tree.c,
1093    'prio_tree_replace': 'bufmgt', # mm/prio_tree.c,
1094    'proc_alloc_inode': 'other', # fs/proc/inode.c,
1095    'proc_calc_metrics': 'other', # fs/proc/proc_misc.c,
1096    'proc_delete_inode': 'other', # fs/proc/inode.c,
1097    'proc_destroy_inode': 'other', # fs/proc/inode.c,
1098    'proc_file_read': 'other', # fs/proc/generic.c, fs/proc/generic.c,
1099    'proc_get_inode': 'other', # fs/proc/inode.c, include/linux/proc_fs.h,
1100    'proc_lookup': 'other', # fs/proc/generic.c, include/linux/proc_fs.h,
1101    'proc_pid_unhash': 'other', # fs/proc/base.c, include/linux/proc_fs.h,
1102    'proc_pident_lookup': 'other', # fs/proc/base.c,
1103    'proc_root_lookup': 'other', # fs/proc/root.c,
1104    'process_backlog' : 'stack', # net/core/dev.c,
1105    'process_timeout': 'other', # kernel/timer.c,
1106    'profile_hit': 'other', #
1107    'profile_hook': 'other', # kernel/profile.c, include/linux/profile.h, include/linux/profile.h,
1108    'profile_munmap': 'other', #
1109    'profile_task_exit': 'other', #
1110    'profile_tick': 'other', #
1111    'pskb_expand_head': 'stack', # net/core/skbuff.c, include/linux/skbuff.h,
1112    'pte_alloc_map': 'bufmgt', # mm/memory.c,
1113    'pte_alloc_one': 'bufmgt', # include/asm-alpha/pgalloc.h, include/asm-i386/pgalloc.h,
1114    'ptrace_cancel_bpt' : 'user', # arch/alpha/kernel/ptrace.c, arch/alpha/kernel/proto.h, used to be syscall
1115    'pty_chars_in_buffer': 'driver', # drivers/char/pty.c,
1116    'pty_open': 'driver', # drivers/char/pty.c,
1117    'pty_write_room': 'driver', # drivers/char/pty.c,
1118    'put_device' : 'driver', # drivers/base/core.c, include/linux/device.h,
1119    'put_files_struct': 'other', # kernel/exit.c,
1120    'put_filp': 'other', # fs/file_table.c, include/linux/file.h,
1121    'put_io_context' : 'driver', # drivers/block/ll_rw_blk.c, include/linux/blkdev.h,
1122    'put_unused_fd' : 'other', # fs/open.c,
1123    'qdisc_restart' : 'stack', # net/sched/sch_generic.c,
1124    'queue_delayed_work': 'other', # kernel/workqueue.c,
1125    'queue_me': 'other', # kernel/futex.c,
1126    'quiesce' : 'idle', #
1127    'radix_tree_delete': 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1128    'radix_tree_extend': 'other', # lib/radix-tree.c,
1129    'radix_tree_gang_lookup': 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1130    'radix_tree_gang_lookup_tag' : 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1131    'radix_tree_insert' : 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1132    'radix_tree_lookup' : 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1133    'radix_tree_node_alloc' : 'other', # lib/radix-tree.c,
1134    'radix_tree_preload' : 'other', # lib/radix-tree.c, lib/radix-tree.c, include/linux/radix-tree.h,
1135    'radix_tree_tag_clear' : 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1136    'radix_tree_tag_set' : 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1137    'radix_tree_tagged' : 'other', # lib/radix-tree.c, include/linux/radix-tree.h,
1138    'raise_softirq' : 'interrupt', # kernel/softirq.c,
1139    'raise_softirq_irqoff' : 'interrupt', # kernel/softirq.c,
1140    'rb_erase' : 'bufmgt', # lib/rbtree.c, include/linux/rbtree.h,
1141    'rb_insert_color' : 'bufmgt', # lib/rbtree.c, include/linux/rbtree.h,
1142    'rb_next' : 'bufmgt', # lib/rbtree.c, fs/jffs2/nodelist.h, include/linux/rbtree.h,
1143    'rb_prev' : 'bufmgt', # lib/rbtree.c, fs/jffs2/nodelist.h, include/linux/rbtree.h,
1144    'rcu_check_callbacks' : 'other', # kernel/rcupdate.c, include/linux/rcupdate.h,
1145    'rcu_check_quiescent_state' : 'other', # kernel/rcupdate.c,
1146    'rcu_do_batch' : 'other', # kernel/rcupdate.c,
1147    'rcu_process_callbacks' : 'other', # kernel/rcupdate.c,
1148    'rcu_start_batch' : 'other', # kernel/rcupdate.c,
1149    'read_block_bitmap' : 'other', # fs/udf/balloc.c, fs/ext2/balloc.c, fs/ext3/balloc.c,
1150    'real_lookup': 'other', # fs/namei.c,
1151    'rebalance_tick' : 'other', # kernel/sched.c,
1152    'recalc_bh_state' : 'other', # fs/buffer.c,
1153    'recalc_sigpending' : 'interrupt', # kernel/signal.c, include/linux/sched.h,
1154    'recalc_sigpending_tsk' : 'interrupt', # kernel/signal.c,
1155    'recalc_task_prio' : 'other', # kernel/sched.c,
1156    'release_blocks' : 'other', # fs/ext2/balloc.c,
1157    'release_pages' : 'bufmgt', # mm/swap.c, include/linux/pagemap.h,
1158    'release_sock' : 'stack', # net/core/sock.c,
1159    'release_task': 'other', # kernel/exit.c, include/linux/sched.h,
1160    'release_thread': 'interrupt', # arch/alpha/kernel/process.c, include/asm-um/processor-generic.h, include/asm-alpha/processor.h, include/asm-i386/processor.h,
1161    'release_x86_irqs': 'interrupt', # include/asm-i386/irq.h,
1162    'remove_arg_zero': 'other', # fs/exec.c, include/linux/binfmts.h,
1163    'remove_from_page_cache': 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
1164    'remove_suid' : 'bufmgt', # mm/filemap.c, include/linux/fs.h,
1165    'remove_vm_struct': 'bufmgt', # mm/mmap.c,
1166    'remove_wait_queue' : 'other', # kernel/fork.c,
1167    'resched_task' : 'other', # kernel/sched.c,
1168    'reserve_blocks' : 'other', # fs/ext2/balloc.c,
1169    'restore_all' : 'other', #
1170    'restore_fpu': 'interrupt', # include/asm-i386/i387.h,
1171    'restore_i387': 'interrupt', # include/asm-i386/i387.h,
1172    'restore_i387_fxsave': 'interrupt', #
1173    'restore_sigcontext' : 'interrupt', # arch/alpha/kernel/signal.c,
1174    'resume_kernel': 'interrupt', #
1175    'resume_userspace': 'other', #
1176    'ret_from_exception': 'other', #
1177    'ret_from_intr': 'interrupt', #
1178    'ret_from_reschedule' : 'other', #
1179    'ret_from_sys_call' : 'user', # arch/alpha/kernel/signal.c, used to be syscall
1180    'rm': 'other', #
1181    'rm_from_queue': 'other', # kernel/signal.c,
1182    'rmqueue_bulk' : 'bufmgt', # mm/page_alloc.c,
1183    'rt_check_expire': 'stack', # net/ipv4/route.c,
1184    'rt_hash_code' : 'stack', # net/ipv4/route.c,
1185    'rt_intern_hash': 'stack', # net/ipv4/route.c, net/ipv4/route.c,
1186    'rt_may_expire': 'stack', # net/ipv4/route.c,
1187    'rtc_enable_disable' : 'interrupt', # arch/alpha/kernel/irq_alpha.c,
1188    'rti_to_kern' : 'interrupt', #
1189    'rti_to_user' : 'user', # used to be syscall
1190    'run-parts': 'other', #
1191    'run_local_timers' : 'other', # kernel/timer.c, include/linux/timer.h,
1192    'run_timer_softirq' : 'other', # kernel/timer.c,
1193    'rx_action' : 'driver', # drivers/net/ns83820.c,
1194    'rx_irq' : 'driver', # drivers/net/ns83820.c,
1195    'rx_refill_atomic' : 'driver', # drivers/net/ns83820.c,
1196    'save_i387': 'interrupt', # include/asm-i386/i387.h,
1197    'save_i387_fxsave': 'interrupt', #
1198    'sched_clock' : 'user', # arch/alpha/kernel/time.c, include/linux/sched.h, used to be syscall
1199    'sched_exit': 'other', # kernel/sched.c,
1200    'sched_fork': 'other', # kernel/sched.c,
1201    'schedule' : 'other', # kernel/sched.c, include/linux/sched.h,
1202    'schedule_delayed_work': 'other', # kernel/workqueue.c,
1203    'schedule_tail': 'other', # kernel/sched.c,
1204    'schedule_timeout' : 'other', # kernel/timer.c, sound/oss/cs4281/cs4281m.c,
1205    'scheduler_tick' : 'other', # kernel/sched.c, include/linux/sched.h,
1206    'scsi_add_timer' : 'other', # drivers/scsi/scsi_error.c,
1207    'scsi_alloc_sgtable' : 'other', # drivers/scsi/scsi_lib.c,
1208    'scsi_cmd_ioctl': 'driver', # drivers/block/scsi_ioctl.c, include/linux/blkdev.h,
1209    'scsi_decide_disposition' : 'other', # drivers/scsi/scsi_error.c, drivers/scsi/scsi_priv.h,
1210    'scsi_delete_timer' : 'other', # drivers/scsi/scsi_error.c,
1211    'scsi_device_unbusy' : 'other', # drivers/scsi/scsi_lib.c, drivers/scsi/scsi_priv.h,
1212    'scsi_dispatch_cmd' : 'other', # drivers/scsi/scsi.c, drivers/scsi/scsi_priv.h,
1213    'scsi_done' : 'other', # drivers/scsi/scsi.c, drivers/scsi/scsi_priv.h,
1214    'scsi_end_request' : 'other', # drivers/scsi/scsi_lib.c,
1215    'scsi_finish_command' : 'other', # drivers/scsi/scsi.c,
1216    'scsi_free_sgtable' : 'other', # drivers/scsi/scsi_lib.c,
1217    'scsi_get_command' : 'other', # drivers/scsi/scsi.c,
1218    'scsi_init_cmd_errh' : 'other', # drivers/scsi/scsi_lib.c,
1219    'scsi_init_io' : 'other', # drivers/scsi/scsi_lib.c,
1220    'scsi_io_completion' : 'other', # drivers/scsi/scsi_lib.c,
1221    'scsi_mod': 'driver',
1222    'scsi_next_command' : 'other', # drivers/scsi/scsi_lib.c, drivers/scsi/scsi_priv.h,
1223    'scsi_prep_fn' : 'other', # drivers/scsi/scsi_lib.c,
1224    'scsi_put_command' : 'other', # drivers/scsi/scsi.c,
1225    'scsi_request_fn' : 'other', # drivers/scsi/scsi_lib.c,
1226    'scsi_run_queue' : 'other', # drivers/scsi/scsi_lib.c,
1227    'scsi_softirq' : 'other', # drivers/scsi/scsi.c,
1228    'sd_init_command' : 'other', # drivers/scsi/sd.c, drivers/scsi/sd.c,
1229    'sd_rw_intr' : 'other', # drivers/scsi/sd.c, drivers/scsi/sd.c,
1230    'search_binary_handler': 'other', # fs/exec.c, include/linux/binfmts.h,
1231    'second_overflow': 'interrupt', # kernel/timer.c,
1232    'secure_tcp_sequence_number' : 'stack', # drivers/char/random.c, include/linux/random.h,
1233    'sed': 'other', #
1234    'select_bits_alloc': 'other', # fs/compat.c, fs/select.c,
1235    'select_bits_free': 'other', # fs/compat.c, fs/select.c,
1236    'send_group_sig_info': 'other', # kernel/signal.c, include/linux/sched.h,
1237    'send_signal' : 'user', # kernel/signal.c, used to be syscall
1238    'seq_read': 'other', # fs/seq_file.c, include/linux/seq_file.h,
1239    'set_bh_page' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1240    'set_binfmt': 'other', # fs/exec.c, include/linux/binfmts.h,
1241    'set_brk': 'user', # fs/binfmt_aout.c, fs/binfmt_elf.c,
1242    'set_current_groups' : 'other', # kernel/sys.c, include/linux/sched.h,
1243    'set_page_address': 'bufmgt', # mm/highmem.c, include/linux/mm.h, include/linux/mm.h, include/linux/mm.h,
1244    'set_page_dirty': 'bufmgt', # mm/page-writeback.c,
1245    'set_slab_attr' : 'bufmgt', # mm/slab.c,
1246    'set_task_comm': 'other', #
1247    'setfl' : 'user', # fs/fcntl.c, used to be syscall
1248    'setup_arg_pages': 'other', # fs/exec.c, include/linux/binfmts.h,
1249    'setup_frame' : 'interrupt', # arch/alpha/kernel/signal.c,
1250    'setup_sigcontext' : 'interrupt', # arch/alpha/kernel/signal.c,
1251    'show_stat': 'other', # fs/proc/proc_misc.c,
1252    'si_swapinfo': 'bufmgt', # mm/swapfile.c, include/linux/swap.h, include/linux/swap.h,
1253    'sig_ignored' : 'other', # kernel/signal.c,
1254    'signal_wake_up' : 'other', # kernel/signal.c, include/linux/sched.h,
1255    'sigprocmask' : 'other', # kernel/signal.c, include/linux/signal.h,
1256    'single_open': 'other', # fs/seq_file.c, include/linux/seq_file.h,
1257    'sk_alloc' : 'bufmgt', # net/core/sock.c,
1258    'sk_free' : 'bufmgt', # net/core/sock.c,
1259    'sk_reset_timer' : 'bufmgt', # net/core/sock.c,
1260    'sk_stop_timer' : 'bufmgt', # net/core/sock.c,
1261    'sk_stream_kill_queues' : 'bufmgt', # net/core/stream.c,
1262    'sk_stream_mem_schedule' : 'bufmgt', # net/core/stream.c,
1263    'sk_stream_rfree' : 'bufmgt', # net/core/stream.c,
1264    'sk_stream_wait_close' : 'bufmgt', # net/core/stream.c,
1265    'sk_stream_wait_memory' : 'bufmgt', # net/core/stream.c,
1266    'sk_stream_write_space' : 'bufmgt', # net/core/stream.c,
1267    'sk_wait_data' : 'bufmgt', # net/core/sock.c,
1268    'skb_checksum': 'stack', # net/core/skbuff.c, include/linux/skbuff.h,
1269    'skb_checksum_help': 'stack', # net/core/dev.c, include/linux/netdevice.h,
1270    'skb_clone' : 'bufmgt', # net/core/skbuff.c, include/linux/skbuff.h,
1271    'skb_copy_and_csum_bits' : 'copy', # net/core/skbuff.c, include/linux/skbuff.h,
1272    'skb_copy_and_csum_datagram':'copy',
1273    'skb_copy_bits' : 'copy', # net/core/skbuff.c, include/linux/skbuff.h,
1274    'skb_copy_datagram_iovec' : 'copy', # net/core/datagram.c, include/linux/skbuff.h,
1275    'skb_dequeue' : 'bufmgt', # net/core/skbuff.c, include/linux/skbuff.h,
1276    'skb_drop_fraglist' : 'bufmgt', # net/core/skbuff.c,
1277    'skb_free_datagram' : 'bufmgt', # net/core/datagram.c, include/linux/skbuff.h,
1278    'skb_queue_head': 'stack', # net/core/skbuff.c, include/linux/skbuff.h,
1279    'skb_queue_tail' : 'bufmgt', # net/core/skbuff.c, include/linux/skbuff.h,
1280    'skb_read_and_csum_bits' : 'bufmgt', # net/sunrpc/xprt.c,
1281    'skb_recv_datagram' : 'bufmgt', # net/core/datagram.c, include/linux/skbuff.h,
1282    'skb_release_data' : 'bufmgt', # net/core/skbuff.c, net/core/dev.c,
1283    'skip_atoi': 'other', # lib/vsprintf.c,
1284    'slab_destroy' : 'bufmgt', # mm/slab.c,
1285    'smp_apic_timer_interrupt': 'interrupt', #
1286    'smp_percpu_timer_interrupt' : 'interrupt', # arch/alpha/kernel/smp.c, arch/alpha/kernel/proto.h,
1287    'snap_rcv': 'stack', # net/802/psnap.c,
1288    'sock_aio_read' : 'stack', # net/socket.c, net/socket.c,
1289    'sock_aio_write': 'stack', # net/socket.c, net/socket.c,
1290    'sock_alloc' : 'user', # net/socket.c, include/linux/net.h, used to be syscall
1291    'sock_alloc_inode' : 'user', # net/socket.c, used to be syscall
1292    'sock_alloc_send_pskb' : 'user', # net/core/sock.c, used to be syscall
1293    'sock_alloc_send_skb' : 'user', # net/core/sock.c, used to be syscall
1294    'sock_close' : 'user', # net/socket.c, net/socket.c, used to be syscall
1295    'sock_common_recvmsg' : 'user', # net/core/sock.c, used to be syscall
1296    'sock_def_readable' : 'user', # net/core/sock.c, used to be syscall
1297    'sock_def_wakeup' : 'user', # net/core/sock.c, used to be syscall
1298    'sock_destroy_inode' : 'user', # net/socket.c, used to be syscall
1299    'sock_disable_timestamp' : 'user', # net/core/sock.c, used to be syscall
1300    'sock_fasync' : 'user', # net/socket.c, net/socket.c, used to be syscall
1301    'sock_init_data': 'stack', # net/core/sock.c,
1302    'sock_ioctl': 'stack', # net/socket.c, net/socket.c,
1303    'sock_map_fd' : 'user', # net/socket.c, include/linux/net.h, used to be syscall
1304    'sock_poll' : 'user', # net/socket.c, net/socket.c, used to be syscall
1305    'sock_readv': 'stack', # net/socket.c, net/socket.c,
1306    'sock_readv_writev' : 'user', # net/socket.c, include/linux/net.h, used to be syscall
1307    'sock_recvmsg' : 'user', # net/socket.c, include/linux/net.h, used to be syscall
1308    'sock_release' : 'user', # net/socket.c, include/linux/net.h, used to be syscall
1309    'sock_rfree' : 'user', # net/core/sock.c, used to be syscall
1310    'sock_sendmsg' : 'user', # net/socket.c, include/linux/net.h, used to be syscall
1311    'sock_wfree' : 'user', # net/core/sock.c, used to be syscall
1312    'sock_wmalloc' : 'user', # net/core/sock.c, used to be syscall
1313    'sock_writev' : 'user', # net/socket.c, net/socket.c, used to be syscall
1314    'sockfd_lookup' : 'user', # net/socket.c, net/sched/sch_atm.c, include/linux/net.h, used to be syscall
1315    'sockfs_delete_dentry' : 'user', # net/socket.c, used to be syscall
1316    'sort': 'driver', # drivers/scsi/eata.c, drivers/scsi/u14-34f.c,
1317    'split_vma': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
1318    'sprintf' : 'other', # lib/vsprintf.c, drivers/isdn/hardware/eicon/platform.h,
1319    'sshd': 'other', #
1320    'steal_locks': 'other', # fs/locks.c, include/linux/fs.h,
1321    'strcmp' : 'copy', # lib/string.c,
1322    'strlcpy': 'other', # lib/string.c,
1323    'strlen' : 'copy', # lib/string.c, include/asm-alpha/string.h,
1324    'strncpy' : 'copy', # lib/string.c, include/asm-alpha/string.h,
1325    'strncpy_from_user': 'copy', # include/asm-alpha/uaccess.h, include/asm-i386/uaccess.h,
1326    'strnlen_user': 'other', # include/asm-alpha/uaccess.h, include/asm-i386/uaccess.h,
1327    'submit_bh' : 'bufmgt', # fs/buffer.c, include/linux/buffer_head.h,
1328    'submit_bio' : 'other', # drivers/block/ll_rw_blk.c, include/linux/fs.h,
1329    'sunrpc': 'other', #
1330    'svc_authenticate' : 'other', # net/sunrpc/svcauth.c, include/linux/sunrpc/svcauth.h,
1331    'svc_authorise' : 'other', # net/sunrpc/svcauth.c, include/linux/sunrpc/svcauth.h,
1332    'svc_deferred_dequeue' : 'other', # net/sunrpc/svcsock.c, net/sunrpc/svcsock.c,
1333    'svc_drop' : 'other', # net/sunrpc/svcsock.c, include/linux/sunrpc/svcsock.h,
1334    'svc_expkey_lookup' : 'other', # fs/nfsd/export.c,
1335    'svc_export_put' : 'other', # fs/nfsd/export.c, include/linux/nfsd/export.h,
1336    'svc_process' : 'other', # net/sunrpc/svc.c, include/linux/sunrpc/svc.h,
1337    'svc_recv' : 'other', # net/sunrpc/svcsock.c, include/linux/sunrpc/svcsock.h,
1338    'svc_reserve' : 'other', # net/sunrpc/svcsock.c, include/linux/sunrpc/svc.h,
1339    'svc_send' : 'other', # net/sunrpc/svcsock.c, include/linux/sunrpc/svcsock.h,
1340    'svc_sendto' : 'other', # net/sunrpc/svcsock.c,
1341    'svc_sock_enqueue' : 'other', # net/sunrpc/svcsock.c,
1342    'svc_sock_release' : 'other', # net/sunrpc/svcsock.c,
1343    'svc_udp_data_ready' : 'other', # net/sunrpc/svcsock.c, net/sunrpc/svcsock.c,
1344    'svc_udp_recvfrom' : 'other', # net/sunrpc/svcsock.c, net/sunrpc/svcsock.c,
1345    'svc_udp_sendto' : 'other', # net/sunrpc/svcsock.c, net/sunrpc/svcsock.c,
1346    'svc_write_space' : 'other', # net/sunrpc/svcsock.c,
1347    'svcauth_unix_accept' : 'other', # net/sunrpc/svcauth_unix.c,
1348    'svcauth_unix_release' : 'other', # net/sunrpc/svcauth_unix.c,
1349    'switch_names': 'other', # fs/dcache.c,
1350    'swpctx_cont' : 'other', #
1351    'sync_buffer' : 'other', # fs/buffer.c, drivers/oprofile/buffer_sync.c,
1352    'sync_dirty_buffer' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1353    'sync_inode' : 'other', # fs/fs-writeback.c, include/linux/fs.h,
1354    'sync_mapping_buffers' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1355    'sync_sb_inodes': 'other', # fs/fs-writeback.c,
1356    'sync_supers': 'other', # fs/super.c, include/linux/fs.h,
1357    'sys_accept' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1358    'sys_access': 'other', # fs/open.c, include/linux/syscalls.h,
1359    'sys_brk': 'user', # mm/mmap.c, mm/nommu.c, include/linux/syscalls.h,
1360    'sys_clock_gettime': 'user', # kernel/posix-timers.c, include/linux/syscalls.h,
1361    'sys_clone': 'user', # include/asm-i386/unistd.h,
1362    'sys_close' : 'user', # fs/open.c, include/linux/syscalls.h, used to be syscall
1363    'sys_dup2': 'user', # fs/fcntl.c, include/linux/syscalls.h,
1364    'sys_execve': 'user', # include/asm-alpha/unistd.h, include/asm-i386/unistd.h,
1365    'sys_exit_group': 'user', # kernel/exit.c, include/linux/syscalls.h,
1366    'sys_fcntl' : 'user', # fs/fcntl.c, include/linux/syscalls.h, used to be syscall
1367    'sys_fcntl64': 'user', # fs/fcntl.c, include/linux/syscalls.h,
1368    'sys_fstat64': 'user', # fs/stat.c, include/linux/syscalls.h,
1369    'sys_ftruncate': 'user', # fs/open.c, include/linux/syscalls.h,
1370    'sys_futex': 'user', # kernel/futex.c, include/linux/syscalls.h,
1371    'sys_getdents64': 'user',
1372    'sys_geteuid': 'other', # kernel/timer.c, include/linux/syscalls.h,
1373    'sys_getgroups': 'user', # kernel/sys.c, include/linux/syscalls.h,
1374    'sys_getpid': 'user', # kernel/timer.c, include/linux/syscalls.h,
1375    'sys_getppid': 'other', # kernel/timer.c, include/linux/syscalls.h,
1376    'sys_getrlimit': 'other', # kernel/sys.c, include/linux/syscalls.h,
1377    'sys_getsockname' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1378    'sys_gettimeofday' : 'user', # kernel/time.c, include/linux/syscalls.h, used to be syscall
1379    'sys_getuid': 'user', # kernel/timer.c, include/linux/syscalls.h,
1380    'sys_getxpid' : 'user', # used to be syscall
1381    'sys_int_21' : 'interrupt', #
1382    'sys_int_22' : 'interrupt', #
1383    'sys_interrupt' : 'interrupt', #
1384    'sys_ioctl': 'user', # fs/ioctl.c, drivers/block/cciss.c, include/linux/syscalls.h,
1385    'sys_kill' : 'user', # kernel/signal.c, include/linux/syscalls.h, used to be syscall
1386    'sys_llseek': 'other', # fs/read_write.c, include/linux/syscalls.h,
1387    'sys_lseek': 'user', # fs/read_write.c, include/linux/syscalls.h,
1388    'sys_mkdir': 'user', # fs/namei.c, include/linux/syscalls.h,
1389    'sys_mmap2': 'user', # include/asm-i386/unistd.h,
1390    'sys_mremap': 'user', # mm/mremap.c, include/linux/syscalls.h,
1391    'sys_munmap': 'user', # mm/mmap.c, mm/nommu.c, include/linux/syscalls.h,
1392    'sys_nanosleep': 'user', # kernel/timer.c, include/linux/syscalls.h,
1393    'sys_newlstat' : 'user', # fs/stat.c, include/linux/syscalls.h, used to be syscall
1394    'sys_newstat' : 'user', # fs/stat.c, include/linux/syscalls.h, used to be syscall
1395    'sys_newuname': 'user', # kernel/sys.c, include/linux/syscalls.h,
1396    'sys_open' : 'user', # fs/open.c, include/linux/syscalls.h, used to be syscall
1397    'sys_pipe': 'interrupt', # include/asm-i386/unistd.h,
1398    'sys_poll' : 'user', # fs/select.c, include/linux/syscalls.h, used to be syscall
1399    'sys_read' : 'user', # fs/read_write.c, include/linux/syscalls.h, used to be syscall
1400    'sys_recv' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1401    'sys_recvfrom' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1402    'sys_rename': 'other', # fs/namei.c, include/linux/syscalls.h,
1403    'sys_rmdir': 'user',
1404    'sys_rt_sigaction': 'user', # arch/alpha/kernel/signal.c, kernel/signal.c, include/asm-alpha/unistd.h, include/asm-i386/unistd.h,
1405    'sys_rt_sigprocmask': 'user', # kernel/signal.c, include/linux/syscalls.h,
1406    'sys_select': 'user', # fs/select.c, include/linux/syscalls.h,
1407    'sys_send' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1408    'sys_sendto' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1409    'sys_set_thread_area': 'user', #
1410    'sys_setitimer': 'user', # kernel/itimer.c, include/linux/syscalls.h,
1411    'sys_shutdown' : 'user', # net/socket.c, include/linux/syscalls.h, used to be syscall
1412    'sys_sigreturn' : 'user', # used to be syscall
1413    'sys_sigsuspend' : 'user', # used to be syscall
1414    'sys_socketcall': 'user', # net/socket.c, include/linux/syscalls.h,
1415    'sys_stat64': 'user', # fs/stat.c, include/linux/syscalls.h,
1416    'sys_time': 'other', # kernel/time.c, include/linux/syscalls.h,
1417    'sys_times': 'other', # kernel/sys.c, include/linux/syscalls.h,
1418    'sys_umask': 'other', # kernel/sys.c, include/linux/syscalls.h,
1419    'sys_unlink': 'other', # fs/namei.c, include/linux/syscalls.h,
1420    'sys_wait4': 'user', # kernel/exit.c, include/linux/syscalls.h,
1421    'sys_waitpid': 'user', # kernel/exit.c, include/linux/syscalls.h,
1422    'sys_write' : 'user', # fs/read_write.c, include/linux/syscalls.h, used to be syscall
1423    'sys_writev' : 'user', # fs/read_write.c, include/linux/syscalls.h, used to be syscall
1424    'syscall_call': 'other', #
1425    'syscall_exit': 'other', #
1426    'sysguard_panelapplet.so': 'other', #
1427    'syslogd': 'other', #
1428    'system_call': 'interrupt', #
1429    'tail': 'other', #
1430    'task_curr' : 'other', # kernel/sched.c, include/linux/sched.h,
1431    'task_rq_lock' : 'other', # kernel/sched.c,
1432    'task_timeslice' : 'other', # kernel/sched.c,
1433    'tasklet_action' : 'other', # kernel/softirq.c,
1434    'tcp_accept' : 'stack', # net/ipv4/tcp.c,
1435    'tcp_ack' : 'stack', # net/ipv4/tcp_input.c,
1436    'tcp_ack_no_tstamp' : 'stack', # net/ipv4/tcp_input.c,
1437    'tcp_ack_update_window' : 'stack', # net/ipv4/tcp_input.c,
1438    'tcp_bucket_destroy' : 'stack', # net/ipv4/tcp_ipv4.c,
1439    'tcp_check_req' : 'stack', # net/ipv4/tcp_minisocks.c,
1440    'tcp_child_process' : 'stack', # net/ipv4/tcp_minisocks.c,
1441    'tcp_clean_rtx_queue' : 'stack', # net/ipv4/tcp_input.c,
1442    'tcp_clear_xmit_timers' : 'stack', # net/ipv4/tcp_timer.c,
1443    'tcp_close' : 'stack', # net/ipv4/tcp.c,
1444    'tcp_close_state' : 'stack', # net/ipv4/tcp.c,
1445    'tcp_copy_to_iovec' : 'stack', # net/ipv4/tcp_input.c,
1446    'tcp_create_openreq_child' : 'stack', # net/ipv4/tcp_minisocks.c,
1447    'tcp_current_mss': 'other', #
1448    'tcp_cwnd_application_limited': 'stack', # net/ipv4/tcp_input.c,
1449    'tcp_data_queue' : 'stack', # net/ipv4/tcp_input.c,
1450    'tcp_delete_keepalive_timer' : 'stack', # net/ipv4/tcp_timer.c,
1451    'tcp_destroy_sock' : 'stack', # net/ipv4/tcp.c,
1452    'tcp_enter_quickack_mode' : 'stack', # net/ipv4/tcp_input.c,
1453    'tcp_event_data_recv' : 'stack', # net/ipv4/tcp_input.c,
1454    'tcp_fin' : 'stack', # net/ipv4/tcp_input.c,
1455    'tcp_fixup_rcvbuf' : 'stack', # net/ipv4/tcp_input.c,
1456    'tcp_fixup_sndbuf' : 'stack', # net/ipv4/tcp_input.c,
1457    'tcp_fragment': 'stack', # net/ipv4/tcp_output.c,
1458    'tcp_incr_quickack' : 'stack', # net/ipv4/tcp_input.c,
1459    'tcp_init_buffer_space' : 'stack', # net/ipv4/tcp_input.c,
1460    'tcp_init_metrics' : 'stack', # net/ipv4/tcp_input.c,
1461    'tcp_init_xmit_timers' : 'stack', # net/ipv4/tcp_timer.c,
1462    'tcp_invert_tuple' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_tcp.c,
1463    'tcp_make_synack' : 'stack', # net/ipv4/tcp_output.c,
1464    'tcp_new' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_tcp.c,
1465    'tcp_new_space' : 'stack', # net/ipv4/tcp_input.c,
1466    'tcp_ofo_queue' : 'stack', # net/ipv4/tcp_input.c,
1467    'tcp_packet' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_tcp.c,
1468    'tcp_parse_options' : 'stack', # net/ipv4/tcp_input.c,
1469    'tcp_pkt_to_tuple' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_tcp.c,
1470    'tcp_poll' : 'stack', # net/ipv4/tcp.c,
1471    'tcp_prequeue_process' : 'stack', # net/ipv4/tcp.c,
1472    'tcp_push_one' : 'stack', # net/ipv4/tcp_output.c,
1473    'tcp_put_port' : 'stack', # net/ipv4/tcp_ipv4.c,
1474    'tcp_queue_skb' : 'stack', # net/ipv4/tcp_output.c,
1475    'tcp_rcv_established' : 'stack', # net/ipv4/tcp_input.c,
1476    'tcp_rcv_rtt_update' : 'stack', # net/ipv4/tcp_input.c,
1477    'tcp_rcv_space_adjust' : 'stack', # net/ipv4/tcp_input.c,
1478    'tcp_rcv_state_process' : 'stack', # net/ipv4/tcp_input.c,
1479    'tcp_recvmsg' : 'stack', # net/ipv4/tcp.c,
1480    'tcp_reset_keepalive_timer' : 'stack', # net/ipv4/tcp_timer.c,
1481    'tcp_rtt_estimator' : 'stack', # net/ipv4/tcp_input.c,
1482    'tcp_send_ack' : 'stack', # net/ipv4/tcp_output.c,
1483    'tcp_send_delayed_ack' : 'stack', # net/ipv4/tcp_output.c,
1484    'tcp_send_fin' : 'stack', # net/ipv4/tcp_output.c,
1485    'tcp_sendmsg' : 'stack', # net/ipv4/tcp.c,
1486    'tcp_set_skb_tso_segs': 'other', #
1487    'tcp_shutdown' : 'stack', # net/ipv4/tcp.c,
1488    'tcp_sync_mss' : 'stack', # net/ipv4/tcp_output.c,
1489    'tcp_time_wait' : 'stack', # net/ipv4/tcp_minisocks.c,
1490    'tcp_transmit_skb' : 'stack', # net/ipv4/tcp_output.c,
1491    'tcp_trim_head': 'stack', # net/ipv4/tcp_output.c,
1492    'tcp_tso_acked': 'stack', #
1493    'tcp_tw_schedule' : 'stack', # net/ipv4/tcp_minisocks.c,
1494    'tcp_unhash' : 'stack', # net/ipv4/tcp_ipv4.c,
1495    'tcp_update_metrics' : 'stack', # net/ipv4/tcp_input.c,
1496    'tcp_urg' : 'stack', # net/ipv4/tcp_input.c,
1497    'tcp_v4_checksum_init':'stack',
1498    'tcp_v4_conn_request' : 'stack', # net/ipv4/tcp_ipv4.c,
1499    'tcp_v4_connect': 'stack', # net/ipv4/tcp_ipv4.c,
1500    'tcp_v4_destroy_sock' : 'stack', # net/ipv4/tcp_ipv4.c,
1501    'tcp_v4_do_rcv' : 'stack', # net/ipv4/tcp_ipv4.c,
1502    'tcp_v4_hnd_req' : 'stack', # net/ipv4/tcp_ipv4.c,
1503    'tcp_v4_init_sock': 'stack', # net/ipv4/tcp_ipv4.c,
1504    'tcp_v4_rcv' : 'stack', # net/ipv4/tcp_ipv4.c,
1505    'tcp_v4_rebuild_header' : 'stack', # net/ipv4/tcp_ipv4.c,
1506    'tcp_v4_route_req' : 'stack', # net/ipv4/tcp_ipv4.c,
1507    'tcp_v4_search_req' : 'stack', # net/ipv4/tcp_ipv4.c,
1508    'tcp_v4_send_check' : 'stack', # net/ipv4/tcp_ipv4.c, net/ipv4/tcp_ipv4.c,
1509    'tcp_v4_send_synack' : 'stack', # net/ipv4/tcp_ipv4.c,
1510    'tcp_v4_syn_recv_sock' : 'stack', # net/ipv4/tcp_ipv4.c,
1511    'tcp_v4_synq_add' : 'stack', # net/ipv4/tcp_ipv4.c,
1512    'tcp_vegas_init' : 'stack', # net/ipv4/tcp_input.c,
1513    'tcp_write_xmit' : 'stack', # net/ipv4/tcp_output.c,
1514    'test_clear_page_dirty': 'bufmgt', # mm/page-writeback.c, include/linux/page-flags.h,
1515    'test_clear_page_writeback' : 'bufmgt', # mm/page-writeback.c, include/linux/page-flags.h,
1516    'test_set_page_writeback' : 'bufmgt', # mm/page-writeback.c, include/linux/page-flags.h,
1517    'timer_interrupt' : 'interrupt', # arch/alpha/kernel/time.c, arch/alpha/kernel/proto.h,
1518    'tr': 'other', #
1519    'truncate_complete_page': 'bufmgt', # mm/truncate.c,
1520    'truncate_inode_pages': 'bufmgt', # mm/truncate.c, include/linux/mm.h,
1521    'try_to_wake_up' : 'other', # kernel/sched.c,
1522    'tsunami_readb': 'driver',
1523    'tsunami_readl' : 'interrupt', # include/asm-alpha/core_tsunami.h,
1524    'tsunami_update_irq_hw' : 'interrupt', # arch/alpha/kernel/sys_dp264.c,
1525    'tsunami_writeb': 'driver',
1526    'tsunami_writel' : 'interrupt', # include/asm-alpha/core_tsunami.h,
1527    'tty_hung_up_p': 'driver', # drivers/char/tty_io.c, include/linux/tty.h,
1528    'tty_ldisc_deref': 'other', #
1529    'tty_ldisc_ref_wait': 'other', #
1530    'tty_ldisc_try': 'other', #
1531    'tty_open': 'driver', # drivers/char/tty_io.c, drivers/char/tty_io.c, drivers/net/wan/sdla_chdlc.c,
1532    'tty_poll': 'driver', # drivers/char/tty_io.c, drivers/char/tty_io.c,
1533    'tty_write': 'driver', # drivers/char/tty_io.c, drivers/char/tty_io.c,
1534    'udp_checksum_init' : 'stack', # net/ipv4/udp.c,
1535    'udp_ioctl': 'stack', # net/ipv4/udp.c,
1536    'udp_packet' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_udp.c,
1537    'udp_pkt_to_tuple' : 'stack', # net/ipv4/netfilter/ip_conntrack_proto_udp.c,
1538    'udp_push_pending_frames' : 'stack', # net/ipv4/udp.c,
1539    'udp_queue_rcv_skb' : 'stack', # net/ipv4/udp.c,
1540    'udp_rcv' : 'stack', # net/ipv4/udp.c,
1541    'udp_recvmsg': 'stack', # net/ipv4/udp.c,
1542    'udp_sendmsg' : 'stack', # net/ipv4/udp.c,
1543    'udp_sendpage' : 'stack', # net/ipv4/udp.c,
1544    'udp_v4_get_port': 'stack', # net/ipv4/udp.c,
1545    'udp_v4_lookup_longway' : 'stack', # net/ipv4/udp.c,
1546    'unalign_trap_cont' : 'alignment',
1547    'unalign_trap_count' : 'alignment',
1548    'undo_switch_stack' : 'other', #
1549    'unix': 'other', #
1550    'unlock_buffer' : 'other', # fs/buffer.c,
1551    'unlock_new_inode': 'other', # fs/inode.c, include/linux/fs.h,
1552    'unlock_page' : 'bufmgt', # mm/filemap.c,
1553    'unmap_mapping_range': 'bufmgt', # mm/memory.c, include/linux/mm.h,
1554    'unmap_page_range': 'bufmgt', # mm/memory.c,
1555    'unmap_region': 'bufmgt', # mm/mmap.c,
1556    'unmap_underlying_metadata' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1557    'unmap_vma': 'bufmgt', # mm/mmap.c,
1558    'unmap_vma_list': 'bufmgt', # mm/mmap.c,
1559    'unmap_vmas': 'bufmgt', # mm/memory.c, include/linux/mm.h,
1560    'unmask_IO_APIC_irq': 'interrupt', #
1561    'unmask_IO_APIC_vector': 'interrupt', #
1562    'unqueue_me': 'other', # kernel/futex.c,
1563    'unshare_files': 'other', # kernel/fork.c, include/linux/fs.h,
1564    'up' : 'driver', # arch/alpha/kernel/semaphore.c, include/asm-alpha/semaphore.h, net/ipv4/netfilter/ip_tables.c, net/ipv6/netfilter/ip6_tables.c, drivers/video/atafb.c, include/asm-alpha/semaphore.h,
1565    'update_atime': 'other', # fs/inode.c, include/linux/fs.h,
1566    'update_one_process' : 'other', # kernel/timer.c,
1567    'update_process_times' : 'other', # kernel/timer.c, include/linux/sched.h,
1568    'update_wall_time' : 'other', # kernel/timer.c,
1569    'update_wall_time_one_tick' : 'other', # kernel/timer.c,
1570    'usbcore': 'other', #
1571    'vfs_create': 'other', # fs/namei.c, include/linux/fs.h,
1572    'vfs_fstat': 'other', # fs/stat.c, include/linux/fs.h,
1573    'vfs_getattr' : 'user', # fs/stat.c, include/linux/fs.h, used to be syscall
1574    'vfs_llseek': 'other', # fs/read_write.c, include/linux/fs.h,
1575    'vfs_lstat' : 'user', # fs/stat.c, include/linux/fs.h, used to be syscall
1576    'vfs_mkdir': 'other', # fs/namei.c, include/linux/fs.h,
1577    'vfs_permission' : 'user', # fs/namei.c, include/linux/fs.h, used to be syscall
1578    'vfs_read' : 'user', # fs/read_write.c, include/linux/fs.h, used to be syscall
1579    'vfs_rename': 'other', # fs/namei.c, include/linux/fs.h,
1580    'vfs_rename_other': 'other', # fs/namei.c,
1581    'vfs_stat' : 'user', # fs/stat.c, include/linux/fs.h, used to be syscall
1582    'vfs_unlink': 'other', # fs/namei.c, include/linux/fs.h,
1583    'vfs_write' : 'user', # fs/read_write.c, include/linux/fs.h, used to be syscall
1584    'vfs_writev' : 'user', # fs/read_write.c, include/linux/fs.h, used to be syscall
1585    'vma_adjust': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
1586    'vma_link': 'bufmgt', # mm/mmap.c,
1587    'vma_merge': 'bufmgt', # mm/mmap.c, include/linux/mm.h,
1588    'vma_prio_tree_add': 'bufmgt', # mm/prio_tree.c, include/linux/mm.h,
1589    'vma_prio_tree_insert': 'bufmgt', # mm/prio_tree.c, include/linux/mm.h,
1590    'vma_prio_tree_remove': 'bufmgt', # mm/prio_tree.c, include/linux/mm.h,
1591    'vmstat_open': 'other', # fs/proc/proc_misc.c,
1592    'vmstat_show': 'bufmgt', # mm/page_alloc.c,
1593    'vmtruncate': 'bufmgt', # mm/nommu.c, mm/memory.c, include/linux/mm.h,
1594    'vsnprintf' : 'other', # lib/vsprintf.c, include/linux/kernel.h,
1595    'vsprintf' : 'driver', # lib/vsprintf.c, arch/alpha/boot/main.c, drivers/scsi/aic7xxx_old/aic7xxx_proc.c, include/linux/kernel.h,
1596    'wait_for_completion': 'driver', # drivers/acorn/block/mfmhd.c, kernel/sched.c,
1597    'wait_on_page_writeback_range' : 'bufmgt', # mm/filemap.c,
1598    'wait_task_zombie': 'other', # kernel/exit.c,
1599    'wake_futex': 'other', # kernel/futex.c,
1600    'wake_up_buffer' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1601    'wake_up_inode' : 'other', # fs/inode.c, include/linux/writeback.h,
1602    'wake_up_new_task': 'other', #
1603    'wake_up_page' : 'bufmgt', # mm/filemap.c,
1604    'wake_up_process' : 'other', # kernel/sched.c,
1605    'wake_up_state' : 'other', # kernel/sched.c,
1606    'wb_timer_fn': 'bufmgt', # mm/page-writeback.c, mm/page-writeback.c,
1607    'wc': 'other', #
1608    'work_notifysig': 'other', #
1609    'work_pending' : 'other', #
1610    'work_resched': 'other', #
1611    'worker_thread': 'other', # kernel/workqueue.c,
1612    'write_boundary_block' : 'other', # fs/buffer.c, include/linux/buffer_head.h,
1613    'write_chan': 'driver', # drivers/char/n_tty.c,
1614    'write_inode' : 'other', # fs/fs-writeback.c,
1615    'write_null': 'driver', # drivers/char/mem.c,
1616    'writeback_acquire': 'other', # fs/fs-writeback.c, include/linux/backing-dev.h,
1617    'writeback_in_progress' : 'other', # fs/fs-writeback.c, include/linux/backing-dev.h,
1618    'writeback_inodes': 'other', # fs/fs-writeback.c, include/linux/writeback.h,
1619    'xdr_partial_copy_from_skb' : 'copy', # net/sunrpc/xdr.c, include/linux/sunrpc/xdr.h,
1620    'xfrm_lookup' : 'stack', # net/xfrm/xfrm_policy.c,
1621    'xmms': 'other', #
1622    'zap_pmd_range': 'bufmgt', # mm/memory.c,
1623    'zap_pte_range': 'bufmgt', # mm/memory.c,
1624    'zone_statistics' : 'bufmgt', # mm/page_alloc.c,
1625    'libaprutil-0.so.0' : 'user',
1626    'libapr-0.so.0' : 'user',
1627    'httpd' : 'user',
1628    'do_tcp_sendpages': 'copy',
1629    'tcp_setsockopt' : 'stack',
1630    'sys_setsockopt' : 'stack',
1631    'do_sendfile' : 'copy',
1632    'ip_route_output_slow': 'stack',
1633    'tcp_sendpage': 'copy',
1634    'file_send_actor': 'copy',
1635    'flush_tlb_page': 'bufmgt',
1636    'sock_common_setsockopt': 'stack',
1637    'sock_sendpage': 'copy',
1638
1639#
1640#   New functions
1641#
1642
1643    '__alloc_percpu': 'bufmgt', # mm/slab.c, include/linux/percpu.h,
1644    '__pskb_pull_tail': 'stack', # net/core/skbuff.c, include/linux/skbuff.h,
1645    '__reml': 'other', # arch/alpha/kernel/alpha_ksyms.c,
1646    '__tasklet_hi_schedule': 'interrupt', # kernel/softirq.c,
1647    '__tcp_checksum_complete_user': 'stack', # net/ipv4/tcp_input.c,
1648    '__tcp_v4_lookup_listener': 'stack', # net/ipv4/tcp_ipv4.c,
1649    '__tcp_v4_rehash': 'stack', # net/ipv4/tcp_ipv4.c,
1650    '__tcp_westwood_fast_bw': 'stack', # net/ipv4/tcp_input.c,
1651    '__tcp_westwood_slow_bw': 'stack', # net/ipv4/tcp_input.c,
1652    '__xfrm_policy_check': 'stack', # net/xfrm/xfrm_policy.c,
1653    'alcor_disable_irq': 'interrupt', # arch/alpha/kernel/sys_alcor.c,
1654    'alpha_read_fp_reg': 'other', # arch/alpha/lib/fpreg.c, arch/alpha/kernel/proto.h, arch/alpha/math-emu/math.c, include/asm-alpha/fpu.h,
1655    'atkbd_probe': 'other', # drivers/input/keyboard/atkbd.c,
1656    'background_writeout': 'bufmgt', # mm/page-writeback.c, mm/page-writeback.c,
1657    'bad_page': 'bufmgt', # mm/page_alloc.c,
1658    'batch_entropy_process': 'other', # drivers/char/random.c, drivers/char/random.c,
1659    'block_hotplug_filter': 'driver', # drivers/block/genhd.c,
1660    'brioctl_set': 'stack', # net/socket.c, include/linux/if_bridge.h,
1661    'cdev_put': 'fs', # fs/char_dev.c, include/linux/cdev.h,
1662    'change_protection': 'bufmgt', # mm/mprotect.c,
1663    'check_timer_failed': 'interrupt', # kernel/timer.c,
1664    'clipper_disable_irq': 'interrupt', # arch/alpha/kernel/sys_dp264.c,
1665    'clipper_enable_irq': 'interrupt', # arch/alpha/kernel/sys_dp264.c,
1666    'count_active_tasks': 'interrupt', # kernel/timer.c,
1667    'csum_ipv6_magic': 'stack', # include/asm-i386/checksum.h, include/asm-alpha/checksum.h,
1668    'del_timer_sync': 'interrupt', # kernel/timer.c, include/linux/timer.h, include/linux/timer.h,
1669    'dev_ifname': 'stack', # net/core/dev.c,
1670    'dev_queue_xmit_nit': 'stack', # net/core/dev.c, include/linux/netdevice.h,
1671    'dev_valid_name': 'stack', # net/core/dev.c,
1672    'do_entDbg': 'interrupt', # arch/alpha/kernel/traps.c,
1673    'do_proc_dointvec_jiffies_conv': 'interrupt', # kernel/sysctl.c,
1674    'down_interruptible': 'interrupt', # arch/alpha/kernel/semaphore.c, include/asm-alpha/semaphore.h, include/asm-i386/semaphore.h, include/asm-alpha/semaphore.h, net/ipv4/netfilter/ip_tables.c, net/ipv6/netfilter/ip6_tables.c,
1675    'drain_array': 'bufmgt', #
1676    'drain_cpu_caches': 'bufmgt', # mm/slab.c,
1677    'dummy_file_fcntl': 'other', # security/dummy.c,
1678    'dummy_sem_semop': 'other', # security/dummy.c,
1679    'emit_log_char': 'other', # kernel/printk.c,
1680    'entDbg': 'interrupt', # arch/alpha/kernel/proto.h,
1681    'entIF': 'interrupt', # arch/alpha/kernel/proto.h,
1682    'eth_header_cache_update': 'stack', # net/ethernet/eth.c, include/linux/etherdevice.h,
1683    'eth_header_parse': 'stack', # net/ethernet/eth.c, include/linux/etherdevice.h,
1684    'ethtool_get_settings': 'stack', # net/core/ethtool.c,
1685    'fifo_open': 'fs', # fs/fifo.c,
1686    'find_trylock_page': 'bufmgt', # mm/filemap.c, include/linux/pagemap.h,
1687    'find_undo': 'bufmgt', # ipc/sem.c,
1688    'find_user': 'bufmgt', # kernel/user.c, include/linux/sched.h,
1689    'flow_cache_cpu_prepare': 'stack', # net/core/flow.c,
1690    'flow_cache_flush_per_cpu': 'stack', # net/core/flow.c,
1691    'flow_cache_flush_tasklet': 'stack', # net/core/flow.c,
1692    'flow_key_compare': 'stack', # net/core/flow.c,
1693    'flush_icache_user_range': 'interrupt', # arch/alpha/kernel/smp.c, include/asm-alpha/cacheflush.h, include/asm-alpha/cacheflush.h, include/asm-i386/cacheflush.h,
1694    'flush_tlb_mm': 'interrupt', # arch/alpha/kernel/smp.c, include/asm-alpha/tlbflush.h, include/asm-i386/tlbflush.h, include/asm-alpha/tlbflush.h, include/asm-i386/tlbflush.h,
1695    'force_page_cache_readahead': 'bufmgt', # mm/readahead.c, include/linux/mm.h,
1696    'free_percpu': 'bufmgt', # mm/slab.c, include/linux/percpu.h, include/linux/percpu.h,
1697    'generic_file_sendfile': 'bufmgt', # mm/filemap.c, include/linux/fs.h,
1698    'get_one_pte_map': 'bufmgt', # mm/mremap.c,
1699    'gunzip': 'other', # lib/inflate.c,
1700    'handle_ipi': 'interrupt', # arch/alpha/kernel/smp.c, arch/alpha/kernel/proto.h,
1701    'input_devices_read': 'driver', # drivers/input/input.c,
1702    'input_link_handle': 'driver', # drivers/input/input.c,
1703    'input_register_device': 'driver', # drivers/input/input.c, include/linux/input.h,
1704    'insb': 'driver', # arch/alpha/kernel/io.c, include/asm-alpha/io.h,
1705    'insl': 'driver', # arch/alpha/kernel/io.c, include/asm-alpha/io.h, drivers/net/smc9194.c, drivers/net/smc9194.c,
1706    'invalidate_bh_lru': 'fs', # fs/buffer.c,
1707    'iommu_arena_alloc': 'interrupt', # arch/alpha/kernel/pci_iommu.c,
1708    'iommu_arena_find_pages': 'interrupt', # arch/alpha/kernel/pci_iommu.c,
1709    'iommu_arena_free': 'interrupt', # arch/alpha/kernel/pci_iommu.c,
1710    'ip_compute_csum': 'stack', # arch/alpha/lib/checksum.c, include/asm-i386/checksum.h, include/asm-alpha/checksum.h,
1711    'ip_getsockopt': 'stack', # net/ipv4/ip_sockglue.c,
1712    'ip_mc_output': 'stack', # net/ipv4/ip_output.c,
1713    'ip_options_compile': 'stack', # net/ipv4/ip_options.c,
1714    'ip_rt_dump': 'stack', # net/ipv4/route.c,
1715    'ipc_checkid': 'stack', # ipc/util.c, ipc/util.h,
1716    'ipc_lock': 'stack', # ipc/util.c, ipc/util.h,
1717    'ipc_unlock': 'stack', # ipc/util.c, ipc/util.h,
1718    'ipcperms': 'stack', # ipc/util.c, ipc/util.h,
1719    'ipi_flush_tlb_page': 'interrupt', # arch/alpha/kernel/smp.c,
1720    'isp1020_intr_handler': 'other', # drivers/scsi/qlogicisp.c, drivers/scsi/qlogicisp.c,
1721    'isp1020_queuecommand': 'other', # drivers/scsi/qlogicisp.c, drivers/scsi/qlogicisp.h,
1722    'kernel_thread': 'interrupt', # include/asm-um/processor-generic.h, include/asm-alpha/processor.h, include/asm-i386/processor.h,
1723    'kmem_find_general_cachep': 'bufmgt', # mm/slab.c,
1724    'kmem_ptr_validate': 'bufmgt', # mm/slab.c,
1725    'llc_mac_hdr_init': 'stack', # net/llc/llc_output.c, net/llc/llc_output.h,
1726    'lock_rename': 'fs', # fs/namei.c, include/linux/namei.h,
1727    'lookup_undo': 'stack', # ipc/sem.c,
1728    'memcpy_tokerneliovec': 'stack', # net/core/iovec.c, include/linux/socket.h,
1729    'migrate_task': 'other', # kernel/sched.c,
1730    'net_ratelimit': 'stack', # net/core/utils.c, include/linux/net.h,
1731    'netlink_release': 'stack', # net/netlink/netlink_dev.c, net/netlink/af_netlink.c,
1732    'nf_log_packet': 'stack', # net/core/netfilter.c, include/linux/netfilter_logging.h, include/linux/netfilter.h,
1733    'nf_queue': 'stack', # net/core/netfilter.c,
1734    'nr_free_zone_pages': 'bufmgt', # mm/page_alloc.c,
1735    'osf_writev': 'driver', # arch/alpha/kernel/osf_sys.c,
1736    'pci_map_sg': 'driver', # arch/alpha/kernel/pci-noop.c, arch/alpha/kernel/pci_iommu.c, include/asm-generic/pci-dma-compat.h, include/asm-alpha/pci.h,
1737    'pci_unmap_sg': 'driver', # arch/alpha/kernel/pci-noop.c, arch/alpha/kernel/pci_iommu.c, include/asm-generic/pci-dma-compat.h, include/asm-alpha/pci.h,
1738    'pcibios_align_resource': 'driver', # arch/alpha/kernel/pci.c, include/linux/pci.h,
1739    'pfifo_fast_requeue': 'stack', # net/sched/sch_generic.c,
1740    'pointer_lock': 'interrupt', # arch/alpha/kernel/smp.c,
1741    'posix_unblock_lock': 'fs', # fs/locks.c, include/linux/fs.h,
1742    'prepare_timeout': 'interrupt', # ipc/mqueue.c,
1743    'printk': 'other', # kernel/printk.c, drivers/md/raid6.h,
1744    'process_mcheck_info': 'interrupt', # arch/alpha/kernel/irq_alpha.c, arch/alpha/kernel/proto.h,
1745    'read_cache_pages': 'bufmgt', # mm/readahead.c, include/linux/pagemap.h,
1746    'register_gifconf': 'stack', # net/core/dev.c, include/linux/netdevice.h,
1747    'rwsem_down_read_failed': 'interrupt', # lib/rwsem.c, include/asm-alpha/rwsem.h,
1748    'search_exception_tables': 'interrupt', # kernel/extable.c, include/linux/module.h,
1749    'security_fixup_ops': 'other', # security/dummy.c, security/security.c,
1750    'send_ipi_message': 'interrupt', # arch/alpha/kernel/smp.c,
1751    'send_sig_info': 'interrupt', # kernel/signal.c, include/linux/sched.h,
1752    'set_fs_altroot': 'fs', # fs/namei.c, include/linux/fs_struct.h,
1753    'sg_classify': 'interrupt', # arch/alpha/kernel/pci_iommu.c,
1754    'sg_fill': 'interrupt', # arch/alpha/kernel/pci_iommu.c,
1755    'sk_common_release': 'stack', # net/core/sock.c,
1756    'sk_stream_wait_connect': 'stack', # net/core/stream.c,
1757    'skb_over_panic': 'stack', # net/core/skbuff.c, include/linux/skbuff.h,
1758    'skb_under_panic': 'stack', # net/core/skbuff.c, include/linux/skbuff.h,
1759    'smp_call_function_on_cpu': 'interrupt', # arch/alpha/kernel/smp.c, include/asm-alpha/smp.h, include/asm-alpha/smp.h,
1760    'sock_def_write_space': 'stack', # net/core/sock.c,
1761    'sock_getsockopt': 'stack', # net/core/sock.c,
1762    'sock_wait_for_wmem': 'stack', # net/core/sock.c,
1763    'srm_dispatch': 'other', #
1764    'srm_fixup': 'other', # include/asm-alpha/console.h,
1765    'stxcpy_aligned': 'bufmgt', #
1766    'sys_capset': 'other', # kernel/capability.c, include/linux/syscalls.h,
1767    'sys_fadvise64': 'bufmgt', # mm/fadvise.c, include/linux/syscalls.h,
1768    'sys_fadvise64_64': 'bufmgt', # mm/fadvise.c, include/linux/syscalls.h,
1769    'sys_newfstat': 'fs', # fs/stat.c, include/linux/syscalls.h,
1770    'sys_semop': 'stack', # ipc/sem.c, include/linux/syscalls.h,
1771    'sys_semtimedop': 'stack', # ipc/sem.c, include/linux/syscalls.h,
1772    'sys_sendfile64': 'fs', # fs/read_write.c, include/linux/syscalls.h,
1773    'sys_socketpair': 'stack', # net/socket.c, include/linux/syscalls.h,
1774    'sys_vhangup': 'fs', # fs/open.c, include/linux/syscalls.h,
1775    'tasklet_hi_action': 'interrupt', # kernel/softirq.c,
1776    'tcp_ack_probe': 'stack', # net/ipv4/tcp_input.c,
1777    'tcp_advertise_mss': 'stack', # net/ipv4/tcp_output.c,
1778    'tcp_enter_loss': 'stack', # net/ipv4/tcp_input.c,
1779    'tcp_fastretrans_alert': 'stack', # net/ipv4/tcp_input.c,
1780    'tcp_ioctl': 'stack', # net/ipv4/tcp.c,
1781    'tcp_process_frto': 'stack', # net/ipv4/tcp_input.c,
1782    'tcp_rcv_synsent_state_process': 'stack', # net/ipv4/tcp_input.c,
1783    'tcp_recv_urg': 'stack', # net/ipv4/tcp.c,
1784    'tcp_reset': 'stack', # net/ipv4/tcp_input.c,
1785    'tcp_retransmit_skb': 'stack', # net/ipv4/tcp_output.c,
1786    'tcp_sacktag_write_queue': 'stack', # net/ipv4/tcp_input.c,
1787    'tcp_time_to_recover': 'stack', # net/ipv4/tcp_input.c,
1788    'tcp_v4_err': 'stack', # net/ipv4/tcp_ipv4.c,
1789    'tcp_v4_get_port': 'stack', # net/ipv4/tcp_ipv4.c,
1790    'tcp_v4_lookup': 'stack', # net/ipv4/tcp_ipv4.c, net/ipv4/tcp_diag.c,
1791    'tcp_v4_reselect_saddr': 'stack', # net/ipv4/tcp_ipv4.c,
1792    'this_rq_lock': 'interrupt', #
1793    'tr_source_route': 'stack', # net/802/tr.c, include/linux/trdevice.h,
1794    'try_atomic_semop': 'stack', # ipc/sem.c,
1795    'tsunami_outw': 'driver', #
1796    'twothirdsMD4Transform': 'other', # drivers/char/random.c,
1797    'unregister_netdevice': 'stack', # net/core/dev.c, include/linux/netdevice.h,
1798    'update_queue': 'stack', # ipc/sem.c,
1799    'vegas_cong_avoid': 'stack', # net/ipv4/tcp_input.c,
1800    'vm_acct_memory': 'bufmgt', # mm/swap.c, include/linux/mman.h,
1801    'vsscanf': 'other', # lib/vsprintf.c, include/linux/kernel.h,
1802    'wait_for_packet': 'stack', # net/core/datagram.c,
1803    'westwood_update_window': 'stack', # net/ipv4/tcp_input.c,
1804    'within_one_quad': 'other', #
1805}
1806
1807categories_re = [
1808#    ( re.compile('.*'), 'other' )
1809]
1810
1811
1812