Lines Matching refs:clusters

714 					   u32 clusters)  in ocfs2_clusters_to_blocks()  argument
719 return (u64)clusters << c_to_b_bits; in ocfs2_clusters_to_blocks()
745 unsigned int clusters; in ocfs2_clusters_for_bytes() local
749 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_clusters_for_bytes()
751 return clusters; in ocfs2_clusters_for_bytes()
758 unsigned int clusters; in ocfs2_bytes_to_clusters() local
760 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_bytes_to_clusters()
761 return clusters; in ocfs2_bytes_to_clusters()
772 u32 clusters) in ocfs2_clusters_to_bytes() argument
774 return (u64)clusters << OCFS2_SB(sb)->s_clustersize_bits; in ocfs2_clusters_to_bytes()
781 unsigned int clusters; in ocfs2_block_to_cluster_start() local
783 clusters = ocfs2_blocks_to_clusters(sb, blocks); in ocfs2_block_to_cluster_start()
784 return (u64)clusters << bits; in ocfs2_block_to_cluster_start()
791 unsigned int clusters; in ocfs2_align_bytes_to_clusters() local
793 clusters = ocfs2_clusters_for_bytes(sb, bytes); in ocfs2_align_bytes_to_clusters()
794 return (u64)clusters << cl_bits; in ocfs2_align_bytes_to_clusters()
814 u32 clusters = pg_index; in ocfs2_page_index_to_clusters() local
818 clusters = pg_index << (PAGE_CACHE_SHIFT - cbits); in ocfs2_page_index_to_clusters()
820 clusters = pg_index >> (cbits - PAGE_CACHE_SHIFT); in ocfs2_page_index_to_clusters()
822 return clusters; in ocfs2_page_index_to_clusters()
829 u32 clusters) in ocfs2_align_clusters_to_page_index() argument
832 pgoff_t index = clusters; in ocfs2_align_clusters_to_page_index()
835 index = (pgoff_t)clusters >> (PAGE_CACHE_SHIFT - cbits); in ocfs2_align_clusters_to_page_index()
837 index = (pgoff_t)clusters << (cbits - PAGE_CACHE_SHIFT); in ocfs2_align_clusters_to_page_index()
863 unsigned int clusters) in ocfs2_clusters_to_megabytes() argument
865 return clusters >> (20 - OCFS2_SB(sb)->s_clustersize_bits); in ocfs2_clusters_to_megabytes()