[SCSI] Remove unnecessary locking around completion function calls
The SCSI ->done() hook should not be called from inside a spinlock. Drivers that do this are mostly cut-n-paste from 2.2.x-era. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
这个提交包含在:
@@ -954,9 +954,7 @@ static int ultrastor_abort(Scsi_Cmnd *SCpnt)
|
||||
SCpnt->result = DID_ABORT << 16;
|
||||
|
||||
/* Take the host lock to guard against scsi layer re-entry */
|
||||
spin_lock_irqsave(host->host_lock, flags);
|
||||
done(SCpnt);
|
||||
spin_unlock_irqrestore(host->host_lock, flags);
|
||||
|
||||
/* Need to set a timeout here in case command never completes. */
|
||||
return SUCCESS;
|
||||
|
在新工单中引用
屏蔽一个用户