Home | History | Annotate | Download | only in ieee1394

Lines Matching defs:xferq

381 	struct fw_xferq *xferq;
413 xferq = fc->atq;
415 xferq = fc->ats;
434 if (xferq->start == NULL) {
435 aprint_error_dev(fc->bdev, "xferq->start == NULL\n");
438 if (!(xferq->queued < xferq->maxq)) {
440 xferq->queued);
451 xfer->q = xferq;
1234 struct fw_xferq *xferq;
1244 xferq = xferqa[i];
1245 if (!(xferq->flag & FWXFERQ_OPEN)) {
1246 xferq->flag |= FWXFERQ_OPEN;
1344 fw_xferq_drain(struct fw_xferq *xferq)
1348 while ((xfer = STAILQ_FIRST(&xferq->q)) != NULL) {
1349 STAILQ_REMOVE_HEAD(&xferq->q, link);
1351 xferq->queued--;