HomeSort by: relevance | last modified time | path
    Searched defs:list_scb (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/dev/ic/
aic79xx_osm.c 230 struct scb *list_scb; local in function:ahd_done
237 LIST_FOREACH(list_scb, &ahd->pending_scbs, pending_links) {
238 struct scsipi_xfer *txs = list_scb->xs;
245 ahd_timeout, list_scb);
aic7xxx_osm.c 238 struct scb *list_scb; local in function:ahc_done
245 LIST_FOREACH(list_scb, &ahc->pending_scbs, pending_links) {
246 if (!(list_scb->xs->xs_control & XS_CTL_POLL)) {
247 callout_reset(&list_scb->xs->xs_callout,
248 (list_scb->xs->timeout > 1000000) ?
249 (list_scb->xs->timeout / 1000) * hz :
250 (list_scb->xs->timeout * hz) / 1000,
251 ahc_timeout, list_scb);
778 struct scb *list_scb; local in function:ahc_set_recoveryscb
796 LIST_FOREACH(list_scb, &ahc->pending_scbs, pending_links)
    [all...]
aic79xx.c 5475 struct scb *list_scb; local in function:ahd_find_scb_by_tag
5477 list_scb = scb;
5479 if (SCB_GET_TAG(list_scb) == tag)
5480 return (list_scb);
5481 list_scb = LIST_NEXT(list_scb, collision_links);
5482 } while (list_scb);
8745 struct scb *list_scb; local in function:ahd_dump_card_state
8747 list_scb = scb;
8749 printf("%d ", SCB_GET_TAG(list_scb));
    [all...]

Completed in 19 milliseconds