Home | History | Annotate | Download | only in amd

Lines Matching defs:fs_name

174 do_mount(am_nfs_handle_t *fhp, char *mntdir, char *fs_name, mntfs *mf)
178 dlog("amfs_host: mounting fs %s on %s\n", fs_name, mntdir);
186 return mount_nfs_fh(fhp, mntdir, fs_name, mf);
319 char fs_name[MAXPATHLEN], *rfs_dir;
473 xstrlcpy(fs_name, mf->mf_info, sizeof(fs_name));
474 if ((rfs_dir = strchr(fs_name, ':')) == (char *) NULL) {
484 * Note: the sizeof space left in rfs_dir is what's left in fs_name
485 * after strchr() above returned a pointer _inside_ fs_name. The
489 xstrlcpy(rfs_dir, ex->ex_dir, sizeof(fs_name) - (rfs_dir - fs_name));
491 if (do_mount(&fp[j], mntpt, fs_name, mf) == 0)