Thanks for the Ack. I will work on testing that these checks are still relevant for 3.2+ Note, the changes are there for SAS devices and not ATA devices (we have none of the later), so I get the impression that many of the changes in libata/libsas would not touch on the problems we are experiencing. I guarantee that the unexpected code 138 is 'bad', and the change is relevant for the current crop of kernels. Sincerely -- Mark Salyzyn On Jan 18, 2012, at 12:47 PM, Dan Williams wrote: > On Wed, Jan 18, 2012 at 8:08 AM, Mark Salyzyn <mark_salyzyn@xxxxxxxxxxx> wrote: >> Thanks, Comments inline >> >> On Jan 17, 2012, at 11:04 PM, Dan Williams wrote: >> >>> On Tue, Jan 17, 2012 at 10:29 AM, Mark Salyzyn <mark_salyzyn@xxxxxxxxxxx> wrote: >>>> pm8001_query_task() and pm8001_abort_task() panic kernel when devices asynchronously disappear, a possible scenario since these functions are generally called when errors are mounting. Some of the panics are a direct result of a failure to NULL check some of the structure variables that are in certain states of teardown. One of the lockups was a direct result of returning an unexpected code to libsas' sas_scsi_find_task() function (creating a tight loop of an unexpected code 138 upstream to the scsi layer queue function). >>>> >>>> Signed-off-by: mark_salyzyn@xxxxxxxxxxx >>>> Cc: jack_wang@xxxxxxxxx >>>> Cc: JBottomley@xxxxxxxxxxxxx >>>> Cc: crystal_yu@xxxxxxxxx >>>> Cc: john_gong@xxxxxxxxx >>>> Cc: lindar_liu <lindar_liu@xxxxxxxxx> >>> >>> While your in the area of libsas error handling, mind weighing in on the pending libsas error handling rework backlog? >>> >>> http://git.kernel.org/?p=linux/kernel/git/djbw/isci.git;a=shortlog;h=refs/heads/libsas-eh-reworks-v4 >> >> Xyratex has me focussed on 2.6.32 problems, I will look at these, but will be off the reservation (and with no Q/A testing resource to keep me honest) when doing so ;-}. Pure Code Inspection thus trumps experimentation ... >> >>> ...more notes below: >>> >>>> @@ -986,7 +997,8 @@ int pm8001_abort_task(struct sas_task *task) >>>> struct pm8001_device *pm8001_dev; >>>> struct pm8001_tmf_task tmf_task; >>>> int rc = TMF_RESP_FUNC_FAILED; >>>> - if (unlikely(!task || !task->lldd_task || !task->dev)) >>>> + if (unlikely(!task || !task->lldd_task >>>> + || !task->dev || !task->dev->lldd_dev)) >>> >>> Hmm some of these are "never can happen" checks, so if you are indeed >>> seeing !task or !task->dev something is very wrong in libsas. checking >>> task->lldd_task and task->dev->lldd_dev should be all that is >>> required. >> >> OK, point taken, these issues surface with careless abandon in the 2.6.32-vintage kernels; and may, or may not, be present in 3.2.1-vintage kernels. >> >> What this means is that maybe we should be submitting these stabilization/band-aid patches to the stable trees rather than to the top-of-tree? > > 2.6.32 pre-dates the libsas conversion to "new-style" libata error > handling, so a band aid that works there may now be invalid, like: > http://git.kernel.org/?p=linux/kernel/git/djbw/isci.git;a=commitdiff;h=030253ca > >> I'd opt (not that I have the rights) for paranoia and adding these in at top-of-tree, as band-aids against panics (in libsas or pm8001). The checks are not costly IMHO (hopefully less-so as wrapped by unlikely()). My WAG is that this patch should be cancelled here, and placed into the 2.6.32-stable bucket ... > > -stable needs the upstream commit as a reference and it is certainly > valid to add the !task->dev->lldd_dev check to current upstream. The > !task and !task->dev are paranoia, but they are already in the code, > so removing them is just a clean up to reduce confusion about the > guarantees that libsas makes to lldds. > > In other words, > Acked-by: Dan Williams <dan.j.williams@xxxxxxxxx> > > ...and if you can reproduce a !task or !task->dev situation on current > upstream I'd like to see it. > > -- > Dan -- 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