All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] iwlwifi: updates intended for v4.13 2017-06-23
@ 2017-06-22 21:20 Luca Coelho
  2017-06-22 21:20 ` [PATCH 01/25] iwlwifi: mvm: remove txq EMPTYING_DELBA state for DQA Luca Coelho
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: Luca Coelho @ 2017-06-22 21:20 UTC (permalink / raw)
  To: linux-wireless; +Cc: kvalo, Luca Coelho

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

Morjens,

More patches intended for 4.13.  These are the changes:

* Johannes' documentation work continues;
* Some changes in suspend/resume handling to support new FWs;
* A bunch of RF-kill related fixes;
* Continued work towards the A000 family;
* Some small improvements, fixes and cleanups;

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

Please review.

Cheers,
Luca.


David Spinadel (1):
  iwlwifi: mvm: Enable security on new TX API

Emmanuel Grumbach (1):
  iwlwifi: mvm: avoid unnecessary cache trashing in Tx path

Gregory Greenman (1):
  iwlwifi: mvm: rs: add logs for the wrong antenna case

Johannes Berg (16):
  iwlwifi: remove resp_pkt NULL checks
  iwlwifi: mvm: remove pointless num_stored condition
  iwlwifi: pcie: fix TVQM queue ID range check
  iwlwifi: mvm: avoid variable shadowing
  iwlwifi: mvm: use scnprintf() instead of snprintf()
  iwlwifi: use bitfield.h for some registers
  iwlwifi: mvm: track and report IBSS manager status to mac80211
  iwlwifi: mvm: make iwl_mvm_update_mcc() easier to follow
  iwlwifi: pcie: pull out common rfkill IRQ handling code
  iwlwifi: pcie: add fake RF-kill to debugfs
  iwlwifi: mvm: don't warn in queue sync on RF-kill
  iwlwifi: pcie: don't report RF-kill enabled while shutting down
  iwlwifi: pcie: remove pointless debugfs parsing for csr file
  iwlwifi: mvm: document status bits
  iwlwifi: pcie: use kstrtou32_from_user()
  iwlwifi: mvm: better link scan notification results length

Liad Kaufman (3):
  iwlwifi: mvm: remove txq EMPTYING_DELBA state for DQA
  iwlwifi: mvm: disable dbg data collect when fw isn't alive
  iwlwifi: mvm: support aggregations on A000 HW

Luca Coelho (2):
  iwlwifi: mvm: make D0I3_END_CMD sync during system resume
  iwlwifi: mvm: support D0I3_END_CMD at the start of resume

Mordechai Goodstein (1):
  iwlwifi: mvm: change the firmware name loading

 drivers/net/wireless/intel/iwlwifi/iwl-a000.c      |   2 +-
 drivers/net/wireless/intel/iwlwifi/iwl-config.h    |   1 +
 drivers/net/wireless/intel/iwlwifi/iwl-fh.h        |  10 +-
 drivers/net/wireless/intel/iwlwifi/iwl-fw-file.h   |   1 +
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h      |  17 +--
 drivers/net/wireless/intel/iwlwifi/iwl-trans.c     |   5 +-
 drivers/net/wireless/intel/iwlwifi/iwl-trans.h     |   6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c        |  39 +++---
 .../net/wireless/intel/iwlwifi/mvm/debugfs-vif.c   |  22 ++--
 .../net/wireless/intel/iwlwifi/mvm/fw-api-scan.h   |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/fw-dbg.c    |   4 +
 drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c  |   1 +
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c  |  31 ++++-
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h       |  17 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c       |  33 ++---
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c       |  19 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c        |   6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c      |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c       | 144 ++++++++++++++------
 drivers/net/wireless/intel/iwlwifi/mvm/sta.h       |   8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c        |  24 +++-
 drivers/net/wireless/intel/iwlwifi/mvm/utils.c     |   7 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c      |  12 +-
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h |  14 +-
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c       | 106 +++++++--------
 .../net/wireless/intel/iwlwifi/pcie/trans-gen2.c   |  28 +---
 drivers/net/wireless/intel/iwlwifi/pcie/trans.c    | 145 ++++++++++++++-------
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c  |   6 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c       |  10 +-
 29 files changed, 434 insertions(+), 288 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2017-06-22 21:22 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-22 21:20 [PATCH 00/25] iwlwifi: updates intended for v4.13 2017-06-23 Luca Coelho
2017-06-22 21:20 ` [PATCH 01/25] iwlwifi: mvm: remove txq EMPTYING_DELBA state for DQA Luca Coelho
2017-06-22 21:20 ` [PATCH 02/25] iwlwifi: remove resp_pkt NULL checks Luca Coelho
2017-06-22 21:20 ` [PATCH 03/25] iwlwifi: mvm: disable dbg data collect when fw isn't alive Luca Coelho
2017-06-22 21:20 ` [PATCH 04/25] iwlwifi: mvm: Enable security on new TX API Luca Coelho
2017-06-22 21:20 ` [PATCH 05/25] iwlwifi: mvm: avoid unnecessary cache trashing in Tx path Luca Coelho
2017-06-22 21:20 ` [PATCH 06/25] iwlwifi: mvm: remove pointless num_stored condition Luca Coelho
2017-06-22 21:20 ` [PATCH 07/25] iwlwifi: pcie: fix TVQM queue ID range check Luca Coelho
2017-06-22 21:20 ` [PATCH 08/25] iwlwifi: mvm: avoid variable shadowing Luca Coelho
2017-06-22 21:20 ` [PATCH 09/25] iwlwifi: mvm: use scnprintf() instead of snprintf() Luca Coelho
2017-06-22 21:20 ` [PATCH 10/25] iwlwifi: use bitfield.h for some registers Luca Coelho
2017-06-22 21:20 ` [PATCH 11/25] iwlwifi: mvm: track and report IBSS manager status to mac80211 Luca Coelho
2017-06-22 21:20 ` [PATCH 12/25] iwlwifi: mvm: make D0I3_END_CMD sync during system resume Luca Coelho
2017-06-22 21:20 ` [PATCH 13/25] iwlwifi: mvm: support D0I3_END_CMD at the start of resume Luca Coelho
2017-06-22 21:20 ` [PATCH 14/25] iwlwifi: mvm: change the firmware name loading Luca Coelho
2017-06-22 21:20 ` [PATCH 15/25] iwlwifi: mvm: make iwl_mvm_update_mcc() easier to follow Luca Coelho
2017-06-22 21:20 ` [PATCH 16/25] iwlwifi: mvm: rs: add logs for the wrong antenna case Luca Coelho
2017-06-22 21:20 ` [PATCH 17/25] iwlwifi: pcie: pull out common rfkill IRQ handling code Luca Coelho
2017-06-22 21:20 ` [PATCH 18/25] iwlwifi: pcie: add fake RF-kill to debugfs Luca Coelho
2017-06-22 21:20 ` [PATCH 19/25] iwlwifi: mvm: don't warn in queue sync on RF-kill Luca Coelho
2017-06-22 21:20 ` [PATCH 20/25] iwlwifi: pcie: don't report RF-kill enabled while shutting down Luca Coelho
2017-06-22 21:20 ` [PATCH 21/25] iwlwifi: pcie: remove pointless debugfs parsing for csr file Luca Coelho
2017-06-22 21:20 ` [PATCH 22/25] iwlwifi: mvm: document status bits Luca Coelho
2017-06-22 21:20 ` [PATCH 23/25] iwlwifi: mvm: support aggregations on A000 HW Luca Coelho
2017-06-22 21:21 ` [PATCH 24/25] iwlwifi: pcie: use kstrtou32_from_user() Luca Coelho
2017-06-22 21:21 ` [PATCH 25/25] iwlwifi: mvm: better link scan notification results length 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.