From patchwork Sat Jul 20 10:25:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 11050835 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id CC05014DB for ; Sat, 20 Jul 2019 10:26:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B54A62898D for ; Sat, 20 Jul 2019 10:26:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 97C902898C; Sat, 20 Jul 2019 10:26:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D920528960 for ; Sat, 20 Jul 2019 10:26:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727851AbfGTK0A (ORCPT ); Sat, 20 Jul 2019 06:26:00 -0400 Received: from paleale.coelho.fi ([176.9.41.70]:59426 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727830AbfGTK0A (ORCPT ); Sat, 20 Jul 2019 06:26:00 -0400 Received: from 91-156-6-193.elisa-laajakaista.fi ([91.156.6.193] helo=redipa.ger.corp.intel.com) by farmhouse.coelho.fi with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.92) (envelope-from ) id 1homYr-0000Hj-HZ; Sat, 20 Jul 2019 13:25:56 +0300 From: Luca Coelho To: kvalo@codeaurora.org Cc: linux-wireless@vger.kernel.org, Luca Coelho Date: Sat, 20 Jul 2019 13:25:29 +0300 Message-Id: <20190720102545.5952-1-luca@coelho.fi> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [PATCH 00/16] iwlwifi: fixes intended for 5.3 2019-07-20 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Luca Coelho This is the second patchset with fixes for v5.3. The changes are: * Fix for an NSSN syncronization issue; * Some fixes in rate-scaling; * Fix for an "unknown command" bug with some FW versions; * A couple of debug infrastructure fixes; * One locking fix with GTK; * Small fix for an error path (the error was ignored due to a type issue); As usual, I'm pushing this to a pending branch, for kbuild bot. I can send you a pull-request for this or I can assign them to you so you can apply them directly to wireless-drivers. Let me know what you prefer. Cheers, Luca. Colin Ian King (1): iwlwifi: mvm: fix comparison of u32 variable with less than zero Emmanuel Grumbach (5): iwlwifi: mvm: prepare the ground for more RSS notifications iwlwifi: mvm: add a new RSS sync notification for NSSN sync iwlwiif: mvm: refactor iwl_mvm_notify_rx_queue iwlwifi: mvm: add a loose synchronization of the NSSN across Rx queues iwlwifi: mvm: fix frame drop from the reordering buffer Gregory Greenman (4): iwlwifi: mvm: add a wrapper around rs_tx_status to handle locks iwlwifi: mvm: send LQ command always ASYNC iwlwifi: mvm: replace RS mutex with a spin_lock iwlwifi: mvm: fix possible out-of-bounds read when accessing lq_info Ihab Zhaika (1): iwlwifi: add 3 new IDs for the 9000 series (iwl9260_2ac_160_cfg) Johannes Berg (1): iwlwifi: fix locking in delayed GTK setting Luca Coelho (2): iwlwifi: mvm: don't send GEO_TX_POWER_LIMIT on version < 41 iwlwifi: mvm: fix version check for GEO_TX_POWER_LIMIT support Shahar S Matityahu (2): iwlwifi: dbg_ini: move iwl_dbg_tlv_load_bin out of debug override ifdef iwlwifi: dbg_ini: move iwl_dbg_tlv_free outside of debugfs ifdef .../net/wireless/intel/iwlwifi/fw/api/rx.h | 3 +- drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 4 +- drivers/net/wireless/intel/iwlwifi/mvm/fw.c | 27 +- .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 44 +- drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 8 +- drivers/net/wireless/intel/iwlwifi/mvm/nvm.c | 2 +- drivers/net/wireless/intel/iwlwifi/mvm/ops.c | 4 +- drivers/net/wireless/intel/iwlwifi/mvm/rs.c | 559 +++++++++--------- drivers/net/wireless/intel/iwlwifi/mvm/rs.h | 6 +- drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c | 185 ++++-- drivers/net/wireless/intel/iwlwifi/mvm/sta.c | 10 +- drivers/net/wireless/intel/iwlwifi/mvm/sta.h | 13 +- .../net/wireless/intel/iwlwifi/mvm/utils.c | 4 +- drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 3 + 14 files changed, 496 insertions(+), 376 deletions(-)