FreeBSD Bugzilla – Attachment 237452 Details for
Bug 266048
[ixgbe] 82599ES reports IPv4 UDP with zero checksum as input errors
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch
ixgbe.diff (text/plain), 608 bytes, created by
Andrey V. Elsukov
on 2022-10-19 07:14:30 UTC
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Andrey V. Elsukov
Created:
2022-10-19 07:14:30 UTC
Size:
608 bytes
patch
obsolete
>diff --git a/sys/dev/ixgbe/if_ix.c b/sys/dev/ixgbe/if_ix.c >index 54008a24074b..c5956029116f 100644 >--- a/sys/dev/ixgbe/if_ix.c >+++ b/sys/dev/ixgbe/if_ix.c >@@ -1585,7 +1585,8 @@ ixgbe_update_stats_counters(struct ixgbe_softc *sc) > * - oversized packets count, > * - jabber count. > */ >- IXGBE_SET_IERRORS(sc, stats->crcerrs + stats->illerrc + stats->xec + >+ IXGBE_SET_IERRORS(sc, stats->crcerrs + stats->illerrc + >+ (hw->mac.type != ixgbe_mac_82598EB ? stats->xec: 0) + > stats->mpc[0] + stats->rlec + stats->ruc + stats->rfc + stats->roc + > stats->rjc); > } /* ixgbe_update_stats_counters */
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 266048
: 237452