Unexpand TAILQ_FOREACH().

This commit is contained in:
John Baldwin 2014-08-20 16:07:56 +00:00
parent 669eac89c5
commit cef60f1868

View File

@ -326,15 +326,13 @@ scsi_low_find_ccb(slp, target, lun, osdep)
if ((cb = slp->sl_Qnexus) != NULL && cb->osdep == osdep)
return cb;
for (cb = TAILQ_FIRST(&slp->sl_start); cb != NULL;
cb = TAILQ_NEXT(cb, ccb_chain))
TAILQ_FOREACH(cb, &slp->sl_start, ccb_chain)
{
if (cb->osdep == osdep)
return cb;
}
for (cb = TAILQ_FIRST(&li->li_discq); cb != NULL;
cb = TAILQ_NEXT(cb, ccb_chain))
TAILQ_FOREACH(cb, &li->li_discq, ccb_chain)
{
if (cb->osdep == osdep)
return cb;
@ -4184,8 +4182,7 @@ scsi_low_info(slp, ti, s)
printf(">>>>> SCSI_LOW_INFO(0x%lx): %s\n", (u_long) slp->sl_Tnexus, s);
if (ti == NULL)
{
for (ti = TAILQ_FIRST(&slp->sl_titab); ti != NULL;
ti = TAILQ_NEXT(ti, ti_chain))
TAILQ_FOREACH(ti, &slp->sl_titab, ti_chain)
{
scsi_low_print(slp, ti);
}