Message ID | CAGXE3d9p7zkwfNJBJvPMc8XaKnb009pHpCXYweDjK4tv6PCkuA@mail.gmail.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On 06/05/2013 04:24 PM, Helmut Schaa wrote: > On Tue, Jun 4, 2013 at 8:37 PM, Oleksij Rempel <linux@rempel-privat.de> wrote: >> This error seems to be really rare, and we do not know real couse of it. >> But, in any case, we should check size of head before reducing it. > > Mind to try the (completely untested) patch against wireless-testing instead? > Helmut I will do, however I'm not in range of that USB wireless adapter for about 1,5 weeks. Marc
Am 05.06.2013 16:26, schrieb Marc Kleine-Budde: > On 06/05/2013 04:24 PM, Helmut Schaa wrote: >> On Tue, Jun 4, 2013 at 8:37 PM, Oleksij Rempel <linux@rempel-privat.de> wrote: >>> This error seems to be really rare, and we do not know real couse of it. >>> But, in any case, we should check size of head before reducing it. >> >> Mind to try the (completely untested) patch against wireless-testing instead? >> Helmut > > I will do, however I'm not in range of that USB wireless adapter for > about 1,5 weeks. Helmut, thank you for patch! i'll do regression test, but not week long test. So i probably won't reproduce this issue.
Am 05.06.2013 16:46, schrieb Oleksij Rempel: > Am 05.06.2013 16:26, schrieb Marc Kleine-Budde: >> On 06/05/2013 04:24 PM, Helmut Schaa wrote: >>> On Tue, Jun 4, 2013 at 8:37 PM, Oleksij Rempel >>> <linux@rempel-privat.de> wrote: >>>> This error seems to be really rare, and we do not know real couse of >>>> it. >>>> But, in any case, we should check size of head before reducing it. >>> >>> Mind to try the (completely untested) patch against wireless-testing >>> instead? >>> Helmut >> >> I will do, however I'm not in range of that USB wireless adapter for >> about 1,5 weeks. > > Helmut, thank you for patch! > > i'll do regression test, but not week long test. So i probably won't > reproduce this issue. I was running two stream netperf test for 2 hours without visible regressions.
On Wed, Jun 5, 2013 at 7:03 PM, Oleksij Rempel <linux@rempel-privat.de> wrote: > I was running two stream netperf test for 2 hours without visible > regressions. With or without your pskb_expand_head patch applied? Thanks, Helmut -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Am 06.06.2013 13:48, schrieb Helmut Schaa: > On Wed, Jun 5, 2013 at 7:03 PM, Oleksij Rempel <linux@rempel-privat.de> wrote: >> I was running two stream netperf test for 2 hours without visible >> regressions. > > With or without your pskb_expand_head patch applied? > > Thanks, > Helmut > whithout my patch, on to of wireless-testing master git. But i didn't had this problem before. So, may be this scenario was not used by me. Shouldn't we actually have this check from my patch, to avoid other oopses?
Hello, On 06/05/2013 04:24 PM, Helmut Schaa wrote: > On Tue, Jun 4, 2013 at 8:37 PM, Oleksij Rempel <linux@rempel-privat.de> wrote: >> This error seems to be really rare, and we do not know real couse of it. >> But, in any case, we should check size of head before reducing it. > > Mind to try the (completely untested) patch against wireless-testing instead? > Helmut I'm running a kernel with a slightly modified version of that patch for 4 weeks without problems so far. I'll send a mail with that patch. Marc
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c b/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c index e602c95..666cfb6 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c @@ -448,6 +448,8 @@ static void ath9k_htc_tx_process(struct ath9k_htc_priv *priv, struct ieee80211_conf *cur_conf = &priv->hw->conf; bool txok; int slot; + struct ieee80211_hdr *hdr; + int padpos, padsize; slot = strip_drv_header(priv, skb);