aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/namei.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/namei.c')
-rw-r--r--fs/ext4/namei.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index bd2dc0b71c8c..a13948f8242f 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -2017,7 +2017,7 @@ int ext4_orphan_add(handle_t *handle, struct inode *inode)
2017 /* Insert this inode at the head of the on-disk orphan list... */ 2017 /* Insert this inode at the head of the on-disk orphan list... */
2018 NEXT_ORPHAN(inode) = le32_to_cpu(EXT4_SB(sb)->s_es->s_last_orphan); 2018 NEXT_ORPHAN(inode) = le32_to_cpu(EXT4_SB(sb)->s_es->s_last_orphan);
2019 EXT4_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino); 2019 EXT4_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2020 err = ext4_handle_dirty_metadata(handle, inode, EXT4_SB(sb)->s_sbh); 2020 err = ext4_handle_dirty_metadata(handle, NULL, EXT4_SB(sb)->s_sbh);
2021 rc = ext4_mark_iloc_dirty(handle, inode, &iloc); 2021 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2022 if (!err) 2022 if (!err)
2023 err = rc; 2023 err = rc;
@@ -2089,7 +2089,7 @@ int ext4_orphan_del(handle_t *handle, struct inode *inode)
2089 if (err) 2089 if (err)
2090 goto out_brelse; 2090 goto out_brelse;
2091 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next); 2091 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2092 err = ext4_handle_dirty_metadata(handle, inode, sbi->s_sbh); 2092 err = ext4_handle_dirty_metadata(handle, NULL, sbi->s_sbh);
2093 } else { 2093 } else {
2094 struct ext4_iloc iloc2; 2094 struct ext4_iloc iloc2;
2095 struct inode *i_prev = 2095 struct inode *i_prev =