All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] iwlwifi: updates intended for v5.5 2019-10-12-2
@ 2019-10-12 16:29 Luca Coelho
  2019-10-12 16:29 ` [PATCH 01/13] iwlwifi: mvm: consider ieee80211 station max amsdu value Luca Coelho
                   ` (12 more replies)
  0 siblings, 13 replies; 16+ messages in thread
From: Luca Coelho @ 2019-10-12 16:29 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* Some udpdates to FW API commands;
* Fix max amsdu value calculation;
* Small updates in the debugging infra;
* Some new helper functions;
* A few clean-ups;
* Other small fixes and improvements;

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 (1):
  iwlwifi: mvm: use the new session protection command

Haim Dreyfuss (1):
  iwlwifi: mvm: add support for new version for D0I3_END_CMD

Johannes Berg (2):
  iwlwifi: mvm: remove leftover rs_remove_sta_debugfs() prototype
  iwlwifi: dbg: prefer struct copy to memcpy()

Lior Cohen (1):
  iwlwifi: mvm: add notification for missed VAP

Mordechay Goodstein (1):
  iwlwifi: mvm: consider ieee80211 station max amsdu value

Shahar S Matityahu (2):
  iwlwifi: dbg_ini: add user trigger support
  iwlwifi: dbg_ini: use vzalloc to allocate dumping memory regions

Tova Mussai (4):
  iwlwifi: mvm: create function to convert nl80211 band to phy band
  iwlwifi: mvm: Invert the condition for OFDM rate
  iwlwifi: nvm: create function to convert channel index to nl80211_band
  iwlwifi: rx: use new api to get band from rx mpdu

YueHaibing (1):
  iwlwifi: mvm: fix old-style declaration

 .../net/wireless/intel/iwlwifi/fw/api/d3.h    |   8 +
 .../wireless/intel/iwlwifi/fw/api/mac-cfg.h   |  33 ++-
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |   5 +
 .../intel/iwlwifi/fw/api/time-event.h         |  80 +++++++-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  15 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   3 +
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |  26 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |  29 ++-
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  |   3 +
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |  30 ++-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |  40 +++-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  34 +++-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  31 +++
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    |   8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rs.h   |   4 -
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  23 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c |  20 +-
 .../wireless/intel/iwlwifi/mvm/time-event.c   | 189 +++++++++++++++++-
 .../wireless/intel/iwlwifi/mvm/time-event.h   |  21 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   |  14 +-
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |   2 +-
 21 files changed, 552 insertions(+), 66 deletions(-)

-- 
2.23.0


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

end of thread, other threads:[~2019-10-18  8:19 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-12 16:29 [PATCH 00/13] iwlwifi: updates intended for v5.5 2019-10-12-2 Luca Coelho
2019-10-12 16:29 ` [PATCH 01/13] iwlwifi: mvm: consider ieee80211 station max amsdu value Luca Coelho
2019-10-12 16:29 ` [PATCH 02/13] iwlwifi: mvm: add support for new version for D0I3_END_CMD Luca Coelho
2019-10-12 16:29 ` [PATCH 03/13] iwlwifi: mvm: remove leftover rs_remove_sta_debugfs() prototype Luca Coelho
2019-10-12 16:29 ` [PATCH 04/13] iwlwifi: mvm: use the new session protection command Luca Coelho
2019-10-12 16:29 ` [PATCH 05/13] iwlwifi: dbg: prefer struct copy to memcpy() Luca Coelho
2019-10-16  7:11   ` Kalle Valo
2019-10-18  8:19     ` Luca Coelho
2019-10-12 16:29 ` [PATCH 06/13] iwlwifi: mvm: fix old-style declaration Luca Coelho
2019-10-12 16:29 ` [PATCH 07/13] iwlwifi: mvm: add notification for missed VAP Luca Coelho
2019-10-12 16:29 ` [PATCH 08/13] iwlwifi: dbg_ini: add user trigger support Luca Coelho
2019-10-12 16:29 ` [PATCH 09/13] iwlwifi: dbg_ini: use vzalloc to allocate dumping memory regions Luca Coelho
2019-10-12 16:29 ` [PATCH 10/13] iwlwifi: mvm: create function to convert nl80211 band to phy band Luca Coelho
2019-10-12 16:29 ` [PATCH 11/13] iwlwifi: mvm: Invert the condition for OFDM rate Luca Coelho
2019-10-12 16:29 ` [PATCH 12/13] iwlwifi: nvm: create function to convert channel index to nl80211_band Luca Coelho
2019-10-12 16:29 ` [PATCH 13/13] iwlwifi: rx: use new api to get band from rx mpdu Luca Coelho

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.