All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hannes Reinecke <hare@suse.de>
To: Suganath Prabu S <suganath-prabu.subramani@broadcom.com>,
	linux-scsi@vger.kernel.org, linux-nvme@lists.infradead.org
Cc: Sathya.Prakash@broadcom.com, sreekanth.reddy@broadcom.com
Subject: Re: [PATCH 00/11] mpt3sas: Enable scsi MQ & lockless command submission
Date: Fri, 22 Dec 2017 08:54:06 +0100	[thread overview]
Message-ID: <229526f6-f45a-b4a2-bc7d-b1f787e279c7@suse.de> (raw)
In-Reply-To: <1513927907-19735-1-git-send-email-suganath-prabu.subramani@broadcom.com>

On 12/22/2017 08:31 AM, Suganath Prabu S wrote:
> From: Hannes Reinecke <hare@suse.de>
> 
> Hi all,
> 
> This patch set is initially posted by Hannes Reinecke to enable scsi
> multiqueue for the mpt3sas driver.
> While the HBA only has a single mailbox register for submitting commands,
> it does have individual receive queues per MSI-X interrupt and as such
> does benefit from converting it to full multiqueue support. 
> 
> Suganath Prabu S (11):
>   mpt3sas: set default value for cb_idx
>   mpt3sas: use list_splice_init()
>   mpt3sas: separate out _base_recovery_check()
>   mpt3sas: open-code _scsih_scsi_lookup_get()
>   mpt3sas: Introduce mpt3sas_get_st_from_smid()
>   mpt3sas: check command status before attempting abort
>   mpt3sas: always use first reserved smid for ioctl      passthrough
>   mpt3sas: simplify task management functions
>   mpt3sas: simplify mpt3sas_scsi_issue_tm()
>   mpt3sas: simplify _wait_for_commands_to_complete()
>   mpt3sas: lockless command submission
> 
>  drivers/scsi/mpt3sas/modules.order       |   2 +-
>  drivers/scsi/mpt3sas/mpt3sas_base.c      | 199 +++++++++++----------
>  drivers/scsi/mpt3sas/mpt3sas_base.h      |  29 ++-
>  drivers/scsi/mpt3sas/mpt3sas_ctl.c       |  31 ++--
>  drivers/scsi/mpt3sas/mpt3sas_scsih.c     | 292 +++++++------------------------
>  drivers/scsi/mpt3sas/mpt3sas_warpdrive.c |  33 +---
>  6 files changed, 192 insertions(+), 394 deletions(-)
> 
> Thanks,
> Suganath Prabu S
> 
Seeing that it's my patchset you can add a

Signed-off-by: Hannes Reinecke <hare@suse.com>

to all patches.

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		   Teamlead Storage & Networking
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)

WARNING: multiple messages have this Message-ID (diff)
From: hare@suse.de (Hannes Reinecke)
Subject: [PATCH 00/11] mpt3sas: Enable scsi MQ & lockless command submission
Date: Fri, 22 Dec 2017 08:54:06 +0100	[thread overview]
Message-ID: <229526f6-f45a-b4a2-bc7d-b1f787e279c7@suse.de> (raw)
In-Reply-To: <1513927907-19735-1-git-send-email-suganath-prabu.subramani@broadcom.com>

On 12/22/2017 08:31 AM, Suganath Prabu S wrote:
> From: Hannes Reinecke <hare at suse.de>
> 
> Hi all,
> 
> This patch set is initially posted by Hannes Reinecke to enable scsi
> multiqueue for the mpt3sas driver.
> While the HBA only has a single mailbox register for submitting commands,
> it does have individual receive queues per MSI-X interrupt and as such
> does benefit from converting it to full multiqueue support. 
> 
> Suganath Prabu S (11):
>   mpt3sas: set default value for cb_idx
>   mpt3sas: use list_splice_init()
>   mpt3sas: separate out _base_recovery_check()
>   mpt3sas: open-code _scsih_scsi_lookup_get()
>   mpt3sas: Introduce mpt3sas_get_st_from_smid()
>   mpt3sas: check command status before attempting abort
>   mpt3sas: always use first reserved smid for ioctl      passthrough
>   mpt3sas: simplify task management functions
>   mpt3sas: simplify mpt3sas_scsi_issue_tm()
>   mpt3sas: simplify _wait_for_commands_to_complete()
>   mpt3sas: lockless command submission
> 
>  drivers/scsi/mpt3sas/modules.order       |   2 +-
>  drivers/scsi/mpt3sas/mpt3sas_base.c      | 199 +++++++++++----------
>  drivers/scsi/mpt3sas/mpt3sas_base.h      |  29 ++-
>  drivers/scsi/mpt3sas/mpt3sas_ctl.c       |  31 ++--
>  drivers/scsi/mpt3sas/mpt3sas_scsih.c     | 292 +++++++------------------------
>  drivers/scsi/mpt3sas/mpt3sas_warpdrive.c |  33 +---
>  6 files changed, 192 insertions(+), 394 deletions(-)
> 
> Thanks,
> Suganath Prabu S
> 
Seeing that it's my patchset you can add a

Signed-off-by: Hannes Reinecke <hare at suse.com>

to all patches.

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		   Teamlead Storage & Networking
hare at 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)

  parent reply	other threads:[~2017-12-22  7:54 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-22  7:31 [PATCH 00/11] mpt3sas: Enable scsi MQ & lockless command submission Suganath Prabu S
2017-12-22  7:31 ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 01/11] mpt3sas: set default value for cb_idx Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 02/11] mpt3sas: use list_splice_init() Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 03/11] mpt3sas: separate out _base_recovery_check() Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 04/11] mpt3sas: open-code _scsih_scsi_lookup_get() Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 05/11] mpt3sas: Introduce mpt3sas_get_st_from_smid() Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 06/11] mpt3sas: check command status before attempting abort Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 07/11] mpt3sas: always use first reserved smid for ioctl passthrough Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 08/11] mpt3sas: simplify task management functions Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 09/11] mpt3sas: simplify mpt3sas_scsi_issue_tm() Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 10/11] mpt3sas: simplify _wait_for_commands_to_complete() Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:31 ` [PATCH 11/11] mpt3sas: lockless command submission Suganath Prabu S
2017-12-22  7:31   ` Suganath Prabu S
2017-12-22  7:54 ` Hannes Reinecke [this message]
2017-12-22  7:54   ` [PATCH 00/11] mpt3sas: Enable scsi MQ & " Hannes Reinecke
2018-01-04  4:07 ` Martin K. Petersen
2018-01-04  4:07   ` Martin K. Petersen

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=229526f6-f45a-b4a2-bc7d-b1f787e279c7@suse.de \
    --to=hare@suse.de \
    --cc=Sathya.Prakash@broadcom.com \
    --cc=linux-nvme@lists.infradead.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=sreekanth.reddy@broadcom.com \
    --cc=suganath-prabu.subramani@broadcom.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 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.