public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] fs/ext4/xattr: check the return value of ext4_xattr_inode_dec_ref()
@ 2022-09-09  4:47 Li Zhong
  2022-09-10  9:55 ` Ojaswin Mujoo
  0 siblings, 1 reply; 3+ messages in thread
From: Li Zhong @ 2022-09-09  4:47 UTC (permalink / raw)
  To: linux-kernel, linux-ext4; +Cc: adilger.kernel, tytso, Li Zhong

Check the return value of ext4_xattr_inode_dec_ref(), which could return
error code and need to be warned.

Signed-off-by: Li Zhong <floridsleeves@gmail.com>
---
 fs/ext4/xattr.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c
index 533216e80fa2..76141ed12bc2 100644
--- a/fs/ext4/xattr.c
+++ b/fs/ext4/xattr.c
@@ -1540,7 +1540,9 @@ static int ext4_xattr_inode_lookup_create(handle_t *handle, struct inode *inode,
 
 	err = ext4_xattr_inode_write(handle, ea_inode, value, value_len);
 	if (err) {
-		ext4_xattr_inode_dec_ref(handle, ea_inode);
+		err = ext4_xattr_inode_dec_ref(handle, ea_inode);
+		if (err)
+			ext4_warning_inode(ea_inode, "cleanup dec ref error %d", err);
 		iput(ea_inode);
 		return err;
 	}
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-09-17  0:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-09  4:47 [PATCH v1] fs/ext4/xattr: check the return value of ext4_xattr_inode_dec_ref() Li Zhong
2022-09-10  9:55 ` Ojaswin Mujoo
2022-09-17  0:25   ` Li Zhong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox