diff options
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r-- | fs/ext4/inline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index feb2cafbeace..095c7a258d97 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c | |||
@@ -1000,7 +1000,7 @@ static int ext4_add_dirent_to_inline(handle_t *handle, | |||
1000 | struct ext4_iloc *iloc, | 1000 | struct ext4_iloc *iloc, |
1001 | void *inline_start, int inline_size) | 1001 | void *inline_start, int inline_size) |
1002 | { | 1002 | { |
1003 | struct inode *dir = dentry->d_parent->d_inode; | 1003 | struct inode *dir = d_inode(dentry->d_parent); |
1004 | const char *name = dentry->d_name.name; | 1004 | const char *name = dentry->d_name.name; |
1005 | int namelen = dentry->d_name.len; | 1005 | int namelen = dentry->d_name.len; |
1006 | int err; | 1006 | int err; |
@@ -1254,7 +1254,7 @@ int ext4_try_add_inline_entry(handle_t *handle, struct dentry *dentry, | |||
1254 | int ret, inline_size; | 1254 | int ret, inline_size; |
1255 | void *inline_start; | 1255 | void *inline_start; |
1256 | struct ext4_iloc iloc; | 1256 | struct ext4_iloc iloc; |
1257 | struct inode *dir = dentry->d_parent->d_inode; | 1257 | struct inode *dir = d_inode(dentry->d_parent); |
1258 | 1258 | ||
1259 | ret = ext4_get_inode_loc(dir, &iloc); | 1259 | ret = ext4_get_inode_loc(dir, &iloc); |
1260 | if (ret) | 1260 | if (ret) |