The branch main has been updated by mjg:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=5e954b9216ed94f66c74ef55622e0a8fe18d805a

commit 5e954b9216ed94f66c74ef55622e0a8fe18d805a
Author:     Mateusz Guzik <m...@freebsd.org>
AuthorDate: 2023-04-18 18:04:16 +0000
Commit:     Mateusz Guzik <m...@freebsd.org>
CommitDate: 2023-04-18 18:06:30 +0000

    tmpfs: add missing vop_fplookup ops to tmpfs_fifoop_entries
    
    Reported by:    gbe
    PR:     270917
---
 sys/fs/tmpfs/tmpfs_fifoops.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/fs/tmpfs/tmpfs_fifoops.c b/sys/fs/tmpfs/tmpfs_fifoops.c
index ac8b0738c4c7..08a15aa85fc9 100644
--- a/sys/fs/tmpfs/tmpfs_fifoops.c
+++ b/sys/fs/tmpfs/tmpfs_fifoops.c
@@ -74,5 +74,7 @@ struct vop_vector tmpfs_fifoop_entries = {
        .vop_pathconf =                 tmpfs_pathconf,
        .vop_print =                    tmpfs_print,
        .vop_add_writecount =           vop_stdadd_writecount_nomsync,
+       .vop_fplookup_vexec =           VOP_EAGAIN,
+       .vop_fplookup_symlink =         VOP_EAGAIN,
 };
 VFS_VOP_VECTOR_REGISTER(tmpfs_fifoop_entries);

Reply via email to