Commit a4027644 authored by Sujith Manoharan's avatar Sujith Manoharan Committed by John W. Linville

ath9k: Use a subroutine to assign HW queues

Reduces code duplication.
Signed-off-by: default avatarSujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ca529c93
...@@ -811,7 +811,7 @@ static void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw) ...@@ -811,7 +811,7 @@ static void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
/* allow 4 queues per channel context + /* allow 4 queues per channel context +
* 1 cab queue + 1 offchannel tx queue * 1 cab queue + 1 offchannel tx queue
*/ */
hw->queues = 10; hw->queues = ATH9K_NUM_TX_QUEUES;
/* last queue for offchannel */ /* last queue for offchannel */
hw->offchannel_tx_hw_queue = hw->queues - 1; hw->offchannel_tx_hw_queue = hw->queues - 1;
hw->max_rates = 4; hw->max_rates = 4;
......
...@@ -1104,6 +1104,20 @@ void ath9k_calculate_summary_state(struct ath_softc *sc, ...@@ -1104,6 +1104,20 @@ void ath9k_calculate_summary_state(struct ath_softc *sc,
ath9k_ps_restore(sc); ath9k_ps_restore(sc);
} }
static void ath9k_assign_hw_queues(struct ieee80211_hw *hw,
struct ieee80211_vif *vif)
{
int i;
for (i = 0; i < IEEE80211_NUM_ACS; i++)
vif->hw_queue[i] = i;
if (vif->type == NL80211_IFTYPE_AP)
vif->cab_queue = hw->queues - 2;
else
vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
}
static int ath9k_add_interface(struct ieee80211_hw *hw, static int ath9k_add_interface(struct ieee80211_hw *hw,
struct ieee80211_vif *vif) struct ieee80211_vif *vif)
{ {
...@@ -1112,7 +1126,6 @@ static int ath9k_add_interface(struct ieee80211_hw *hw, ...@@ -1112,7 +1126,6 @@ static int ath9k_add_interface(struct ieee80211_hw *hw,
struct ath_common *common = ath9k_hw_common(ah); struct ath_common *common = ath9k_hw_common(ah);
struct ath_vif *avp = (void *)vif->drv_priv; struct ath_vif *avp = (void *)vif->drv_priv;
struct ath_node *an = &avp->mcast_node; struct ath_node *an = &avp->mcast_node;
int i;
mutex_lock(&sc->mutex); mutex_lock(&sc->mutex);
...@@ -1135,12 +1148,8 @@ static int ath9k_add_interface(struct ieee80211_hw *hw, ...@@ -1135,12 +1148,8 @@ static int ath9k_add_interface(struct ieee80211_hw *hw,
avp->chanctx = sc->cur_chan; avp->chanctx = sc->cur_chan;
list_add_tail(&avp->list, &avp->chanctx->vifs); list_add_tail(&avp->list, &avp->chanctx->vifs);
} }
for (i = 0; i < IEEE80211_NUM_ACS; i++)
vif->hw_queue[i] = i; ath9k_assign_hw_queues(hw, vif);
if (vif->type == NL80211_IFTYPE_AP)
vif->cab_queue = hw->queues - 2;
else
vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
an->sc = sc; an->sc = sc;
an->sta = NULL; an->sta = NULL;
...@@ -1160,7 +1169,6 @@ static int ath9k_change_interface(struct ieee80211_hw *hw, ...@@ -1160,7 +1169,6 @@ static int ath9k_change_interface(struct ieee80211_hw *hw,
struct ath_softc *sc = hw->priv; struct ath_softc *sc = hw->priv;
struct ath_common *common = ath9k_hw_common(sc->sc_ah); struct ath_common *common = ath9k_hw_common(sc->sc_ah);
struct ath_vif *avp = (void *)vif->drv_priv; struct ath_vif *avp = (void *)vif->drv_priv;
int i;
mutex_lock(&sc->mutex); mutex_lock(&sc->mutex);
...@@ -1180,14 +1188,7 @@ static int ath9k_change_interface(struct ieee80211_hw *hw, ...@@ -1180,14 +1188,7 @@ static int ath9k_change_interface(struct ieee80211_hw *hw,
if (ath9k_uses_beacons(vif->type)) if (ath9k_uses_beacons(vif->type))
ath9k_beacon_assign_slot(sc, vif); ath9k_beacon_assign_slot(sc, vif);
for (i = 0; i < IEEE80211_NUM_ACS; i++) ath9k_assign_hw_queues(hw, vif);
vif->hw_queue[i] = i;
if (vif->type == NL80211_IFTYPE_AP)
vif->cab_queue = hw->queues - 2;
else
vif->cab_queue = IEEE80211_INVAL_HW_QUEUE;
ath9k_calculate_summary_state(sc, avp->chanctx); ath9k_calculate_summary_state(sc, avp->chanctx);
mutex_unlock(&sc->mutex); mutex_unlock(&sc->mutex);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment