[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1408351816.29649.8.camel@dubbel>
Date: Mon, 18 Aug 2014 11:50:16 +0300
From: Luca Coelho <luca@...lho.fi>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Johannes Berg <johannes.berg@...el.com>,
Emmanuel Grumbach <emmanuel.grumbach@...el.com>,
Michal Kazior <michal.kazior@...to.com>,
Intel Linux Wireless <ilw@...ux.intel.com>,
"John W. Linville" <linville@...driver.com>,
Linux Wireless List <linux-wireless@...r.kernel.org>,
Network Development <netdev@...r.kernel.org>
Subject: Re: More wireless problems..
Hi Linus,
On Sun, 2014-08-17 at 23:37 -0500, Linus Torvalds wrote:
> On Sun, Aug 17, 2014 at 11:01 PM, Linus Torvalds
> <torvalds@...ux-foundation.org> wrote:
> >
> > BUG: unable to handle kernel NULL pointer dereference at 0000000000000020
> > IP: ieee80211_vif_use_reserved_switch+0x71c/0xb00 [mac80211]
>
> Looking at the Code: line and the code generation for that function,
> this *looks* to be this code:
>
> list_del(&sdata->reserved_chanctx_list);
> list_move(&sdata->assigned_chanctx_list,
> &new_ctx->assigned_vifs);
> sdata->reserved_chanctx = NULL;
>
> in ieee80211_vif_use_reserved_switch(), where "new_ctx" is NULL, so
> the "list_move()" ends up oopsing. But maybe I screwed up the
> analysis, I don't know the code.
>
> Looks like that is all-new code introduced by commit 5bcae31d9cb1
> ("mac80211: implement multi-vif in-place reservations")
>
> And doesn't look at all IWL-specific. Adding Michal Kazior to the list
> of people.
Unfortunately I don't think channel switch on the client side has been
tested very thoroughly yet, from the iwlwifi point of view, we're still
fine-tuning things in the firmware configuration. So I'd rather disable
channel-switch entirely for iwlwifi.
Probably better to disable it in mac80211, since this oops will probably
happen with other drivers too, since doesn't seem to be iwlwifi related.
I'll sent a patch soon. Meanwhile, you can apply this directly, to make
the problem go away:
diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index e0ab432..4b8eee8 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -758,6 +758,12 @@ int ieee80211_register_hw(struct ieee80211_hw *hw)
netdev_features_t feature_whitelist;
struct cfg80211_chan_def dflt_chandef = {};
+ /* The CSA client code is not very stable yet and seems to be
+ * causing trouble. Disable it for all drivers until
+ * everything has been fixed and tested properly.
+ */
+ hw->flags &= ~IEEE80211_HW_CHANCTX_STA_CSA;
+
if (hw->flags & IEEE80211_HW_QUEUE_CONTROL &&
(local->hw.offchannel_tx_hw_queue ==
IEEE80211_INVAL_HW_QUEUE ||
local->hw.offchannel_tx_hw_queue >= local->hw.queues))
--
Cheers,
Luca.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists