ext4: simplify ext4_readpage_limit()
authorEric Biggers <ebiggers@google.com>
Fri, 23 Dec 2022 20:36:35 +0000 (12:36 -0800)
committerEric Biggers <ebiggers@google.com>
Tue, 10 Jan 2023 03:06:08 +0000 (19:06 -0800)
Now that the implementation of FS_IOC_ENABLE_VERITY has changed to not
involve reading back Merkle tree blocks that were previously written,
there is no need for ext4_readpage_limit() to allow for this case.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Tested-by: Ojaswin Mujoo <ojaswin@linux.ibm.com>
Link: https://lore.kernel.org/r/20221223203638.41293-9-ebiggers@kernel.org
fs/ext4/readpage.c

index d526693..c61dc8a 100644 (file)
@@ -211,8 +211,7 @@ static void ext4_set_bio_post_read_ctx(struct bio *bio,
 
 static inline loff_t ext4_readpage_limit(struct inode *inode)
 {
-       if (IS_ENABLED(CONFIG_FS_VERITY) &&
-           (IS_VERITY(inode) || ext4_verity_in_progress(inode)))
+       if (IS_ENABLED(CONFIG_FS_VERITY) && IS_VERITY(inode))
                return inode->i_sb->s_maxbytes;
 
        return i_size_read(inode);