Home
last modified time | relevance | path

Searched refs:fifo_slot (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dnet_tc.c75 if (k_sem_take(&tx_classes[tc].fifo_slot, timeout) != 0) { in net_tc_try_submit_to_tx_queue()
98 while (k_sem_take(&rx_classes[tc].fifo_slot, K_NO_WAIT) != 0) { in net_tc_submit_to_rx_queue()
294 struct k_sem *fifo_slot = p2; in tc_rx_handler() local
307 k_sem_give(fifo_slot); in tc_rx_handler()
322 struct k_sem *fifo_slot = p2; in tc_tx_handler() local
335 k_sem_give(fifo_slot); in tc_tx_handler()
383 k_sem_init(&tx_classes[i].fifo_slot, NET_TC_TX_SLOTS, NET_TC_TX_SLOTS); in net_tc_tx_init()
391 &tx_classes[i].fifo_slot, in net_tc_tx_init()
451 k_sem_init(&rx_classes[i].fifo_slot, NET_TC_RX_SLOTS, NET_TC_RX_SLOTS); in net_tc_rx_init()
459 &rx_classes[i].fifo_slot, in net_tc_rx_init()
/Zephyr-latest/include/zephyr/net/
Dnet_if.h636 struct k_sem fifo_slot; member