Re: [PATCH] ext4: fix bh ref count on error paths

2021-03-05 Thread Theodore Ts'o
On Tue, Mar 02, 2021 at 05:42:31PM +0800, Zhaolong Zhang wrote: > __ext4_journalled_writepage should drop bhs' ref count on error paths > > Signed-off-by: Zhaolong Zhang Thanks, applied. - Ted

[PATCH] ext4: fix bh ref count on error paths

2021-03-02 Thread Zhaolong Zhang
__ext4_journalled_writepage should drop bhs' ref count on error paths Signed-off-by: Zhaolong Zhang --- fs/ext4/inode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 650c5acd2f2d..a79a9ea58c56 100644 --- a/fs/ext4/inode.c +++ b/