git: 1d15bceae63c - main - tmpfs: implement pathconf(_PC_SYMLINK_MAX)

Alex Richardson arichardson at FreeBSD.org
Fri Jan 29 09:31:54 UTC 2021


The branch main has been updated by arichardson:

URL: https://cgit.FreeBSD.org/src/commit/?id=1d15bceae63c438e3ff7dc7a0ca8a2c538e357b9

commit 1d15bceae63c438e3ff7dc7a0ca8a2c538e357b9
Author:     Alex Richardson <Alexander.Richardson at cl.cam.ac.uk>
AuthorDate: 2021-01-29 09:30:25 +0000
Commit:     Alex Richardson <arichardson at FreeBSD.org>
CommitDate: 2021-01-29 09:30:25 +0000

    tmpfs: implement pathconf(_PC_SYMLINK_MAX)
    
    This fixes one of the sys/audit tests when running them on tmpfs.
    
    Reviewed By:    delphij, kib
    Differential Revision: https://reviews.freebsd.org/D28387
---
 sys/fs/tmpfs/tmpfs_vnops.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/sys/fs/tmpfs/tmpfs_vnops.c b/sys/fs/tmpfs/tmpfs_vnops.c
index 7be2655dcf0b..94cb7fd868fa 100644
--- a/sys/fs/tmpfs/tmpfs_vnops.c
+++ b/sys/fs/tmpfs/tmpfs_vnops.c
@@ -1609,6 +1609,10 @@ tmpfs_pathconf(struct vop_pathconf_args *v)
 		*retval = TMPFS_LINK_MAX;
 		break;
 
+	case _PC_SYMLINK_MAX:
+		*retval = MAXPATHLEN;
+		break;
+
 	case _PC_NAME_MAX:
 		*retval = NAME_MAX;
 		break;


More information about the dev-commits-src-all mailing list