The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=0fbf21482f5a594d26314e1354df4dd691bc6401
commit 0fbf21482f5a594d26314e1354df4dd691bc6401 Author: Konstantin Belousov <[email protected]> AuthorDate: 2023-08-11 18:00:44 +0000 Commit: Konstantin Belousov <[email protected]> CommitDate: 2023-08-16 09:16:09 +0000 tmpfs: add the "pgread" mount option to the allowed options list for mount (cherry picked from commit 765ad5b28d3fa272208aedc3047a6a3dff561037) --- sys/fs/tmpfs/tmpfs_vfsops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/tmpfs/tmpfs_vfsops.c b/sys/fs/tmpfs/tmpfs_vfsops.c index 9a9c3f4570de..af0b158988f7 100644 --- a/sys/fs/tmpfs/tmpfs_vfsops.c +++ b/sys/fs/tmpfs/tmpfs_vfsops.c @@ -93,7 +93,7 @@ static int tmpfs_statfs(struct mount *, struct statfs *); static const char *tmpfs_opts[] = { "from", "size", "maxfilesize", "inodes", "uid", "gid", "mode", "export", - "union", "nonc", "nomtime", "nosymfollow", NULL + "union", "nonc", "nomtime", "nosymfollow", "pgread", NULL }; static const char *tmpfs_updateopts[] = {
