diff mbox

[1/2] libata: allow sata_sil24 to opt-out of tag ordered submission

Message ID 20150116231302.18771.62862.stgit@viggo.jf.intel.com
State Not Applicable
Delegated to: David Miller
Headers show

Commit Message

Dan Williams Jan. 16, 2015, 11:13 p.m. UTC
Ronny reports: https://bugzilla.kernel.org/show_bug.cgi?id=87101
    "Since commit 8a4aeec8d "libata/ahci: accommodate tag ordered
    controllers" the access to the harddisk on the first SATA-port is
    failing on its first access. The access to the harddisk on the
    second port is working normal.

    When reverting the above commit, access to both harddisks is working
    fine again."

Maintain tag ordered submission as the default, but allow sata_sil24 to
continue with the old behavior.

Cc: <stable@vger.kernel.org>
Cc: Tejun Heo <tj@kernel.org>
Reported-by: Ronny Hegewald <Ronny.Hegewald@online.de>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
 drivers/ata/libata-core.c |    5 ++++-
 drivers/ata/sata_sil24.c  |    2 +-
 include/linux/libata.h    |    1 +
 3 files changed, 6 insertions(+), 2 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Sergei Shtylyov Jan. 17, 2015, 10:59 a.m. UTC | #1
Hello.

On 1/17/2015 2:13 AM, Dan Williams wrote:

> Ronny reports: https://bugzilla.kernel.org/show_bug.cgi?id=87101
>      "Since commit 8a4aeec8d "libata/ahci: accommodate tag ordered
>      controllers" the access to the harddisk on the first SATA-port is
>      failing on its first access. The access to the harddisk on the
>      second port is working normal.

>      When reverting the above commit, access to both harddisks is working
>      fine again."

> Maintain tag ordered submission as the default, but allow sata_sil24 to
> continue with the old behavior.

> Cc: <stable@vger.kernel.org>
> Cc: Tejun Heo <tj@kernel.org>
> Reported-by: Ronny Hegewald <Ronny.Hegewald@online.de>
> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
> ---
>   drivers/ata/libata-core.c |    5 ++++-
>   drivers/ata/sata_sil24.c  |    2 +-
>   include/linux/libata.h    |    1 +
>   3 files changed, 6 insertions(+), 2 deletions(-)

> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index 5c84fb5c3372..e2085d4b5b93 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -4748,7 +4748,10 @@ static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
>   		return NULL;
>
>   	for (i = 0, tag = ap->last_tag + 1; i < max_queue; i++, tag++) {
> -		tag = tag < max_queue ? tag : 0;
> +		if (ap->flags & ATA_FLAG_LOWTAG)
> +			tag = i;
> +		else
> +			tag = tag < max_queue ? tag : 0;

    Ugh, this is clear abuse of the ?: operator... Why not simply:

		else if (tag >= max_queue)
			tag = 0;

[...]

MBR, Sergei

--
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Sergei Shtylyov Jan. 17, 2015, 6:43 p.m. UTC | #2
On 01/17/2015 09:35 PM, Dan Williams wrote:

>  >> Ronny reports: https://bugzilla.kernel.org/show_bug.cgi?id=87101
>  >>      "Since commit 8a4aeec8d "libata/ahci: accommodate tag ordered
>  >>      controllers" the access to the harddisk on the first SATA-port is
>  >>      failing on its first access. The access to the harddisk on the
>  >>      second port is working normal.

>  >>      When reverting the above commit, access to both harddisks is working
>  >>      fine again."

>  >> Maintain tag ordered submission as the default, but allow sata_sil24 to
>  >> continue with the old behavior.

>  >> Cc: <stable@vger.kernel.org <mailto:stable@vger.kernel.org>>
>  >> Cc: Tejun Heo <tj@kernel.org <mailto:tj@kernel.org>>
>  >> Reported-by: Ronny Hegewald <Ronny.Hegewald@online.de>
>  >> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
>  >> ---
>  >>   drivers/ata/libata-core.c |    5 ++++-
>  >>   drivers/ata/sata_sil24.c  |    2 +-
>  >>   include/linux/libata.h    |    1 +
>  >>   3 files changed, 6 insertions(+), 2 deletions(-)

>  >> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
>  >> index 5c84fb5c3372..e2085d4b5b93 100644
>  >> --- a/drivers/ata/libata-core.c
>  >> +++ b/drivers/ata/libata-core.c
>  >> @@ -4748,7 +4748,10 @@ static struct ata_queued_cmd *ata_qc_new(struct
> ata_port *ap)
>  >>                 return NULL;
>  >>
>  >>         for (i = 0, tag = ap->last_tag + 1; i < max_queue; i++, tag++) {
>  >> -               tag = tag < max_queue ? tag : 0;
>  >> +               if (ap->flags & ATA_FLAG_LOWTAG)
>  >> +                       tag = i;
>  >> +               else
>  >> +                       tag = tag < max_queue ? tag : 0;

>  >    Ugh, this is clear abuse of the ?: operator... Why not simply:

>  >                 else if (tag >= max_queue)
>  >                         tag = 0;

> "Abuse"!? Let's just call it "creative differences adding in a minimal quirk
> while neglecting to refactor" ;-).

    In fact, the old code had the same abuse, I didn't notice that...

> Sure, that's cleaner.

    Thanks. :-)

MBR, Sergei

--
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Tejun Heo Jan. 19, 2015, 2:12 p.m. UTC | #3
On Sat, Jan 17, 2015 at 01:59:42PM +0300, Sergei Shtylyov wrote:
> >  	for (i = 0, tag = ap->last_tag + 1; i < max_queue; i++, tag++) {
> >-		tag = tag < max_queue ? tag : 0;
> >+		if (ap->flags & ATA_FLAG_LOWTAG)
> >+			tag = i;
> >+		else
> >+			tag = tag < max_queue ? tag : 0;
> 
>    Ugh, this is clear abuse of the ?: operator... Why not simply:
> 
> 		else if (tag >= max_queue)
> 			tag = 0;

Why is that a clear abuse?  Seems like a pretty typical use to me.

Thanks.
Tejun Heo Jan. 19, 2015, 2:13 p.m. UTC | #4
On Fri, Jan 16, 2015 at 03:13:02PM -0800, Dan Williams wrote:
> Ronny reports: https://bugzilla.kernel.org/show_bug.cgi?id=87101
>     "Since commit 8a4aeec8d "libata/ahci: accommodate tag ordered
>     controllers" the access to the harddisk on the first SATA-port is
>     failing on its first access. The access to the harddisk on the
>     second port is working normal.
> 
>     When reverting the above commit, access to both harddisks is working
>     fine again."
> 
> Maintain tag ordered submission as the default, but allow sata_sil24 to
> continue with the old behavior.
> 
> Cc: <stable@vger.kernel.org>
> Cc: Tejun Heo <tj@kernel.org>
> Reported-by: Ronny Hegewald <Ronny.Hegewald@online.de>
> Signed-off-by: Dan Williams <dan.j.williams@intel.com>

Applied to libata/for-3.18-fixes.

Thanks.
Sergei Shtylyov Jan. 19, 2015, 2:24 p.m. UTC | #5
Hello.

On 1/19/2015 5:12 PM, Tejun Heo wrote:

>>>   	for (i = 0, tag = ap->last_tag + 1; i < max_queue; i++, tag++) {
>>> -		tag = tag < max_queue ? tag : 0;
>>> +		if (ap->flags & ATA_FLAG_LOWTAG)
>>> +			tag = i;
>>> +		else
>>> +			tag = tag < max_queue ? tag : 0;

>>     Ugh, this is clear abuse of the ?: operator... Why not simply:

>> 		else if (tag >= max_queue)
>> 			tag = 0;

> Why is that a clear abuse?  Seems like a pretty typical use to me.

    This is my first reaction to statements like 'x = x < M ? x : 0'. I really
prefer two-liners with *if* to them.

> Thanks.

MBR, Sergei

--
To unsubscribe from this list: send the line "unsubscribe linux-ide" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Tejun Heo Jan. 19, 2015, 2:27 p.m. UTC | #6
On Mon, Jan 19, 2015 at 05:24:30PM +0300, Sergei Shtylyov wrote:
> >Why is that a clear abuse?  Seems like a pretty typical use to me.
> 
>    This is my first reaction to statements like 'x = x < M ? x : 0'. I really
> prefer two-liners with *if* to them.

But that doesn't justify the "clear abuse" part at all.  I get that
different people may have different preferences but that's not what
you expressed.

Thanks.
diff mbox

Patch

diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 5c84fb5c3372..e2085d4b5b93 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -4748,7 +4748,10 @@  static struct ata_queued_cmd *ata_qc_new(struct ata_port *ap)
 		return NULL;
 
 	for (i = 0, tag = ap->last_tag + 1; i < max_queue; i++, tag++) {
-		tag = tag < max_queue ? tag : 0;
+		if (ap->flags & ATA_FLAG_LOWTAG)
+			tag = i;
+		else
+			tag = tag < max_queue ? tag : 0;
 
 		/* the last tag is reserved for internal command. */
 		if (tag == ATA_TAG_INTERNAL)
diff --git a/drivers/ata/sata_sil24.c b/drivers/ata/sata_sil24.c
index d81b20ddb527..ea655949023f 100644
--- a/drivers/ata/sata_sil24.c
+++ b/drivers/ata/sata_sil24.c
@@ -246,7 +246,7 @@  enum {
 	/* host flags */
 	SIL24_COMMON_FLAGS	= ATA_FLAG_SATA | ATA_FLAG_PIO_DMA |
 				  ATA_FLAG_NCQ | ATA_FLAG_ACPI_SATA |
-				  ATA_FLAG_AN | ATA_FLAG_PMP,
+				  ATA_FLAG_AN | ATA_FLAG_PMP | ATA_FLAG_LOWTAG,
 	SIL24_FLAG_PCIX_IRQ_WOC	= (1 << 24), /* IRQ loss errata on PCI-X */
 
 	IRQ_STAT_4PORTS		= 0xf,
diff --git a/include/linux/libata.h b/include/linux/libata.h
index 2d182413b1db..aba87a3f60bc 100644
--- a/include/linux/libata.h
+++ b/include/linux/libata.h
@@ -231,6 +231,7 @@  enum {
 	ATA_FLAG_SW_ACTIVITY	= (1 << 22), /* driver supports sw activity
 					      * led */
 	ATA_FLAG_NO_DIPM	= (1 << 23), /* host not happy with DIPM */
+	ATA_FLAG_LOWTAG		= (1 << 24), /* host wants lowest available tag */
 
 	/* bits 24:31 of ap->flags are reserved for LLD specific flags */