|
NAMEVFS_CHECKEXP —
check if a file system is exported to a client
SYNOPSIS#include <sys/param.h>
#include <sys/mount.h>
int
DESCRIPTIONTheVFS_CHECKEXP () macro is used by the NFS server to
check if a mount point is exported to a client.
The arguments it expects are:
The It is called in the NFS server once a vnode for a file handle has been acquired, in order to determine what access the client is allowed on the file system the vnode resides in. For NFSv4, it is also called whenever the lookup operation crosses a server file system mount point, to update the access information. The operation is file system specific, but is normally handled by the default ``vfs_stdcheckexp''. RETURN VALUESThe export flags, anonymous credentials and security flavors specific to the client will be returned in *exflagsp, *credanonp, *numsecflavors and *secflavors.SEE ALSOVFS(9), VFS_FHTOVP(9), vnode(9), VOP_VPTOFH(9)AUTHORSThis manual page was written by Alfred Perlstein.
Visit the GSP FreeBSD Man Page Interface. |