Re: [PATCH net-next v2] net: stmmac: dwmac4: Add ip payload error statistics
From: Minda Chen <minda.chen@starfivetech.com>
Date: 2024-10-08 21:30:02
Also in:
lkml
Hi Jakub On Wed, Oct 02, 2024 at 06:58:01AM GMT, Jakub Kicinski wrote:quoted
On Mon, 30 Sep 2024 19:02:05 +0800 Minda Chen wrote:quoted
Add dwmac4 ip payload error statistics, and rename discripter bit macrodescriptor ^quoted
because latest version descriptor IPCE bit claims ip checksum error or l4 segment length error.
I will modify this.
quoted
What is an L4 segment length error on Rx? Seems to me that reusing ip_payload_err here will be confusingFrom the current "ip_payload_err" field semantics, Minda is correct to use it for the Rx IP-payload error statistics. Here is the definition of the IPCE flag (part of the RDES4 descriptor field) cited from the Synopsys DW QoS Eth v5 HW-manual: Bit Name Description 7 IPCE IP Payload Error When this bit is set, it indicates either of the following: ■ The 16-bit IP payload checksum (that is, the TCP, UDP, or ICMP checksum) calculated by the MAC does not match the corresponding checksum field in the received segment. ■ The TCP, UDP, or ICMP segment length does not match the payload length value in the IP Header field. ■ The TCP, UDP, or ICMP segment length is less than minimum allowed segment length for TCP, UDP, or ICMP.
Thanks for adding description.. I will add the this to commit message.