Lines Matching defs:trp
407 struct ieee1394_reass_pkt *rp, *trp, *nrp = NULL;
541 trp = malloc(sizeof(*trp), M_FTABLE, M_NOWAIT);
542 if (trp == NULL) {
546 trp->rp_m = m0;
547 trp->rp_size = size;
548 trp->rp_etype = etype; /* valid only if off==0 */
549 trp->rp_off = off;
550 trp->rp_dgl = dgl;
551 trp->rp_len = len;
552 trp->rp_ttl = IEEE1394_REASS_TIMEOUT;
553 if (trp->rp_ttl <= ifp->if_timer)
554 trp->rp_ttl = ifp->if_timer + 1;
558 LIST_INSERT_HEAD(&rq->rq_pkt, trp, rp_next);
561 LIST_INSERT_AFTER(rp, trp, rp_next);
564 LIST_INSERT_BEFORE(nrp, trp, rp_next);