diff options
author | Nathan Binkert <binkertn@umich.edu> | 2006-02-26 01:00:15 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2006-02-26 01:00:15 -0500 |
commit | 57092567bac410c521738c7d30affa57c7b45b96 (patch) | |
tree | bc20366b83f46f13853e5efb28deef1d912134de /util/stats/categories.py | |
parent | 2c3e8d148cd349e5cb73c0d018271d171da0571c (diff) | |
download | gem5-57092567bac410c521738c7d30affa57c7b45b96.tar.xz |
better function categorization
util/stats/categories.py:
bit more stuff for categorizing functions
--HG--
extra : convert_revision : 03617246a9254a580684dce82836517d1efdfc5b
Diffstat (limited to 'util/stats/categories.py')
-rw-r--r-- | util/stats/categories.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/util/stats/categories.py b/util/stats/categories.py index 8d5d506a2..6d8568879 100644 --- a/util/stats/categories.py +++ b/util/stats/categories.py @@ -1,4 +1,4 @@ -# Copyright (c) 2005 The Regents of The University of Michigan +# Copyright (c) 2005-2006 The Regents of The University of Michigan # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -33,10 +33,14 @@ func_categories = { \ 'skb_clone_fraglist' : 'buffer', 'skb_seq_read' : 'buffer', 'sock_alloc_send_skb' : 'buffer', + 'sinic_rxskb_alloc' : 'buffer', # Copy functions + 'sinic_copyfrom' : 'copy', '__copy_user' : 'copy', 'skb_copy_bits' : 'copy', + 'skb_copy_datagram_iovec' : 'copy', + 'sinic_vcopy_iov' : 'idle', # Driver functions 'do_tx_done' : 'driver', |