All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH v1 00/18] fm10k reset + suspend/resume changes
@ 2016-06-03 22:42 Jacob Keller
  2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 01/18] fm10k: no need to continue in fm10k_down if __FM10K_DOWN already set Jacob Keller
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: Jacob Keller @ 2016-06-03 22:42 UTC (permalink / raw)
  To: intel-wired-lan

This series implements several fixes for suspend/resume and related
behaviors for both PF and VF driver. The major changes are to commonize
the suspend/resume, io_error_detected, reset_notify and reinit flows to
use one set of functions. This ensures that all flows set the same
state, preventing multiple flows from interacting together. In addition
it ensures that each flow does every step that it needs. This was
previously overlooked because each flow was coded separately.

In addition, there are several bug fixes scattered around the series for
issues that came up when testing the changes and the bugs that these
changes fix.

Jacob Keller (17):
  fm10k: no need to continue in fm10k_down if __FM10K_DOWN already set
  fm10k: avoid possible null pointer dereference in fm10k_update_stats
  fm10k: prevent multiple threads updating statistics
  fm10k: don't stop reset due to FM10K_ERR_REQUESTS_PENDING
  fm10k: perform data path reset even when switch is not ready
  fm10k: use actual hardware registers when checking for pending Tx
  fm10k: only warn when stop_hw fails with FM10K_ERR_REQUESTS_PENDING
  fm10k: wait for queues to drain fully before stop_hw
  fm10k: split fm10k_reinit into two functions
  fm10k: implement prepare_suspend and handle_resume
  fm10k: use common reset flow when handling io errors from PCI stack
  fm10k: implement reset_notify handler for PCIe FLR events
  fm10k: use common flow for suspend and resume
  fm10k: enable bus master after every reset
  fm10k: check if PCIe link is restored
  fm10k: implement request_lport_map pointer
  fm10k: bump version number

Ngai-Mint Kwan (1):
  fm10k: Reset mailbox global interrupts

 drivers/net/ethernet/intel/fm10k/fm10k.h         |   2 +
 drivers/net/ethernet/intel/fm10k/fm10k_common.c  |   6 +-
 drivers/net/ethernet/intel/fm10k/fm10k_ethtool.c |   2 +
 drivers/net/ethernet/intel/fm10k/fm10k_main.c    |  12 +-
 drivers/net/ethernet/intel/fm10k/fm10k_mbx.h     |   2 +
 drivers/net/ethernet/intel/fm10k/fm10k_pci.c     | 311 +++++++++++++----------
 drivers/net/ethernet/intel/fm10k/fm10k_pf.c      |  38 ++-
 drivers/net/ethernet/intel/fm10k/fm10k_type.h    |   2 +
 drivers/net/ethernet/intel/fm10k/fm10k_vf.c      |  12 +-
 9 files changed, 222 insertions(+), 165 deletions(-)

-- 
2.8.2.820.gd1c5f70


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

end of thread, other threads:[~2016-07-11 19:24 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-03 22:42 [Intel-wired-lan] [PATCH v1 00/18] fm10k reset + suspend/resume changes Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 01/18] fm10k: no need to continue in fm10k_down if __FM10K_DOWN already set Jacob Keller
2016-07-11 19:23   ` Singh, Krishneil K
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 02/18] fm10k: avoid possible null pointer dereference in fm10k_update_stats Jacob Keller
2016-07-11 19:24   ` Singh, Krishneil K
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 03/18] fm10k: prevent multiple threads updating statistics Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 04/18] fm10k: Reset mailbox global interrupts Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 05/18] fm10k: don't stop reset due to FM10K_ERR_REQUESTS_PENDING Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 06/18] fm10k: perform data path reset even when switch is not ready Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 07/18] fm10k: use actual hardware registers when checking for pending Tx Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 08/18] fm10k: only warn when stop_hw fails with FM10K_ERR_REQUESTS_PENDING Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 09/18] fm10k: wait for queues to drain fully before stop_hw Jacob Keller
2016-06-06 17:38   ` Keller, Jacob E
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 10/18] fm10k: split fm10k_reinit into two functions Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 11/18] fm10k: implement prepare_suspend and handle_resume Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 12/18] fm10k: use common reset flow when handling io errors from PCI stack Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 13/18] fm10k: implement reset_notify handler for PCIe FLR events Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 14/18] fm10k: use common flow for suspend and resume Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 15/18] fm10k: enable bus master after every reset Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 16/18] fm10k: check if PCIe link is restored Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 17/18] fm10k: implement request_lport_map pointer Jacob Keller
2016-06-03 22:42 ` [Intel-wired-lan] [PATCH v1 18/18] fm10k: bump version number Jacob Keller

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.