All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] mpi3mr: driver fixes and enhancements
@ 2021-12-20 14:11 Sreekanth Reddy
  2021-12-20 14:11 ` [PATCH 01/25] mpi3mr: Add debug APIs based on logging_level bits Sreekanth Reddy
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: Sreekanth Reddy @ 2021-12-20 14:11 UTC (permalink / raw)
  To: linux-scsi; +Cc: martin.petersen, mpi3mr-linuxdrv.pdl, Sreekanth Reddy

[-- Attachment #1: Type: text/plain, Size: 1976 bytes --]

This patchset contains genenic driver bug fixes and few
enhancements. 

Sreekanth Reddy (25):
  mpi3mr: Add debug APIs based on logging_level bits
  mpi3mr: replace spin_lock with spin_lock_irqsave
  mpi3mr: Don't reset IOC if cmnds flush with reset status
  mpi3mr: Update MPI3 headers - part1
  mpi3mr: Update MPI3 headers - part2
  mpi3mr: Add support for PCIe Managed Switch SES device
  mpi3mr: Do access status validation before adding devices
  mpi3mr: Increase internal cmnds timeout to 60s
  mpi3mr: Handling unaligned PLL in unmap cmnds
  mpi3mr: Display IOC firmware package version
  mpi3mr: Fault IOC when internal commands gets timeout
  mpi3mr: code refactor of IOC init patch - part1
  mpi3mr: code refactor of IOC init patch - part2
  mpi3mr: Handle offline FW activation in graceful manner
  mpi3mr: Add IOC reinit function
  mpi3mr: Detect async reset occurred in firmware
  mpi3mr: Gracefully handle online FW update operation
  mpi3mr: Add Event acknowledgment logic
  mpi3mr: Add support Prepare for Reset event
  mpi3mr: Print cable mngnt and temp threshold events
  mpi3mr: Add iouring interface support in io-polled mode
  mpi3mr: use TM response codes from MPI3 headers
  mpi3mr: Enhanced Task Management Support Reply handling
  mpi3mr: Fixes around reply request queues
  mpi3mr: Bump driver version to 8.0.0.61.0

 drivers/scsi/mpi3mr/mpi/mpi30_cnfg.h      |  603 +++++++--
 drivers/scsi/mpi3mr/mpi/mpi30_image.h     |   59 +-
 drivers/scsi/mpi3mr/mpi/mpi30_init.h      |   15 +-
 drivers/scsi/mpi3mr/mpi/mpi30_ioc.h       |  128 +-
 drivers/scsi/mpi3mr/mpi/mpi30_sas.h       |   14 +
 drivers/scsi/mpi3mr/mpi/mpi30_transport.h |   31 +-
 drivers/scsi/mpi3mr/mpi3mr.h              |  126 +-
 drivers/scsi/mpi3mr/mpi3mr_debug.h        |  133 +-
 drivers/scsi/mpi3mr/mpi3mr_fw.c           | 1451 ++++++++++++++-------
 drivers/scsi/mpi3mr/mpi3mr_os.c           |  771 +++++++++--
 10 files changed, 2488 insertions(+), 843 deletions(-)

-- 
2.27.0


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4218 bytes --]

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

end of thread, other threads:[~2021-12-23  5:06 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-20 14:11 [PATCH 00/25] mpi3mr: driver fixes and enhancements Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 01/25] mpi3mr: Add debug APIs based on logging_level bits Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 02/25] mpi3mr: replace spin_lock with spin_lock_irqsave Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 03/25] mpi3mr: Don't reset IOC if cmnds flush with reset status Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 04/25] mpi3mr: Update MPI3 headers - part1 Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 05/25] mpi3mr: Update MPI3 headers - part2 Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 06/25] mpi3mr: Add support for PCIe Managed Switch SES device Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 07/25] mpi3mr: Do access status validation before adding devices Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 08/25] mpi3mr: Increase internal cmnds timeout to 60s Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 09/25] mpi3mr: Handling unaligned PLL in unmap cmnds Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 10/25] mpi3mr: Display IOC firmware package version Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 11/25] mpi3mr: Fault IOC when internal commands gets timeout Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 12/25] mpi3mr: code refactor of IOC init patch - part1 Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 13/25] mpi3mr: code refactor of IOC init patch - part2 Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 14/25] mpi3mr: Handle offline FW activation in graceful manner Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 15/25] mpi3mr: Add IOC reinit function Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 16/25] mpi3mr: Detect async reset occurred in firmware Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 17/25] mpi3mr: Gracefully handle online FW update operation Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 18/25] mpi3mr: Add Event acknowledgment logic Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 19/25] mpi3mr: Add support Prepare for Reset event Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 20/25] mpi3mr: Print cable mngnt and temp threshold events Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 21/25] mpi3mr: Add iouring interface support in io-polled mode Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 22/25] mpi3mr: use TM response codes from MPI3 headers Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 23/25] mpi3mr: Enhanced Task Management Support Reply handling Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 24/25] mpi3mr: Fixes around reply request queues Sreekanth Reddy
2021-12-20 14:11 ` [PATCH 25/25] mpi3mr: Bump driver version to 8.0.0.61.0 Sreekanth Reddy
2021-12-23  5:06 ` [PATCH 00/25] mpi3mr: driver fixes and enhancements Martin K. Petersen

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.