diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-12-06 20:31:36 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-12-06 20:31:36 +0000 |
commit | 1a6cf6a3ada57d6fa7a4b9538cf63e50e6d80350 (patch) | |
tree | 4b12eaba7b35ab0b5d20b561496c157db920fa1f /sys/fs/unionfs | |
parent | d14c8441e974525dc7665055774b98b62b169e07 (diff) | |
download | src-1a6cf6a3ada57d6fa7a4b9538cf63e50e6d80350.tar.gz src-1a6cf6a3ada57d6fa7a4b9538cf63e50e6d80350.zip |
Trust vfs_mount to call VFS_STATFS() on all mounts.
Notes
Notes:
svn path=/head/; revision=138491
Diffstat (limited to 'sys/fs/unionfs')
-rw-r--r-- | sys/fs/unionfs/union_vfsops.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/fs/unionfs/union_vfsops.c b/sys/fs/unionfs/union_vfsops.c index 0b94370df0e3..59f6b8cc42f8 100644 --- a/sys/fs/unionfs/union_vfsops.c +++ b/sys/fs/unionfs/union_vfsops.c @@ -299,8 +299,6 @@ union_mount(mp, td) (void) copystr(target, cp, len - 1, &size); bzero(cp + size, len - size); - (void)union_statfs(mp, &mp->mnt_stat, td); - UDEBUG(("union_mount: from %s, on %s\n", mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname)); return (0); |