All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kalle Valo <kvalo@codeaurora.org>
To: netdev@vger.kernel.org
Cc: linux-wireless@vger.kernel.org
Subject: pull-request: wireless-drivers-2020-01-23
Date: Thu, 23 Jan 2020 11:09:49 +0000 (UTC)	[thread overview]
Message-ID: <20200123110949.31AF8C433CB@smtp.codeaurora.org> (raw)

Hi,

here's a pull request to net tree, more info below. Please let me know if there
are any problems.

Kalle

The following changes since commit ddd9b5e3e765d8ed5a35786a6cb00111713fe161:

  net-sysfs: Call dev_hold always in rx_queue_add_kobject (2019-12-17 22:57:11 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git tags/wireless-drivers-2020-01-23

for you to fetch changes up to d829229e35f302fd49c052b5c5906c90ecf9911d:

  iwlwifi: mvm: don't send the IWL_MVM_RXQ_NSSN_SYNC notif to Rx queues (2020-01-22 19:13:28 +0200)

----------------------------------------------------------------
wireless-drivers fixes for v5.5

Second set of fixes for v5.5. There are quite a few patches,
especially on iwlwifi, due to me being on a long break. Libertas also
has a security fix and mt76 a build fix.

iwlwifi

* don't send the PPAG command when PPAG is disabled, since it can cause problems

* a few fixes for a HW bug

* a fix for RS offload;

* a fix for 3168 devices where the NVM tables where the wrong tables were being read

* fix a couple of potential memory leaks in TXQ code

* disable L0S states in all hardware since our hardware doesn't
 officially support them anymore (and older versions of the hardware
 had instability in these states)

* remove lar_disable parameter since it has been causing issues for
  some people who erroneously disable it

* force the debug monitor HW to stop also when debug is disabled,
  since it sometimes stays on and prevents low system power states

* don't send IWL_MVM_RXQ_NSSN_SYNC notification due to DMA problems

libertas

* fix two buffer overflows

mt76

* build fix related to CONFIG_MT76_LEDS

* fix off by one in bitrates handling

----------------------------------------------------------------
Arnd Bergmann (1):
      mt76: fix LED link time failure

Dan Carpenter (1):
      mt76: Off by one in mt76_calc_rx_airtime()

Emmanuel Grumbach (1):
      iwlwifi: mvm: don't send the IWL_MVM_RXQ_NSSN_SYNC notif to Rx queues

Gil Adam (1):
      iwlwifi: don't send PPAG command if disabled

Haim Dreyfuss (1):
      iwlwifi: Don't ignore the cap field upon mcc update

Johannes Berg (8):
      iwlwifi: pcie: move page tracking into get_page_hdr()
      iwlwifi: pcie: work around DMA hardware bug
      iwlwifi: pcie: detect the DMA bug and warn if it happens
      iwlwifi: pcie: allocate smaller dev_cmd for TX headers
      iwlwifi: mvm: report TX rate to mac80211 directly for RS offload
      iwlwifi: pcie: extend hardware workaround to context-info
      iwlwifi: mvm: fix SKB leak on invalid queue
      iwlwifi: mvm: fix potential SKB leak on TXQ TX

Kalle Valo (1):
      Merge tag 'iwlwifi-for-kalle-2020-01-11' of git://git.kernel.org/.../iwlwifi/iwlwifi-fixes

Luca Coelho (6):
      iwlwifi: fix TLV fragment allocation loop
      iwlwifi: mvm: fix NVM check for 3168 devices
      iwlwifi: pcie: rename L0S_ENABLED bit to L0S_DISABLED
      iwlwifi: pcie: always disable L0S states
      iwlwifi: remove lar_disable module parameter
      iwlwifi: fw: make pos static in iwl_sar_get_ewrd_table() loop

Mehmet Akif Tasova (1):
      Revert "iwlwifi: mvm: fix scan config command size"

Shahar S Matityahu (1):
      iwlwifi: dbg: force stop the debug monitor HW

Stanislaw Gruszka (1):
      MAINTAINERS: change Gruszka's email address

Wen Huang (1):
      libertas: Fix two buffer overflows at parsing bss descriptor

 MAINTAINERS                                        |   4 +-
 drivers/net/wireless/intel/iwlwifi/dvm/tx.c        |   3 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c       |  10 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c        |   7 +-
 drivers/net/wireless/intel/iwlwifi/iwl-csr.h       |   2 +-
 drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c   |   9 +-
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c       |   3 -
 drivers/net/wireless/intel/iwlwifi/iwl-modparams.h |   2 -
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c |  61 +++++-
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.h |   9 +-
 drivers/net/wireless/intel/iwlwifi/iwl-trans.c     |  10 +-
 drivers/net/wireless/intel/iwlwifi/iwl-trans.h     |  26 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/constants.h |   1 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c        |   8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c  | 157 ++++++++++++++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h       |   7 +-
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c       |  12 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c      |  19 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c      |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c        |  21 +--
 .../net/wireless/intel/iwlwifi/pcie/ctxt-info.c    |  45 ++++-
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h |  19 +-
 drivers/net/wireless/intel/iwlwifi/pcie/trans.c    |  47 +++--
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c  | 208 +++++++++++++++++----
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c       |  68 ++++---
 drivers/net/wireless/marvell/libertas/cfg.c        |  16 +-
 drivers/net/wireless/mediatek/mt76/airtime.c       |   2 +-
 drivers/net/wireless/mediatek/mt76/mac80211.c      |   3 +-
 28 files changed, 596 insertions(+), 185 deletions(-)

                 reply	other threads:[~2020-01-23 11:09 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200123110949.31AF8C433CB@smtp.codeaurora.org \
    --to=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.