Home | History | Annotate | Download | only in ext4_utils

Lines Matching full:inode

74 	struct ext4_inode *inode, u64 len)
98 (struct ext4_extent_header *)&inode->i_block[0];
105 extent = (struct ext4_extent *)&inode->i_block[3];
108 (struct ext4_extent_header *)&inode->i_block[0];
116 (struct ext4_extent_idx *)&inode->i_block[3];
164 inode->i_flags |= EXT4_EXTENTS_FL;
165 inode->i_size_lo = len;
166 inode->i_size_high = len >> 32;
167 inode->i_blocks_lo = blocks;
168 inode->osd2.linux2.l_i_blocks_high = blocks >> 32;
176 buffer, and connects them to an inode. Returns a pointer to the data
178 u8 *inode_allocate_data_extents(struct ext4_inode *inode, u64 len,
184 alloc = do_inode_allocate_extents(inode, len);
202 from a file, and connects them to an inode. */
203 void inode_allocate_file_extents(struct ext4_inode *inode, u64 len,
208 alloc = do_inode_allocate_extents(inode, len);
219 /* Allocates enough blocks to hold len bytes and connects them to an inode */
220 void inode_allocate_extents(struct ext4_inode *inode, u64 len)
224 alloc = do_inode_allocate_extents(inode, len);