Home
last modified time | relevance | path

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

/openbmc/qemu/hw/net/
H A Dtulip.c41 uint16_t tx_frame_len; member
62 VMSTATE_UINT16(tx_frame_len, TULIPState),
563 if (s->tx_frame_len) { in tulip_tx()
566 tulip_receive(s, s->tx_frame, s->tx_frame_len); in tulip_tx()
567 } else if (s->tx_frame_len <= sizeof(s->tx_frame)) { in tulip_tx()
569 s->tx_frame, s->tx_frame_len); in tulip_tx()
584 if (s->tx_frame_len + len1 > sizeof(s->tx_frame)) { in tulip_copy_tx_buffers()
587 __func__, s->tx_frame_len, len1, sizeof(s->tx_frame)); in tulip_copy_tx_buffers()
592 s->tx_frame + s->tx_frame_len, len1); in tulip_copy_tx_buffers()
593 s->tx_frame_len += len1; in tulip_copy_tx_buffers()
[all …]