mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
Revert "ext4: drop duplicate ea_inode handling in ext4_xattr_block_set()"
This reverts commit 7f48212678
. We will
need the special cleanup handling once we move allocation of EA inode
outside of the buffer lock in the following patch.
Signed-off-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20240321162657.27420-1-jack@suse.cz
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
744a56389f
commit
4f3e6db3c3
@ -2158,6 +2158,17 @@ getblk_failed:
|
||||
ENTRY(header(s->base)+1));
|
||||
if (error)
|
||||
goto getblk_failed;
|
||||
if (ea_inode) {
|
||||
/* Drop the extra ref on ea_inode. */
|
||||
error = ext4_xattr_inode_dec_ref(handle,
|
||||
ea_inode);
|
||||
if (error)
|
||||
ext4_warning_inode(ea_inode,
|
||||
"dec ref error=%d",
|
||||
error);
|
||||
iput(ea_inode);
|
||||
ea_inode = NULL;
|
||||
}
|
||||
|
||||
lock_buffer(new_bh);
|
||||
error = ext4_journal_get_create_access(handle, sb,
|
||||
|
Loading…
Reference in New Issue
Block a user