Lines Matching refs:rqstp

20 nfsd_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)  in nfsd_proc_null()  argument
42 nfsd_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle *argp, in nfsd_proc_getattr() argument
49 nfserr = fh_verify(rqstp, &resp->fh, 0, in nfsd_proc_getattr()
59 nfsd_proc_setattr(struct svc_rqst *rqstp, struct nfsd_sattrargs *argp, in nfsd_proc_setattr() argument
68 nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,0, (time_t)0); in nfsd_proc_setattr()
79 nfsd_proc_lookup(struct svc_rqst *rqstp, struct nfsd_diropargs *argp, in nfsd_proc_lookup() argument
88 nfserr = nfsd_lookup(rqstp, &argp->fh, argp->name, argp->len, in nfsd_proc_lookup()
99 nfsd_proc_readlink(struct svc_rqst *rqstp, struct nfsd_readlinkargs *argp, in nfsd_proc_readlink() argument
108 nfserr = nfsd_readlink(rqstp, &argp->fh, argp->buffer, &resp->len); in nfsd_proc_readlink()
119 nfsd_proc_read(struct svc_rqst *rqstp, struct nfsd_readargs *argp, in nfsd_proc_read() argument
136 svc_print_addr(rqstp, buf, sizeof(buf)), in nfsd_proc_read()
140 svc_reserve_auth(rqstp, (19<<2) + argp->count + 4); in nfsd_proc_read()
143 nfserr = nfsd_read(rqstp, fh_copy(&resp->fh, &argp->fh), in nfsd_proc_read()
145 rqstp->rq_vec, argp->vlen, in nfsd_proc_read()
157 nfsd_proc_write(struct svc_rqst *rqstp, struct nfsd_writeargs *argp, in nfsd_proc_write() argument
168 nfserr = nfsd_write(rqstp, fh_copy(&resp->fh, &argp->fh), NULL, in nfsd_proc_write()
170 rqstp->rq_vec, argp->vlen, in nfsd_proc_write()
183 nfsd_proc_create(struct svc_rqst *rqstp, struct nfsd_createargs *argp, in nfsd_proc_create() argument
200 nfserr = fh_verify(rqstp, dirfhp, S_IFDIR, NFSD_MAY_EXEC); in nfsd_proc_create()
269 nfserr = nfsd_permission(rqstp, in nfsd_proc_create()
317 nfserr = nfsd_create(rqstp, dirfhp, argp->name, argp->len, in nfsd_proc_create()
328 nfserr = nfsd_setattr(rqstp, newfhp, attr, 0, (time_t)0); in nfsd_proc_create()
341 nfsd_proc_remove(struct svc_rqst *rqstp, struct nfsd_diropargs *argp, in nfsd_proc_remove() argument
350 nfserr = nfsd_unlink(rqstp, &argp->fh, -S_IFDIR, argp->name, argp->len); in nfsd_proc_remove()
356 nfsd_proc_rename(struct svc_rqst *rqstp, struct nfsd_renameargs *argp, in nfsd_proc_rename() argument
366 nfserr = nfsd_rename(rqstp, &argp->ffh, argp->fname, argp->flen, in nfsd_proc_rename()
374 nfsd_proc_link(struct svc_rqst *rqstp, struct nfsd_linkargs *argp, in nfsd_proc_link() argument
386 nfserr = nfsd_link(rqstp, &argp->tfh, argp->tname, argp->tlen, in nfsd_proc_link()
394 nfsd_proc_symlink(struct svc_rqst *rqstp, struct nfsd_symlinkargs *argp, in nfsd_proc_symlink() argument
411 nfserr = nfsd_symlink(rqstp, &argp->ffh, argp->fname, argp->flen, in nfsd_proc_symlink()
424 nfsd_proc_mkdir(struct svc_rqst *rqstp, struct nfsd_createargs *argp, in nfsd_proc_mkdir() argument
438 nfserr = nfsd_create(rqstp, &argp->fh, argp->name, argp->len, in nfsd_proc_mkdir()
448 nfsd_proc_rmdir(struct svc_rqst *rqstp, struct nfsd_diropargs *argp, in nfsd_proc_rmdir() argument
455 nfserr = nfsd_unlink(rqstp, &argp->fh, S_IFDIR, argp->name, argp->len); in nfsd_proc_rmdir()
464 nfsd_proc_readdir(struct svc_rqst *rqstp, struct nfsd_readdirargs *argp, in nfsd_proc_readdir() argument
489 nfserr = nfsd_readdir(rqstp, &argp->fh, &offset, in nfsd_proc_readdir()
504 nfsd_proc_statfs(struct svc_rqst * rqstp, struct nfsd_fhandle *argp, in nfsd_proc_statfs() argument
511 nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats, in nfsd_proc_statfs()