summaryrefslogtreecommitdiff
path: root/fs/ext4/file.c
diff options
context:
space:
mode:
authorZhang Yi <yi.zhang@huawei.com>2025-05-06 09:20:08 +0800
committerTheodore Ts'o <tytso@mit.edu>2025-05-20 10:30:59 -0400
commitdbe27f06fa38b9bfc598f8864ae1c5d5831d9992 (patch)
tree0c90ca78c9f5de5f9d57e17d86f563f6bd4dd8ab /fs/ext4/file.c
parent29ec9bed2395061350249ae356fb300dd82a78e7 (diff)
downloadlinux-dbe27f06fa38b9bfc598f8864ae1c5d5831d9992.tar.gz
linux-dbe27f06fa38b9bfc598f8864ae1c5d5831d9992.tar.bz2
linux-dbe27f06fa38b9bfc598f8864ae1c5d5831d9992.zip
ext4: factor out ext4_get_maxbytes()
There are several locations that get the correct maxbytes value based on the inode's block type. It would be beneficial to extract a common helper function to make the code more clear. Signed-off-by: Zhang Yi <yi.zhang@huawei.com> Reviewed-by: Jan Kara <jack@suse.cz> Reviewed-by: Baokun Li <libaokun1@huawei.com> Link: https://patch.msgid.link/20250506012009.3896990-3-yi.zhang@huaweicloud.com Signed-off-by: Theodore Ts'o <tytso@mit.edu> Cc: stable@kernel.org
Diffstat (limited to 'fs/ext4/file.c')
-rw-r--r--fs/ext4/file.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/ext4/file.c b/fs/ext4/file.c
index beb078ee4811..b845a25f7932 100644
--- a/fs/ext4/file.c
+++ b/fs/ext4/file.c
@@ -929,12 +929,7 @@ static int ext4_file_open(struct inode *inode, struct file *filp)
loff_t ext4_llseek(struct file *file, loff_t offset, int whence)
{
struct inode *inode = file->f_mapping->host;
- loff_t maxbytes;
-
- if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
- maxbytes = EXT4_SB(inode->i_sb)->s_bitmap_maxbytes;
- else
- maxbytes = inode->i_sb->s_maxbytes;
+ loff_t maxbytes = ext4_get_maxbytes(inode);
switch (whence) {
default: