Searched refs:desc_count (Results 1 – 6 of 6) sorted by relevance
/fs/ext3/ |
D | ialloc.c | 714 unsigned long desc_count; in ext3_count_free_inodes() local 723 desc_count = 0; in ext3_count_free_inodes() 730 desc_count += le16_to_cpu(gdp->bg_free_inodes_count); in ext3_count_free_inodes() 743 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext3_count_free_inodes() 744 return desc_count; in ext3_count_free_inodes() 746 desc_count = 0; in ext3_count_free_inodes() 751 desc_count += le16_to_cpu(gdp->bg_free_inodes_count); in ext3_count_free_inodes() 754 return desc_count; in ext3_count_free_inodes()
|
D | balloc.c | 1753 ext3_fsblk_t desc_count; in ext3_count_free_blocks() local 1764 desc_count = 0; in ext3_count_free_blocks() 1773 desc_count += le16_to_cpu(gdp->bg_free_blocks_count); in ext3_count_free_blocks() 1788 desc_count, bitmap_count); in ext3_count_free_blocks() 1791 desc_count = 0; in ext3_count_free_blocks() 1797 desc_count += le16_to_cpu(gdp->bg_free_blocks_count); in ext3_count_free_blocks() 1800 return desc_count; in ext3_count_free_blocks()
|
/fs/ext4/ |
D | balloc.c | 669 ext4_fsblk_t desc_count; in ext4_count_free_blocks() local 680 desc_count = 0; in ext4_count_free_blocks() 689 desc_count += ext4_free_blks_count(sb, gdp); in ext4_count_free_blocks() 703 desc_count, bitmap_count); in ext4_count_free_blocks() 706 desc_count = 0; in ext4_count_free_blocks() 712 desc_count += ext4_free_blks_count(sb, gdp); in ext4_count_free_blocks() 715 return desc_count; in ext4_count_free_blocks()
|
D | ialloc.c | 1050 unsigned long desc_count; in ext4_count_free_inodes() local 1059 desc_count = 0; in ext4_count_free_inodes() 1066 desc_count += ext4_free_inodes_count(sb, gdp); in ext4_count_free_inodes() 1080 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext4_count_free_inodes() 1081 return desc_count; in ext4_count_free_inodes() 1083 desc_count = 0; in ext4_count_free_inodes() 1088 desc_count += ext4_free_inodes_count(sb, gdp); in ext4_count_free_inodes() 1091 return desc_count; in ext4_count_free_inodes()
|
/fs/ext2/ |
D | ialloc.c | 627 unsigned long desc_count = 0; in ext2_count_free_inodes() local 642 desc_count += le16_to_cpu(desc->bg_free_inodes_count); in ext2_count_free_inodes() 656 desc_count, bitmap_count); in ext2_count_free_inodes() 657 return desc_count; in ext2_count_free_inodes() 663 desc_count += le16_to_cpu(desc->bg_free_inodes_count); in ext2_count_free_inodes() 665 return desc_count; in ext2_count_free_inodes()
|
D | balloc.c | 1457 unsigned long desc_count = 0; in ext2_count_free_blocks() local 1464 desc_count = 0; in ext2_count_free_blocks() 1472 desc_count += le16_to_cpu(desc->bg_free_blocks_count); in ext2_count_free_blocks() 1485 desc_count, bitmap_count); in ext2_count_free_blocks() 1492 desc_count += le16_to_cpu(desc->bg_free_blocks_count); in ext2_count_free_blocks() 1494 return desc_count; in ext2_count_free_blocks()
|