Lines Matching refs:sector_size
772 vol->sector_size = le16_to_cpu(b->bpb.bytes_per_sector); in parse_ntfs_boot_sector()
773 vol->sector_size_bits = ffs(vol->sector_size) - 1; in parse_ntfs_boot_sector()
774 ntfs_debug("vol->sector_size = %i (0x%x)", vol->sector_size, in parse_ntfs_boot_sector()
775 vol->sector_size); in parse_ntfs_boot_sector()
778 if (vol->sector_size < vol->sb->s_blocksize) { in parse_ntfs_boot_sector()
781 "supported. Sorry.", vol->sector_size, in parse_ntfs_boot_sector()
791 vol->cluster_size = vol->sector_size << sectors_per_cluster_bits; in parse_ntfs_boot_sector()
798 if (vol->cluster_size < vol->sector_size) { in parse_ntfs_boot_sector()
801 "Sorry.", vol->cluster_size, vol->sector_size); in parse_ntfs_boot_sector()
837 if (vol->mft_record_size < vol->sector_size) { in parse_ntfs_boot_sector()
841 vol->sector_size); in parse_ntfs_boot_sector()
868 if (vol->index_record_size < vol->sector_size) { in parse_ntfs_boot_sector()
872 vol->sector_size); in parse_ntfs_boot_sector()
2834 if (vol->sector_size > blocksize) { in ntfs_fill_super()
2835 blocksize = sb_set_blocksize(sb, vol->sector_size); in ntfs_fill_super()
2836 if (blocksize != vol->sector_size) { in ntfs_fill_super()
2840 vol->sector_size); in ntfs_fill_super()