Lines Matching full:inode
76 struct ext4_inode *inode, u64 len)
100 (struct ext4_extent_header *)&inode->i_block[0];
107 extent = (struct ext4_extent *)&inode->i_block[3];
110 (struct ext4_extent_header *)&inode->i_block[0];
118 (struct ext4_extent_idx *)&inode->i_block[3];
167 inode->i_flags |= EXT4_EXTENTS_FL;
168 inode->i_size_lo = len;
169 inode->i_size_high = len >> 32;
170 inode->i_blocks_lo = blocks;
171 inode->osd2.linux2.l_i_blocks_high = blocks >> 32;
179 buffer, and connects them to an inode. Returns a pointer to the data
181 u8 *inode_allocate_data_extents(struct ext4_inode *inode, u64 len,
187 alloc = do_inode_allocate_extents(inode, len);
205 from a file, and connects them to an inode. */
206 void inode_allocate_file_extents(struct ext4_inode *inode, u64 len,
211 alloc = do_inode_allocate_extents(inode, len);
222 /* Allocates enough blocks to hold len bytes and connects them to an inode */
223 void inode_allocate_extents(struct ext4_inode *inode, u64 len)
227 alloc = do_inode_allocate_extents(inode, len);