Lines Matching refs:nsbp

921 	xfs_sb_t	*nsbp;		/* new superblock */  in xfs_growfs_rt()  local
1030 nsbp = &nmp->m_sb; in xfs_growfs_rt()
1034 nsbp->sb_rextsize = in->extsize; in xfs_growfs_rt()
1035 nsbp->sb_rbmblocks = bmbno + 1; in xfs_growfs_rt()
1036 nrblocks_step = (bmbno + 1) * NBBY * nsbp->sb_blocksize * in xfs_growfs_rt()
1037 nsbp->sb_rextsize; in xfs_growfs_rt()
1038 nsbp->sb_rblocks = min(nrblocks, nrblocks_step); in xfs_growfs_rt()
1039 nsbp->sb_rextents = nsbp->sb_rblocks; in xfs_growfs_rt()
1040 do_div(nsbp->sb_rextents, nsbp->sb_rextsize); in xfs_growfs_rt()
1041 ASSERT(nsbp->sb_rextents != 0); in xfs_growfs_rt()
1042 nsbp->sb_rextslog = xfs_highbit32(nsbp->sb_rextents); in xfs_growfs_rt()
1043 nrsumlevels = nmp->m_rsumlevels = nsbp->sb_rextslog + 1; in xfs_growfs_rt()
1046 nsbp->sb_rbmblocks; in xfs_growfs_rt()
1067 nsbp->sb_rbmblocks * nsbp->sb_blocksize; in xfs_growfs_rt()
1087 if (sbp->sb_rbmblocks != nsbp->sb_rbmblocks || in xfs_growfs_rt()
1096 if (nsbp->sb_rextsize != sbp->sb_rextsize) in xfs_growfs_rt()
1098 nsbp->sb_rextsize - sbp->sb_rextsize); in xfs_growfs_rt()
1099 if (nsbp->sb_rbmblocks != sbp->sb_rbmblocks) in xfs_growfs_rt()
1101 nsbp->sb_rbmblocks - sbp->sb_rbmblocks); in xfs_growfs_rt()
1102 if (nsbp->sb_rblocks != sbp->sb_rblocks) in xfs_growfs_rt()
1104 nsbp->sb_rblocks - sbp->sb_rblocks); in xfs_growfs_rt()
1105 if (nsbp->sb_rextents != sbp->sb_rextents) in xfs_growfs_rt()
1107 nsbp->sb_rextents - sbp->sb_rextents); in xfs_growfs_rt()
1108 if (nsbp->sb_rextslog != sbp->sb_rextslog) in xfs_growfs_rt()
1110 nsbp->sb_rextslog - sbp->sb_rextslog); in xfs_growfs_rt()
1116 nsbp->sb_rextents - sbp->sb_rextents, &bp, &sumbno); in xfs_growfs_rt()
1126 nsbp->sb_rextents - sbp->sb_rextents); in xfs_growfs_rt()