Skip to content

Commit

Permalink
mt76: mt7615: reschedule runtime-pm receiving a tx interrupt
Browse files Browse the repository at this point in the history
Reschedule runtime-pm after receiving a tx interrupt.
Update runtime-pm last activity before injecting packets

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Aug 5, 2020
1 parent 5c42061 commit ae4757a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions mt7615/dma.c
Expand Up @@ -122,6 +122,7 @@ static int mt7615_poll_tx(struct napi_struct *napi, int budget)

mt7615_tx_cleanup(dev);

mt7615_pm_power_save_sched(dev);
tasklet_schedule(&dev->mt76.tx_tasklet);

return 0;
Expand Down
4 changes: 4 additions & 0 deletions mt7615/mac.c
Expand Up @@ -1439,10 +1439,14 @@ static void mt7615_mac_tx_free(struct mt7615_dev *dev, struct sk_buff *skb)

dev_kfree_skb(skb);

if (test_bit(MT76_STATE_PM, &dev->phy.mt76->state))
return;

rcu_read_lock();
mt7615_mac_sta_poll(dev);
rcu_read_unlock();

mt7615_pm_power_save_sched(dev);
tasklet_schedule(&dev->mt76.tx_tasklet);
}

Expand Down
2 changes: 2 additions & 0 deletions mt7615/main.c
Expand Up @@ -706,6 +706,7 @@ mt7615_wake_tx_queue(struct ieee80211_hw *hw, struct ieee80211_txq *txq)
return;
}

dev->pm.last_activity = jiffies;
tasklet_schedule(&dev->mt76.tx_tasklet);
}

Expand Down Expand Up @@ -735,6 +736,7 @@ static void mt7615_tx(struct ieee80211_hw *hw,
}

if (!test_bit(MT76_STATE_PM, &mphy->state)) {
dev->pm.last_activity = jiffies;
mt76_tx(mphy, control->sta, wcid, skb);
return;
}
Expand Down

0 comments on commit ae4757a

Please sign in to comment.