Lines Matching refs:clusters

719 					   u32 clusters)  in ocfs2_clusters_to_blocks()  argument
724 return (u64)clusters << c_to_b_bits; in ocfs2_clusters_to_blocks()
750 unsigned int clusters; in ocfs2_clusters_for_bytes() local
754 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_clusters_for_bytes()
756 return clusters; in ocfs2_clusters_for_bytes()
763 unsigned int clusters; in ocfs2_bytes_to_clusters() local
765 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_bytes_to_clusters()
766 return clusters; in ocfs2_bytes_to_clusters()
777 u32 clusters) in ocfs2_clusters_to_bytes() argument
779 return (u64)clusters << OCFS2_SB(sb)->s_clustersize_bits; in ocfs2_clusters_to_bytes()
786 unsigned int clusters; in ocfs2_block_to_cluster_start() local
788 clusters = ocfs2_blocks_to_clusters(sb, blocks); in ocfs2_block_to_cluster_start()
789 return (u64)clusters << bits; in ocfs2_block_to_cluster_start()
796 unsigned int clusters; in ocfs2_align_bytes_to_clusters() local
798 clusters = ocfs2_clusters_for_bytes(sb, bytes); in ocfs2_align_bytes_to_clusters()
799 return (u64)clusters << cl_bits; in ocfs2_align_bytes_to_clusters()
819 u32 clusters = pg_index; in ocfs2_page_index_to_clusters() local
823 clusters = pg_index << (PAGE_SHIFT - cbits); in ocfs2_page_index_to_clusters()
825 clusters = pg_index >> (cbits - PAGE_SHIFT); in ocfs2_page_index_to_clusters()
827 return clusters; in ocfs2_page_index_to_clusters()
834 u32 clusters) in ocfs2_align_clusters_to_page_index() argument
837 pgoff_t index = clusters; in ocfs2_align_clusters_to_page_index()
840 index = (pgoff_t)clusters >> (PAGE_SHIFT - cbits); in ocfs2_align_clusters_to_page_index()
842 index = (pgoff_t)clusters << (cbits - PAGE_SHIFT); in ocfs2_align_clusters_to_page_index()
868 unsigned int clusters) in ocfs2_clusters_to_megabytes() argument
870 return clusters >> (20 - OCFS2_SB(sb)->s_clustersize_bits); in ocfs2_clusters_to_megabytes()