• 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

20 nfsd_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
46 nfsd_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle *argp,
53 nfserr = fh_verify(rqstp, &resp->fh, 0,
63 nfsd_proc_setattr(struct svc_rqst *rqstp, struct nfsd_sattrargs *argp,
72 nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,0, (time_t)0);
83 nfsd_proc_lookup(struct svc_rqst *rqstp, struct nfsd_diropargs *argp,
92 nfserr = nfsd_lookup(rqstp, &argp->fh, argp->name, argp->len,
103 nfsd_proc_readlink(struct svc_rqst *rqstp, struct nfsd_readlinkargs *argp,
112 nfserr = nfsd_readlink(rqstp, &argp->fh, argp->buffer, &resp->len);
123 nfsd_proc_read(struct svc_rqst *rqstp, struct nfsd_readargs *argp,
140 svc_print_addr(rqstp, buf, sizeof(buf)),
144 svc_reserve_auth(rqstp, (19<<2) + argp->count + 4);
147 nfserr = nfsd_read(rqstp, fh_copy(&resp->fh, &argp->fh),
149 rqstp->rq_vec, argp->vlen,
163 nfsd_proc_write(struct svc_rqst *rqstp, struct nfsd_writeargs *argp,
174 nfserr = nfsd_write(rqstp, fh_copy(&resp->fh, &argp->fh), NULL,
176 rqstp->rq_vec, argp->vlen,
189 nfsd_proc_create(struct svc_rqst *rqstp, struct nfsd_createargs *argp,
205 nfserr = fh_verify(rqstp, dirfhp, S_IFDIR, NFSD_MAY_EXEC);
268 nfserr = nfsd_permission(rqstp,
316 nfserr = nfsd_create(rqstp, dirfhp, argp->name, argp->len,
327 nfserr = nfsd_setattr(rqstp, newfhp, attr, 0, (time_t)0);
340 nfsd_proc_remove(struct svc_rqst *rqstp, struct nfsd_diropargs *argp,
349 nfserr = nfsd_unlink(rqstp, &argp->fh, -S_IFDIR, argp->name, argp->len);
355 nfsd_proc_rename(struct svc_rqst *rqstp, struct nfsd_renameargs *argp,
365 nfserr = nfsd_rename(rqstp, &argp->ffh, argp->fname, argp->flen,
373 nfsd_proc_link(struct svc_rqst *rqstp, struct nfsd_linkargs *argp,
385 nfserr = nfsd_link(rqstp, &argp->tfh, argp->tname, argp->tlen,
393 nfsd_proc_symlink(struct svc_rqst *rqstp, struct nfsd_symlinkargs *argp,
407 nfserr = nfsd_symlink(rqstp, &argp->ffh, argp->fname, argp->flen,
422 nfsd_proc_mkdir(struct svc_rqst *rqstp, struct nfsd_createargs *argp,
436 nfserr = nfsd_create(rqstp, &argp->fh, argp->name, argp->len,
446 nfsd_proc_rmdir(struct svc_rqst *rqstp, struct nfsd_diropargs *argp,
453 nfserr = nfsd_unlink(rqstp, &argp->fh, S_IFDIR, argp->name, argp->len);
462 nfsd_proc_readdir(struct svc_rqst *rqstp, struct nfsd_readdirargs *argp,
487 nfserr = nfsd_readdir(rqstp, &argp->fh, &offset,
502 nfsd_proc_statfs(struct svc_rqst * rqstp, struct nfsd_fhandle *argp,
509 nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats,