This is a note to let you know that I've just added the patch titled iwlwifi: dvm: don't send BT_CONFIG on devices w/o Bluetooth to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: iwlwifi-dvm-don-t-send-bt_config-on-devices-w-o-bluetooth.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 707aee401d2467baa785a697f40a6e2d9ee79ad5 Mon Sep 17 00:00:00 2001 From: Johannes Berg <johannes.berg@xxxxxxxxx> Date: Fri, 3 May 2013 18:58:16 +0200 Subject: iwlwifi: dvm: don't send BT_CONFIG on devices w/o Bluetooth From: Johannes Berg <johannes.berg@xxxxxxxxx> commit 707aee401d2467baa785a697f40a6e2d9ee79ad5 upstream. The BT_CONFIG command that is sent to the device during startup will enable BT coex unless the module parameter turns it off, but on devices without Bluetooth this may cause problems, as reported in Redhat BZ 885407. Fix this by sending the BT_CONFIG command only when the device has Bluetooth. Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@xxxxxxxxx> Signed-off-by: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/wireless/iwlwifi/dvm/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/wireless/iwlwifi/dvm/main.c +++ b/drivers/net/wireless/iwlwifi/dvm/main.c @@ -758,7 +758,7 @@ int iwl_alive_start(struct iwl_priv *pri BT_COEX_PRIO_TBL_EVT_INIT_CALIB2); if (ret) return ret; - } else { + } else if (priv->cfg->bt_params) { /* * default is 2-wire BT coexexistence support */ Patches currently in stable-queue which might be from johannes.berg@xxxxxxxxx are queue-3.10/iwlwifi-add-dell-sku-for-5150-hmc.patch queue-3.10/iwlwifi-dvm-don-t-send-bt_config-on-devices-w-o-bluetooth.patch queue-3.10/iwlwifi-mvm-fix-flushing-not-started-aggregation-sessions.patch queue-3.10/iwlwifi-mvm-fix-bug-in-scan-ssid.patch queue-3.10/iwlwifi-mvm-refuse-connection-to-aps-with-bi-16.patch queue-3.10/mac80211-minstrel-fix-null-pointer-dereference-issue.patch queue-3.10/iwlwifi-mvm-set-ssid-bits-for-passive-channels.patch queue-3.10/nl80211-fix-mgmt-tx-status-and-testmode-reporting-for-netns.patch queue-3.10/mac80211-fix-monitor-interface-suspend-crash-regression.patch queue-3.10/mac80211-fix-duplicate-retransmission-detection.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html