Lines Matching refs:ext2_block
26 #define BLOCK_STRUCT_BUFFER_SIZE (CONFIG_EXT2_MAX_BLOCK_COUNT * sizeof(struct ext2_block))
69 static struct ext2_block *get_block_struct(void) in get_block_struct()
72 struct ext2_block *b; in get_block_struct()
89 struct ext2_block *ext2_get_block(struct ext2_data *fs, uint32_t block) in ext2_get_block()
92 struct ext2_block *b = get_block_struct(); in ext2_get_block()
108 struct ext2_block *ext2_get_empty_block(struct ext2_data *fs) in ext2_get_empty_block()
110 struct ext2_block *b = get_block_struct(); in ext2_get_empty_block()
121 int ext2_write_block(struct ext2_data *fs, struct ext2_block *b) in ext2_write_block()
136 void ext2_drop_block(struct ext2_block *b) in ext2_drop_block()
156 sizeof(struct ext2_block), CONFIG_EXT2_MAX_BLOCK_COUNT); in ext2_init_blocks_slab()
162 int ext2_assign_block_num(struct ext2_data *fs, struct ext2_block *b) in ext2_assign_block_num()
765 static int write_one_block(struct ext2_data *fs, struct ext2_block *b) in write_one_block()