Module Name: src
Committed By: martin
Date: Thu Oct 21 14:34:00 UTC 2021
Modified Files:
src/doc [netbsd-9]: CHANGES-9.3
Log Message:
Tickets #1362 and #1363
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.39 -r1.1.2.40 src/doc/CHANGES-9.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/doc/CHANGES-9.3
diff -u src/doc/CHANGES-9.3:1.1.2.39 src/doc/CHANGES-9.3:1.1.2.40
--- src/doc/CHANGES-9.3:1.1.2.39 Tue Oct 19 10:56:08 2021
+++ src/doc/CHANGES-9.3 Thu Oct 21 14:33:59 2021
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-9.3,v 1.1.2.39 2021/10/19 10:56:08 martin Exp $
+# $NetBSD: CHANGES-9.3,v 1.1.2.40 2021/10/21 14:33:59 martin Exp $
A complete list of changes from the NetBSD 9.2 release to the NetBSD 9.3
release:
@@ -828,3 +828,55 @@ sys/dev/raidframe/rf_netbsd.h 1.36 (pa
RAIDframe could run out of IO buffers.
[oster, ticket #1361]
+sys/dev/pci/pcidevs 1.1419-1.1440
+sys/dev/pci/pcidevs.h regen
+sys/dev/pci/pcidevs_data.h regen
+
+ - Add newer ciss(4) devices.
+ - Add modern QUMRANET/Red Hat VIRTIO range PCI devices.
+ - Add some more product IDs for mcx(4).
+ - Add current generation NVIDIA graphics cards (3050-3090 etc.).
+ - Add RDC R6022 PCI-Host bridge.
+ - Add a whole bunch of radeon devices.
+ - Add Realtek RTL8821CE.
+ - Add Intel 660p SSD, and expand the 760p description.
+ - Add Intel I219's version number.
+ - Add Intel I219V 15-19 and I219LM 16-19.
+ - Add Intel I225V, I225LM and WiFi 6 AX201.
+ - Add newer Intel PCH internal devices.
+ - Add Intel Jasper Lake devices.
+ - PDC20265 is Ultra/100, not 66.
+ - Fix Realtek RTL8125 description.
+ - Sort Cavium devices.
+ [msaitoh, ticket #1362]
+
+share/man/man4/wm.4 1.42
+sys/dev/pci/files.pci 1.434
+sys/dev/pci/if_wm.c 1.690,1.692-1.693,1.697-1.704,
+ 1.706-1.715 via patch
+
+ - Add missing drain for pcq in wm_stop_locked().
+ - Add support for I219V 15-19 and I219LM 16-19.
+ - Fix Tx stall.
+ - Use wm_flush_desc_rings() workaround more on I219.
+ - Change DMA physical address in wm_flush_desc_rings() to match other
+ OSes.
+ - Check return value correctly in wm_lv_jumbo_workaround_ich8lan().
+ - Add new sysctl hw.wmN.debug_flags. This sysctl can be used if
+ WM_DEBUG is set.
+ - Add some sysctl values for debugging TX/RX queues.
+ - Use atomic_{load,store}_relaxed for evcnt 64 bit counter.
+ - WM_EVENT_COUNTER is enabled by default on 64 bit architectures.
+ - Remove extra unlock/lock processing around if_percpuq_enqueue().
+ - Refactor rxq->rxq_ptr updating.
+ - Stop legacy interrupts before calling softint.
+ - Disable printf()s in wm_flush_desc_rings() because the code is
+ verified.
+ - Print I219's version number.
+ - Uniform INTx/MSI handler's Tx/Rx behavior to MSI-X's one.
+ - Fix return value of interrupt handler.
+ - Only print an error about missing I/O BARs for chips that need it.
+ - Do not return a void value from a void function.
+ - Fix comment.
+ - Whitespace fixes. No functional change.
+ [msaitoh, ticket #1363]