• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfsd/

Lines Matching defs:rqstp

34 nfsd3_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
43 nfsd3_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle *argp,
53 nfserr = fh_verify(rqstp, &resp->fh, 0,
69 nfsd3_proc_setattr(struct svc_rqst *rqstp, struct nfsd3_sattrargs *argp,
78 nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,
87 nfsd3_proc_lookup(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
100 nfserr = nfsd_lookup(rqstp, &resp->dirfh,
111 nfsd3_proc_access(struct svc_rqst *rqstp, struct nfsd3_accessargs *argp,
122 nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
130 nfsd3_proc_readlink(struct svc_rqst *rqstp, struct nfsd3_readlinkargs *argp,
140 nfserr = nfsd_readlink(rqstp, &resp->fh, argp->buffer, &resp->len);
148 nfsd3_proc_read(struct svc_rqst *rqstp, struct nfsd3_readargs *argp,
152 u32 max_blocksize = svc_max_payload(rqstp);
168 svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
171 nfserr = nfsd_read(rqstp, &resp->fh,
173 rqstp->rq_vec, argp->vlen,
188 nfsd3_proc_write(struct svc_rqst *rqstp, struct nfsd3_writeargs *argp,
202 nfserr = nfsd_write(rqstp, &resp->fh, NULL,
204 rqstp->rq_vec, argp->vlen,
217 nfsd3_proc_create(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
234 nfserr = fh_verify(rqstp, dirfhp, S_IFDIR, NFSD_MAY_CREATE);
248 nfserr = nfsd_create_v3(rqstp, dirfhp, argp->name, argp->len,
259 nfsd3_proc_mkdir(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
272 nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
279 nfsd3_proc_symlink(struct svc_rqst *rqstp, struct nfsd3_symlinkargs *argp,
291 nfserr = nfsd_symlink(rqstp, &resp->dirfh, argp->fname, argp->flen,
301 nfsd3_proc_mknod(struct svc_rqst *rqstp, struct nfsd3_mknodargs *argp,
328 nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
338 nfsd3_proc_remove(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
350 nfserr = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR, argp->name, argp->len);
359 nfsd3_proc_rmdir(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
370 nfserr = nfsd_unlink(rqstp, &resp->fh, S_IFDIR, argp->name, argp->len);
376 nfsd3_proc_rename(struct svc_rqst *rqstp, struct nfsd3_renameargs *argp,
392 nfserr = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
398 nfsd3_proc_link(struct svc_rqst *rqstp, struct nfsd3_linkargs *argp,
412 nfserr = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
421 nfsd3_proc_readdir(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
441 resp->rqstp = rqstp;
442 nfserr = nfsd_readdir(rqstp, &resp->fh, (loff_t*) &argp->cookie,
457 nfsd3_proc_readdirplus(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
480 resp->rqstp = rqstp;
482 nfserr = nfsd_readdir(rqstp, &resp->fh,
487 for (i=1; i<rqstp->rq_resused ; i++) {
488 page_addr = page_address(rqstp->rq_respages[i]);
516 nfsd3_proc_fsstat(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
524 nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
533 nfsd3_proc_fsinfo(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
537 u32 max_blocksize = svc_max_payload(rqstp);
552 nfserr = fh_verify(rqstp, &argp->fh, 0,
576 nfsd3_proc_pathconf(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
592 nfserr = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
619 nfsd3_proc_commit(struct svc_rqst * rqstp, struct nfsd3_commitargs *argp,
633 nfserr = nfsd_commit(rqstp, &resp->fh, argp->offset, argp->count);