tmpfs: add missing vop_fplookup ops to tmpfs_fifoop_entries

Reported by:	gbe
PR:	270917
This commit is contained in:
Mateusz Guzik 2023-04-18 18:04:16 +00:00
parent bd5dc94b99
commit 5e954b9216

View File

@ -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);