| 1667 | // |
| 1668 | |
| 1669 | static inline ext3_fsblk_t ext3_blocks_count(struct ext3_super_block *es) |
| 1670 | { |
| 1671 | return ((ext3_fsblk_t)le32_to_cpu(es->s_blocks_count_hi) << 32) | |
| 1672 | le32_to_cpu(es->s_blocks_count); |
| 1673 | } |
| 1674 | |
| 1675 | static inline ext3_fsblk_t ext3_r_blocks_count(struct ext3_super_block *es) |
| 1676 | { |
no outgoing calls
no test coverage detected