All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/26] iwlwifi: updates intended for v4.13 2017-06-25
@ 2017-06-25 11:11 Luca Coelho
  2017-06-25 11:11 ` [PATCH 01/26] iwlwifi: simplify data tracepoint Luca Coelho
                   ` (25 more replies)
  0 siblings, 26 replies; 33+ messages in thread
From: Luca Coelho @ 2017-06-25 11:11 UTC (permalink / raw)
  To: linux-wireless; +Cc: kvalo, Luca Coelho

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

Hi,

More patches intended for 4.13.  These are the changes:

* Support for a new version of the TX flush FW API;
* Some fixes in monitor interfaces;
* A few fixes in the recovery flows;
* Documentation fixes and FW API struct cleanups;
* Remove some noise from the kernel logs;
* Clean-ups and small fixes here and there.

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.

Avraham Stern (1):
  iwlwifi: mvm: set assoc_beacon_arrive_time

Chaya Rachel Ivgi (1):
  iwlwifi: mvm: fix typo in CTDP_CMD_OPERATION_REPORT description

Emmanuel Grumbach (5):
  iwlwifi: mvm: fix the recovery flow while connecting
  iwlwifi: mvm: don't mark TIDs that are not idle wrt BA as inactive
  iwlwifi: add a W/A for a scheduler hardware bug
  iwlwifi: mvm: reset the fw_dump_desc pointer after ASSERT
  iwlwifi: pcie: delete the Tx queue timer earlier upon firmware crash

Johannes Berg (9):
  iwlwifi: simplify data tracepoint
  iwlwifi: fix TX tracing for non-linear SKBs
  iwlwifi: pcie: fix command completion name debug
  iwlwifi: mvm: docs: fix enum link, provide TX response link
  iwlwifi: mvm: disentangle union in TX status struct
  iwlwifi: mvm: add documentation for enum iwl_debug_cmds
  iwlwifi: document transmit buffer bits better
  iwlwifi: pcie: make iwl_pcie_apm_stop_master() return void
  iwlwifi: pcie: work around suspend/resume issue

Liad Kaufman (2):
  iwlwifi: mvm: fix fw monitor 7000 HW recollecting
  iwlwifi: mvm: support TX on MONITOR iface

Luca Coelho (7):
  iwlwifi: remove useless iwl_free_nvm_data() function
  iwlwifi: mvm: fix nvm_data leak
  iwlwifi: pcie: don't disable bh when handling FW errors
  iwlwifi: mvm: reset the HW before dumping if HW error is detected
  iwlwifi: mvm: document assoc_beacon_arrive_time
  iwlwifi: mvm: print base HW address during init
  iwlwifi: pcie: reduce unwanted noise in the logs

Mordechai Goodstein (1):
  iwlwifi: mvm: support new flush API

 drivers/net/wireless/intel/iwlwifi/dvm/main.c      |  4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-csr.h       |  4 +
 .../net/wireless/intel/iwlwifi/iwl-devtrace-data.h | 11 +--
 .../wireless/intel/iwlwifi/iwl-devtrace-iwlwifi.h  | 19 +++--
 .../net/wireless/intel/iwlwifi/iwl-eeprom-parse.h  |  9 ---
 drivers/net/wireless/intel/iwlwifi/iwl-fh.h        | 18 ++++-
 drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c |  2 +
 drivers/net/wireless/intel/iwlwifi/iwl-trans.h     | 13 ++--
 drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c   | 19 ++++-
 .../net/wireless/intel/iwlwifi/mvm/fw-api-mac.h    |  1 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw-api-tx.h | 89 ++++++++++++++++++----
 drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h    | 23 +++++-
 drivers/net/wireless/intel/iwlwifi/mvm/fw-dbg.c    |  6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c  |  2 +
 drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c  | 32 ++++++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h       | 13 ++--
 drivers/net/wireless/intel/iwlwifi/mvm/nvm.c       | 10 ++-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c       | 20 +++--
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c       | 68 ++++++++++-------
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c        | 50 +++++++++---
 drivers/net/wireless/intel/iwlwifi/mvm/utils.c     | 86 +++++++++++++++------
 drivers/net/wireless/intel/iwlwifi/pcie/internal.h |  4 +-
 drivers/net/wireless/intel/iwlwifi/pcie/rx.c       | 10 +--
 drivers/net/wireless/intel/iwlwifi/pcie/trans.c    | 23 ++++--
 drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c  |  8 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c       | 33 ++++++--
 26 files changed, 413 insertions(+), 164 deletions(-)

-- 
2.11.0

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

end of thread, other threads:[~2017-06-27 18:40 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-25 11:11 [PATCH 00/26] iwlwifi: updates intended for v4.13 2017-06-25 Luca Coelho
2017-06-25 11:11 ` [PATCH 01/26] iwlwifi: simplify data tracepoint Luca Coelho
2017-06-25 11:11 ` [PATCH 02/26] iwlwifi: fix TX tracing for non-linear SKBs Luca Coelho
2017-06-25 11:11 ` [PATCH 03/26] iwlwifi: pcie: fix command completion name debug Luca Coelho
2017-06-25 11:11 ` [PATCH 04/26] iwlwifi: mvm: docs: fix enum link, provide TX response link Luca Coelho
2017-06-25 11:11 ` [PATCH 05/26] iwlwifi: mvm: fix fw monitor 7000 HW recollecting Luca Coelho
2017-06-25 11:11 ` [PATCH 06/26] iwlwifi: mvm: disentangle union in TX status struct Luca Coelho
2017-06-25 11:11 ` [PATCH 07/26] iwlwifi: mvm: add documentation for enum iwl_debug_cmds Luca Coelho
2017-06-25 11:11 ` [PATCH 08/26] iwlwifi: document transmit buffer bits better Luca Coelho
2017-06-25 11:11 ` [PATCH 09/26] iwlwifi: remove useless iwl_free_nvm_data() function Luca Coelho
2017-06-25 11:11 ` [PATCH 10/26] iwlwifi: mvm: fix nvm_data leak Luca Coelho
2017-06-25 11:11 ` [PATCH 11/26] iwlwifi: mvm: fix the recovery flow while connecting Luca Coelho
2017-06-25 11:11 ` [PATCH 12/26] iwlwifi: pcie: don't disable bh when handling FW errors Luca Coelho
2017-06-25 11:11 ` [PATCH 13/26] iwlwifi: mvm: reset the HW before dumping if HW error is detected Luca Coelho
2017-06-25 11:11 ` [PATCH 14/26] iwlwifi: mvm: don't mark TIDs that are not idle wrt BA as inactive Luca Coelho
2017-06-25 11:11 ` [PATCH 15/26] iwlwifi: add a W/A for a scheduler hardware bug Luca Coelho
2017-06-25 11:11 ` [PATCH 16/26] iwlwifi: pcie: make iwl_pcie_apm_stop_master() return void Luca Coelho
2017-06-25 11:11 ` [PATCH 17/26] iwlwifi: mvm: set assoc_beacon_arrive_time Luca Coelho
2017-06-25 11:11 ` [PATCH 18/26] iwlwifi: mvm: reset the fw_dump_desc pointer after ASSERT Luca Coelho
2017-06-25 11:11 ` [PATCH 19/26] iwlwifi: mvm: support new flush API Luca Coelho
2017-06-25 11:11 ` [PATCH 20/26] iwlwifi: mvm: document assoc_beacon_arrive_time Luca Coelho
2017-06-25 11:11 ` [PATCH 21/26] iwlwifi: mvm: print base HW address during init Luca Coelho
2017-06-27 17:06   ` Kalle Valo
2017-06-27 17:17     ` Fabio Estevam
2017-06-27 17:36       ` Kalle Valo
2017-06-27 18:19         ` Coelho, Luciano
2017-06-27 18:22           ` Coelho, Luciano
2017-06-27 18:40             ` Kalle Valo
2017-06-25 11:11 ` [PATCH 22/26] iwlwifi: pcie: reduce unwanted noise in the logs Luca Coelho
2017-06-25 11:11 ` [PATCH 23/26] iwlwifi: pcie: delete the Tx queue timer earlier upon firmware crash Luca Coelho
2017-06-25 11:11 ` [PATCH 24/26] iwlwifi: mvm: fix typo in CTDP_CMD_OPERATION_REPORT description Luca Coelho
2017-06-25 11:11 ` [PATCH 25/26] iwlwifi: pcie: work around suspend/resume issue Luca Coelho
2017-06-25 11:11 ` [PATCH 26/26] iwlwifi: mvm: support TX on MONITOR iface 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.