From noreply at github.com Wed Feb 1 20:25:12 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 01 Feb 2023 17:25:12 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 2ef01b: If the "intr" and/or "soft" mount options are used... Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 2ef01bb3f45cbff79130a46b59bdb0bb80f0cb92 https://github.com/MidnightBSD/src/commit/2ef01bb3f45cbff79130a46b59bdb0bb80f0cb92 Author: Lucas Holt Date: 2022-12-31 (Sat, 31 Dec 2022) Changed paths: M sbin/mount_nfs/mount_nfs.8 Log Message: ----------- If the "intr" and/or "soft" mount options are used for NFSv4 mounts, the protocol can be broken when the operation returns without waiting for the RPC reply. The likelyhood of failure increases for NFSv4.1/4.2 mounts, since the session slot will be broken when an RPC reply is not processed. This is mentioned in the BUGS section of "man mount_nfs", but there was no specific mention of the session slot problem. This patch adds a sentence for this case. From noreply at github.com Wed Feb 1 20:28:05 2023 From: noreply at github.com (Lucas Holt) Date: Wed, 01 Feb 2023 17:28:05 -0800 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 94f2c3: Fix spurious error from sysrc Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 94f2c3c476484c4834f9362d720875f09ad9a4b5 https://github.com/MidnightBSD/src/commit/94f2c3c476484c4834f9362d720875f09ad9a4b5 Author: Lucas Holt Date: 2023-02-01 (Wed, 01 Feb 2023) Changed paths: M usr.sbin/bsdconfig/share/sysrc.subr Log Message: ----------- Fix spurious error from sysrc When using sysrc to modify a file, the file should be created silently. However, with the introduction of SVN r335280, an error of "No such file or directory" would appear despite everything else working as-expected. The nature of this spurious error is that SVN r335280 did not check if the file exists first, before trying to fixup the line-endings in the file just prior to modification. Obtained from: FreeBSD SVN revision 355280