CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2025/04/29 08:53:22
Modified files: sys/netinet : tcp_input.c Log message: In TCP software LRO remove potential ethernet padding. With some network interfaces the RX mbuf returned from the driver may contain ethernet padding. My tests did not see this behavior with ixl(4) hardware. But inserting ethernet padding into a TCP stream would be completely wrong, so adding a sanity check anyway. Remove content of the mbuf that is behind the TCP payload. OK jan@