• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfsd/

Lines Matching defs:rqstp

47 nfsd3_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
56 nfsd3_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle *argp,
66 nfserr = fh_verify(rqstp, &resp->fh, 0, MAY_NOP);
81 nfsd3_proc_setattr(struct svc_rqst *rqstp, struct nfsd3_sattrargs *argp,
90 nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,
99 nfsd3_proc_lookup(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
112 nfserr = nfsd_lookup(rqstp, &resp->dirfh,
123 nfsd3_proc_access(struct svc_rqst *rqstp, struct nfsd3_accessargs *argp,
134 nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
142 nfsd3_proc_readlink(struct svc_rqst *rqstp, struct nfsd3_readlinkargs *argp,
152 nfserr = nfsd_readlink(rqstp, &resp->fh, argp->buffer, &resp->len);
160 nfsd3_proc_read(struct svc_rqst *rqstp, struct nfsd3_readargs *argp,
164 u32 max_blocksize = svc_max_payload(rqstp);
180 svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
183 nfserr = nfsd_read(rqstp, &resp->fh, NULL,
185 rqstp->rq_vec, argp->vlen,
200 nfsd3_proc_write(struct svc_rqst *rqstp, struct nfsd3_writeargs *argp,
213 nfserr = nfsd_write(rqstp, &resp->fh, NULL,
215 rqstp->rq_vec, argp->vlen,
228 nfsd3_proc_create(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
245 nfserr = fh_verify(rqstp, dirfhp, S_IFDIR, MAY_CREATE);
259 nfserr = nfsd_create_v3(rqstp, dirfhp, argp->name, argp->len,
270 nfsd3_proc_mkdir(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
283 nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
290 nfsd3_proc_symlink(struct svc_rqst *rqstp, struct nfsd3_symlinkargs *argp,
302 nfserr = nfsd_symlink(rqstp, &resp->dirfh, argp->fname, argp->flen,
312 nfsd3_proc_mknod(struct svc_rqst *rqstp, struct nfsd3_mknodargs *argp,
339 nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
349 nfsd3_proc_remove(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
361 nfserr = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR, argp->name, argp->len);
369 nfsd3_proc_rmdir(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
380 nfserr = nfsd_unlink(rqstp, &resp->fh, S_IFDIR, argp->name, argp->len);
385 nfsd3_proc_rename(struct svc_rqst *rqstp, struct nfsd3_renameargs *argp,
401 nfserr = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
407 nfsd3_proc_link(struct svc_rqst *rqstp, struct nfsd3_linkargs *argp,
421 nfserr = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
430 nfsd3_proc_readdir(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
450 resp->rqstp = rqstp;
451 nfserr = nfsd_readdir(rqstp, &resp->fh, (loff_t*) &argp->cookie,
466 nfsd3_proc_readdirplus(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
489 resp->rqstp = rqstp;
491 nfserr = nfsd_readdir(rqstp, &resp->fh,
496 for (i=1; i<rqstp->rq_resused ; i++) {
497 page_addr = page_address(rqstp->rq_respages[i]);
525 nfsd3_proc_fsstat(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
533 nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats);
542 nfsd3_proc_fsinfo(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
546 u32 max_blocksize = svc_max_payload(rqstp);
561 nfserr = fh_verify(rqstp, &argp->fh, 0, MAY_NOP);
584 nfsd3_proc_pathconf(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
600 nfserr = fh_verify(rqstp, &argp->fh, 0, MAY_NOP);
627 nfsd3_proc_commit(struct svc_rqst * rqstp, struct nfsd3_commitargs *argp,
641 nfserr = nfsd_commit(rqstp, &resp->fh, argp->offset, argp->count);