All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] iwlwifi: updates intended for v4.20 2018-08-21
@ 2018-08-21  6:36 Luca Coelho
  2018-08-21  6:36 ` [PATCH 01/15] iwlwifi: remove dump_regs() from transport ops Luca Coelho
                   ` (14 more replies)
  0 siblings, 15 replies; 23+ messages in thread
From: Luca Coelho @ 2018-08-21  6:36 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 v4.20.  It's the usual
developments, with some small new feauters, cleanups and bugfixes.

The changes are:

* Some improvements in the PCI recovery mechanism;
* Support for a few FW API changes;
* Miscellaneous bugfixes;
* Other clean-ups and small improvements;

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

I have a lot of pending patches in our internal tree, so I'll probably
send another patchset before sending the pull-request.

Please review.

Cheers,
Luca.


Avraham Stern (1):
  iwlwifi: mvm: Send LQ command as async when necessary

Ayala Beker (1):
  iwlwifi: mvm: skip EBS in low latency mode while fragmented scan isn't
    supported

Emmanuel Grumbach (1):
  iwlwifi: improve the flow when a NIC is disconnected

Erel Geron (1):
  iwlwifi: mvm: support Coex Schema 2

Golan Ben Ami (3):
  iwlwifi: remove FSF's address from the license notice
  iwlwifi: pcie: store the default rxq number
  iwlwifi: pcie: make gen2 of apm_init non-static

Haim Dreyfuss (1):
  iwlwifi: mvm: support new reduce tx power FW API.

Johannes Berg (2):
  iwlwifi: remove dump_regs() from transport ops
  iwlwifi: don't WARN on trying to dump dead firmware

Matt Chen (1):
  iwlwifi: pcie: avoid unnecessary work if NIC is disconnected

Mordechay Goodstein (1):
  iwlwifi: add 80211 hdr offset to trace data

Sara Sharon (3):
  iwlwifi: mvm: fix BAR seq ctrl reporting
  iwlwifi: mvm: avoid sending too many BARs
  iwlwifi: pcie: set interrupt coalescing also for gen2

 .../net/wireless/intel/iwlwifi/fw/api/coex.h  |  3 ++
 .../wireless/intel/iwlwifi/fw/api/commands.h  |  3 +-
 .../net/wireless/intel/iwlwifi/fw/api/power.h | 30 ++++++++++++++++--
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  7 ++---
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |  7 +++++
 .../intel/iwlwifi/iwl-devtrace-data.h         | 10 ++----
 .../intel/iwlwifi/iwl-devtrace-iwlwifi.h      | 14 +++++----
 .../net/wireless/intel/iwlwifi/iwl-devtrace.h | 22 +++++++------
 .../net/wireless/intel/iwlwifi/iwl-op-mode.h  |  6 ++--
 .../net/wireless/intel/iwlwifi/iwl-trans.h    | 11 -------
 drivers/net/wireless/intel/iwlwifi/mvm/coex.c |  9 ++++--
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   | 23 +++++++++-----
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 31 +++++++++++++------
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  7 ++++-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  |  6 ++--
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c   | 18 +++++------
 drivers/net/wireless/intel/iwlwifi/mvm/rs.h   |  2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c | 11 ++++++-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   | 17 +++++++---
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  7 ++---
 .../wireless/intel/iwlwifi/pcie/internal.h    |  6 ++--
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c  |  5 ++-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |  2 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   | 13 +++++---
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  | 10 +++++-
 25 files changed, 186 insertions(+), 94 deletions(-)

-- 
2.18.0

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

end of thread, other threads:[~2018-09-06 13:18 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-21  6:36 [PATCH 00/15] iwlwifi: updates intended for v4.20 2018-08-21 Luca Coelho
2018-08-21  6:36 ` [PATCH 01/15] iwlwifi: remove dump_regs() from transport ops Luca Coelho
2018-08-21  6:36 ` [PATCH 02/15] iwlwifi: remove FSF's address from the license notice Luca Coelho
2018-08-21  6:36 ` [PATCH 03/15] iwlwifi: mvm: skip EBS in low latency mode while fragmented scan isn't supported Luca Coelho
2018-08-21  6:36 ` [PATCH 04/15] iwlwifi: mvm: support new reduce tx power FW API Luca Coelho
2018-08-21  6:36 ` [PATCH 05/15] iwlwifi: pcie: store the default rxq number Luca Coelho
2018-08-21  6:36 ` [PATCH 06/15] iwlwifi: pcie: make gen2 of apm_init non-static Luca Coelho
2018-08-21  6:36 ` [PATCH 07/15] iwlwifi: add 80211 hdr offset to trace data Luca Coelho
2018-08-22 11:45   ` Kalle Valo
2018-08-22 11:58     ` Luca Coelho
2018-08-23 11:13       ` Kalle Valo
2018-08-23 11:50         ` Luca Coelho
2018-08-23 12:24           ` Kalle Valo
2018-08-21  6:36 ` [PATCH 08/15] iwlwifi: don't WARN on trying to dump dead firmware Luca Coelho
2018-08-21  6:36 ` [PATCH 09/15] iwlwifi: pcie: avoid unnecessary work if NIC is disconnected Luca Coelho
2018-08-21  6:36 ` [PATCH 10/15] iwlwifi: mvm: support Coex Schema 2 Luca Coelho
2018-08-21  6:36 ` [PATCH 11/15] iwlwifi: improve the flow when a NIC is disconnected Luca Coelho
2018-08-21  6:36 ` [PATCH 12/15] iwlwifi: mvm: fix BAR seq ctrl reporting Luca Coelho
2018-08-21  6:36 ` [PATCH 13/15] iwlwifi: mvm: avoid sending too many BARs Luca Coelho
2018-08-21  6:36 ` [PATCH 14/15] iwlwifi: mvm: Send LQ command as async when necessary Luca Coelho
2018-09-06  8:22   ` Hao Wei Tee
2018-09-06  8:44     ` Luca Coelho
2018-08-21  6:36 ` [PATCH 15/15] iwlwifi: pcie: set interrupt coalescing also for gen2 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.