public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Bradley Grove <bgrove@attotech.com>
To: linux-scsi@vger.kernel.org, jbottomley@parallels.com
Cc: Bradley Grove <bgrove@attotech.com>, jseba@attotech.com
Subject: Re: [PATCH v3 10/10] [RFC] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files
Date: Tue, 06 Aug 2013 11:35:43 -0400	[thread overview]
Message-ID: <520117CF.1090309@attotech.com> (raw)
In-Reply-To: <1375462797-2128-11-git-send-email-bgrove@attotech.com>


James,

Do you have any comments on this last patch post?

I probably shouldn't have posted it as an RFC.  We've completed our 
internal testing of the driver, and I think it's probably ready to submit.

Brad


On 08/02/2013 12:59 PM, Bradley Grove wrote:
>
> Signed-off-by: Bradley Grove <bgrove@attotech.com>
> ---
>   MAINTAINERS                  | 7 +++++++
>   drivers/scsi/Kconfig         | 1 +
>   drivers/scsi/Makefile        | 1 +
>   drivers/scsi/esas2r/Kconfig  | 6 ++++++
>   drivers/scsi/esas2r/Makefile | 5 +++++
>   5 files changed, 20 insertions(+)
>   create mode 100644 drivers/scsi/esas2r/Kconfig
>   create mode 100644 drivers/scsi/esas2r/Makefile
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index a26b10e..024bc9a 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1542,6 +1542,13 @@ W:	http://atmelwlandriver.sourceforge.net/
>   S:	Maintained
>   F:	drivers/net/wireless/atmel*
>
> +ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
> +M:      Bradley Grove <linuxdrivers@attotech.com>
> +L:      linux-scsi@vger.kernel.org
> +W:      http://www.attotech.com
> +S:      Supported
> +F:      drivers/scsi/esas2r
> +
>   AUDIT SUBSYSTEM
>   M:	Al Viro <viro@zeniv.linux.org.uk>
>   M:	Eric Paris <eparis@redhat.com>
> diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
> index 48b2918..c298b76 100644
> --- a/drivers/scsi/Kconfig
> +++ b/drivers/scsi/Kconfig
> @@ -601,6 +601,7 @@ config SCSI_ARCMSR
>   	  To compile this driver as a module, choose M here: the
>   	  module will be called arcmsr (modprobe arcmsr).
>
> +source "drivers/scsi/esas2r/Kconfig"
>   source "drivers/scsi/megaraid/Kconfig.megaraid"
>   source "drivers/scsi/mpt2sas/Kconfig"
>   source "drivers/scsi/mpt3sas/Kconfig"
> diff --git a/drivers/scsi/Makefile b/drivers/scsi/Makefile
> index b607ba4..149bb6b 100644
> --- a/drivers/scsi/Makefile
> +++ b/drivers/scsi/Makefile
> @@ -141,6 +141,7 @@ obj-$(CONFIG_SCSI_CXGB3_ISCSI)	+= libiscsi.o libiscsi_tcp.o cxgbi/
>   obj-$(CONFIG_SCSI_CXGB4_ISCSI)	+= libiscsi.o libiscsi_tcp.o cxgbi/
>   obj-$(CONFIG_SCSI_BNX2_ISCSI)	+= libiscsi.o bnx2i/
>   obj-$(CONFIG_BE2ISCSI)		+= libiscsi.o be2iscsi/
> +obj-$(CONFIG_SCSI_ESAS2R)	+= esas2r/
>   obj-$(CONFIG_SCSI_PMCRAID)	+= pmcraid.o
>   obj-$(CONFIG_SCSI_VIRTIO)	+= virtio_scsi.o
>   obj-$(CONFIG_VMWARE_PVSCSI)	+= vmw_pvscsi.o
> diff --git a/drivers/scsi/esas2r/Kconfig b/drivers/scsi/esas2r/Kconfig
> new file mode 100644
> index 0000000..80824f0
> --- /dev/null
> +++ b/drivers/scsi/esas2r/Kconfig
> @@ -0,0 +1,5 @@
> +config SCSI_ESAS2R
> +	tristate "ATTO Technology's ExpressSAS RAID adapter driver"
> +	depends on PCI && SCSI
> +	---help---
> +	  This driver supports the ATTO ExpressSAS R6xx SAS/SATA RAID controllers.
> diff --git a/drivers/scsi/esas2r/Makefile b/drivers/scsi/esas2r/Makefile
> new file mode 100644
> index 0000000..c77160b
> --- /dev/null
> +++ b/drivers/scsi/esas2r/Makefile
> @@ -0,0 +1,5 @@
> +obj-$(CONFIG_SCSI_ESAS2R)	+= esas2r.o
> +
> +esas2r-objs := esas2r_log.o esas2r_disc.o esas2r_flash.o esas2r_init.o \
> +	 esas2r_int.o esas2r_io.o esas2r_ioctl.o esas2r_targdb.o   \
> +	 esas2r_vda.o esas2r_main.o
>


      reply	other threads:[~2013-08-06 15:35 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-02 16:59 [PATCH v3 00/10] [RFC] SCSI: esas2r: ATTO Technology ExpressSAS 6G SAS/SATA RAID Adapter Driver Bradley Grove
2013-08-02 16:59 ` [PATCH v3 01/10] [RFC] SCSI: esas2r: Add main header file Bradley Grove
2013-08-02 16:59 ` [PATCH v3 02/10] [RFC] SCSI: esas2r: Add main file Bradley Grove
2013-08-02 16:59 ` [PATCH v3 03/10] [RFC] SCSI: esas2r: Add initialization functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 04/10] [RFC] SCSI: esas2r: Add device discovery and logging functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 05/10] [RFC] SCSI: esas2r: Add interrupt and IO functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 06/10] [RFC] SCSI: esas2r: Add flash and target database functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 07/10] [RFC] SCSI: esas2r: Add IOCTL header file Bradley Grove
2013-08-02 16:59 ` [PATCH v3 08/10] [RFC] SCSI: esas2r: Add IOCTL functions Bradley Grove
2013-08-02 16:59 ` [PATCH v3 09/10] [RFC] SCSI: esas2r: Add ATTO VDA Firmware API headers and functions. This API is used to control and manage the RAID adapter Bradley Grove
2013-08-02 16:59 ` [PATCH v3 10/10] [RFC] SCSI: esas2r: Add Makefile, Kconfig, and MAINTAINERS files Bradley Grove
2013-08-06 15:35   ` Bradley Grove [this message]

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=520117CF.1090309@attotech.com \
    --to=bgrove@attotech.com \
    --cc=jbottomley@parallels.com \
    --cc=jseba@attotech.com \
    --cc=linux-scsi@vger.kernel.org \
    /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