linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luca Coelho <luca@coelho.fi>
To: kvalo@codeaurora.org
Cc: linux-wireless@vger.kernel.org, Luca Coelho <luciano.coelho@intel.com>
Subject: [PATCH 00/16] iwlwifi: updates intended for v4.21 2019-01-21
Date: Mon, 21 Jan 2019 09:50:10 +0200	[thread overview]
Message-ID: <20190121075026.25059-1-luca@coelho.fi> (raw)

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


             reply	other threads:[~2019-01-21  7:50 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-21  7:50 Luca Coelho [this message]
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

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=20190121075026.25059-1-luca@coelho.fi \
    --to=luca@coelho.fi \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=luciano.coelho@intel.com \
    /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 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).