• Home
  • Raw
  • Download

Lines Matching refs:es

2527 				struct ext4_super_block *es,
2706 static inline ext4_fsblk_t ext4_blocks_count(struct ext4_super_block *es) in ext4_blocks_count() argument
2708 return ((ext4_fsblk_t)le32_to_cpu(es->s_blocks_count_hi) << 32) | in ext4_blocks_count()
2709 le32_to_cpu(es->s_blocks_count_lo); in ext4_blocks_count()
2712 static inline ext4_fsblk_t ext4_r_blocks_count(struct ext4_super_block *es) in ext4_r_blocks_count() argument
2714 return ((ext4_fsblk_t)le32_to_cpu(es->s_r_blocks_count_hi) << 32) | in ext4_r_blocks_count()
2715 le32_to_cpu(es->s_r_blocks_count_lo); in ext4_r_blocks_count()
2718 static inline ext4_fsblk_t ext4_free_blocks_count(struct ext4_super_block *es) in ext4_free_blocks_count() argument
2720 return ((ext4_fsblk_t)le32_to_cpu(es->s_free_blocks_count_hi) << 32) | in ext4_free_blocks_count()
2721 le32_to_cpu(es->s_free_blocks_count_lo); in ext4_free_blocks_count()
2724 static inline void ext4_blocks_count_set(struct ext4_super_block *es, in ext4_blocks_count_set() argument
2727 es->s_blocks_count_lo = cpu_to_le32((u32)blk); in ext4_blocks_count_set()
2728 es->s_blocks_count_hi = cpu_to_le32(blk >> 32); in ext4_blocks_count_set()
2731 static inline void ext4_free_blocks_count_set(struct ext4_super_block *es, in ext4_free_blocks_count_set() argument
2734 es->s_free_blocks_count_lo = cpu_to_le32((u32)blk); in ext4_free_blocks_count_set()
2735 es->s_free_blocks_count_hi = cpu_to_le32(blk >> 32); in ext4_free_blocks_count_set()
2738 static inline void ext4_r_blocks_count_set(struct ext4_super_block *es, in ext4_r_blocks_count_set() argument
2741 es->s_r_blocks_count_lo = cpu_to_le32((u32)blk); in ext4_r_blocks_count_set()
2742 es->s_r_blocks_count_hi = cpu_to_le32(blk >> 32); in ext4_r_blocks_count_set()