lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 07 Jun 2013 07:38:23 +0100
From:	Ben Hutchings <ben@...adent.org.uk>
To:	Willy Tarreau <w@....eu>
Cc:	linux-kernel@...r.kernel.org, stable@...r.kernel.org,
	Kashyap Desai <kashyap.desai@....com>,
	James Bottomley <James.Bottomley@...e.de>,
	Moritz Muehlenhoff <jmm@...til.org>
Subject: Re: [ 185/184] [SCSI] mpt2sas: Send default descriptor for RAID
 pass through in mpt2ctl

On Wed, 2013-06-05 at 11:42 +0200, Willy Tarreau wrote:
> 2.6.32-longterm review patch.  If anyone has any objections, please let me know.
> Thanks to Moritz for spotting this missing patch from the series.
> 
> ------------------
> 
> From: "Kashyap, Desai" <kashyap.desai@....com>

commit ebda4d38df542e1ff4747c4daadfc7da250b4fa6 upstream.

> RAID_SCSI_IO_PASSTHROUGH: Driver needs to be sending the default
> descriptor for RAID Passthru, currently its sending SCSI_IO descriptor.
> 
> Signed-off-by: Kashyap Desai <kashyap.desai@....com>
> Signed-off-by: James Bottomley <James.Bottomley@...e.de>
> ---
>  drivers/scsi/mpt2sas/mpt2sas_ctl.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/scsi/mpt2sas/mpt2sas_ctl.c b/drivers/scsi/mpt2sas/mpt2sas_ctl.c
> index ddaa99c..d88e975 100644
> --- a/drivers/scsi/mpt2sas/mpt2sas_ctl.c
> +++ b/drivers/scsi/mpt2sas/mpt2sas_ctl.c
> @@ -744,8 +744,11 @@ _ctl_do_mpt_command(struct MPT2SAS_ADAPTER *ioc,
>  		    mpt2sas_base_get_sense_buffer_dma(ioc, smid);
>  		priv_sense = mpt2sas_base_get_sense_buffer(ioc, smid);
>  		memset(priv_sense, 0, SCSI_SENSE_BUFFERSIZE);
> -		mpt2sas_base_put_smid_scsi_io(ioc, smid,
> -		    le16_to_cpu(mpi_request->FunctionDependent1));
> +		if (mpi_request->Function == MPI2_FUNCTION_SCSI_IO_REQUEST)
> +			mpt2sas_base_put_smid_scsi_io(ioc, smid,
> +			    le16_to_cpu(mpi_request->FunctionDependent1));
> +		else
> +			mpt2sas_base_put_smid_default(ioc, smid);
>  		break;
>  	}
>  	case MPI2_FUNCTION_SCSI_TASK_MGMT:

-- 
Ben Hutchings
Theory and practice are closer in theory than in practice.
                                - John Levine, moderator of comp.compilers

Download attachment "signature.asc" of type "application/pgp-signature" (829 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ