linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Finn Thain <fthain@telegraphics.com.au>
To: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>
Cc: Michael Schmitz <schmitzmic@gmail.com>,
	Ondrej Zary <linux@rainbow-software.org>,
	linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v3 00/12] Fixes, cleanup and g_NCR5380_mmio/g_NCR5380 merger
Date: Mon, 10 Oct 2016 00:46:52 -0400 (EDT)	[thread overview]
Message-ID: <cover.1476051961.git.fthain@telegraphics.com.au> (raw)

This patch series has fixes for compatibility, reliability and
performance issues and some cleanup. It also includes a new version
of Ondrej Zary's patch that merges g_NCR5380_mmio into g_NCR5380.

I've tested this patch series using mac_scsi on a Powerbook 180.
Ondrej tested the g_NCR5380 driver and Michael tested atari_scsi.
The other drivers have been compile-tested.

Changes since v1:
- rebased on 4.9/scsi-queue
- added reviewed-by tags
- tweaked the order of struct members in patch 7/12

Changes since v2:
- added tested-by tags
- fixed typo in log message for patch 3/12


Finn Thain (12):
  scsi/g_NCR5380: Merge g_NCR5380 and g_NCR5380_mmio drivers
  scsi/cumana_1: Remove unused cumanascsi_setup() function
  scsi/atari_scsi: Make device register accessors re-entrant
  scsi/ncr5380: Simplify register polling limit
  scsi/ncr5380: Increase register polling limit
  scsi/ncr5380: Improve hostdata struct member alignment and
    cache-ability
  scsi/ncr5380: Store IO ports and addresses in host private data
  scsi/ncr5380: Use correct types for device register accessors
  scsi/ncr5380: Pass hostdata pointer to register polling routines
  scsi/ncr5380: Expedite register polling
  scsi/ncr5380: Use correct types for DMA routines
  scsi/ncr5380: Suppress unhelpful "interrupt without IRQ bit" message

 MAINTAINERS                   |   1 -
 drivers/scsi/Kconfig          |  32 +----
 drivers/scsi/Makefile         |   1 -
 drivers/scsi/NCR5380.c        | 137 +++++++++++---------
 drivers/scsi/NCR5380.h        |  87 +++++++++----
 drivers/scsi/arm/cumana_1.c   |  98 +++++++-------
 drivers/scsi/arm/oak.c        |  34 +++--
 drivers/scsi/atari_scsi.c     |  77 ++++++-----
 drivers/scsi/dmx3191d.c       |  20 +--
 drivers/scsi/g_NCR5380.c      | 290 ++++++++++++++++++++----------------------
 drivers/scsi/g_NCR5380.h      |  32 +----
 drivers/scsi/g_NCR5380_mmio.c |  10 --
 drivers/scsi/mac_scsi.c       |  83 +++++-------
 drivers/scsi/sun3_scsi.c      |  80 ++++++------
 14 files changed, 495 insertions(+), 487 deletions(-)
 delete mode 100644 drivers/scsi/g_NCR5380_mmio.c

-- 
2.7.3

             reply	other threads:[~2016-10-10  4:46 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-10  4:46 Finn Thain [this message]
2016-10-10  4:46 ` [PATCH v3 04/12] scsi/ncr5380: Simplify register polling limit Finn Thain
2016-10-10  4:46 ` [PATCH v3 05/12] scsi/ncr5380: Increase " Finn Thain
2016-10-10  4:46 ` [PATCH v3 03/12] scsi/atari_scsi: Make device register accessors re-entrant Finn Thain
2016-10-10  4:46 ` [PATCH v3 01/12] scsi/g_NCR5380: Merge g_NCR5380 and g_NCR5380_mmio drivers Finn Thain
2016-10-10  4:46 ` [PATCH v3 02/12] scsi/cumana_1: Remove unused cumanascsi_setup() function Finn Thain
2016-10-10  9:11   ` Russell King - ARM Linux
2016-10-10  4:46 ` [PATCH v3 10/12] scsi/ncr5380: Expedite register polling Finn Thain
2016-10-10  9:17   ` Russell King - ARM Linux
2016-10-10 22:57     ` Finn Thain
2016-10-10  4:46 ` [PATCH v3 11/12] scsi/ncr5380: Use correct types for DMA routines Finn Thain
2016-10-10  9:15   ` Russell King - ARM Linux
2016-10-10  4:46 ` [PATCH v3 06/12] scsi/ncr5380: Improve hostdata struct member alignment and cache-ability Finn Thain
2016-10-10  4:46 ` [PATCH v3 07/12] scsi/ncr5380: Store IO ports and addresses in host private data Finn Thain
2016-10-10  9:19   ` Russell King - ARM Linux
2016-10-10  4:46 ` [PATCH v3 12/12] scsi/ncr5380: Suppress unhelpful "interrupt without IRQ bit" message Finn Thain
2016-10-10  4:46 ` [PATCH v3 08/12] scsi/ncr5380: Use correct types for device register accessors Finn Thain
2016-10-10  9:13   ` Russell King - ARM Linux
2016-10-10  4:46 ` [PATCH v3 09/12] scsi/ncr5380: Pass hostdata pointer to register polling routines Finn Thain

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1476051961.git.fthain@telegraphics.com.au \
    --to=fthain@telegraphics.com.au \
    --cc=jejb@linux.vnet.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=linux@rainbow-software.org \
    --cc=martin.petersen@oracle.com \
    --cc=schmitzmic@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).