diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2009-11-23 22:33:32 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-28 15:04:45 -0500 |
commit | b136b3a2c1867172cd3de6e7286c600b04543b30 (patch) | |
tree | a2b61dc5a0594d2d691158d220d7239bdc08de72 /drivers/net/wireless/iwmc3200wifi/debugfs.c | |
parent | a7af530d45969a63e20708417b70c547596ce3a9 (diff) |
iwmc3200wifi: Add stopped queue to debugfs
We add the stopped queue count and display to the tx queue debugfs entry.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwmc3200wifi/debugfs.c')
-rw-r--r-- | drivers/net/wireless/iwmc3200wifi/debugfs.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwmc3200wifi/debugfs.c b/drivers/net/wireless/iwmc3200wifi/debugfs.c index 1465379f900a..be992ca41cf1 100644 --- a/drivers/net/wireless/iwmc3200wifi/debugfs.c +++ b/drivers/net/wireless/iwmc3200wifi/debugfs.c | |||
@@ -158,6 +158,29 @@ static ssize_t iwm_debugfs_txq_read(struct file *filp, char __user *buffer, | |||
158 | } | 158 | } |
159 | 159 | ||
160 | spin_unlock_irqrestore(&txq->queue.lock, flags); | 160 | spin_unlock_irqrestore(&txq->queue.lock, flags); |
161 | |||
162 | spin_lock_irqsave(&txq->stopped_queue.lock, flags); | ||
163 | |||
164 | len += snprintf(buf + len, buf_len - len, | ||
165 | "\tStopped Queue len: %d\n", | ||
166 | skb_queue_len(&txq->stopped_queue)); | ||
167 | for (j = 0; j < skb_queue_len(&txq->stopped_queue); j++) { | ||
168 | struct iwm_tx_info *tx_info; | ||
169 | |||
170 | skb = skb->next; | ||
171 | tx_info = skb_to_tx_info(skb); | ||
172 | |||
173 | len += snprintf(buf + len, buf_len - len, | ||
174 | "\tSKB #%d\n", j); | ||
175 | len += snprintf(buf + len, buf_len - len, | ||
176 | "\t\tsta: %d\n", tx_info->sta); | ||
177 | len += snprintf(buf + len, buf_len - len, | ||
178 | "\t\tcolor: %d\n", tx_info->color); | ||
179 | len += snprintf(buf + len, buf_len - len, | ||
180 | "\t\ttid: %d\n", tx_info->tid); | ||
181 | } | ||
182 | |||
183 | spin_unlock_irqrestore(&txq->stopped_queue.lock, flags); | ||
161 | } | 184 | } |
162 | 185 | ||
163 | ret = simple_read_from_buffer(buffer, len, ppos, buf, buf_len); | 186 | ret = simple_read_from_buffer(buffer, len, ppos, buf, buf_len); |