All of lore.kernel.org
 help / color / mirror / Atom feed
* [mpt3sas driver patches 00/10] mpt3sas driver enhancements and
@ 2016-01-28  6:36 Suganath prabu Subaramani
  2016-01-28  6:36 ` [mpt3sas driver 01/10] mpt3sas: Added support for high port count HBA variants Suganath prabu Subaramani
                   ` (11 more replies)
  0 siblings, 12 replies; 42+ messages in thread
From: Suganath prabu Subaramani @ 2016-01-28  6:36 UTC (permalink / raw)
  To: JBottomley, jejb, hch
  Cc: martin.petersen, linux-scsi, Sathya.Prakash, kashyap.desai,
	krishnaraddi.mankani, linux-kernel, suganath-prabu.subramani,
	chaitra.basappa, sreekanth.reddy

From: Suganath prabu Subramani <suganath-prabu.subramani@avagotech.com>

Here is the change list:
Posting 10 patches for mpt3sas driver enhancements and few fixes.
  * Updated hardware description headers with MPI v2.6 and
    mpt3sas_pci_table[] with vendor_ids,device_ids of Cutlass and
    Intruder HBA which has support for 4 ports.
  * Static analyzer(coverity) tool identified defects.
  * Never block the SEP device even for the delay not
    responding events. Blocking the SEP device will create a deadlock while
    adding any device to the OS.
  * Modified host queue algorithm to treat global credits and
    highPriority credits as two different values.
  * Module parameter to enable/disable configuring
    affinity hint for msix vector.
  * Added support for configurable Chain Frame Size for
    SAS 3.0 HBA'S.
  * Updated MPI version and MPI header files.
  * Fix for Asynchronous completion of timedout IO and task abort
    of timedout IO.
  * Updated driver version to 12.100.00.00

Suganath prabu Subramani (10):
  mpt3sas: Added support for high port count HBA variants.
  mpt3sas: Used IEEE SGL instead of MPI SGL while framing a SMP
    Passthrough request message.
  mpt3sas: Fix static analyzer(coverity) tool identified defects
  mpt3sas: Never block the Enclosure device
  mpt3sas: Make use of additional HighPriority credit message frames for
    sending SCSI IO's
  mpt3sas: Added smp_affinity_enable module parameter.
  mpt3sas: Add support for configurable Chain Frame Size
  mpt3sas: Updated MPI Header to 2.00.42
  mpt3sas: Fix for Asynchronous completion of timedout IO and task abort
    of timedout IO.
  mpt3sas: Updating mpt3sas driver version to 12.100.00.00

 drivers/scsi/mpt3sas/mpi/mpi2.h          |  82 +++++++++-
 drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h     | 127 +++++++++++++--
 drivers/scsi/mpt3sas/mpi/mpi2_init.h     |  22 ++-
 drivers/scsi/mpt3sas/mpi/mpi2_ioc.h      | 117 ++++++++++++-
 drivers/scsi/mpt3sas/mpi/mpi2_raid.h     |   5 +-
 drivers/scsi/mpt3sas/mpi/mpi2_sas.h      |  10 +-
 drivers/scsi/mpt3sas/mpi/mpi2_tool.h     |   5 +-
 drivers/scsi/mpt3sas/mpi/mpi2_type.h     |   5 +-
 drivers/scsi/mpt3sas/mpt3sas_base.c      | 149 ++++++++++++-----
 drivers/scsi/mpt3sas/mpt3sas_base.h      |  47 +++++-
 drivers/scsi/mpt3sas/mpt3sas_ctl.c       |  37 ++++-
 drivers/scsi/mpt3sas/mpt3sas_scsih.c     | 272 ++++++++++++++++++++++++++++---
 drivers/scsi/mpt3sas/mpt3sas_transport.c |  25 +--
 13 files changed, 769 insertions(+), 134 deletions(-)

Thanks,
Suganath prabu S
-- 
1.8.3.1

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

end of thread, other threads:[~2016-02-10 17:21 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-28  6:36 [mpt3sas driver patches 00/10] mpt3sas driver enhancements and Suganath prabu Subaramani
2016-01-28  6:36 ` [mpt3sas driver 01/10] mpt3sas: Added support for high port count HBA variants Suganath prabu Subaramani
2016-02-04 14:14   ` Tomas Henzl
2016-02-04 14:14     ` Tomas Henzl
2016-01-28  6:36 ` [mpt3sas driver 02/10] mpt3sas: Used IEEE SGL instead of MPI SGL while framing a SMP Passthrough request message Suganath prabu Subaramani
2016-01-28  9:16   ` Christoph Hellwig
2016-02-04 14:18   ` Tomas Henzl
2016-02-04 14:18     ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 03/10] mpt3sas: Fix static analyzer(coverity) tool identified defects Suganath prabu Subaramani
2016-02-04 14:18   ` Tomas Henzl
2016-02-04 14:18     ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 04/10] mpt3sas: Never block the Enclosure device Suganath prabu Subaramani
2016-02-04 14:19   ` Tomas Henzl
2016-02-04 14:19     ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 05/10] mpt3sas: Make use of additional HighPriority credit message frames for sending SCSI IO's Suganath prabu Subaramani
2016-02-04 14:24   ` Tomas Henzl
2016-02-04 14:24     ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 06/10] mpt3sas: Added smp_affinity_enable module parameter Suganath prabu Subaramani
2016-02-04 15:01   ` Tomas Henzl
2016-02-04 15:01     ` Tomas Henzl
2016-02-08  6:01     ` Suganath Prabu Subramani
2016-02-08  6:01       ` Suganath Prabu Subramani
2016-02-08 12:38       ` Tomas Henzl
2016-02-08 12:38         ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 07/10] mpt3sas: Add support for configurable Chain Frame Size Suganath prabu Subaramani
2016-02-04 15:05   ` Tomas Henzl
2016-02-04 15:05     ` Tomas Henzl
2016-02-05  7:56     ` Sreekanth Reddy
2016-02-05  7:56       ` Sreekanth Reddy
2016-02-08 13:55       ` Tomas Henzl
2016-02-08 13:55         ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 08/10] mpt3sas: Updated MPI Header to 2.00.42 Suganath prabu Subaramani
2016-02-04 15:06   ` Tomas Henzl
2016-02-04 15:06     ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 09/10] mpt3sas: Fix for Asynchronous completion of timedout IO and task abort of timedout IO Suganath prabu Subaramani
2016-02-04 15:07   ` Tomas Henzl
2016-02-04 15:07     ` Tomas Henzl
2016-01-28  6:37 ` [mpt3sas driver 10/10] mpt3sas: Updating mpt3sas driver version to 12.100.00.00 Suganath prabu Subaramani
2016-02-04 15:08   ` Tomas Henzl
2016-02-04 15:08     ` Tomas Henzl
2016-02-05  2:04 ` [mpt3sas driver patches 00/10] mpt3sas driver enhancements and Martin K. Petersen
2016-02-10 17:20 ` 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.