NFSSERVCTL - Linux手册页
时间:2019-08-20 17:59:02 来源:igfitidea点击:
Linux程序员手册 第2部分
更新日期: 2020-06-09
名称
nfsservctl-内核nfs守护程序的syscall接口
语法
#include <linux/nfsd/syscall.h> long nfsservctl(int cmd, struct nfsctl_arg *argp, union nfsctl_res *resp);
说明
注意:从Linux 3.1开始,此系统调用不再存在。它已被nfsd文件系统中的一组文件替换;参见nfsd(7)。
/* * These are the commands understood by nfsctl(). */ #define NFSCTL_SVC 0 /* This is a server process. */ #define NFSCTL_ADDCLIENT 1 /* Add an NFS client. */ #define NFSCTL_DELCLIENT 2 /* Remove an NFS client. */ #define NFSCTL_EXPORT 3 /* Export a filesystem. */ #define NFSCTL_UNEXPORT 4 /* Unexport a filesystem. */ #define NFSCTL_UGIDUPDATE 5 /* Update a client's UID/GID map (only in Linux 2.4.x and earlier). */ #define NFSCTL_GETFH 6 /* Get a file handle (used by mountd) (only in Linux 2.4.x and earlier). */ struct nfsctl_arg { int ca_version; /* safeguard */ union { struct nfsctl_svc u_svc; struct nfsctl_client u_client; struct nfsctl_export u_export; struct nfsctl_uidmap u_umap; struct nfsctl_fhparm u_getfh; unsigned int u_debug; } u; } union nfsctl_res { struct knfs_fh cr_getfh; unsigned int cr_debug; };
返回值
成功时,返回零。如果出错,则返回-1,并正确设置errno。
版本
此系统调用已从3.1版的Linux内核中删除。库支持在版本2.28中已从glibc中删除。
遵循规范
该调用是特定于Linux的。
另外参见
nfsd(7)
出版信息
这个页面是Linux手册页项目5.08版的一部分。有关项目的说明、有关报告错误的信息以及此页面的最新版本,请访问https://www.kernel.org/doc/man-pages/。