Lines Matching refs:mstat
354 struct statfs *mstat; in nullfs_statfs() local
360 mstat = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK | M_ZERO); in nullfs_statfs()
362 error = VFS_STATFS(MOUNTTONULLMOUNT(mp)->nullm_vfs, mstat); in nullfs_statfs()
364 free(mstat, M_STATFS); in nullfs_statfs()
368 sbp->f_type = mstat->f_type; in nullfs_statfs()
369 sbp->f_bsize = mstat->f_bsize; in nullfs_statfs()
370 sbp->f_iosize = mstat->f_iosize; in nullfs_statfs()
371 sbp->f_blocks = mstat->f_blocks; in nullfs_statfs()
372 sbp->f_bfree = mstat->f_bfree; in nullfs_statfs()
373 sbp->f_bavail = mstat->f_bavail; in nullfs_statfs()
374 sbp->f_files = mstat->f_files; in nullfs_statfs()
375 sbp->f_ffree = mstat->f_ffree; in nullfs_statfs()
377 free(mstat, M_STATFS); in nullfs_statfs()