linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [SCSI] iscsi: return data transfer residual for data-out commands
@ 2007-11-07 18:06 Tony Battersby
  2007-11-07 19:17 ` Boaz Harrosh
  0 siblings, 1 reply; 3+ messages in thread
From: Tony Battersby @ 2007-11-07 18:06 UTC (permalink / raw)
  To: linux-scsi, open-iscsi

Currently, the iSCSI driver returns the data transfer residual for
data-in commands (e.g. read) but not data-out commands (e.g. write).
This patch makes it return the data transfer residual for both types of
commands.

Signed-off-by: Tony Battersby <tonyb@cybernetics.com>
---
--- linux-2.6.24-rc2/drivers/scsi/libiscsi.c.orig	2007-11-07 12:52:20.000000000 -0500
+++ linux-2.6.24-rc2/drivers/scsi/libiscsi.c	2007-11-07 12:52:27.000000000 -0500
@@ -291,9 +291,6 @@ invalid_datalen:
 			   min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
 	}
 
-	if (sc->sc_data_direction == DMA_TO_DEVICE)
-		goto out;
-
 	if (rhdr->flags & ISCSI_FLAG_CMD_UNDERFLOW) {
 		int res_count = be32_to_cpu(rhdr->residual_count);
 



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

* Re: [PATCH] [SCSI] iscsi: return data transfer residual for data-out commands
  2007-11-07 18:06 [PATCH] [SCSI] iscsi: return data transfer residual for data-out commands Tony Battersby
@ 2007-11-07 19:17 ` Boaz Harrosh
  2007-11-07 20:42   ` Mike Christie
  0 siblings, 1 reply; 3+ messages in thread
From: Boaz Harrosh @ 2007-11-07 19:17 UTC (permalink / raw)
  To: Tony Battersby; +Cc: linux-scsi, open-iscsi, Mike Christie

On Wed, Nov 07 2007 at 20:06 +0200, Tony Battersby <tonyb@cybernetics.com> wrote:
> Currently, the iSCSI driver returns the data transfer residual for
> data-in commands (e.g. read) but not data-out commands (e.g. write).
> This patch makes it return the data transfer residual for both types of
> commands.
All types of commands, also good for BIDI ;)

> 
> Signed-off-by: Tony Battersby <tonyb@cybernetics.com>
> ---
> --- linux-2.6.24-rc2/drivers/scsi/libiscsi.c.orig	2007-11-07 12:52:20.000000000 -0500
> +++ linux-2.6.24-rc2/drivers/scsi/libiscsi.c	2007-11-07 12:52:27.000000000 -0500
> @@ -291,9 +291,6 @@ invalid_datalen:
>  			   min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
>  	}
>  
> -	if (sc->sc_data_direction == DMA_TO_DEVICE)
> -		goto out;
> -
>  	if (rhdr->flags & ISCSI_FLAG_CMD_UNDERFLOW) {
>  		int res_count = be32_to_cpu(rhdr->residual_count);
>  
> 
> 
Thanks, this looks right to me. (And good catch)
I have went through the code and it looks like the right thing to do.
"svn blame" annotates this code to the patch (r527) that libiscsi was 
cut out of iscsi_tcp so perhaps then it made sense, but does not anymore.
It is also needed for the bidi patches, as currently bidi commands
have a sc_data_direction == DMA_TO_DEVICE.

Pleas accept this patch
Boaz


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

* Re: [PATCH] [SCSI] iscsi: return data transfer residual for data-out commands
  2007-11-07 19:17 ` Boaz Harrosh
@ 2007-11-07 20:42   ` Mike Christie
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Christie @ 2007-11-07 20:42 UTC (permalink / raw)
  To: Boaz Harrosh; +Cc: Tony Battersby, linux-scsi, open-iscsi

Boaz Harrosh wrote:
> On Wed, Nov 07 2007 at 20:06 +0200, Tony Battersby <tonyb@cybernetics.com> wrote:
>> Currently, the iSCSI driver returns the data transfer residual for
>> data-in commands (e.g. read) but not data-out commands (e.g. write).
>> This patch makes it return the data transfer residual for both types of
>> commands.
> All types of commands, also good for BIDI ;)
> 
>> Signed-off-by: Tony Battersby <tonyb@cybernetics.com>
>> ---
>> --- linux-2.6.24-rc2/drivers/scsi/libiscsi.c.orig	2007-11-07 12:52:20.000000000 -0500
>> +++ linux-2.6.24-rc2/drivers/scsi/libiscsi.c	2007-11-07 12:52:27.000000000 -0500
>> @@ -291,9 +291,6 @@ invalid_datalen:
>>  			   min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
>>  	}
>>  
>> -	if (sc->sc_data_direction == DMA_TO_DEVICE)
>> -		goto out;
>> -
>>  	if (rhdr->flags & ISCSI_FLAG_CMD_UNDERFLOW) {
>>  		int res_count = be32_to_cpu(rhdr->residual_count);
>>  
>>
>>
> Thanks, this looks right to me. (And good catch)
> I have went through the code and it looks like the right thing to do.
> "svn blame" annotates this code to the patch (r527) that libiscsi was 
> cut out of iscsi_tcp so perhaps then it made sense

Actually I think we always had it in one way or another. Maybe because 
of the code moves svn blame goofed.

I think it was originally done because we probably thought we could not 
get underflow or overflow on a write. I do not know for sure though, but 
it may have been a workaround for some old firmware on another target 
that was fixed a long time ago.


The patch looks ok. Thanks.

James please apply with his other patch

http://marc.info/?l=linux-scsi&m=119334187619290&w=2

for scsi-rc-fixes when you get a chance. Thanks.

Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>

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

end of thread, other threads:[~2007-11-07 20:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-07 18:06 [PATCH] [SCSI] iscsi: return data transfer residual for data-out commands Tony Battersby
2007-11-07 19:17 ` Boaz Harrosh
2007-11-07 20:42   ` Mike Christie

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).