All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] sbp2: remove manipulation of inquiry response
@ 2006-04-08 18:45 Stefan Richter
  2006-04-08 18:55 ` Stefan Richter
  2006-04-18  9:41 ` Jody McIntyre
  0 siblings, 2 replies; 6+ messages in thread
From: Stefan Richter @ 2006-04-08 18:45 UTC (permalink / raw)
  To: linux-scsi; +Cc: linux1394-devel

This code became ineffective a few Linux releases ago and is
apparently not required anyway.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>

Index: linux-2.6.17-rc1/drivers/ieee1394/sbp2.c
===================================================================
--- linux-2.6.17-rc1.orig/drivers/ieee1394/sbp2.c	2006-04-08 09:43:33.000000000 +0200
+++ linux-2.6.17-rc1/drivers/ieee1394/sbp2.c	2006-04-08 20:40:00.000000000 +0200
@@ -2079,33 +2079,6 @@ static unsigned int sbp2_status_to_sense
 }
 
 /*
- * This function is called after a command is completed, in order to do any necessary SBP-2
- * response data translations for the SCSI stack
- */
-static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
-				     struct scsi_cmnd *SCpnt)
-{
-	u8 *scsi_buf = SCpnt->request_buffer;
-
-	SBP2_DEBUG_ENTER();
-
-	if (SCpnt->cmnd[0] == INQUIRY && (SCpnt->cmnd[1] & 3) == 0) {
-		/*
-		 * Make sure data length is ok. Minimum length is 36 bytes
-		 */
-		if (scsi_buf[4] == 0) {
-			scsi_buf[4] = 36 - 5;
-		}
-
-		/*
-		 * Fix ansi revision and response data format
-		 */
-		scsi_buf[2] |= 2;
-		scsi_buf[3] = (scsi_buf[3] & 0xf0) | 2;
-	}
-}
-
-/*
  * This function deals with status writes from the SBP-2 device
  */
 static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid,
@@ -2444,13 +2417,6 @@ static void sbp2scsi_complete_command(st
 	}
 
 	/*
-	 * Take care of any sbp2 response data mucking here (RBC stuff, etc.)
-	 */
-	if (SCpnt->result == DID_OK << 16) {
-		sbp2_check_sbp2_response(scsi_id, SCpnt);
-	}
-
-	/*
 	 * If a bus reset is in progress and there was an error, complete
 	 * the command as busy so that it will get retried.
 	 */
Index: linux-2.6.17-rc1/drivers/ieee1394/sbp2.h
===================================================================
--- linux-2.6.17-rc1.orig/drivers/ieee1394/sbp2.h	2006-04-08 09:43:32.000000000 +0200
+++ linux-2.6.17-rc1/drivers/ieee1394/sbp2.h	2006-04-08 20:40:00.000000000 +0200
@@ -394,9 +394,8 @@ static int sbp2_link_orb_command(struct 
 static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
 			     struct scsi_cmnd *SCpnt,
 			     void (*done)(struct scsi_cmnd *));
-static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data);
-static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
-				     struct scsi_cmnd *SCpnt);
+static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
+					      unchar *sense_data);
 static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
 				      struct unit_directory *ud);
 static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id);



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

* Re: [RFC PATCH] sbp2: remove manipulation of inquiry response
  2006-04-08 18:45 [RFC PATCH] sbp2: remove manipulation of inquiry response Stefan Richter
@ 2006-04-08 18:55 ` Stefan Richter
  2006-04-09 11:08   ` Jeff Garzik
  2006-04-09 11:19   ` Christoph Hellwig
  2006-04-18  9:41 ` Jody McIntyre
  1 sibling, 2 replies; 6+ messages in thread
From: Stefan Richter @ 2006-04-08 18:55 UTC (permalink / raw)
  To: linux-scsi; +Cc: linux1394-devel

I wrote:
> This code became ineffective a few Linux releases ago and is
> apparently not required anyway.

PS: Of my SBP-2 devices, 3 of 3 CD-RWs and 3 of 7 HDDs report a SCSI 
level of 0. With and without the patch.
-- 
Stefan Richter
-=====-=-==- -=-- -=---
http://arcgraph.de/sr/


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642

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

* Re: [RFC PATCH] sbp2: remove manipulation of inquiry response
  2006-04-08 18:55 ` Stefan Richter
@ 2006-04-09 11:08   ` Jeff Garzik
  2006-04-09 11:19   ` Christoph Hellwig
  1 sibling, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2006-04-09 11:08 UTC (permalink / raw)
  To: Stefan Richter; +Cc: linux-scsi, linux1394-devel

Stefan Richter wrote:
> I wrote:
>> This code became ineffective a few Linux releases ago and is
>> apparently not required anyway.
> 
> PS: Of my SBP-2 devices, 3 of 3 CD-RWs and 3 of 7 HDDs report a SCSI 
> level of 0. With and without the patch.

That's expected... ATAPI-based MMC devices do that too.

	Jeff



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

* Re: [RFC PATCH] sbp2: remove manipulation of inquiry response
  2006-04-08 18:55 ` Stefan Richter
  2006-04-09 11:08   ` Jeff Garzik
@ 2006-04-09 11:19   ` Christoph Hellwig
  2006-04-09 12:47     ` Stefan Richter
  1 sibling, 1 reply; 6+ messages in thread
From: Christoph Hellwig @ 2006-04-09 11:19 UTC (permalink / raw)
  To: Stefan Richter; +Cc: linux-scsi, linux1394-devel

On Sat, Apr 08, 2006 at 08:55:10PM +0200, Stefan Richter wrote:
> I wrote:
> >This code became ineffective a few Linux releases ago and is
> >apparently not required anyway.
> 
> PS: Of my SBP-2 devices, 3 of 3 CD-RWs and 3 of 7 HDDs report a SCSI 
> level of 0. With and without the patch.

do they expect scsi1/2-style lun encoding in the cbd or not?


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

* Re: [RFC PATCH] sbp2: remove manipulation of inquiry response
  2006-04-09 11:19   ` Christoph Hellwig
@ 2006-04-09 12:47     ` Stefan Richter
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Richter @ 2006-04-09 12:47 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-scsi, linux1394-devel

Christoph Hellwig wrote:
> On Sat, Apr 08, 2006 at 08:55:10PM +0200, Stefan Richter wrote:
...
>>PS: Of my SBP-2 devices, 3 of 3 CD-RWs and 3 of 7 HDDs report a SCSI 
>>level of 0. With and without the patch.

(By which I meant the SCSI Version as seen by the mid level and above, 
after the response went through sbp2.)

> do they expect scsi1/2-style lun encoding in the cbd or not?

Maybe I am missing something, but the only places where the LUN is 
significant in the communication from the initiator to SBP-2 targets are 
Login ORBs and Query Login ORBs. Both have the LUN encoded in the 16 
bits long variant.
-- 
Stefan Richter
-=====-=-==- -=-- -=--=
http://arcgraph.de/sr/

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

* Re: [RFC PATCH] sbp2: remove manipulation of inquiry response
  2006-04-08 18:45 [RFC PATCH] sbp2: remove manipulation of inquiry response Stefan Richter
  2006-04-08 18:55 ` Stefan Richter
@ 2006-04-18  9:41 ` Jody McIntyre
  1 sibling, 0 replies; 6+ messages in thread
From: Jody McIntyre @ 2006-04-18  9:41 UTC (permalink / raw)
  To: Stefan Richter; +Cc: linux-scsi, linux1394-devel

On Sat, Apr 08, 2006 at 08:45:24PM +0200, Stefan Richter wrote:
> This code became ineffective a few Linux releases ago and is
> apparently not required anyway.

Applied, thanks.

Cheers,
Jody

> 
> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
> 
> Index: linux-2.6.17-rc1/drivers/ieee1394/sbp2.c
> ===================================================================
> --- linux-2.6.17-rc1.orig/drivers/ieee1394/sbp2.c	2006-04-08 09:43:33.000000000 +0200
> +++ linux-2.6.17-rc1/drivers/ieee1394/sbp2.c	2006-04-08 20:40:00.000000000 +0200
> @@ -2079,33 +2079,6 @@ static unsigned int sbp2_status_to_sense
>  }
>  
>  /*
> - * This function is called after a command is completed, in order to do any necessary SBP-2
> - * response data translations for the SCSI stack
> - */
> -static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
> -				     struct scsi_cmnd *SCpnt)
> -{
> -	u8 *scsi_buf = SCpnt->request_buffer;
> -
> -	SBP2_DEBUG_ENTER();
> -
> -	if (SCpnt->cmnd[0] == INQUIRY && (SCpnt->cmnd[1] & 3) == 0) {
> -		/*
> -		 * Make sure data length is ok. Minimum length is 36 bytes
> -		 */
> -		if (scsi_buf[4] == 0) {
> -			scsi_buf[4] = 36 - 5;
> -		}
> -
> -		/*
> -		 * Fix ansi revision and response data format
> -		 */
> -		scsi_buf[2] |= 2;
> -		scsi_buf[3] = (scsi_buf[3] & 0xf0) | 2;
> -	}
> -}
> -
> -/*
>   * This function deals with status writes from the SBP-2 device
>   */
>  static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid,
> @@ -2444,13 +2417,6 @@ static void sbp2scsi_complete_command(st
>  	}
>  
>  	/*
> -	 * Take care of any sbp2 response data mucking here (RBC stuff, etc.)
> -	 */
> -	if (SCpnt->result == DID_OK << 16) {
> -		sbp2_check_sbp2_response(scsi_id, SCpnt);
> -	}
> -
> -	/*
>  	 * If a bus reset is in progress and there was an error, complete
>  	 * the command as busy so that it will get retried.
>  	 */
> Index: linux-2.6.17-rc1/drivers/ieee1394/sbp2.h
> ===================================================================
> --- linux-2.6.17-rc1.orig/drivers/ieee1394/sbp2.h	2006-04-08 09:43:32.000000000 +0200
> +++ linux-2.6.17-rc1/drivers/ieee1394/sbp2.h	2006-04-08 20:40:00.000000000 +0200
> @@ -394,9 +394,8 @@ static int sbp2_link_orb_command(struct 
>  static int sbp2_send_command(struct scsi_id_instance_data *scsi_id,
>  			     struct scsi_cmnd *SCpnt,
>  			     void (*done)(struct scsi_cmnd *));
> -static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, unchar *sense_data);
> -static void sbp2_check_sbp2_response(struct scsi_id_instance_data *scsi_id,
> -				     struct scsi_cmnd *SCpnt);
> +static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status,
> +					      unchar *sense_data);
>  static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id,
>  				      struct unit_directory *ud);
>  static int sbp2_set_busy_timeout(struct scsi_id_instance_data *scsi_id);
> 
> 
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by xPML, a groundbreaking scripting language
> that extends applications into web and mobile media. Attend the live webcast
> and join the prime developer group breaking into this new coding territory!
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
> _______________________________________________
> mailing list linux1394-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux1394-devel

-- 

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

end of thread, other threads:[~2006-04-18  9:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-08 18:45 [RFC PATCH] sbp2: remove manipulation of inquiry response Stefan Richter
2006-04-08 18:55 ` Stefan Richter
2006-04-09 11:08   ` Jeff Garzik
2006-04-09 11:19   ` Christoph Hellwig
2006-04-09 12:47     ` Stefan Richter
2006-04-18  9:41 ` Jody McIntyre

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.