linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/16] iwlwifi: updates intended for v4.21 2019-01-21
@ 2019-01-21  7:50 Luca Coelho
  2019-01-21  7:50 ` [PATCH 01/16] iwlwifi: mvm: support mac80211 AMSDU Luca Coelho
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: Luca Coelho @ 2019-01-21  7:50 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless, Luca Coelho

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

Hi,

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

The changes are:

* Some updates in the documentation;
* A bunch of fixes for issues found with static analyzers;
* A couple of janitorial fixes from the community;
* Some fixes in P2P;
* Support for mac80211 AMSDU handling;
* 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.


Colin Ian King (1):
  iwlwifi: fix spelling mistake "registrating" -> "registering"

Ilan Peer (3):
  iwlwifi: mvm: Flush transmit queues on P2P Device ROC done
  iwlwifi: mvm: Set Tx rate and flags when there is not station
  iwlwifi: mvm: Do not set RTS/CTS protection for P2P Device MAC

Johannes Berg (2):
  iwlwifi: fw api: remove unused/deprecated filter status
  iwlwifi: fw api: document WoWLAN patterns command

Liad Kaufman (4):
  iwlwifi: update hcmds documentation
  iwlwifi: mvm: make num_active_macs unsigned
  iwlwifi: tighten boundary checks
  iwlwifi: memcpy from dev_cmd and not dev_cmd->hdr

Luca Coelho (1):
  iwlwifi: mvm: fix values in the table example

Mordechay Goodstein (2):
  iwlwifi: mvm: avoid possible access out of array.
  iwlwifi: avoid access out of memory allocated

Sara Sharon (2):
  iwlwifi: mvm: support mac80211 AMSDU
  iwlwifi: mvm: bring back mvm GSO code

YueHaibing (1):
  iwlwifi: use kmemdup in iwl_parse_nvm_mcc_info()

 drivers/net/wireless/intel/iwlwifi/dvm/main.c |  2 +-
 .../wireless/intel/iwlwifi/fw/api/commands.h  |  8 +-
 .../net/wireless/intel/iwlwifi/fw/api/d3.h    | 10 +++
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |  4 -
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  8 ++
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |  4 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |  2 -
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 33 +++++++
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  3 +
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    | 14 +++
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c   | 26 ++++--
 drivers/net/wireless/intel/iwlwifi/mvm/sf.c   |  4 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  | 19 ++--
 .../wireless/intel/iwlwifi/mvm/time-event.c   |  1 +
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   | 90 +++++++++++--------
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c | 10 ++-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  |  3 +-
 17 files changed, 173 insertions(+), 68 deletions(-)

-- 
2.20.1


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

end of thread, other threads:[~2019-01-23  8:25 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-21  7:50 [PATCH 00/16] iwlwifi: updates intended for v4.21 2019-01-21 Luca Coelho
2019-01-21  7:50 ` [PATCH 01/16] iwlwifi: mvm: support mac80211 AMSDU Luca Coelho
2019-01-22 12:53   ` Kalle Valo
2019-01-23  8:25     ` [PATCH v2] " Luca Coelho
2019-01-21  7:50 ` [PATCH 02/16] iwlwifi: mvm: fix values in the table example Luca Coelho
2019-01-21  7:50 ` [PATCH 03/16] iwlwifi: use kmemdup in iwl_parse_nvm_mcc_info() Luca Coelho
2019-01-21  7:50 ` [PATCH 04/16] iwlwifi: fix spelling mistake "registrating" -> "registering" Luca Coelho
2019-01-21  7:50 ` [PATCH 05/16] iwlwifi: mvm: bring back mvm GSO code Luca Coelho
2019-01-21  7:50 ` [PATCH 06/16] iwlwifi: mvm: Flush transmit queues on P2P Device ROC done Luca Coelho
2019-01-21  7:50 ` [PATCH 07/16] iwlwifi: mvm: Set Tx rate and flags when there is not station Luca Coelho
2019-01-21  7:50 ` [PATCH 08/16] iwlwifi: mvm: Do not set RTS/CTS protection for P2P Device MAC Luca Coelho
2019-01-21  7:50 ` [PATCH 09/16] iwlwifi: update hcmds documentation Luca Coelho
2019-01-21  7:50 ` [PATCH 10/16] iwlwifi: mvm: make num_active_macs unsigned Luca Coelho
2019-01-21  7:50 ` [PATCH 11/16] iwlwifi: tighten boundary checks Luca Coelho
2019-01-21  7:50 ` [PATCH 12/16] iwlwifi: memcpy from dev_cmd and not dev_cmd->hdr Luca Coelho
2019-01-21  7:50 ` [PATCH 13/16] iwlwifi: mvm: avoid possible access out of array Luca Coelho
2019-01-21  7:50 ` [PATCH 14/16] iwlwifi: avoid access out of memory allocated Luca Coelho
2019-01-21  7:50 ` [PATCH 15/16] iwlwifi: fw api: remove unused/deprecated filter status Luca Coelho
2019-01-21  7:50 ` [PATCH 16/16] iwlwifi: fw api: document WoWLAN patterns command 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).