Lines Matching refs:pbd

617 	struct tpacket_block_desc *pbd;  in init_prb_bdqc()  local
623 pbd = (struct tpacket_block_desc *)pg_vec[0].buffer; in init_prb_bdqc()
643 prb_open_block(p1, pbd); in init_prb_bdqc()
685 struct tpacket_block_desc *pbd; in prb_retire_rx_blk_timer_expired() local
690 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc); in prb_retire_rx_blk_timer_expired()
704 if (BLOCK_NUM_PKTS(pbd)) { in prb_retire_rx_blk_timer_expired()
712 if (!BLOCK_NUM_PKTS(pbd)) { in prb_retire_rx_blk_timer_expired()
725 if (prb_curr_blk_in_use(pbd)) { in prb_retire_rx_blk_timer_expired()
739 prb_open_block(pkc, pbd); in prb_retire_rx_blk_timer_expired()
927 struct tpacket_block_desc *pbd; in prb_dispatch_next_block() local
932 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc); in prb_dispatch_next_block()
935 if (TP_STATUS_USER & BLOCK_STATUS(pbd)) { in prb_dispatch_next_block()
945 prb_open_block(pkc, pbd); in prb_dispatch_next_block()
952 struct tpacket_block_desc *pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc); in prb_retire_current_block() local
955 if (likely(TP_STATUS_KERNEL == BLOCK_STATUS(pbd))) { in prb_retire_current_block()
970 prb_close_block(pkc, pbd, po, status); in prb_retire_current_block()
975 static int prb_curr_blk_in_use(struct tpacket_block_desc *pbd) in prb_curr_blk_in_use() argument
977 return TP_STATUS_USER & BLOCK_STATUS(pbd); in prb_curr_blk_in_use()
1033 struct tpacket_block_desc *pbd, in prb_fill_curr_block() argument
1043 BLOCK_LEN(pbd) += TOTAL_PKT_LEN_INCL_ALIGN(len); in prb_fill_curr_block()
1044 BLOCK_NUM_PKTS(pbd) += 1; in prb_fill_curr_block()
1056 struct tpacket_block_desc *pbd; in __packet_lookup_frame_in_block() local
1060 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc); in __packet_lookup_frame_in_block()
1068 if (prb_curr_blk_in_use(pbd)) { in __packet_lookup_frame_in_block()
1078 prb_open_block(pkc, pbd); in __packet_lookup_frame_in_block()
1085 end = (char *)pbd + pkc->kblk_size; in __packet_lookup_frame_in_block()
1089 prb_fill_curr_block(curr, pkc, pbd, len); in __packet_lookup_frame_in_block()
1099 pbd = GET_CURR_PBLOCK_DESC_FROM_CORE(pkc); in __packet_lookup_frame_in_block()
1100 prb_fill_curr_block(curr, pkc, pbd, len); in __packet_lookup_frame_in_block()
1137 struct tpacket_block_desc *pbd = GET_PBLOCK_DESC(pkc, idx); in prb_lookup_block() local
1139 if (status != BLOCK_STATUS(pbd)) in prb_lookup_block()
1141 return pbd; in prb_lookup_block()