Lines Matching refs:packet_list
183 mbuf_t packet_list; in proto_input_run() local
208 packet_list = entry->inject_first; in proto_input_run()
224 packet_list); in proto_input_run()
228 for (packet = packet_list; in proto_input_run()
230 packet = packet_list) { in proto_input_run()
231 packet_list = in proto_input_run()
248 proto_input(protocol_family_t protocol, mbuf_t packet_list) in proto_input() argument
270 entry->input(entry->protocol, packet_list); in proto_input()
274 for (packet = packet_list; packet != NULL; in proto_input()
275 packet = packet_list) { in proto_input()
276 packet_list = mbuf_nextpkt(packet); in proto_input()
289 proto_inject(protocol_family_t protocol, mbuf_t packet_list) in proto_inject() argument
296 for (last_packet = packet_list; mbuf_nextpkt(last_packet) != NULL; in proto_inject()
313 entry->inject_first = packet_list; in proto_inject()
315 mbuf_setnextpkt(entry->inject_last, packet_list); in proto_inject()