Home
last modified time | relevance | path

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

/openbmc/linux/net/core/
H A Dgso.c229 if (shinfo->gso_size != GSO_BY_FRAGS) in skb_gso_size_check()
233 seg_len -= GSO_BY_FRAGS; in skb_gso_size_check()
H A Dskbuff.c4460 mss != GSO_BY_FRAGS && mss != skb_headlen(head_skb)) { in skb_segment()
4488 if (sg && csum && (mss != GSO_BY_FRAGS)) { in skb_segment()
4524 partial_segs = min(len, GSO_BY_FRAGS - 1U) / mss; in skb_segment()
4548 if (unlikely(mss == GSO_BY_FRAGS)) { in skb_segment()
/openbmc/linux/Documentation/networking/
H A Dsegmentation-offloads.rst21 * SCTP acceleration with GSO - GSO_BY_FRAGS
166 To signal this, gso_size is set to the special value GSO_BY_FRAGS.
169 possibility that gso_size will be GSO_BY_FRAGS and handle that case
178 considers GSO_BY_FRAGS.
181 will check for GSO_BY_FRAGS and WARN if asked to manipulate these skbs.
/openbmc/linux/include/linux/
H A Dvirtio_net.h185 if (gso_size == GSO_BY_FRAGS) in virtio_net_hdr_to_skb()
H A Dskbuff.h360 #define GSO_BY_FRAGS 0xFFFF macro
4929 if (WARN_ON_ONCE(shinfo->gso_size == GSO_BY_FRAGS)) in skb_increase_gso_size()
4937 if (WARN_ON_ONCE(shinfo->gso_size == GSO_BY_FRAGS)) in skb_decrease_gso_size()
/openbmc/linux/net/sctp/
H A Doutput.c540 skb_shinfo(head)->gso_size = GSO_BY_FRAGS; in sctp_packet_pack()