LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Tony Battersby <tonyb@cybernetics.com>
To: Shaohua Li <shli@fb.com>, Tejun Heo <tj@kernel.org>
Cc: Dan Williams <dan.j.williams@intel.com>,
Jens Axboe <axboe@fb.com>,
IDE/ATA development list <linux-ide@vger.kernel.org>,
Christoph Hellwig <hch@infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] libata: revert "libata: use blk taging" et al.
Date: Thu, 12 Mar 2015 09:51:45 -0400 [thread overview]
Message-ID: <550199F1.1090308@cybernetics.com> (raw)
In-Reply-To: <20150312124601.GA2750169@devbig257.prn2.facebook.com>
On 03/12/2015 08:46 AM, Shaohua Li wrote:
> Yep. Tony, can you please try below patch please?
>
>
> ata: Add a new flag for sas controller
>
> Add a new flag to destinguish sas controller. sas controller has its own tag
> allocation, which doesn't directly match to ata tag. We use the new flag for
> sas ata tag allocation.
>
> Reported-by: Tony Battersby <tonyb@cybernetics.com>
> Signed-off-by: Shaohua Li <shli@fb.com>
>
Yes, that fixes it. Thanks!
Tested-by: Tony Battersby <tonyb@cybernetics.com>
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index 4c35f08..ef150eb 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -4737,7 +4737,7 @@ struct ata_queued_cmd *ata_qc_new_init(struct ata_device *dev, int tag)
> return NULL;
>
> /* libsas case */
> - if (!ap->scsi_host) {
> + if (ap->flags & ATA_FLAG_SAS_HOST) {
> tag = ata_sas_allocate_tag(ap);
> if (tag < 0)
> return NULL;
> @@ -4776,7 +4776,7 @@ void ata_qc_free(struct ata_queued_cmd *qc)
> tag = qc->tag;
> if (likely(ata_tag_valid(tag))) {
> qc->tag = ATA_TAG_POISON;
> - if (!ap->scsi_host)
> + if (ap->flags & ATA_FLAG_SAS_HOST)
> ata_sas_free_tag(tag, ap);
> }
> }
> diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c
> index 9219953..d9afc51 100644
> --- a/drivers/scsi/ipr.c
> +++ b/drivers/scsi/ipr.c
> @@ -6815,7 +6815,8 @@ static struct ata_port_operations ipr_sata_ops = {
> };
>
> static struct ata_port_info sata_port_info = {
> - .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA,
> + .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA |
> + ATA_FLAG_SAS_HOST,
> .pio_mask = ATA_PIO4_ONLY,
> .mwdma_mask = ATA_MWDMA2,
> .udma_mask = ATA_UDMA6,
> diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c
> index 932d9cc..9c706d8 100644
> --- a/drivers/scsi/libsas/sas_ata.c
> +++ b/drivers/scsi/libsas/sas_ata.c
> @@ -547,7 +547,8 @@ static struct ata_port_operations sas_sata_ops = {
> };
>
> static struct ata_port_info sata_port_info = {
> - .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ,
> + .flags = ATA_FLAG_SATA | ATA_FLAG_PIO_DMA | ATA_FLAG_NCQ |
> + ATA_FLAG_SAS_HOST,
> .pio_mask = ATA_PIO4,
> .mwdma_mask = ATA_MWDMA2,
> .udma_mask = ATA_UDMA6,
> diff --git a/include/linux/libata.h b/include/linux/libata.h
> index fc03efa..6b08cc1 100644
> --- a/include/linux/libata.h
> +++ b/include/linux/libata.h
> @@ -232,6 +232,7 @@ enum {
> * led */
> ATA_FLAG_NO_DIPM = (1 << 23), /* host not happy with DIPM */
> ATA_FLAG_LOWTAG = (1 << 24), /* host wants lowest available tag */
> + ATA_FLAG_SAS_HOST = (1 << 25), /* SAS host */
>
> /* bits 24:31 of ap->flags are reserved for LLD specific flags */
>
>
next prev parent reply other threads:[~2015-03-12 13:51 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-11 18:15 Tony Battersby
2015-03-11 21:45 ` Jens Axboe
2015-03-11 22:19 ` Tony Battersby
2015-03-12 1:53 ` Shaohua Li
2015-03-12 2:31 ` Shaohua Li
2015-03-12 10:14 ` Dan Williams
2015-03-12 12:11 ` Tejun Heo
2015-03-12 12:46 ` Shaohua Li
2015-03-12 13:51 ` Tony Battersby [this message]
2015-03-12 13:59 ` Tejun Heo
2015-03-12 17:32 ` Shaohua Li
2015-03-19 18:17 ` [PATCH libata/for-4.0-fixes] ata: Add a new flag to destinguish sas controller Tejun Heo
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=550199F1.1090308@cybernetics.com \
--to=tonyb@cybernetics.com \
--cc=axboe@fb.com \
--cc=dan.j.williams@intel.com \
--cc=hch@infradead.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=shli@fb.com \
--cc=tj@kernel.org \
--subject='Re: [PATCH] libata: revert "libata: use blk taging" et al.' \
/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
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).