All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/35] hpsa February 2014 driver updates
@ 2014-02-18 19:55 Stephen M. Cameron
  2014-02-18 19:55 ` [PATCH 01/35] hpsa: use extended report luns command for HP SSD SmartPath Stephen M. Cameron
                   ` (34 more replies)
  0 siblings, 35 replies; 38+ messages in thread
From: Stephen M. Cameron @ 2014-02-18 19:55 UTC (permalink / raw)
  To: james.bottomley
  Cc: dab, martin.petersen, linux-scsi, stephenmcameron,
	joseph.t.handzik, thenzl, michael.miller, scott.teel

This is a big patch series.  Most of the changes have to do
with enabling alternate command submission paths for certain i/os
to bypass the Smart Array RAID firmware stack and submit i/o's
more directly to physical devices -- solid state disks --
for increased performance.

---

Hannes Reinecke (1):
      hpsa: fixup MSI-X registration

Matt Gates (3):
      hpsa: use extended report luns command for HP SSD SmartPath
      hpsa: mark last scatter gather element as the last
      hpsa: add support for 'fastpath' i/o

Mike MIller (1):
      hpsa: get physical device handles for io accel mode 2 as well as mode 1

Mike Miller (1):
      hpsa: add ioaccel mode 2 structure definitions

Scott Teel (12):
      hpsa: fix task management for mode-1 ioaccell path
      hpsa: add hp_ssd_smart_path_enabled sysfs attribute
      hpsa: complain if physical or logical aborts are not supported
      hpsa: get ioaccel mode 2 i/o working
      hpsa: teach hpsa_device_reset to do either target or lun reset
      hpsa: add task management for ioaccel mode 2
      hpsa: complete the ioaccel raidmap code
      hpsa: allow user to disable accelerated i/o path
      hpsa: rescan devices on ioaccel2 error
      hpsa: retry certain ioaccel error cases on the RAID path
      hpsa: update source file copyrights
      hpsa: add controller base data-at-rest encryption compatibility ioaccel2

Stephen M. Cameron (17):
      hpsa: only allow REQ_TYPE_FS to use fast path
      hpsa: add ioaccell mode 1 RAID offload support.
      hpsa: update raid offload status on device rescan
      hpsa: poll controller to detect device change event
      hpsa: do not rescan controllers known to be locked up
      hpsa: Acknowledge controller events in ioaccell mode 2 as well as mode 1
      hpsa: do ioaccel mode 2 resource allocations
      hpsa: initialize controller to perform io accelerator mode 2
      hpsa: make device update copy the raid map also
      hpsa: allow VPD page zero to be queried
      hpsa: do not inquire for unsupported ioaccel status vpd page
      hpsa: when switching out of accel mode await only accel command completions
      hpsa: only do device rescan for certain events
      hpsa: improve error messages for driver initiated commands
      hpsa add sysfs debug switch for raid map debugging messages
      pci: add HP/3PAR vendor id to pci_ids.h
      hpsa: Add support for a few HP Storage controllers


 Documentation/ABI/testing/sysfs-class-scsi_host |   16 
 drivers/scsi/hpsa.c                             | 2292 ++++++++++++++++++++++-
 drivers/scsi/hpsa.h                             |  121 +
 drivers/scsi/hpsa_cmd.h                         |  251 ++-
 include/linux/pci_ids.h                         |    1 
 5 files changed, 2557 insertions(+), 124 deletions(-)

-- 
-- steve


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

end of thread, other threads:[~2014-03-26 16:16 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-18 19:55 [PATCH 00/35] hpsa February 2014 driver updates Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 01/35] hpsa: use extended report luns command for HP SSD SmartPath Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 02/35] hpsa: mark last scatter gather element as the last Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 03/35] hpsa: add support for 'fastpath' i/o Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 04/35] hpsa: only allow REQ_TYPE_FS to use fast path Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 05/35] hpsa: fix task management for mode-1 ioaccell path Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 06/35] hpsa: add ioaccell mode 1 RAID offload support Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 07/35] hpsa: update raid offload status on device rescan Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 08/35] hpsa: poll controller to detect device change event Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 09/35] hpsa: do not rescan controllers known to be locked up Stephen M. Cameron
2014-02-18 19:55 ` [PATCH 10/35] hpsa: add hp_ssd_smart_path_enabled sysfs attribute Stephen M. Cameron
2014-03-13 11:28   ` James Bottomley
2014-02-18 19:55 ` [PATCH 11/35] hpsa: complain if physical or logical aborts are not supported Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 12/35] hpsa: add ioaccel mode 2 structure definitions Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 13/35] hpsa: Acknowledge controller events in ioaccell mode 2 as well as mode 1 Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 14/35] hpsa: do ioaccel mode 2 resource allocations Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 15/35] hpsa: get physical device handles for io accel mode 2 as well as mode 1 Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 16/35] hpsa: initialize controller to perform io accelerator mode 2 Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 17/35] hpsa: get ioaccel mode 2 i/o working Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 18/35] hpsa: teach hpsa_device_reset to do either target or lun reset Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 19/35] hpsa: add task management for ioaccel mode 2 Stephen M. Cameron
2014-03-26 16:09   ` Tomas Henzl
2014-02-18 19:56 ` [PATCH 20/35] hpsa: make device update copy the raid map also Stephen M. Cameron
2014-02-18 19:56 ` [PATCH 21/35] hpsa: complete the ioaccel raidmap code Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 22/35] hpsa: allow user to disable accelerated i/o path Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 23/35] hpsa: rescan devices on ioaccel2 error Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 24/35] hpsa: allow VPD page zero to be queried Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 25/35] hpsa: do not inquire for unsupported ioaccel status vpd page Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 26/35] hpsa: retry certain ioaccel error cases on the RAID path Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 27/35] hpsa: update source file copyrights Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 28/35] hpsa: add controller base data-at-rest encryption compatibility ioaccel2 Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 29/35] hpsa: when switching out of accel mode await only accel command completions Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 30/35] hpsa: only do device rescan for certain events Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 31/35] hpsa: improve error messages for driver initiated commands Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 32/35] hpsa add sysfs debug switch for raid map debugging messages Stephen M. Cameron
2014-02-18 19:57 ` [PATCH 33/35] pci: add HP/3PAR vendor id to pci_ids.h Stephen M. Cameron
2014-02-18 19:58 ` [PATCH 34/35] hpsa: Add support for a few HP Storage controllers Stephen M. Cameron
2014-02-18 19:58 ` [PATCH 35/35] hpsa: fixup MSI-X registration Stephen M. Cameron

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.