From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wm0-f67.google.com ([74.125.82.67]:39868 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934444AbdLSMnQ (ORCPT ); Tue, 19 Dec 2017 07:43:16 -0500 Received: by mail-wm0-f67.google.com with SMTP id i11so3417254wmf.4 for ; Tue, 19 Dec 2017 04:43:15 -0800 (PST) Date: Tue, 19 Dec 2017 13:43:11 +0100 (CET) From: Enrico Mioso To: Stanislaw Gruszka cc: linux-wireless@vger.kernel.org, Johannes Berg , Daniel Golle , Arnd Bergmann , John Crispin , nbd@nbd.name Subject: Re: ieee80211 phy0: rt2x00queue_write_tx_frame: Error - Dropping frame due to full tx queue...? In-Reply-To: <20171219122707.GA2672@redhat.com> Message-ID: (sfid-20171219_134319_924713_30C287C9) References: <20171213152017.GA3554@redhat.com> <20171218152142.GA15414@redhat.com> <20171219122707.GA2672@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Sender: linux-wireless-owner@vger.kernel.org List-ID: I am going to test this on a LEDE build. Should I leave the mmio workaround patch applied as per OpenWRT default, or should I leave it off ? I'll leave it off by default. thank you again, Enrico On Tue, 19 Dec 2017, Stanislaw Gruszka wrote: > Date: Tue, 19 Dec 2017 13:27:07 > From: Stanislaw Gruszka > To: Enrico Mioso > Cc: linux-wireless@vger.kernel.org, Johannes Berg , > Daniel Golle , Arnd Bergmann , > John Crispin , nbd@nbd.name > Subject: Re: ieee80211 phy0: rt2x00queue_write_tx_frame: Error - Dropping > frame due to full tx queue...? > > On Mon, Dec 18, 2017 at 04:21:42PM +0100, Stanislaw Gruszka wrote: >> Hi >> >> On Sat, Dec 16, 2017 at 07:33:47PM +0100, Enrico Mioso wrote: >>> I tested the Archer MR200 device removing the patch as you suggested: >>> package/kernel/mac80211/patches/600-23-rt2x00-rt2800mmio-add-a-workaround-for-spurious-TX_F.patch >>> ... the error still appears, but the driver is still working as of now. >>> Here - reporting my dmesg >>> [ 819.060392] ieee80211 phy0: rt2x00queue_write_tx_frame: Error - Dropping frame due to full tx queue 2 >>> [ 819.069900] ieee80211 phy0: rt2x00queue_write_tx_frame: Error - Dropping frame due to full tx queue 2 > > Please test two patches I posted today: > https://marc.info/?l=linux-wireless&m=151368325114059&w=2 > https://marc.info/?l=linux-wireless&m=151368325914062&w=2 > > If they do not work, please try the queue->threshold change. > > Thanks > Stanislaw > > >> diff --git a/drivers/net/wireless/ralink/rt2x00/rt2x00queue.c b/drivers/net/wireless/ralink/rt2x00/rt2x00queue.c >> index a2c1ca5c76d1..9e65b8f285e9 100644 >> --- a/drivers/net/wireless/ralink/rt2x00/rt2x00queue.c >> +++ b/drivers/net/wireless/ralink/rt2x00/rt2x00queue.c >> @@ -1224,7 +1224,7 @@ static void rt2x00queue_init(struct rt2x00_dev *rt2x00dev, >> >> rt2x00dev->ops->queue_init(queue); >> >> - queue->threshold = DIV_ROUND_UP(queue->limit, 10); >> + queue->threshold = DIV_ROUND_UP(queue->limit, 8); >> } >> >> int rt2x00queue_allocate(struct rt2x00_dev *rt2x00dev) >