From owner-dev-commits-src-all@freebsd.org Wed Aug 4 00:27:11 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ABAF9653C49; Wed, 4 Aug 2021 00:27:11 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GfXcb46LGz4cKm; Wed, 4 Aug 2021 00:27:11 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 717E71D140; Wed, 4 Aug 2021 00:27:11 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1740RBfu055020; Wed, 4 Aug 2021 00:27:11 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1740RB99055019; Wed, 4 Aug 2021 00:27:11 GMT (envelope-from git) Date: Wed, 4 Aug 2021 00:27:11 GMT Message-Id: <202108040027.1740RB99055019@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org From: Rick Macklem Subject: git: 311759c5363d - stable/13 - RELNOTES: Add entries for commits 9fb6e613373c and 9ec7dbf46b0a MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: rmacklem X-Git-Repository: src X-Git-Refname: refs/heads/stable/13 X-Git-Reftype: branch X-Git-Commit: 311759c5363dbb8ee649722bf33bdba7158bbef0 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Aug 2021 00:27:11 -0000 The branch stable/13 has been updated by rmacklem: URL: https://cgit.FreeBSD.org/src/commit/?id=311759c5363dbb8ee649722bf33bdba7158bbef0 commit 311759c5363dbb8ee649722bf33bdba7158bbef0 Author: Rick Macklem AuthorDate: 2021-08-04 00:24:23 +0000 Commit: Rick Macklem CommitDate: 2021-08-04 00:24:23 +0000 RELNOTES: Add entries for commits 9fb6e613373c and 9ec7dbf46b0a This is a direct commit. --- RELNOTES | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/RELNOTES b/RELNOTES index 376615308ada..100e005d253a 100644 --- a/RELNOTES +++ b/RELNOTES @@ -10,6 +10,29 @@ newline. Entries should be separated by a newline. Changes to this file should not be MFCed. +9fb6e613373c: + Add a sysctl called vfs.nfsd.srvmaxio that can be used to + increase the NFS server's maximum I/O size from 128Kbytes + to any power of 2 up to 1Mbyte. It can only be set when + the nfsd threads are not running and will normally require + an increase in kern.ipc.maxsockbuf to at least the value + recommended by the console log message generated when + setting vfs.nfsd.srvmaxio is first attempted. + +9ec7dbf46b0a: + Add a new NFSv4.1/4.2 mount option "nconnect" that can + be used to specify the number of TCP connections that + will be used for the mount, up to a maximum of 16. + The first (default) TCP connection will be used for + all RPCs that consist of small RPC messages. + The RPCs that can consist of large RPC messages + (Read/Readdir/ReaddirPlus/Write) will be sent on the + additional TCP connections in a round robin fashion. + If either the NFS client or NFS server have multiple + network interfaces aggregated together or a network + interface that uses multiple queues, this can increase + NFS performance for the mount. + various: One True Awk has been updated to the latest from upstream (20210215). All the FreeBSD patches, but one, have now been