Lines Matching refs:ipfb
7076 ipfb_t *ipfb;
7204 ipfb = &ill->ill_frag_hash_tbl[ILL_FRAG_HASH(src, ident)];
7205 mutex_enter(&ipfb->ipfb_lock);
7207 ipfp = &ipfb->ipfb_ipf;
7225 ill_frag_free_pkts(ill, ipfb, ipf, 1);
7227 mutex_exit(&ipfb->ipfb_lock);
7248 mutex_exit(&ipfb->ipfb_lock);
7253 if (ipfb->ipfb_frag_pkts >= MAX_FRAG_PKTS(ipst)) {
7258 ill_frag_free_pkts(ill, ipfb, ipfb->ipfb_ipf, 1);
7268 mutex_exit(&ipfb->ipfb_lock);
7294 ipfb->ipfb_frag_pkts++;
7349 /* Update per ipfb and ill byte counts */
7350 ipfb->ipfb_count += ipf->ipf_count;
7351 ASSERT(ipfb->ipfb_count > 0); /* Wraparound */
7395 /* Update per ipfb and ill byte counts */
7396 ipfb->ipfb_count += msg_len;
7397 ASSERT(ipfb->ipfb_count > 0); /* Wraparound */
7420 /* Update per ipfb and ill byte counts */
7421 ipfb->ipfb_count += count;
7422 ASSERT(ipfb->ipfb_count > 0); /* Wraparound */
7429 ill_frag_free_pkts(ill, ipfb, ipf, 1);
7463 ASSERT(ipfb->ipfb_count >= count);
7464 ipfb->ipfb_count -= count;
7465 ipfb->ipfb_frag_pkts--;
7466 mutex_exit(&ipfb->ipfb_lock);