Lines Matching refs:sector_size
766 vol->sector_size = le16_to_cpu(b->bpb.bytes_per_sector); in parse_ntfs_boot_sector()
767 vol->sector_size_bits = ffs(vol->sector_size) - 1; in parse_ntfs_boot_sector()
768 ntfs_debug("vol->sector_size = %i (0x%x)", vol->sector_size, in parse_ntfs_boot_sector()
769 vol->sector_size); in parse_ntfs_boot_sector()
772 if (vol->sector_size < vol->sb->s_blocksize) { in parse_ntfs_boot_sector()
775 "supported. Sorry.", vol->sector_size, in parse_ntfs_boot_sector()
785 vol->cluster_size = vol->sector_size << sectors_per_cluster_bits; in parse_ntfs_boot_sector()
792 if (vol->cluster_size < vol->sector_size) { in parse_ntfs_boot_sector()
795 "Sorry.", vol->cluster_size, vol->sector_size); in parse_ntfs_boot_sector()
831 if (vol->mft_record_size < vol->sector_size) { in parse_ntfs_boot_sector()
835 vol->sector_size); in parse_ntfs_boot_sector()
862 if (vol->index_record_size < vol->sector_size) { in parse_ntfs_boot_sector()
866 vol->sector_size); in parse_ntfs_boot_sector()
2817 if (vol->sector_size > blocksize) { in ntfs_fill_super()
2818 blocksize = sb_set_blocksize(sb, vol->sector_size); in ntfs_fill_super()
2819 if (blocksize != vol->sector_size) { in ntfs_fill_super()
2823 vol->sector_size); in ntfs_fill_super()