mwl8k: remove get_tx_stats() mac80211 op
get_tx_stats() will be removed from mac80211. mwl8k used struct ieee80211_tx_queue_stats internally to track the queue lenght. Replace struct ieee80211_tx_queue_stats with a simple len field in struct mwl8k_tx_queue. Limit and count fields seemed to be unused. Compile-tested only. Cc: Lennert Buytenhek <buytenh@marvell.com> Signed-off-by: Kalle Valo <kalle.valo@iki.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4046fe66ce
commit
8ccbc3b8b0
1 changed files with 7 additions and 28 deletions
|
@ -119,7 +119,7 @@ struct mwl8k_tx_queue {
|
||||||
/* sw appends here */
|
/* sw appends here */
|
||||||
int tail;
|
int tail;
|
||||||
|
|
||||||
struct ieee80211_tx_queue_stats stats;
|
unsigned int len;
|
||||||
struct mwl8k_tx_desc *txd;
|
struct mwl8k_tx_desc *txd;
|
||||||
dma_addr_t txd_dma;
|
dma_addr_t txd_dma;
|
||||||
struct sk_buff **skb;
|
struct sk_buff **skb;
|
||||||
|
@ -1136,8 +1136,7 @@ static int mwl8k_txq_init(struct ieee80211_hw *hw, int index)
|
||||||
int size;
|
int size;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
memset(&txq->stats, 0, sizeof(struct ieee80211_tx_queue_stats));
|
txq->len = 0;
|
||||||
txq->stats.limit = MWL8K_TX_DESCS;
|
|
||||||
txq->head = 0;
|
txq->head = 0;
|
||||||
txq->tail = 0;
|
txq->tail = 0;
|
||||||
|
|
||||||
|
@ -1213,7 +1212,7 @@ static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw)
|
||||||
printk(KERN_ERR "%s: txq[%d] len=%d head=%d tail=%d "
|
printk(KERN_ERR "%s: txq[%d] len=%d head=%d tail=%d "
|
||||||
"fw_owned=%d drv_owned=%d unused=%d\n",
|
"fw_owned=%d drv_owned=%d unused=%d\n",
|
||||||
wiphy_name(hw->wiphy), i,
|
wiphy_name(hw->wiphy), i,
|
||||||
txq->stats.len, txq->head, txq->tail,
|
txq->len, txq->head, txq->tail,
|
||||||
fw_owned, drv_owned, unused);
|
fw_owned, drv_owned, unused);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1299,7 +1298,7 @@ mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
|
||||||
int processed;
|
int processed;
|
||||||
|
|
||||||
processed = 0;
|
processed = 0;
|
||||||
while (txq->stats.len > 0 && limit--) {
|
while (txq->len > 0 && limit--) {
|
||||||
int tx;
|
int tx;
|
||||||
struct mwl8k_tx_desc *tx_desc;
|
struct mwl8k_tx_desc *tx_desc;
|
||||||
unsigned long addr;
|
unsigned long addr;
|
||||||
|
@ -1321,8 +1320,8 @@ mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force)
|
||||||
}
|
}
|
||||||
|
|
||||||
txq->head = (tx + 1) % MWL8K_TX_DESCS;
|
txq->head = (tx + 1) % MWL8K_TX_DESCS;
|
||||||
BUG_ON(txq->stats.len == 0);
|
BUG_ON(txq->len == 0);
|
||||||
txq->stats.len--;
|
txq->len--;
|
||||||
priv->pending_tx_pkts--;
|
priv->pending_tx_pkts--;
|
||||||
|
|
||||||
addr = le32_to_cpu(tx_desc->pkt_phys_addr);
|
addr = le32_to_cpu(tx_desc->pkt_phys_addr);
|
||||||
|
@ -1454,8 +1453,7 @@ mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb)
|
||||||
wmb();
|
wmb();
|
||||||
tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
|
tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus);
|
||||||
|
|
||||||
txq->stats.count++;
|
txq->len++;
|
||||||
txq->stats.len++;
|
|
||||||
priv->pending_tx_pkts++;
|
priv->pending_tx_pkts++;
|
||||||
|
|
||||||
txq->tail++;
|
txq->tail++;
|
||||||
|
@ -3818,24 +3816,6 @@ static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue,
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mwl8k_get_tx_stats(struct ieee80211_hw *hw,
|
|
||||||
struct ieee80211_tx_queue_stats *stats)
|
|
||||||
{
|
|
||||||
struct mwl8k_priv *priv = hw->priv;
|
|
||||||
struct mwl8k_tx_queue *txq;
|
|
||||||
int index;
|
|
||||||
|
|
||||||
spin_lock_bh(&priv->tx_lock);
|
|
||||||
for (index = 0; index < MWL8K_TX_QUEUES; index++) {
|
|
||||||
txq = priv->txq + index;
|
|
||||||
memcpy(&stats[index], &txq->stats,
|
|
||||||
sizeof(struct ieee80211_tx_queue_stats));
|
|
||||||
}
|
|
||||||
spin_unlock_bh(&priv->tx_lock);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int mwl8k_get_stats(struct ieee80211_hw *hw,
|
static int mwl8k_get_stats(struct ieee80211_hw *hw,
|
||||||
struct ieee80211_low_level_stats *stats)
|
struct ieee80211_low_level_stats *stats)
|
||||||
{
|
{
|
||||||
|
@ -3871,7 +3851,6 @@ static const struct ieee80211_ops mwl8k_ops = {
|
||||||
.set_rts_threshold = mwl8k_set_rts_threshold,
|
.set_rts_threshold = mwl8k_set_rts_threshold,
|
||||||
.sta_notify = mwl8k_sta_notify,
|
.sta_notify = mwl8k_sta_notify,
|
||||||
.conf_tx = mwl8k_conf_tx,
|
.conf_tx = mwl8k_conf_tx,
|
||||||
.get_tx_stats = mwl8k_get_tx_stats,
|
|
||||||
.get_stats = mwl8k_get_stats,
|
.get_stats = mwl8k_get_stats,
|
||||||
.ampdu_action = mwl8k_ampdu_action,
|
.ampdu_action = mwl8k_ampdu_action,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue