linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hannes Reinecke <hare@suse.de>
To: Narsimhulu Musini <nmusini@cisco.com>,
	JBottomley@Parallels.com, linux-scsi@vger.kernel.org
Cc: Sesidhar Baddela <sebaddel@cisco.com>
Subject: Re: [PATCH 9/9] snic:Add Makefile, patch Kconfig, MAINTAINERS
Date: Mon, 02 Mar 2015 14:35:36 +0100	[thread overview]
Message-ID: <54F46728.3070908@suse.de> (raw)
In-Reply-To: <1423586616-18177-10-git-send-email-nmusini@cisco.com>

On 02/10/2015 05:43 PM, Narsimhulu Musini wrote:
> Kconfig for kbuild
> Makefile to build snic module
> 
> Updated MAINTAINERS file
> 
> Signed-off-by: Narsimhulu Musini <nmusini@cisco.com>
> Signed-off-by: Sesidhar Baddela <sebaddel@cisco.com>
> ---
>  MAINTAINERS                |  7 +++++++
>  drivers/scsi/Kconfig       | 10 ++++++++++
>  drivers/scsi/Makefile      |  1 +
>  drivers/scsi/snic/Makefile | 17 +++++++++++++++++
>  4 files changed, 35 insertions(+)
>  create mode 100644 drivers/scsi/snic/Makefile
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 2a97e05..368fb76 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2536,6 +2536,13 @@ L:	linux-scsi@vger.kernel.org
>  S:	Supported
>  F:	drivers/scsi/fnic/
>  
> +CISCO SCSI HBA DRIVER
> +M:	Narsimhulu Musini <nmusini@cisco.com>
> +M:	Sesidhar Baddela <sebaddel@cisco.com>
> +L:	linux-scsi@vger.kernel.org
> +S:	Supported
> +F:	drivers/scsi/snic/
> +
>  CMPC ACPI DRIVER
>  M:	Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
>  M:	Daniel Oliveira Nascimento <don@syst.com.br>
> diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
> index 9c92f41..7e9d80a 100644
> --- a/drivers/scsi/Kconfig
> +++ b/drivers/scsi/Kconfig
> @@ -634,6 +634,16 @@ config FCOE_FNIC
>  	  <file:Documentation/scsi/scsi.txt>.
>  	  The module will be called fnic.
>  
> +config SCSI_SNIC
> +	tristate "Cisco SNIC Driver"
> +	depends on PCI && SCSI && X86
> +	help
> +	  This is support for the Cisco PCI-Express SCSI HBA.
> +
> +	  To compile this driver as a module, choose M here and read
> +	  <file:Documentation/scsi/scsi.txt>.
> +	  The module will be called snic.
> +
>  config SCSI_DMX3191D
>  	tristate "DMX3191D SCSI support"
>  	depends on PCI && SCSI
> diff --git a/drivers/scsi/Makefile b/drivers/scsi/Makefile
> index 58158f1..f643942 100644
> --- a/drivers/scsi/Makefile
> +++ b/drivers/scsi/Makefile
> @@ -39,6 +39,7 @@ obj-$(CONFIG_LIBFC)		+= libfc/
>  obj-$(CONFIG_LIBFCOE)		+= fcoe/
>  obj-$(CONFIG_FCOE)		+= fcoe/
>  obj-$(CONFIG_FCOE_FNIC)		+= fnic/
> +obj-$(CONFIG_SCSI_SNIC)		+= snic/
>  obj-$(CONFIG_SCSI_BNX2X_FCOE)	+= libfc/ fcoe/ bnx2fc/
>  obj-$(CONFIG_ISCSI_TCP) 	+= libiscsi.o	libiscsi_tcp.o iscsi_tcp.o
>  obj-$(CONFIG_INFINIBAND_ISER) 	+= libiscsi.o
> diff --git a/drivers/scsi/snic/Makefile b/drivers/scsi/snic/Makefile
> new file mode 100644
> index 0000000..ad856a1
> --- /dev/null
> +++ b/drivers/scsi/snic/Makefile
> @@ -0,0 +1,17 @@
> +obj-$(CONFIG_SCSI_SNIC) += snic.o
> +
> +snic-y := \
> +	snic_attrs.o \
> +	snic_main.o \
> +	snic_res.o \
> +	snic_isr.o \
> +	snic_ctl.o \
> +	snic_io.o \
> +	snic_scsi.o \
> +	snic_disc.o \
> +	snic_debugfs.o \
> +	snic_trc.o \
> +	vnic_cq.o \
> +	vnic_intr.o \
> +	vnic_dev.o \
> +	vnic_wq.o
> 
As mentioned earlier, please add OONFIG_XXX items for debugfs and
tracing functionality.

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		               zSeries & Storage
hare@suse.de			               +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: F. Imendörffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG Nürnberg)
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2015-03-02 13:35 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-10 16:43 [PATCH 0/9] snic:initial submission of snic driver for Cisco SCSI HBA Narsimhulu Musini
2015-02-10 16:43 ` [PATCH 1/9] snic: snic module infrastructure Narsimhulu Musini
2015-03-02 12:39   ` Hannes Reinecke
2015-03-11  8:33     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 2/9] snic:Add interrupt, resource firmware interfaces Narsimhulu Musini
2015-03-02 12:53   ` Hannes Reinecke
2015-03-11  8:35     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 3/9] snic:Add meta request, handling of meta requests Narsimhulu Musini
2015-03-02 12:56   ` Hannes Reinecke
2015-03-11  8:35     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 4/9] snic:Add snic target discovery Narsimhulu Musini
2015-03-02 12:59   ` Hannes Reinecke
2015-03-11  8:35     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 5/9] snic:add SCSI handling, AEN, and fwreset handling Narsimhulu Musini
2015-03-02 13:26   ` Hannes Reinecke
2015-03-11  8:39     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 6/9] snic:Add low level queuing interfaces Narsimhulu Musini
2015-03-02 13:32   ` Hannes Reinecke
2015-03-11  8:39     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 7/9] snic:Add sysfs entries to list stats and trace data Narsimhulu Musini
2015-03-02 13:33   ` Hannes Reinecke
2015-03-11  8:39     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 8/9] snic:Add event tracing to capture IO events Narsimhulu Musini
2015-03-02 13:34   ` Hannes Reinecke
2015-03-11  8:40     ` Narsimhulu Musini (nmusini)
2015-02-10 16:43 ` [PATCH 9/9] snic:Add Makefile, patch Kconfig, MAINTAINERS Narsimhulu Musini
2015-03-02 13:35   ` Hannes Reinecke [this message]
2015-03-11  8:40     ` Narsimhulu Musini (nmusini)

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=54F46728.3070908@suse.de \
    --to=hare@suse.de \
    --cc=JBottomley@Parallels.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=nmusini@cisco.com \
    --cc=sebaddel@cisco.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).