diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-04-22 21:25:20 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-05-05 15:21:54 +0300 |
commit | f1160434c7658af3f7b0926b88df49a66cb3c3e0 (patch) | |
tree | da2608e58bb5e8b3c10ab1900425859c956fc54e /net/mac80211/ieee80211_i.h | |
parent | b8e69d51ffb5753cbb62f3ebfeadeffd3a19b0e9 (diff) | |
download | linux-f1160434c7658af3f7b0926b88df49a66cb3c3e0.tar.xz |
mac80211: clean up global debugfs statistics
The debugfs statistics macros are pointlessly verbose, so change
that macro to just have a single argument. While at it, remove
the unused counters and rename rx_expand_skb_head2 to the better
rx_expand_skb_head_defrag.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index e9f36f7ec733..987ec235e690 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h @@ -1282,7 +1282,6 @@ struct ieee80211_local { /* TX/RX handler statistics */ unsigned int tx_handlers_drop; unsigned int tx_handlers_queued; - unsigned int tx_handlers_drop_fragment; unsigned int tx_handlers_drop_wep; unsigned int tx_handlers_drop_not_assoc; unsigned int tx_handlers_drop_unauth_port; @@ -1293,8 +1292,7 @@ struct ieee80211_local { unsigned int rx_handlers_drop_short; unsigned int tx_expand_skb_head; unsigned int tx_expand_skb_head_cloned; - unsigned int rx_expand_skb_head; - unsigned int rx_expand_skb_head2; + unsigned int rx_expand_skb_head_defrag; unsigned int rx_handlers_fragments; unsigned int tx_status_drop; #define I802_DEBUG_INC(c) (c)++ |