linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* (no subject)
@ 2005-12-10 17:32 Jody McIntyre
  2005-12-10 18:25 ` [PATCH] sbp2: fix panic when ejecting an ipod Stefan Richter
  0 siblings, 1 reply; 10+ messages in thread
From: Jody McIntyre @ 2005-12-10 17:32 UTC (permalink / raw)
  To: Stefan Richter
  Cc: stable, torvalds, linux1394-devel, bcollins, adq, linux-kernel

James Bottomley <James.Bottomley@SteelEye.com>
Bcc: 
Subject: Re: [PATCH] sbp2: fix panic when ejecting an ipod
Reply-To: 
In-Reply-To: <200512101125.jBABP7Z9001085@einhorn.in-berlin.de>

On Sat, Dec 10, 2005 at 12:24:59PM +0100, Stefan Richter wrote:
> sbp2: fix panic when ejecting an ipod
> 
> Sbp2 did not catch some bogus transfer directions in requests from upper
> layers.  Problem became apparent when iPods were to be ejected:
> http://marc.theaimsgroup.com/?l=linux1394-devel&m=113399994920181
> http://marc.theaimsgroup.com/?l=linux1394-user&m=112152701817435
> Debugging and original variant of the patch by Andrew de Quincey.

NAK.  James has a patch to fix this in the SCSI layer, which is his
preference.

Cheers,
Jody

> 
> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
> Cc: Andrew de Quincey <adq@lidskialf.net>
> 
> ---
> 
> Corresponding fix of the places where transfer direction is actually set and
> how to clean sbp2_create_command_orb() up after this fix is being discussed.
> A patch for SCSI mid and high level has been submitted.
> http://marc.theaimsgroup.com/?t=113400010000001
> Please apply the following patch to prevent kernel panics as the first step.
> 
>  drivers/ieee1394/sbp2.c |   16 ++++++----------
>  1 files changed, 6 insertions(+), 10 deletions(-)
> 
> --- linux/drivers/ieee1394.orig/sbp2.c	2005-11-24 23:10:21.000000000 +0100
> +++ linux/drivers/ieee1394/sbp2.c	2005-12-10 11:57:41.000000000 +0100
> @@ -1784,6 +1784,12 @@ static int sbp2_create_command_orb(struc
>  			break;
>  	}
>  
> +	if (orb_direction != ORB_DIRECTION_NO_DATA_TRANSFER &&
> +	    scsi_request_bufflen == 0) {
> +		SBP2_WARN("Enforcing transfer direction DMA_NONE");
> +		orb_direction = ORB_DIRECTION_NO_DATA_TRANSFER;
> +	}
> +
>  	/*
>  	 * Set-up our pagetable stuff... unfortunately, this has become
>  	 * messier than I'd like. Need to clean this up a bit.   ;-)
> @@ -1900,16 +1906,6 @@ static int sbp2_create_command_orb(struc
>  			command_orb->misc |= ORB_SET_DATA_SIZE(scsi_request_bufflen);
>  			command_orb->misc |= ORB_SET_DIRECTION(orb_direction);
>  
> -			/*
> -			 * Sanity, in case our direction table is not
> -			 * up-to-date
> -			 */
> -			if (!scsi_request_bufflen) {
> -				command_orb->data_descriptor_hi = 0x0;
> -				command_orb->data_descriptor_lo = 0x0;
> -				command_orb->misc |= ORB_SET_DIRECTION(1);
> -			}
> -
>  		} else {
>  			/*
>  			 * Need to turn this into page tables, since the
> 

-- 

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

end of thread, other threads:[~2005-12-23 19:06 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20051209171922.GW19441@conscoop.ottawa.on.ca>
2005-12-10 11:24 ` [PATCH] sbp2: fix panic when ejecting an ipod Stefan Richter
2005-12-10 23:28   ` [stable] " Greg KH
2005-12-11  1:02     ` Stefan Richter
2005-12-14 20:09       ` Stefan Richter
2005-12-14 20:38         ` Greg KH
2005-12-14 22:32           ` [PATCH 2.6.14.3 1/2] SCSI: fix transfer direction in sd (kernel panic when ejecting iPod) Stefan Richter
2005-12-14 22:34             ` [PATCH 2.6.14.3] SCSI: fix transfer direction in scsi_lib and st Stefan Richter
2005-12-14 22:43               ` Stefan Richter
2005-12-23 19:05                 ` [stable] " Greg KH
2005-12-10 17:32 Jody McIntyre
2005-12-10 18:25 ` [PATCH] sbp2: fix panic when ejecting an ipod Stefan Richter

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