Module Name: src
Committed By: jdolecek
Date: Sun Nov 5 18:32:01 UTC 2023
Modified Files:
src/doc: CHANGES
Log Message:
ena(4) improvements committed
Pull request: https://github.com/maleic1618/NetBSD/pull/1:
"""
This PR fixes some bugs and MP-ifies ena(4), including RSS.
On t3.small instance, its forward throughput has grown as followings:
64 bytes 256 bytes
-current 1flow 21.58 110.51
-current 8flow 28.27 123.19
patched 1flow 37.20 142.21
patched 8flow 92.26 366.85
(Unit: Mbps, NET_MPSAFE enabled, Using https://github.com/iij/ipgen)
It also worked well on a aarch64 machine.
Addendum: I forgot to mention that this PR is reviewed [email protected].
"""
Code contributed by KUSABA Takeshi <[email protected]>
Reviewed also by [email protected]
To generate a diff of this commit:
cvs rdiff -u -r1.3014 -r1.3015 src/doc/CHANGES
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
diff -u src/doc/CHANGES:1.3014 src/doc/CHANGES:1.3015
--- src/doc/CHANGES:1.3014 Sat Nov 4 15:33:26 2023
+++ src/doc/CHANGES Sun Nov 5 18:32:01 2023
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.3014 $>
+# LIST OF CHANGES FROM LAST RELEASE: <$Revision: 1.3015 $>
#
#
# [Note: This file does not mention every change made to the NetBSD source tree.
@@ -256,3 +256,5 @@ Changes from NetBSD 10.0 to NetBSD 11.0:
OpenSSH: Import 9.5. [christos 20231025]
newsmips: Add support for LCD-MONO framebuffer on NWS-32x0 laptop
machines. [tsutsui 20231104]
+ ena(4): MP-enable always, add RSS support, and reliability fixes.
+ [jdolecek 20231105]