Lines Matching refs:repl
112 struct repl { in nfs_getrootfh() struct
115 } *repl; in nfs_getrootfh() local
122 struct repl d; in nfs_getrootfh()
132 repl = &rdata.d; in nfs_getrootfh()
143 args, len, repl, sizeof(*repl)); in nfs_getrootfh()
152 if (repl->errno) { in nfs_getrootfh()
153 errno = ntohl(repl->errno); in nfs_getrootfh()
156 bcopy(repl->fh, fhp, sizeof(repl->fh)); in nfs_getrootfh()
173 struct repl { in nfs_lookupfh() struct
177 } *repl; in nfs_lookupfh() local
184 struct repl d; in nfs_lookupfh()
194 repl = &rdata.d; in nfs_lookupfh()
206 rlen = sizeof(*repl); in nfs_lookupfh()
209 args, len, repl, rlen); in nfs_lookupfh()
214 if (repl->errno) { in nfs_lookupfh()
216 return (ntohl(repl->errno)); in nfs_lookupfh()
218 bcopy( repl->fh, &newfd->fh, sizeof(newfd->fh)); in nfs_lookupfh()
219 bcopy(&repl->fa, &newfd->fa, sizeof(newfd->fa)); in nfs_lookupfh()
274 struct nfs_read_repl *repl; in nfs_readdata() local
288 repl = &rdata.d; in nfs_readdata()
296 hlen = sizeof(*repl) - NFSREAD_SIZE; in nfs_readdata()
300 repl, sizeof(*repl)); in nfs_readdata()
309 if (repl->errno) { in nfs_readdata()
310 errno = ntohl(repl->errno); in nfs_readdata()
314 x = ntohl(repl->count); in nfs_readdata()
320 bcopy(repl->data, addr, x); in nfs_readdata()