Prev: [013/197] xfs: Fix error return for fallocate() on XFS
Next: [032/197] iwlwifi: counting number of tfds can be free for 4965
From: Greg KH on 22 Apr 2010 15:30 2.6.32-stable review patch. If anyone has any objections, please let us know. ------------------ From: Mike Christie <michaelc(a)cs.wisc.edu> commit 3f9daedfcb197d784c6e7ecd731e3aa9859bc951 upstream. The scsi ioctl code path was missing scsi target reset support. This patch just adds it. Signed-off-by: Mike Christie <michaelc(a)cs.wisc.edu> Signed-off-by: James Bottomley <James.Bottomley(a)suse.de> Cc: maximilian attems <max(a)stro.at> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/scsi/scsi_ioctl.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/scsi/scsi_ioctl.c +++ b/drivers/scsi/scsi_ioctl.c @@ -308,6 +308,9 @@ int scsi_nonblockable_ioctl(struct scsi_ case SG_SCSI_RESET_DEVICE: val = SCSI_TRY_RESET_DEVICE; break; + case SG_SCSI_RESET_TARGET: + val = SCSI_TRY_RESET_TARGET; + break; case SG_SCSI_RESET_BUS: val = SCSI_TRY_RESET_BUS; break; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |