public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()"
       [not found] <20180405173301.13186-1-bart.vanassche@wdc.com>
@ 2018-04-05 17:32 ` Bart Van Assche
  2018-04-05 17:34   ` Christoph Hellwig
                     ` (2 more replies)
  2018-04-10 13:49 ` [PATCH v3 0/3] Report all request failures again to user space Sasha Levin
  1 sibling, 3 replies; 6+ messages in thread
From: Bart Van Assche @ 2018-04-05 17:32 UTC (permalink / raw)
  To: Martin K . Petersen, James E . J . Bottomley
  Cc: linux-scsi, Bart Van Assche, Hannes Reinecke, Douglas Gilbert,
	Damien Le Moal, Christoph Hellwig, Lee Duncan, stable

The description of commit e39a97353e53 is wrong: it mentions that
commit 2a842acab109 introduced a bug in __scsi_error_from_host_byte()
although that commit did not change the behavior of that function.
Additionally, commit e39a97353e53 introduced a bug: it causes commands
that fail with hostbyte=DID_OK and driverbyte=DRIVER_SENSE to be
completed with BLK_STS_OK. Hence revert that commit.

Fixes: e39a97353e53 ("scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()")
Reported-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Cc: Hannes Reinecke <hare@suse.com>
Cc: Douglas Gilbert <dgilbert@interlog.com>
Cc: Damien Le Moal <damien.lemoal@wdc.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Lee Duncan <lduncan@suse.com>
Cc: stable@vger.kernel.org
---
 drivers/scsi/scsi_lib.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
index 1d83f29aee74..c0e4ae733cce 100644
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -733,8 +733,6 @@ static blk_status_t __scsi_error_from_host_byte(struct scsi_cmnd *cmd,
 		int result)
 {
 	switch (host_byte(result)) {
-	case DID_OK:
-		return BLK_STS_OK;
 	case DID_TRANSPORT_FAILFAST:
 		return BLK_STS_TRANSPORT;
 	case DID_TARGET_FAILURE:
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()"
  2018-04-05 17:32 ` [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()" Bart Van Assche
@ 2018-04-05 17:34   ` Christoph Hellwig
  2018-04-06  6:30   ` Hannes Reinecke
  2018-04-10 13:49   ` Sasha Levin
  2 siblings, 0 replies; 6+ messages in thread
From: Christoph Hellwig @ 2018-04-05 17:34 UTC (permalink / raw)
  To: Bart Van Assche
  Cc: Martin K . Petersen, James E . J . Bottomley, linux-scsi,
	Hannes Reinecke, Douglas Gilbert, Damien Le Moal,
	Christoph Hellwig, Lee Duncan, stable

Looks good:

Reviewed-by: Christoph Hellwig <hch@lst.de>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()"
  2018-04-05 17:32 ` [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()" Bart Van Assche
  2018-04-05 17:34   ` Christoph Hellwig
@ 2018-04-06  6:30   ` Hannes Reinecke
  2018-04-10 13:49   ` Sasha Levin
  2 siblings, 0 replies; 6+ messages in thread
From: Hannes Reinecke @ 2018-04-06  6:30 UTC (permalink / raw)
  To: Bart Van Assche
  Cc: Martin K . Petersen, James E . J . Bottomley, linux-scsi,
	Douglas Gilbert, Damien Le Moal, Christoph Hellwig, Lee Duncan,
	stable

On Thu,  5 Apr 2018 10:32:59 -0700
Bart Van Assche <bart.vanassche@wdc.com> wrote:

> The description of commit e39a97353e53 is wrong: it mentions that
> commit 2a842acab109 introduced a bug in __scsi_error_from_host_byte()
> although that commit did not change the behavior of that function.
> Additionally, commit e39a97353e53 introduced a bug: it causes commands
> that fail with hostbyte=DID_OK and driverbyte=DRIVER_SENSE to be
> completed with BLK_STS_OK. Hence revert that commit.
> 
> Fixes: e39a97353e53 ("scsi: core: return BLK_STS_OK for DID_OK in
> __scsi_error_from_host_byte()") Reported-by: Damien Le Moal
> <damien.lemoal@wdc.com> Signed-off-by: Bart Van Assche
> <bart.vanassche@wdc.com> Cc: Hannes Reinecke <hare@suse.com>
> Cc: Douglas Gilbert <dgilbert@interlog.com>
> Cc: Damien Le Moal <damien.lemoal@wdc.com>
> Cc: Christoph Hellwig <hch@lst.de>
> Cc: Lee Duncan <lduncan@suse.com>
> Cc: stable@vger.kernel.org
> ---
>  drivers/scsi/scsi_lib.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
> index 1d83f29aee74..c0e4ae733cce 100644
> --- a/drivers/scsi/scsi_lib.c
> +++ b/drivers/scsi/scsi_lib.c
> @@ -733,8 +733,6 @@ static blk_status_t
> __scsi_error_from_host_byte(struct scsi_cmnd *cmd, int result)
>  {
>  	switch (host_byte(result)) {
> -	case DID_OK:
> -		return BLK_STS_OK;
>  	case DID_TRANSPORT_FAILFAST:
>  		return BLK_STS_TRANSPORT;
>  	case DID_TARGET_FAILURE:

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

Cheers,

Hannes

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()"
  2018-04-05 17:32 ` [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()" Bart Van Assche
  2018-04-05 17:34   ` Christoph Hellwig
  2018-04-06  6:30   ` Hannes Reinecke
@ 2018-04-10 13:49   ` Sasha Levin
  2018-04-10 14:49     ` Bart Van Assche
  2 siblings, 1 reply; 6+ messages in thread
From: Sasha Levin @ 2018-04-10 13:49 UTC (permalink / raw)
  To: Sasha Levin, Bart Van Assche, Martin K . Petersen
  Cc: linux-scsi@vger.kernel.org, Hannes Reinecke, Douglas Gilbert,
	Damien Le Moal, Christoph Hellwig, Lee Duncan,
	stable@vger.kernel.org

Hi,

[This is an automated email]

This commit has been processed because it contains a "Fixes:" tag,
fixing commit: e39a97353e53 scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte().

The bot has also determined it's probably a bug fixing patch. (score: 94.6757)

The bot has tested the following trees: v4.16.1.

v4.16.1: Build OK!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 0/3] Report all request failures again to user space
       [not found] <20180405173301.13186-1-bart.vanassche@wdc.com>
  2018-04-05 17:32 ` [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()" Bart Van Assche
@ 2018-04-10 13:49 ` Sasha Levin
  1 sibling, 0 replies; 6+ messages in thread
From: Sasha Levin @ 2018-04-10 13:49 UTC (permalink / raw)
  To: Sasha Levin, Bart Van Assche, Martin K . Petersen
  Cc: linux-scsi@vger.kernel.org, stable@vger.kernel.org

Hi,

[This is an automated email]

This commit has been processed by the -stable helper bot and determined
to be a high probability candidate for -stable trees. (score: 19.8603)

The bot has tested the following trees: v4.16.1, v4.15.16, v4.14.33, v4.9.93, v4.4.127.

v4.16.1: Failed to apply! Possible dependencies:
    Unable to calculate

v4.15.16: Build OK!
v4.14.33: Build OK!
v4.9.93: Failed to apply! Possible dependencies:
    2a842acab109 ("block: introduce new block status code type")
    b6800ec54c74 ("Make scsi_result_to_blk_status() recognize CONDITION MET")

v4.4.127: Failed to apply! Possible dependencies:
    2a842acab109 ("block: introduce new block status code type")
    b6800ec54c74 ("Make scsi_result_to_blk_status() recognize CONDITION MET")


Please let us know if you'd like to have this patch included in a stable tree.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()"
  2018-04-10 13:49   ` Sasha Levin
@ 2018-04-10 14:49     ` Bart Van Assche
  0 siblings, 0 replies; 6+ messages in thread
From: Bart Van Assche @ 2018-04-10 14:49 UTC (permalink / raw)
  To: Sasha Levin, Martin K . Petersen
  Cc: linux-scsi@vger.kernel.org, Hannes Reinecke, Douglas Gilbert,
	Damien Le Moal, Christoph Hellwig, Lee Duncan,
	stable@vger.kernel.org

On 04/10/18 07:49, Sasha Levin wrote:
> [This is an automated email]
> 
> This commit has been processed because it contains a "Fixes:" tag,
> fixing commit: e39a97353e53 scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte().
> 
> The bot has also determined it's probably a bug fixing patch. (score: 94.6757)
> 
> The bot has tested the following trees: v4.16.1.
> 
> v4.16.1: Build OK!

Hello Sasha,

Please fix your bot. Your bot replied to a patch that has a "Cc: stable" 
tag.

Bart.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-04-10 14:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20180405173301.13186-1-bart.vanassche@wdc.com>
2018-04-05 17:32 ` [PATCH v3 1/3] Revert "scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()" Bart Van Assche
2018-04-05 17:34   ` Christoph Hellwig
2018-04-06  6:30   ` Hannes Reinecke
2018-04-10 13:49   ` Sasha Levin
2018-04-10 14:49     ` Bart Van Assche
2018-04-10 13:49 ` [PATCH v3 0/3] Report all request failures again to user space Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox