Home | History | Annotate | Download | only in ieee1394

Lines Matching refs:fwb

689 #define BIND_CMP(addr, fwb) \
690 (((addr) < (fwb)->start) ? -1 : ((fwb)->end < (addr)) ? 1 : 0)
716 fw_bindadd(struct firewire_comm *fc, struct fw_bind *fwb)
721 if (fwb->start > fwb->end) {
728 if (fwb->end < tfw->start)
733 STAILQ_INSERT_HEAD(&fc->binds, fwb, fclist);
734 else if (prev->end < fwb->start)
735 STAILQ_INSERT_AFTER(&fc->binds, prev, fwb, fclist);
748 fw_bindremove(struct firewire_comm *fc, struct fw_bind *fwb)
757 if (tfw == fwb) {
758 STAILQ_REMOVE(&fc->binds, fwb, fw_bind, fclist);
769 for (xfer = STAILQ_FIRST(&fwb->xferlist); xfer != NULL; xfer = next) {
773 STAILQ_INIT(&fwb->xferlist);