summaryrefslogtreecommitdiff
path: root/fs/verity
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2026-02-22 13:12:04 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2026-02-22 13:12:04 -0800
commitfbf33803618ad4f531f78fe15cf328fe6c7f9978 (patch)
tree321a5d344815c73a2471590e09e198e501fe499e /fs/verity
parent75e1f66a9ed09f29c6883ea379c174e8cf31f7cc (diff)
parent693680b9add63dbebb2505a553ff52f8c706c8c0 (diff)
downloadlinux-next-fbf33803618ad4f531f78fe15cf328fe6c7f9978.tar.gz
linux-next-fbf33803618ad4f531f78fe15cf328fe6c7f9978.zip
Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linux
Pull fsverity fixes from Eric Biggers: - Fix a build error on parisc - Remove the non-large-folio-aware function fsverity_verify_page() * tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linux: fsverity: fix build error by adding fsverity_readahead() stub fsverity: remove fsverity_verify_page() f2fs: make f2fs_verify_cluster() partially large-folio-aware f2fs: remove unnecessary ClearPageUptodate in f2fs_verify_cluster()
Diffstat (limited to 'fs/verity')
-rw-r--r--fs/verity/verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/verity/verify.c b/fs/verity/verify.c
index 404ab68aaf9b..4004a1d42875 100644
--- a/fs/verity/verify.c
+++ b/fs/verity/verify.c
@@ -442,8 +442,8 @@ EXPORT_SYMBOL_GPL(fsverity_verify_blocks);
* This is a helper function for use by the ->readahead() method of filesystems
* that issue bios to read data directly into the page cache. Filesystems that
* populate the page cache without issuing bios (e.g. non block-based
- * filesystems) must instead call fsverity_verify_page() directly on each page.
- * All filesystems must also call fsverity_verify_page() on holes.
+ * filesystems) must instead call fsverity_verify_blocks() directly. All
+ * filesystems must also call fsverity_verify_blocks() on holes.
*/
void fsverity_verify_bio(struct fsverity_info *vi, struct bio *bio)
{