From: "Toke Høiland-Jørgensen" <toke@redhat.com>
To: Felix Fietkau <nbd@nbd.name>, linux-wireless@vger.kernel.org
Cc: johannes@sipsolutions.net
Subject: Re: [PATCH v2] mac80211: un-schedule TXQs on powersave start
Date: Tue, 19 Mar 2019 23:15:28 +0100 [thread overview]
Message-ID: <871s32se7z.fsf@toke.dk> (raw)
In-Reply-To: <20190319110013.45228-1-nbd@nbd.name>
Felix Fietkau <nbd@nbd.name> writes:
> Once a station enters powersave, its queues should not be returned by
> ieee80211_next_txq() anymore. They will be re-scheduled again after the
> station has woken up again
>
> Fixes: 1866760096bf4 ("mac80211: Add TXQ scheduling API")
> Signed-off-by: Felix Fietkau <nbd@nbd.name>
Acked-by: Toke Høiland-Jørgensen <toke@redhat.com>
> ---
> net/mac80211/rx.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
> index 295535b75184..60aac91e35d0 100644
> --- a/net/mac80211/rx.c
> +++ b/net/mac80211/rx.c
> @@ -1568,7 +1568,15 @@ static void sta_ps_start(struct sta_info *sta)
> return;
>
> for (tid = 0; tid < IEEE80211_NUM_TIDS; tid++) {
> - if (txq_has_queue(sta->sta.txq[tid]))
> + struct ieee80211_txq *txq = sta->sta.txq[tid];
> + struct txq_info *txqi = to_txq_info(txq);
> +
> + spin_lock(&local->active_txq_lock[txq->ac]);
> + if (!list_empty(&txqi->schedule_order))
> + list_del_init(&txqi->schedule_order);
> + spin_unlock(&local->active_txq_lock[txq->ac]);
> +
> + if (txq_has_queue(txq))
> set_bit(tid, &sta->txq_buffered_tids);
> else
> clear_bit(tid, &sta->txq_buffered_tids);
> --
> 2.17.0
prev parent reply other threads:[~2019-03-19 22:15 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-19 11:00 [PATCH v2] mac80211: un-schedule TXQs on powersave start Felix Fietkau
2019-03-19 22:15 ` Toke Høiland-Jørgensen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871s32se7z.fsf@toke.dk \
--to=toke@redhat.com \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=nbd@nbd.name \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.