Lines Matching refs:fspt
585 struct fs *fspt; in remountfs() local
673 fspt = (struct fs *)tpt->b_un.b_addr; in remountfs()
674 if (((fspt->fs_magic != FS_MAGIC) && in remountfs()
675 (fspt->fs_magic != MTB_UFS_MAGIC)) || in remountfs()
676 (fspt->fs_magic == FS_MAGIC && in remountfs()
677 (fspt->fs_version != UFS_EFISTYLE4NONEFI_VERSION_2 && in remountfs()
678 fspt->fs_version != UFS_VERSION_MIN)) || in remountfs()
679 (fspt->fs_magic == MTB_UFS_MAGIC && in remountfs()
680 (fspt->fs_version > MTB_UFS_VERSION_1 || in remountfs()
681 fspt->fs_version < MTB_UFS_VERSION_MIN)) || in remountfs()
682 fspt->fs_bsize > MAXBSIZE || fspt->fs_frag > MAXFRAG || in remountfs()
683 fspt->fs_bsize < sizeof (struct fs) || fspt->fs_bsize < PAGESIZE) { in remountfs()
698 if ((fspt->fs_state + fspt->fs_time == FSOKAY) && in remountfs()
699 fspt->fs_clean == FSLOG && !TRANS_ISTRANS(ufsvfsp)) { in remountfs()
706 if (fspt->fs_state + fspt->fs_time == FSOKAY && in remountfs()
707 (fspt->fs_clean == FSCLEAN || in remountfs()
708 fspt->fs_clean == FSSTABLE || in remountfs()
709 fspt->fs_clean == FSLOG)) { in remountfs()
715 error = ufs_getsummaryinfo(vfsp->vfs_dev, ufsvfsp, fspt); in remountfs()
720 (void) strncpy(fspt->fs_fsmnt, fsp->fs_fsmnt, MAXMNTLEN); in remountfs()
724 fspt->fs_rolled = FS_NEED_ROLL; in remountfs()
725 bcopy(tpt->b_un.b_addr, bp->b_un.b_addr, fspt->fs_sbsize); in remountfs()