From patchwork Sun Dec 6 08:21:47 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 339504 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 06117C4361B for ; Sun, 6 Dec 2020 08:23:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 99B0922D2A for ; Sun, 6 Dec 2020 08:23:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725867AbgLFIWt (ORCPT ); Sun, 6 Dec 2020 03:22:49 -0500 Received: from paleale.coelho.fi ([176.9.41.70]:34626 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725767AbgLFIWs (ORCPT ); Sun, 6 Dec 2020 03:22:48 -0500 Received: from 91-156-6-193.elisa-laajakaista.fi ([91.156.6.193] helo=localhost.localdomain) by farmhouse.coelho.fi with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1klpIv-003A2r-51; Sun, 06 Dec 2020 10:22:01 +0200 From: Luca Coelho To: kvalo@codeaurora.org Cc: linux-wireless@vger.kernel.org Date: Sun, 6 Dec 2020 10:21:47 +0200 Message-Id: <20201206082159.440198-1-luca@coelho.fi> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Subject: [PATCH 00/12] iwlwifi: updates intended for v5.11 2020-12-06 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org From: Luca Coelho Hi, Here's the third set of patches intended for v5.11. It's the usual development, new features, cleanups and bugfixes. The changes are: * Improve validation of firmware notifications; * Debugging improvements and fixes; * Replace terminology with inclusive words determined by the guidelines; * Some other clean-ups and small fixes. As usual, I'm pushing this to a pending branch, for kbuild bot, and will send a pull-request later. Please review. Cheers, Luca. Emmanuel Grumbach (4): iwlwifi: mvm: remove the read_nvm from iwl_run_unified_mvm_ucode iwlwifi: follow the new inclusive terminology iwlwifi: sort out the NVM offsets iwlwifi: remove sw_csum_tx Johannes Berg (4): iwlwifi: validate MPDU length against notification length iwlwifi: pcie: validate RX descriptor length iwlwifi: mvm: clear up iwl_mvm_notify_rx_queue() argument type iwlwifi: mvm: move iwl_mvm_stop_device() out of line Mordechay Goodstein (4): iwlwifi: enable sending/setting debug host event iwlwifi: avoid endless HW errors at assert time iwlwifi: fix typo in comment iwlwifi: mvm: iterate active stations when updating statistics drivers/net/wireless/intel/iwlwifi/dvm/rx.c | 10 ++- drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 20 ++--- drivers/net/wireless/intel/iwlwifi/fw/acpi.h | 10 +-- .../wireless/intel/iwlwifi/fw/api/commands.h | 2 +- .../net/wireless/intel/iwlwifi/fw/api/debug.h | 14 ++++ .../wireless/intel/iwlwifi/fw/api/nvm-reg.h | 8 +- .../net/wireless/intel/iwlwifi/fw/api/scan.h | 12 +-- .../net/wireless/intel/iwlwifi/fw/api/stats.h | 2 +- .../net/wireless/intel/iwlwifi/fw/debugfs.c | 29 +++++++ drivers/net/wireless/intel/iwlwifi/fw/file.h | 2 +- .../net/wireless/intel/iwlwifi/iwl-config.h | 2 +- .../wireless/intel/iwlwifi/iwl-nvm-parse.c | 4 +- .../net/wireless/intel/iwlwifi/iwl-trans.h | 2 - .../wireless/intel/iwlwifi/mvm/constants.h | 1 - drivers/net/wireless/intel/iwlwifi/mvm/fw.c | 16 ++-- .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c | 10 +-- .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 22 ++--- drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 14 +--- drivers/net/wireless/intel/iwlwifi/mvm/ops.c | 23 ++++- drivers/net/wireless/intel/iwlwifi/mvm/rx.c | 44 +++++----- drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c | 19 +++-- drivers/net/wireless/intel/iwlwifi/mvm/scan.c | 24 +++--- drivers/net/wireless/intel/iwlwifi/mvm/tx.c | 7 +- .../wireless/intel/iwlwifi/pcie/internal.h | 3 - drivers/net/wireless/intel/iwlwifi/pcie/rx.c | 8 +- .../net/wireless/intel/iwlwifi/pcie/trans.c | 1 - drivers/net/wireless/intel/iwlwifi/pcie/tx.c | 83 +------------------ 27 files changed, 184 insertions(+), 208 deletions(-)