[SCSI] mpt2sas: Copy message frame before releasing to free pool to have a local...
commit1bbfa378afbf8a8bfa6f6523e4965398a578ad10
authorKashyap, Desai <kashyap.desai@lsi.com>
Thu, 17 Jun 2010 08:20:11 +0000 (17 13:50 +0530)
committerJames Bottomley <James.Bottomley@suse.de>
Tue, 27 Jul 2010 17:02:25 +0000 (27 12:02 -0500)
treec2e8bd75ecb706b98551e7b011dcbeac107231f4
parent769578ff811e43ccddd96b15640fa7c9df65c374
[SCSI] mpt2sas: Copy message frame before releasing to free pool to have a local reference.

Current driver is  not clearing the per device tm_busy flag
following the Task Mangement request completion from the IOCTL path.
When this flag is set, the IO queues are frozen.   The reason the flag
didn't get cleared is becuase the driver is referencing
memory associated to the mpi request following the completion, when
the memory had been reallocated for a new request.  When the memory
was reallocated, the driver didn't clear the flag becuase it was
expecting a task managment reqeust, and the reallocated request was
for SCSI_IO.  To fix the problem the driver needs to have a cached
backup copy of the original reqeust.

Signed-off-by: Kashyap Desai <kashyap.desai@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
drivers/scsi/mpt2sas/mpt2sas_ctl.c