On Sun, Apr 03, 2011 at 07:00:57AM -0400, Christoph Hellwig wrote: > On Sat, Apr 02, 2011 at 03:02:40PM -0600, Matthew Wilcox wrote: > > Fair enough, but you're making the perfect the enemy of the good. > > How about putting this patch in for now (since it harms nothing), and > > then it'll all go away when you delete cmd_serial_number? > > If you change it anyway for mpt2sas just keep the atomic counter in > it's local structures. Or even better verify with LSI if the > serial_number check can't simply be removed entirely, which I think it > could. Hm, yeah, it looks like it's only used for checking whether the command we're aborting is the same command we're using to do the aborts. In which case, can't we simply do this? Eric? diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c index 6ceb775..bce9043 100644 --- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c +++ b/drivers/scsi/mpt2sas/mpt2sas_scsih.c @@ -2133,8 +2133,7 @@ mpt2sas_scsih_issue_tm(struct MPT2SAS_ADAPTER *ioc, u16 handle, uint channel, switch (type) { case MPI2_SCSITASKMGMT_TASKTYPE_ABORT_TASK: scmd_lookup = _scsih_scsi_lookup_get(ioc, smid_task); - if (scmd_lookup && (scmd_lookup->serial_number == - scmd->serial_number)) + if (scmd_lookup == scmd)) rc = FAILED; else rc = SUCCESS; -- Matthew Wilcox Intel Open Source Technology Centre "Bill, look, we understand that you're interested in selling us this operating system, but compare it to ours. We can't possibly take such a retrograde step." -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html