diff options
| author | martin <martin@NetBSD.org> | 2022-06-02 10:47:50 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2022-06-02 10:47:50 +0000 |
| commit | d72993a635f12e86167ca3f214fc420ae66563af (patch) | |
| tree | e5e6ffdcf5616b02cc4aceb8ac23416f03448323 | |
| parent | 24b32700106f4619261e05a46c416c1ac5ed97ee (diff) | |
Ticket #1459
| -rw-r--r-- | doc/CHANGES-9.3 | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/doc/CHANGES-9.3 b/doc/CHANGES-9.3 index d47c503d033..af993941e29 100644 --- a/doc/CHANGES-9.3 +++ b/doc/CHANGES-9.3 @@ -1,4 +1,4 @@ -# $NetBSD: CHANGES-9.3,v 1.1.2.98 2022/05/31 14:04:24 martin Exp $ +# $NetBSD: CHANGES-9.3,v 1.1.2.99 2022/06/02 10:47:50 martin Exp $ A complete list of changes from the NetBSD 9.2 release to the NetBSD 9.3 release: @@ -1704,3 +1704,30 @@ sys/dev/pci/ixgbe/ixv.c 1.181 allocation failed. [msaitoh, ticket #1458] +sys/dev/pci/ixgbe/ixgbe.c 1.261,1.265-1.268,1.273, + 1.275-1.277,1.312, + 1.316-1.319 via patch +sys/dev/pci/ixgbe/ixgbe.h 1.85 via patch +sys/dev/pci/ixgbe/ixgbe_type.h 1.46-1.47 +sys/dev/pci/ixgbe/ixgbe_x550.c 1.26 +sys/dev/pci/ixgbe/ixv.c 1.182 + + - Reduce code duplication between ixgbe_msix_admin() and + ixgbe_legacy_irq(). + - Add missing code which was not in ixgbe_msix_admin() from + ixgbe_legacy_irq() and vice versa. + - Reorder code. + - Disable/enable the OTHER interrupts correctly. + - Don't return in the middle of ixgbe_msix_admin() when an flow + director reinit failed. NetBSD currently doesn't support flow + director, so this is not a real bug. + - Print ECC, PHY and temp error log using with ratecheck(). + - Correctly re-enable queue interrupt in ixgbe_legacy_irq(). + - Correctly enter the recovery mode. + - No functional change: + - Add some debug printf()s. + - Don't use "more" flag for simplify. + - Fix typos in comment. + - KNF. + [msaitoh, ticket #1459] + |
