Lines Matching refs:sector_size
758 vol->sector_size = le16_to_cpu(b->bpb.bytes_per_sector); in parse_ntfs_boot_sector()
759 vol->sector_size_bits = ffs(vol->sector_size) - 1; in parse_ntfs_boot_sector()
760 ntfs_debug("vol->sector_size = %i (0x%x)", vol->sector_size, in parse_ntfs_boot_sector()
761 vol->sector_size); in parse_ntfs_boot_sector()
764 if (vol->sector_size < vol->sb->s_blocksize) { in parse_ntfs_boot_sector()
767 "supported. Sorry.", vol->sector_size, in parse_ntfs_boot_sector()
777 vol->cluster_size = vol->sector_size << sectors_per_cluster_bits; in parse_ntfs_boot_sector()
784 if (vol->cluster_size < vol->sector_size) { in parse_ntfs_boot_sector()
787 "Sorry.", vol->cluster_size, vol->sector_size); in parse_ntfs_boot_sector()
823 if (vol->mft_record_size < vol->sector_size) { in parse_ntfs_boot_sector()
827 vol->sector_size); in parse_ntfs_boot_sector()
854 if (vol->index_record_size < vol->sector_size) { in parse_ntfs_boot_sector()
858 vol->sector_size); in parse_ntfs_boot_sector()
2809 if (vol->sector_size > blocksize) { in ntfs_fill_super()
2810 blocksize = sb_set_blocksize(sb, vol->sector_size); in ntfs_fill_super()
2811 if (blocksize != vol->sector_size) { in ntfs_fill_super()
2815 vol->sector_size); in ntfs_fill_super()