diff options
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index f26e1c294395..b5591d2f60a4 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -98,6 +98,9 @@ struct sta_info { | |||
98 | * filtering; used only if sta->key is not | 98 | * filtering; used only if sta->key is not |
99 | * set */ | 99 | * set */ |
100 | 100 | ||
101 | #ifdef CONFIG_MAC80211_DEBUGFS | ||
102 | int debugfs_registered; | ||
103 | #endif | ||
101 | int assoc_ap; /* whether this is an AP that we are | 104 | int assoc_ap; /* whether this is an AP that we are |
102 | * associated with as a client */ | 105 | * associated with as a client */ |
103 | 106 | ||
@@ -109,6 +112,22 @@ struct sta_info { | |||
109 | int vlan_id; | 112 | int vlan_id; |
110 | 113 | ||
111 | u16 listen_interval; | 114 | u16 listen_interval; |
115 | |||
116 | #ifdef CONFIG_MAC80211_DEBUGFS | ||
117 | struct sta_info_debugfsdentries { | ||
118 | struct dentry *dir; | ||
119 | struct dentry *flags; | ||
120 | struct dentry *num_ps_buf_frames; | ||
121 | struct dentry *last_ack_rssi; | ||
122 | struct dentry *last_ack_ms; | ||
123 | struct dentry *inactive_ms; | ||
124 | struct dentry *last_seq_ctrl; | ||
125 | #ifdef CONFIG_MAC80211_DEBUG_COUNTERS | ||
126 | struct dentry *wme_rx_queue; | ||
127 | struct dentry *wme_tx_queue; | ||
128 | #endif | ||
129 | } debugfs; | ||
130 | #endif | ||
112 | }; | 131 | }; |
113 | 132 | ||
114 | 133 | ||