diff options
author | Baolin Liu <liubaolin@kylinos.cn> | 2025-08-12 10:17:09 +0800 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2025-08-13 14:18:50 -0400 |
commit | 757fc66da91b54d4fbc414bee5c440b52560d3b7 (patch) | |
tree | 1cd7f9b37d2e26a46fe5920ec747901d9cd912be | |
parent | 76dba1fe277f6befd6ef650e1946f626c547387a (diff) |
ext4: fix incorrect function name in comment
Since commit 6b730a405037 “ext4: hoist ext4_block_write_begin and
replace the __block_write_begin”, the comment should be updated
accordingly from "__block_write_begin" to "ext4_block_write_begin".
Fixes: 6b730a405037 (“ext4: hoist ext4_block_write_begin and replace...")
Signed-off-by: Baolin Liu <liubaolin@kylinos.cn>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Link: https://patch.msgid.link/20250812021709.1120716-1-liubaolin12138@163.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r-- | fs/ext4/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 731a800d9c14..238a0f12a5c0 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -3159,7 +3159,7 @@ retry: folio_unlock(folio); folio_put(folio); /* - * block_write_begin may have instantiated a few blocks + * ext4_block_write_begin may have instantiated a few blocks * outside i_size. Trim these off again. Don't need * i_size_read because we hold inode lock. */ |