From adfacc43c33ad731654bfa068eb9abb9c3fca300 Mon Sep 17 00:00:00 2001 From: JackDoan Date: Fri, 31 Jul 2026 14:23:50 -0500 Subject: [PATCH] snip --- overlay/tio/tio_gso_linux.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/overlay/tio/tio_gso_linux.go b/overlay/tio/tio_gso_linux.go index eed43429..320ebf50 100644 --- a/overlay/tio/tio_gso_linux.go +++ b/overlay/tio/tio_gso_linux.go @@ -380,9 +380,8 @@ func (r *Offload) WriteGSO(hdr []byte, transportHdr []byte, pays [][]byte, proto if len(pays) > 1 { gsoType = gsoTypeFromProto(proto, hdr[0]>>4) if gsoType == unix.VIRTIO_NET_HDR_GSO_NONE { - // gsoTypeFromProto only yields GSO_NONE for a bogus IP version - // nibble. A multi-segment superpacket must carry a real GSO type, - // or the kernel would deliver it as a single jumbo packet. + // gsoTypeFromProto only yields GSO_NONE for a bogus IP version nibble. + // A multi-segment superpacket must carry a real GSO type, or the kernel would deliver it as a single jumbo packet. return fmt.Errorf("tio: WriteGSO IP version %d is not GSO-capable", hdr[0]>>4) } }