Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E2178C64EB9 for ; Tue, 2 Oct 2018 19:00:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8D4C22064D for ; Tue, 2 Oct 2018 19:00:23 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=toke.dk header.i=@toke.dk header.b="t4dO09sb" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8D4C22064D Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=toke.dk Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-wireless-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727284AbeJCBpK (ORCPT ); Tue, 2 Oct 2018 21:45:10 -0400 Received: from mail.toke.dk ([52.28.52.200]:47485 "EHLO mail.toke.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726881AbeJCBpK (ORCPT ); Tue, 2 Oct 2018 21:45:10 -0400 From: Toke =?utf-8?Q?H=C3=B8iland-J=C3=B8rgensen?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=toke.dk; s=20161023; t=1538506820; bh=qBITIyTr5+YijlvoeB79UuJ6E8m/gJHXo3yMy+azTHw=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=t4dO09sblhr2U0VzEECp1k2sshQoTy1vRLWZMg+FzkGdN3chzDV8Nalp52u4Egy1A H0l6h+lDTyG22hM6gQZtNuoS8ZvQFYy3wJctFWccuLcnwA5EDiJlKUD99GBkRwwYiZ I/Rcu86F1Pdds9/djSvTx8pQPQ1Av+wM6d1mrxLTY4KH6iyz6LAl8vqaLr4uqzw57W PNsIWTGuvmXv9VD8jL8+mDTkdk68SLObG/EMWhEdwD/pBAgdQHImF1AqWPIf+vVqgC no+IyODAau8wCBSQz8WlmPN3GxQ4NlNKlS31jaP3so6On+SzqiXW7iyek10TBPyLQK BKOrWmQk+kPGg== To: Rajkumar Manoharan Cc: Jonathan Morton , Kan Yan , make-wifi-fast@lists.bufferbloat.net, linux-wireless-owner@vger.kernel.org, linux-wireless@vger.kernel.org, Felix Fietkau Subject: Re: [Make-wifi-fast] [PATCH RFC v4 3/4] mac80211: Add airtime accounting and scheduling to TXQs In-Reply-To: References: <153711966150.9231.13481453399723518107.stgit@alrua-x1> <153711973134.9231.18038849900399644494.stgit@alrua-x1.karlstad.toke.dk> <826b6251746ee4d280d532f4ecdc5aa3@codeaurora.org> <87pnx0haud.fsf@toke.dk> <8f7145bf5abe50194bced025a5e739b9@codeaurora.org> <863bc54fbf04441d38dd53f523300a7e@codeaurora.org> <93015743-5D16-4D79-948F-E2F46CF2450A@toke.dk> <7ba8513b0ec5a7c35b396c7739fc2d7d@codeaurora.org> <87zhw2eyfo.fsf@toke.dk> <5d961a5f61de45b85b1b037bcef9270d@codeaurora.org> <44B09168-C08F-4C85-8D74-D576CCC79880@gmail.com> <586459da6ec36edc2284df8533915d62@codeaurora.org> <4929C006-3452-4C17-9500-8D7485EB538E@toke.dk> <0531def170ef7f9cadcf85a6dc9af22b@codeaurora.org> <87a7nwbvwu.fsf@toke.dk> Date: Tue, 02 Oct 2018 21:00:19 +0200 X-Clacks-Overhead: GNU Terry Pratchett Message-ID: <877ej0b2d8.fsf@toke.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Rajkumar Manoharan writes: > On 2018-10-02 01:22, Toke H=C3=B8iland-J=C3=B8rgensen wrote: >> Rajkumar Manoharan writes: >>=20 >>>> Great! I'll fold in the rest, test it with ath9k and submit as a=20 >>>> proper >>>> patch :) >>>>=20 >>> Toke, >>>=20 >>> I noticed a race condition b/w sta cleanup and kick_airtime tasklet. >>> How do you plan to exit kick_airtime gracefully during sta_cleanup? >>=20 >> Ah, right, there's a lot of stuff going on before we get to purge_txq. >> Hmm, I guess we should either make sure we remove the station from >> active_txqs earlier in the sta cleanup process, or maybe it'd enough to >> just check the removed flag in the tasklet? >>=20 >> Does the below patch fix the issue? >>=20 > > No. Attaching backtrace. Any clue? Ah, that's my bad. Just having a 'continue' there can make the function loop forever. Oops. Try something like this instead? -Toke diff --git a/net/mac80211/util.c b/net/mac80211/util.c index eb77cf588d69..b30a4fac1d60 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -258,6 +258,9 @@ static void __ieee80211_kick_airtime(struct ieee80211_l= ocal *local, int ac) =20 sta =3D container_of(txqi->txq.sta, struct sta_info, sta); =20 + if (sta->removed) + goto out_reschedule; + if (sta->airtime[ac].deficit >=3D 0) { seen_eligible =3D true; =20 @@ -288,7 +291,13 @@ static void __ieee80211_kick_airtime(struct ieee80211_= local *local, int ac) } out: rcu_read_unlock(); spin_unlock_bh(&local->active_txq_lock[ac]); + return; + + out_reschedule: + rcu_read_unlock(); + spin_unlock_bh(&local->active_txq_lock[ac]); + tasklet_schedule(&local->airtime_tasklet); } =20 void ieee80211_kick_airtime(unsigned long data)