mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 19:24:01 -04:00
net: ravb: Disable IP header TX checksum offloading
For IPv4 packets, the header checksum will always be calculated in software in the TX path (Documentation/networking/checksum-offloads.rst says "No offloading of the IP header checksum is performed; it is always done in software.") so there is no advantage in asking the hardware to also calculate this checksum. Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru> Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
This commit is contained in:
@@ -998,7 +998,7 @@ enum CSR1_BIT {
|
||||
CSR1_TDHD = 0x08000000,
|
||||
};
|
||||
|
||||
#define CSR1_CSUM_ENABLE (CSR1_TIP4 | CSR1_TTCP4 | CSR1_TUDP4)
|
||||
#define CSR1_CSUM_ENABLE (CSR1_TTCP4 | CSR1_TUDP4)
|
||||
|
||||
enum CSR2_BIT {
|
||||
CSR2_RIP4 = 0x00000001,
|
||||
|
||||
Reference in New Issue
Block a user