Home | History | Annotate | Download | only in nfsd

Lines Matching full:struct

19 struct nfsd_fhandle {
20 struct svc_fh fh;
23 struct nfsd_sattrargs {
24 struct svc_fh fh;
25 struct iattr attrs;
28 struct nfsd_diropargs {
29 struct svc_fh fh;
34 struct nfsd_readargs {
35 struct svc_fh fh;
38 struct kvec vec[RPCSVC_MAXPAGES];
42 struct nfsd_writeargs {
46 struct kvec vec[RPCSVC_MAXPAGES];
50 struct nfsd_createargs {
51 struct svc_fh fh;
54 struct iattr attrs;
57 struct nfsd_renameargs {
58 struct svc_fh ffh;
61 struct svc_fh tfh;
66 struct nfsd_readlinkargs {
67 struct svc_fh fh;
71 struct nfsd_linkargs {
72 struct svc_fh ffh;
73 struct svc_fh tfh;
78 struct nfsd_symlinkargs {
79 struct svc_fh ffh;
84 struct iattr attrs;
87 struct nfsd_readdirargs {
88 struct svc_fh fh;
94 struct nfsd_attrstat {
95 struct svc_fh fh;
96 struct kstat stat;
99 struct nfsd_diropres {
100 struct svc_fh fh;
101 struct kstat stat;
104 struct nfsd_readlinkres {
108 struct nfsd_readres {
109 struct svc_fh fh;
111 struct kstat stat;
114 struct nfsd_readdirres {
117 struct readdir_cd common;
123 struct nfsd_statfsres {
124 struct kstatfs stats;
128 struct nfsd_sattrargs sattr;
129 struct nfsd_diropargs dirop;
130 struct nfsd_readargs read;
131 struct nfsd_writeargs write;
132 struct nfsd_createargs create;
133 struct nfsd_renameargs rename;
134 struct nfsd_linkargs link;
135 struct nfsd_symlinkargs symlink;
136 struct nfsd_readdirargs readdir;