Lines Matching refs:is
15 options that control this. For transmit (TX) path the option is called
16 :kconfig:option:`CONFIG_NET_PKT_TXTIME_STATS` and for receive (RX) path the options is
18 network packet statistics is collected. For RX, only UDP, TCP or raw packet
19 type network packet statistics is collected.
59 * Packet was created by application so the time is **0**.
60 * Packet is about to be placed to transmit queue. The time it took from network
61 packet creation to this state, is **22** microseconds in this example.
62 * The correct TX thread is invoked, and the packet is read from the transmit
64 * The network packet was just sent and the network stack is about to free the
67 sent. The value **63** tells also the same information, but is calculated
68 differently so there is slight difference because of rounding errors.
73 * Packet was created network device driver so the time is **0**.
74 * Packet is about to be placed to receive queue. The time it took from network
75 packet creation to this state, is **9** microseconds in this example.
76 * The correct RX thread is invoked, and the packet is read from the receive
78 * The network packet is then processed and placed to correct socket queue.
81 the value is **13** microseconds.
83 sent. The value **42** tells also the same information, but is calculated
84 differently so there is slight difference because of rounding errors.