Use vfs_mountedfrom(), rely on vfs_mount.c calling VFS_STATFS().

This commit is contained in:
phk 2004-12-06 20:02:13 +00:00
parent 463e576c38
commit 1eff61ea7f
2 changed files with 3 additions and 8 deletions

View File

@ -88,9 +88,7 @@ fdesc_mount(struct mount *mp, struct thread *td)
mp->mnt_data = (qaddr_t) fmp;
vfs_getnewfsid(mp);
bzero(mp->mnt_stat.f_mntfromname, MNAMELEN);
bcopy("fdescfs", mp->mnt_stat.f_mntfromname, sizeof("fdescfs"));
(void)fdesc_statfs(mp, &mp->mnt_stat, td);
vfs_mountedfrom(mp, "fdescfs");
return (0);
}

View File

@ -78,7 +78,6 @@ nullfs_mount(struct mount *mp, struct thread *td)
struct vnode *nullm_rootvp;
struct null_mount *xmp;
char *target;
size_t size;
int isvnunlocked = 0, len;
struct nameidata nd, *ndp = &nd;
@ -184,10 +183,8 @@ nullfs_mount(struct mount *mp, struct thread *td)
mp->mnt_data = (qaddr_t) xmp;
vfs_getnewfsid(mp);
(void) copystr(target, mp->mnt_stat.f_mntfromname,
MNAMELEN - 1, &size);
bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
(void)nullfs_statfs(mp, &mp->mnt_stat, td);
vfs_mountedfrom(mp, target);
NULLFSDEBUG("nullfs_mount: lower %s, alias at %s\n",
mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
return (0);