Lines Matching defs:bytes
2031 * @cleaned: pointer to stats struct to track cleaned packets/bytes
2103 * @cleaned: pointer to stats struct to track cleaned packets/bytes
2144 * @cleaned: pointer to stats struct to track cleaned packets/bytes
2147 * Returns bytes/packets cleaned
2235 u64_stats_add(&tx_q->q_stats.bytes, cleaned_stats.bytes);
2237 tx_q->cleaned_bytes += cleaned_stats.bytes;
2697 * bytes to next boundary.
2788 netdev_tx_sent_queue(nq, first->bytes);
3104 first->bytes = skb->len +
3108 first->bytes = max_t(unsigned int, skb->len, ETH_ZLEN);
3423 * @data_len: number of bytes received to the payload buffer
3433 * Return: number of bytes copied to the header buffer.
3614 u64_stats_add(&rxq->q_stats.bytes, rs.bytes);
3905 * idpf_update_dim_sample - Update dim sample with packets and bytes
3910 * @bytes: total bytes
3912 * Update the dim sample with the packets and bytes which are passed to this
3917 struct dim *dim, u64 packets, u64 bytes)
3919 dim_update_sample(q_vector->total_events, packets, bytes, dim_sample);
3935 * a new ITR value based on incoming packets, bytes, and interrupts.
3942 u64 packets, bytes;
3948 for (i = 0, packets = 0, bytes = 0; i < q_vector->num_txq; i++) {
3955 bytes += u64_stats_read(&txq->q_stats.bytes);
3960 packets, bytes);
3967 for (i = 0, packets = 0, bytes = 0; i < q_vector->num_rxq; i++) {
3974 bytes += u64_stats_read(&rxq->q_stats.bytes);
3979 packets, bytes);