Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/dev/sfxge/
HDsfxge_tx.c946 unsigned packet_space; /* Remaining space in current packet */ member
1158 if (tso->in_len == 0 || tso->packet_space == 0) in tso_fill_packet_with_fragment()
1162 KASSERT(tso->packet_space > 0, ("TSO packet space went negative")); in tso_fill_packet_with_fragment()
1169 if (n < tso->packet_space) { in tso_fill_packet_with_fragment()
1170 tso->packet_space -= n; in tso_fill_packet_with_fragment()
1173 tso->packet_space = tso->seg_size - in tso_fill_packet_with_fragment()
1174 (n - tso->packet_space) % tso->seg_size; in tso_fill_packet_with_fragment()
1177 (tso->packet_space != tso->seg_size); in tso_fill_packet_with_fragment()
1180 n = min(tso->in_len, tso->packet_space); in tso_fill_packet_with_fragment()
1181 tso->packet_space -= n; in tso_fill_packet_with_fragment()
[all …]