Searched refs:desc_count (Results 1 – 5 of 5) sorted by relevance
/fs/orangefs/ |
D | orangefs-bufmap.c | 150 int desc_count; member 228 bufmap->desc_count = user_desc->count; in orangefs_bufmap_alloc() 232 bufmap->buffer_index_array = bitmap_zalloc(bufmap->desc_count, GFP_KERNEL); in orangefs_bufmap_alloc() 237 kcalloc(bufmap->desc_count, sizeof(struct orangefs_bufmap_desc), in orangefs_bufmap_alloc() 297 for (offset = 0, i = 0; i < bufmap->desc_count; i++) { in orangefs_bufmap_map() 384 bufmap->desc_count, in orangefs_bufmap_initialize()
|
/fs/ext2/ |
D | ialloc.c | 624 unsigned long desc_count = 0; in ext2_count_free_inodes() local 639 desc_count += le16_to_cpu(desc->bg_free_inodes_count); in ext2_count_free_inodes() 654 desc_count, bitmap_count); in ext2_count_free_inodes() 655 return desc_count; in ext2_count_free_inodes() 661 desc_count += le16_to_cpu(desc->bg_free_inodes_count); in ext2_count_free_inodes() 663 return desc_count; in ext2_count_free_inodes()
|
D | balloc.c | 1467 unsigned long desc_count = 0; in ext2_count_free_blocks() local 1474 desc_count = 0; in ext2_count_free_blocks() 1482 desc_count += le16_to_cpu(desc->bg_free_blocks_count); in ext2_count_free_blocks() 1495 desc_count, bitmap_count); in ext2_count_free_blocks() 1502 desc_count += le16_to_cpu(desc->bg_free_blocks_count); in ext2_count_free_blocks() 1504 return desc_count; in ext2_count_free_blocks()
|
/fs/ext4/ |
D | balloc.c | 726 ext4_fsblk_t desc_count; in ext4_count_free_clusters() local 738 desc_count = 0; in ext4_count_free_clusters() 750 desc_count += ext4_free_group_clusters(sb, gdp); in ext4_count_free_clusters() 768 desc_count, bitmap_count); in ext4_count_free_clusters() 771 desc_count = 0; in ext4_count_free_clusters() 780 desc_count += ext4_free_group_clusters(sb, gdp); in ext4_count_free_clusters() 783 return desc_count; in ext4_count_free_clusters()
|
D | ialloc.c | 1274 unsigned long desc_count; in ext4_count_free_inodes() local 1283 desc_count = 0; in ext4_count_free_inodes() 1290 desc_count += ext4_free_inodes_count(sb, gdp); in ext4_count_free_inodes() 1307 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext4_count_free_inodes() 1308 return desc_count; in ext4_count_free_inodes() 1310 desc_count = 0; in ext4_count_free_inodes() 1315 desc_count += ext4_free_inodes_count(sb, gdp); in ext4_count_free_inodes() 1318 return desc_count; in ext4_count_free_inodes()
|