Searched refs:desc_count (Results 1 – 5 of 5) sorted by relevance
/fs/orangefs/ |
D | orangefs-bufmap.c | 150 int desc_count; member 225 bufmap->desc_count = user_desc->count; in orangefs_bufmap_alloc() 229 bufmap->buffer_index_array = bitmap_zalloc(bufmap->desc_count, GFP_KERNEL); in orangefs_bufmap_alloc() 234 kcalloc(bufmap->desc_count, sizeof(struct orangefs_bufmap_desc), in orangefs_bufmap_alloc() 294 for (offset = 0, i = 0; i < bufmap->desc_count; i++) { in orangefs_bufmap_map() 381 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 | 1452 unsigned long desc_count = 0; in ext2_count_free_blocks() local 1459 desc_count = 0; in ext2_count_free_blocks() 1467 desc_count += le16_to_cpu(desc->bg_free_blocks_count); in ext2_count_free_blocks() 1480 desc_count, bitmap_count); in ext2_count_free_blocks() 1487 desc_count += le16_to_cpu(desc->bg_free_blocks_count); in ext2_count_free_blocks() 1489 return desc_count; in ext2_count_free_blocks()
|
/fs/ext4/ |
D | balloc.c | 760 ext4_fsblk_t desc_count; in ext4_count_free_clusters() local 772 desc_count = 0; in ext4_count_free_clusters() 784 desc_count += ext4_free_group_clusters(sb, gdp); in ext4_count_free_clusters() 802 desc_count, bitmap_count); in ext4_count_free_clusters() 805 desc_count = 0; in ext4_count_free_clusters() 814 desc_count += ext4_free_group_clusters(sb, gdp); in ext4_count_free_clusters() 817 return desc_count; in ext4_count_free_clusters()
|
D | ialloc.c | 1446 unsigned long desc_count; in ext4_count_free_inodes() local 1455 desc_count = 0; in ext4_count_free_inodes() 1462 desc_count += ext4_free_inodes_count(sb, gdp); in ext4_count_free_inodes() 1479 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext4_count_free_inodes() 1480 return desc_count; in ext4_count_free_inodes() 1482 desc_count = 0; in ext4_count_free_inodes() 1487 desc_count += ext4_free_inodes_count(sb, gdp); in ext4_count_free_inodes() 1490 return desc_count; in ext4_count_free_inodes()
|