Re: [PATCH] ext4: remove redundant check buffer_uptodate()
From: Joseph Qi <hidden>
Date: 2021-04-26 06:15:51
On 4/26/21 1:05 PM, riteshh wrote:
quoted hunk ↗ jump to hunk
On 21/04/26 11:23AM, Joseph Qi wrote:quoted
Now set_buffer_uptodate() will test first and then set, so we don't have to check buffer_uptodate() first, remove it to simplify code.Maybe we can change below function as well then. No need to check same thing twice since set_buffer_uptodate() is already doing the check.diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index b258e8279266..856bd9981409 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h@@ -3749,7 +3749,7 @@ static inline int ext4_buffer_uptodate(struct buffer_head *bh) * have to read the block because we may read the old data * successfully. */ - if (!buffer_uptodate(bh) && buffer_write_io_error(bh)) + if (buffer_write_io_error(bh)) set_buffer_uptodate(bh); return buffer_uptodate(bh); }With that pls feel free to add: Reviewed-by: Ritesh Harjani <redacted>
Sure, will send v2 with above addressed. Thanks, Joseph