linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/20] iwlwifi: updates intended for v5.1 2019-02-15
@ 2019-02-15 11:49 Luca Coelho
  2019-02-15 11:49 ` [PATCH 01/20] iwlwifi: pcie: allocate rb_stts's for all queues in one place Luca Coelho
                   ` (20 more replies)
  0 siblings, 21 replies; 24+ messages in thread
From: Luca Coelho @ 2019-02-15 11:49 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, Luca Coelho

From: Luca Coelho <luciano.coelho@intel.com>

Hi,

Here's the nineth set of patches intended for v5.1.  It's the usual
development, new features, cleanups and bugfixes.

The changes are:

* Some small fixes in the new debugging infrastructure;
* Greg's debugfs clean-ups;
* Some janitorial patches from the community;
* Fix to one false-positive compiler warning;
* NSS suuport;
* Other general bugfixes and cleanups;

As usual, I'm pushing this to a pending branch, for kbuild bot, and
will send a pull-request later.

Please review.

Cheers,
Luca.


Andrei Otcheretianski (1):
  iwlwifi: mvm: Set TX_CMD_FLG_PROT_REQUIRE correctly

Arnd Bergmann (1):
  iwlwifi: fix false-positive maybe-uninitialized warning

Greg Kroah-Hartman (3):
  iwlwifi: dvm: no need to check return value of debugfs_create
    functions
  iwlwifi: fw: no need to check return value of debugfs_create functions
  iwlwifi: iwl-drv: no need to check return value of debugfs_create
    functions

Gustavo A. R. Silva (2):
  iwlwifi: eeprom-parse: use struct_size() in kzalloc()
  iwlwifi: nvm-parse: use struct_size() in kzalloc()

Ilan Peer (2):
  iwlwifi: mvm: Don't request HW restart if already requested
  iwlwifi: mvm: Allow retries for probe responses

Johannes Berg (4):
  iwlwifi: mvm: fix error path in iwl_mvm_mac_setup_register()
  iwlwifi: nvm-parse: advertise IEEE80211_VHT_EXT_NSS_BW_CAPABLE in VHT
  iwlwifi: mvm: remove IWL_MVM_INIT_STATUS_REG_HW_INIT_COMPLETE
  iwlwifi: mvm: implement VHT extended NSS support in rs.c

Liad Kaufman (1):
  iwlwifi: mvm: add read debugfs for he_sniffer_params

Sara Sharon (3):
  iwlwifi: mvm: reject new beacons when in inject mode
  iwlwifi: mvm: support non-transmitting AP
  iwlwifi: mvm: add some debug data to TX path

Shahar S Matityahu (2):
  iwlwifi: remove redundant condition from prior alive dump flow
  iwlwifi: dbg_ini: fix infinite time ignore consecutive dumps

Triebitz (1):
  iwlwifi: pcie: allocate rb_stts's for all queues in one place

 drivers/net/wireless/intel/iwlwifi/dvm/agn.h  |  9 +--
 .../net/wireless/intel/iwlwifi/dvm/debugfs.c  | 44 ++-----------
 drivers/net/wireless/intel/iwlwifi/dvm/main.c |  5 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 18 -----
 .../net/wireless/intel/iwlwifi/fw/debugfs.c   | 11 +---
 .../net/wireless/intel/iwlwifi/fw/debugfs.h   |  9 +--
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  | 22 -------
 .../wireless/intel/iwlwifi/iwl-eeprom-parse.c |  3 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    | 25 ++++---
 .../wireless/intel/iwlwifi/mvm/constants.h    |  1 +
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  | 32 +++++++--
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  8 +--
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |  8 +++
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 18 +++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  3 +-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  8 +--
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c   | 23 ++++++-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   | 27 +++++---
 .../wireless/intel/iwlwifi/pcie/internal.h    |  9 ++-
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  | 66 ++++++++++++++-----
 20 files changed, 183 insertions(+), 166 deletions(-)

-- 
2.20.1


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2019-02-20 12:43 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-15 11:49 [PATCH 00/20] iwlwifi: updates intended for v5.1 2019-02-15 Luca Coelho
2019-02-15 11:49 ` [PATCH 01/20] iwlwifi: pcie: allocate rb_stts's for all queues in one place Luca Coelho
2019-02-15 11:49 ` [PATCH 02/20] iwlwifi: mvm: Don't request HW restart if already requested Luca Coelho
2019-02-15 11:49 ` [PATCH 03/20] iwlwifi: fix false-positive maybe-uninitialized warning Luca Coelho
2019-02-15 11:49 ` [PATCH 04/20] iwlwifi: eeprom-parse: use struct_size() in kzalloc() Luca Coelho
2019-02-15 11:49 ` [PATCH 05/20] iwlwifi: nvm-parse: " Luca Coelho
2019-02-15 11:49 ` [PATCH 06/20] iwlwifi: mvm: fix error path in iwl_mvm_mac_setup_register() Luca Coelho
2019-02-15 11:49 ` [PATCH 07/20] iwlwifi: nvm-parse: advertise IEEE80211_VHT_EXT_NSS_BW_CAPABLE in VHT Luca Coelho
2019-02-15 11:49 ` [PATCH 08/20] iwlwifi: dvm: no need to check return value of debugfs_create functions Luca Coelho
2019-02-15 11:49 ` [PATCH 09/20] iwlwifi: fw: " Luca Coelho
2019-02-15 11:49 ` [PATCH 10/20] iwlwifi: iwl-drv: " Luca Coelho
2019-02-15 11:49 ` [PATCH 11/20] iwlwifi: mvm: reject new beacons when in inject mode Luca Coelho
2019-02-20  8:54   ` [PATCH v2 " Luca Coelho
2019-02-15 11:49 ` [PATCH 12/20] iwlwifi: mvm: add read debugfs for he_sniffer_params Luca Coelho
2019-02-15 11:49 ` [PATCH 13/20] iwlwifi: mvm: support non-transmitting AP Luca Coelho
2019-02-15 11:49 ` [PATCH 14/20] iwlwifi: mvm: Set TX_CMD_FLG_PROT_REQUIRE correctly Luca Coelho
2019-02-15 11:49 ` [PATCH 15/20] iwlwifi: mvm: remove IWL_MVM_INIT_STATUS_REG_HW_INIT_COMPLETE Luca Coelho
2019-02-15 11:49 ` [PATCH 16/20] iwlwifi: mvm: Allow retries for probe responses Luca Coelho
2019-02-15 11:49 ` [PATCH 17/20] iwlwifi: mvm: implement VHT extended NSS support in rs.c Luca Coelho
2019-02-15 11:49 ` [PATCH 18/20] iwlwifi: remove redundant condition from prior alive dump flow Luca Coelho
2019-02-15 11:49 ` [PATCH 19/20] iwlwifi: mvm: add some debug data to TX path Luca Coelho
2019-02-15 11:49 ` [PATCH 20/20] iwlwifi: dbg_ini: fix infinite time ignore consecutive dumps Luca Coelho
2019-02-20 12:35 ` [PATCH 00/20] iwlwifi: updates intended for v5.1 2019-02-15 Kalle Valo
2019-02-20 12:43   ` Luca Coelho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).