linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] iwlwifi: updates intended for v5.1 2019-01-25
@ 2019-01-25 20:12 Luca Coelho
  2019-01-25 20:12 ` [PATCH 01/17] iwlwifi: pcie: fix the use of a wrong define Luca Coelho
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Luca Coelho @ 2019-01-25 20:12 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, Luca Coelho

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

Hi,

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

The changes are:

* A bunch of fixes for issues found with static analyzers;
* Relicense the pcie submodule to dual GPL/BSD;
* Some more cleanups for the device configuration refactoring;
* Other cleanups 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.


Johannes Berg (5):
  iwlwifi: mvm: fix %16 to %016 print format
  iwlwifi: mvm: read IWL_RX_MPDU_PHY_SHORT_PREAMBLE only for CCK
  iwlwifi: pcie: align licensing to dual GPL/BSD
  iwlwifi: mvm: clean up LDBG config command usage
  iwlwifi: move iwl_enable_{rx,tx}_ampdu to iwl-modparams.h

Liad Kaufman (1):
  iwlwifi: mvm: remove sta key on wep ap

Luca Coelho (5):
  iwlwifi: mvm: save and export regdb blob from the NVM
  iwlwifi: make iwl_fw_dbg_start_stop_hcmd() inline
  iwlwifi: mvm: pre-initialize alive_data in wait_alive()
  iwlwifi: calculate pointers from out_cmd instead of out_cmd->hdr
  iwlwifi: make sure cur_fw_img is valid before accessing img

Sara Sharon (3):
  iwlwifi: pcie: fix the use of a wrong define
  iwlwifi: pcie: add prints to track virtual ID
  iwlwifi: mvm: add an option to dereference vif by id

Shahar S Matityahu (1):
  iwlwifi: monitor dumping flow cleanup

Shaul Triebitz (2):
  iwlwifi: iwlmvm: ignore HE PPDU type regarding EOF
  iwlwifi: iwlmvm: in monitor NDP notif take the NSS from rx_vec

 .../net/wireless/intel/iwlwifi/dvm/mac80211.c |  23 +---
 .../net/wireless/intel/iwlwifi/fw/api/debug.h |  33 +++---
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |   5 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  12 +--
 drivers/net/wireless/intel/iwlwifi/fw/dbg.h   |  17 +--
 drivers/net/wireless/intel/iwlwifi/iwl-io.c   |  41 ++++++-
 drivers/net/wireless/intel/iwlwifi/iwl-io.h   |  38 ++++++-
 .../wireless/intel/iwlwifi/iwl-modparams.h    |  18 ++++
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  |  46 +-------
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |   2 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c | 101 ++++++++----------
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |  36 +++----
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  15 +++
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c  |   5 +
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |   3 +
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  38 ++++---
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  24 ++---
 .../wireless/intel/iwlwifi/pcie/internal.h    |  44 +++++++-
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  52 ++++++++-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  18 +---
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |   6 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |  44 +++++++-
 22 files changed, 380 insertions(+), 241 deletions(-)

-- 
2.20.1


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

end of thread, other threads:[~2019-01-28  9:04 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-25 20:12 [PATCH 00/17] iwlwifi: updates intended for v5.1 2019-01-25 Luca Coelho
2019-01-25 20:12 ` [PATCH 01/17] iwlwifi: pcie: fix the use of a wrong define Luca Coelho
2019-01-25 20:12 ` [PATCH 02/17] iwlwifi: iwlmvm: ignore HE PPDU type regarding EOF Luca Coelho
2019-01-25 20:12 ` [PATCH 03/17] iwlwifi: iwlmvm: in monitor NDP notif take the NSS from rx_vec Luca Coelho
2019-01-25 20:12 ` [PATCH 04/17] iwlwifi: pcie: add prints to track virtual ID Luca Coelho
2019-01-25 20:12 ` [PATCH 05/17] iwlwifi: mvm: fix %16 to %016 print format Luca Coelho
2019-01-25 20:12 ` [PATCH 06/17] iwlwifi: mvm: read IWL_RX_MPDU_PHY_SHORT_PREAMBLE only for CCK Luca Coelho
2019-01-25 20:12 ` [PATCH 07/17] iwlwifi: pcie: align licensing to dual GPL/BSD Luca Coelho
2019-01-25 20:12 ` [PATCH 08/17] iwlwifi: mvm: clean up LDBG config command usage Luca Coelho
2019-01-25 20:12 ` [PATCH 09/17] iwlwifi: mvm: save and export regdb blob from the NVM Luca Coelho
2019-01-25 20:12 ` [PATCH 10/17] iwlwifi: make iwl_fw_dbg_start_stop_hcmd() inline Luca Coelho
2019-01-25 20:12 ` [PATCH 11/17] iwlwifi: move iwl_enable_{rx,tx}_ampdu to iwl-modparams.h Luca Coelho
2019-01-25 20:13 ` [PATCH 12/17] iwlwifi: mvm: pre-initialize alive_data in wait_alive() Luca Coelho
2019-01-25 20:13 ` [PATCH 13/17] iwlwifi: calculate pointers from out_cmd instead of out_cmd->hdr Luca Coelho
2019-01-25 20:13 ` [PATCH 14/17] iwlwifi: make sure cur_fw_img is valid before accessing img Luca Coelho
2019-01-25 20:13 ` [PATCH 15/17] iwlwifi: mvm: remove sta key on wep ap Luca Coelho
2019-01-25 20:13 ` [PATCH 16/17] iwlwifi: monitor dumping flow cleanup Luca Coelho
2019-01-25 20:13 ` [PATCH 17/17] iwlwifi: mvm: add an option to dereference vif by id Luca Coelho
2019-01-28  9:00   ` Kalle Valo
2019-01-28  9:04     ` 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).