Displaying 1 result from an estimated 1 matches for "e2_inod".
Did you mean:
e2_inode
2013 Mar 02
0
[GIT-PULL] ext4 inline data support
..._inode))))
return NULL;
- fill_inode(inode, e_inode);
+ fill_inode(inode, e_inode, inr);
return inode;
}
+static uint32_t ext2_getfssec(struct file *file, char *buf, int sectors,
+ bool *have_more)
+{
+ struct inode *inode = file->inode;
+ const struct ext2_inode *e2_inode;
+
+ if (!ext2_has_inline_data(inode))
+ return generic_getfssec(file, buf, sectors, have_more);
+
+ e2_inode = ext2_get_inode(file->fs, PVT(inode)->i_ino);
+ if (!e2_inode) {
+ printf("%s: Unable to find inode from ino %lu.\n", __func__,
+ PVT(inode)->i_ino);
+...