linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/48] hpsa driver updates
@ 2015-01-14 21:59 Don Brace
  2015-01-14 21:59 ` [PATCH 01/48] hpsa: correct endian sparse warnings Don Brace
                   ` (48 more replies)
  0 siblings, 49 replies; 57+ messages in thread
From: Don Brace @ 2015-01-14 21:59 UTC (permalink / raw)
  To: scott.teel, Kevin.Barnett, james.bottomley, hch, Justin.Lindley,
	brace
  Cc: linux-scsi

This patch set is based on Linus's tree.

The changes are:
 - correct sparse warnings
 - correct memory leaks
 - correct kdump issues
 - correct queue depth updates
 - cleanup function return values
 - cleanup and enhance messages
 - cleanup and enhance error handling
 - minor code refactoring
 - performance enhancements.
 - removal of command queueing in driver
 - elimination of race conditions around aborts
 - change to internal driver workqueues
---

Don Brace (11):
      hpsa: correct endian sparse warnings
      hpsa: change how SA controllers are reset
      hpsa: correct change_queue_depth
      hpsa: do not queue commands internally in driver
      hpsa: use workqueue to resubmit failed ioaccel commands
      hpsa: honor queue depth of physical devices
      hpsa: count passthru cmds with atomics, not a spin locked int
      hpsa: slightly optimize SA5_performant_completed
      hpsa: return failed from device reset/abort handlers
      hpsa: add in gen9 controller model names
      hpsa: add in P840ar controller model name

Fabian Frederick (1):
      hpsa: Fix -Wunused-but-set-variable warning

Robert Elliott (16):
      hpsa: adjust RAID-1, RAID-1ADM, and RAID-6 names
      hpsa: rename free_irqs to hpsa_free_irqs
      hpsa: notice all request_irq errors
      hpsa: remove 0x from queue depth print which is in decimal
      hpsa: propagate hard_reset failures in reset_devices mode
      hpsa: propagate return value from board ID lookup
      hpsa: downgrade the Waiting for no-op print to dev_info
      hpsa: report failure to ioremap config table
      hpsa: rename hpsa_request_irq to hpsa_request_irqs
      hpsa: pass error from pci_set_consistent_dma_mask from hpsa_message
      hpsa: report allocation failures while allocating SG chain blocks
      hpsa: fix memory leak in hpsa_alloc_cmd_pool
      hpsa: avoid unneccesary calls to resource freeing functions
      hpsa: optimize cmd_alloc function by remembering last allocation
      hpsa: shorten the wait for the CISS doorbell mode change ack
      hpsa: detect and report failures changing controller transport modes

Stephen Cameron (13):
      hpsa: trivial message and comment clean ups
      hpsa: reserve some commands for use by driver
      hpsa: get rid of cmd_special_alloc and cmd_special_free
      hpsa: do not request device rescan on every ioaccel path error
      hpsa: factor out hpsa_ciss_submit function
      hpsa: do not check for msi(x) in interrupt_pending
      hpsa: remove incorrect BUG_ONs checking for raid offload enable
      hpsa: do not ack controller events on controllers that do not support it
      hpsa: guard against overflowing raid map array
      hpsa: check for ctlr lockup after command allocation in main io path
      hpsa: do not use a void pointer for scsi_cmd field of struct CommandList
      hpsa: print CDBs instead of kernel virtual addresses for uncommon errors
      hpsa: do not use function pointers in fast path command submission

Tomas Henzl (2):
      hpsa: fix memory leak in kdump hard reset
      hpsa: turn off interrupts when kdump starts

Webb Scales (5):
      hpsa: refactor hpsa_find_board_params() to encapsulate legacy test
      hpsa: use per-controller work queue
      hpsa: fix race between abort handler and main i/o path
      hpsa: move SG descriptor set-up out of hpsa_scatter_gather()
      hpsa: refactor duplicated scan completion code into a new routine


 drivers/scsi/hpsa.c     | 1796 +++++++++++++++++++++++------------------------
 drivers/scsi/hpsa.h     |   59 +-
 drivers/scsi/hpsa_cmd.h |  334 ++++++---
 3 files changed, 1150 insertions(+), 1039 deletions(-)

--
Signature

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

end of thread, other threads:[~2015-01-23 18:16 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-14 21:59 [PATCH 00/48] hpsa driver updates Don Brace
2015-01-14 21:59 ` [PATCH 01/48] hpsa: correct endian sparse warnings Don Brace
2015-01-14 21:59 ` [PATCH 02/48] hpsa: fix memory leak in kdump hard reset Don Brace
2015-01-14 21:59 ` [PATCH 03/48] hpsa: turn off interrupts when kdump starts Don Brace
2015-01-14 21:59 ` [PATCH 04/48] hpsa: change how SA controllers are reset Don Brace
2015-01-14 22:00 ` [PATCH 05/48] hpsa: correct change_queue_depth Don Brace
2015-01-15  9:50   ` Christoph Hellwig
2015-01-14 22:00 ` [PATCH 06/48] hpsa: adjust RAID-1, RAID-1ADM, and RAID-6 names Don Brace
2015-01-14 22:00 ` [PATCH 07/48] hpsa: rename free_irqs to hpsa_free_irqs Don Brace
2015-01-14 22:00 ` [PATCH 08/48] hpsa: Fix -Wunused-but-set-variable warning Don Brace
2015-01-14 22:00 ` [PATCH 09/48] hpsa: notice all request_irq errors Don Brace
2015-01-14 22:00 ` [PATCH 10/48] hpsa: remove 0x from queue depth print which is in decimal Don Brace
2015-01-14 22:00 ` [PATCH 11/48] hpsa: propagate hard_reset failures in reset_devices mode Don Brace
2015-01-14 22:00 ` [PATCH 12/48] hpsa: propagate return value from board ID lookup Don Brace
2015-01-14 22:00 ` [PATCH 13/48] hpsa: downgrade the Waiting for no-op print to dev_info Don Brace
2015-01-14 22:00 ` [PATCH 14/48] hpsa: refactor hpsa_find_board_params() to encapsulate legacy test Don Brace
2015-01-14 22:00 ` [PATCH 15/48] hpsa: trivial message and comment clean ups Don Brace
2015-01-14 22:01 ` [PATCH 16/48] hpsa: report failure to ioremap config table Don Brace
2015-01-14 22:01 ` [PATCH 17/48] hpsa: rename hpsa_request_irq to hpsa_request_irqs Don Brace
2015-01-14 22:01 ` [PATCH 18/48] hpsa: pass error from pci_set_consistent_dma_mask from hpsa_message Don Brace
2015-01-14 22:01 ` [PATCH 19/48] hpsa: report allocation failures while allocating SG chain blocks Don Brace
2015-01-14 22:01 ` [PATCH 20/48] hpsa: fix memory leak in hpsa_alloc_cmd_pool Don Brace
2015-01-14 22:01 ` [PATCH 21/48] hpsa: avoid unneccesary calls to resource freeing functions Don Brace
2015-01-14 22:01 ` [PATCH 22/48] hpsa: reserve some commands for use by driver Don Brace
2015-01-14 22:01 ` [PATCH 23/48] hpsa: get rid of cmd_special_alloc and cmd_special_free Don Brace
2015-01-14 22:01 ` [PATCH 24/48] hpsa: do not queue commands internally in driver Don Brace
2015-01-14 22:01 ` [PATCH 25/48] hpsa: do not request device rescan on every ioaccel path error Don Brace
2015-01-14 22:01 ` [PATCH 26/48] hpsa: factor out hpsa_ciss_submit function Don Brace
2015-01-14 22:02 ` [PATCH 27/48] hpsa: use workqueue to resubmit failed ioaccel commands Don Brace
2015-01-14 22:02 ` [PATCH 28/48] hpsa: use per-controller work queue Don Brace
2015-01-15 11:32   ` Christoph Hellwig
2015-01-14 22:02 ` [PATCH 29/48] hpsa: honor queue depth of physical devices Don Brace
2015-01-14 22:02 ` [PATCH 30/48] hpsa: fix race between abort handler and main i/o path Don Brace
2015-01-14 22:02 ` [PATCH 31/48] hpsa: optimize cmd_alloc function by remembering last allocation Don Brace
2015-01-14 22:02 ` [PATCH 32/48] hpsa: count passthru cmds with atomics, not a spin locked int Don Brace
2015-01-14 22:02 ` [PATCH 33/48] hpsa: slightly optimize SA5_performant_completed Don Brace
2015-01-16 14:16   ` Tomas Henzl
2015-01-14 22:02 ` [PATCH 34/48] hpsa: do not check for msi(x) in interrupt_pending Don Brace
2015-01-14 22:02 ` [PATCH 35/48] hpsa: remove incorrect BUG_ONs checking for raid offload enable Don Brace
2015-01-14 22:02 ` [PATCH 36/48] hpsa: do not ack controller events on controllers that do not support it Don Brace
2015-01-14 22:02 ` [PATCH 37/48] hpsa: guard against overflowing raid map array Don Brace
2015-01-14 22:02 ` [PATCH 38/48] hpsa: check for ctlr lockup after command allocation in main io path Don Brace
2015-01-14 22:03 ` [PATCH 39/48] hpsa: return failed from device reset/abort handlers Don Brace
2015-01-14 22:03 ` [PATCH 40/48] hpsa: do not use a void pointer for scsi_cmd field of struct CommandList Don Brace
2015-01-14 22:03 ` [PATCH 41/48] hpsa: print CDBs instead of kernel virtual addresses for uncommon errors Don Brace
2015-01-14 22:03 ` [PATCH 42/48] hpsa: do not use function pointers in fast path command submission Don Brace
2015-01-14 22:03 ` [PATCH 43/48] hpsa: move SG descriptor set-up out of hpsa_scatter_gather() Don Brace
2015-01-14 22:03 ` [PATCH 44/48] hpsa: refactor duplicated scan completion code into a new routine Don Brace
2015-01-14 22:03 ` [PATCH 45/48] hpsa: shorten the wait for the CISS doorbell mode change ack Don Brace
2015-01-16 14:08   ` Tomas Henzl
2015-01-14 22:03 ` [PATCH 46/48] hpsa: detect and report failures changing controller transport modes Don Brace
2015-01-14 22:03 ` [PATCH 47/48] hpsa: add in gen9 controller model names Don Brace
2015-01-14 22:03 ` [PATCH 48/48] hpsa: add in P840ar controller model name Don Brace
2015-01-23 13:21 ` [PATCH 00/48] hpsa driver updates Christoph Hellwig
2015-01-23 16:58   ` brace
2015-01-23 17:01     ` Christoph Hellwig
2015-01-23 18:15       ` Tomas Henzl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).