Re: [PATCH] fs: ext4fs: Add initialization failure recovery path in ext4fs_write

2025-09-10 Thread Tom Rini
On Tue, 26 Aug 2025 12:37:17 -0700, Tony Dinh wrote: > Don't invoke ext4fs_deinit() in ext4fs_write() if the failure occurs > during initialization. It would result in a crash since ext4fs_init() > has already done that. > > Applied to u-boot/next, thanks! [1/1] fs: ext4fs: Add initialization

Re: [PATCH] fs: ext4fs: Add initialization failure recovery path in ext4fs_write

2025-08-27 Thread Tom Rini
On Tue, Aug 26, 2025 at 12:37:17PM -0700, Tony Dinh wrote: > Don't invoke ext4fs_deinit() in ext4fs_write() if the failure occurs > during initialization. It would result in a crash since ext4fs_init() > has already done that. > > Signed-off-by: Tony Dinh Reviewed-by: Tom Rini -- Tom signa

[PATCH] fs: ext4fs: Add initialization failure recovery path in ext4fs_write

2025-08-26 Thread Tony Dinh
Don't invoke ext4fs_deinit() in ext4fs_write() if the failure occurs during initialization. It would result in a crash since ext4fs_init() has already done that. Signed-off-by: Tony Dinh --- fs/ext4/ext4_write.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/ext4/ext4_