projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64275e9
)
f2fs: remove unnecessary ClearPageUptodate in f2fs_verify_cluster()
author
Eric Biggers
<ebiggers@kernel.org>
Wed, 18 Feb 2026 01:06:28 +0000
(17:06 -0800)
committer
Eric Biggers
<ebiggers@kernel.org>
Wed, 18 Feb 2026 07:11:36 +0000
(23:11 -0800)
Remove the unnecessary clearing of PG_uptodate. It's guaranteed to
already be clear.
Suggested-by: Matthew Wilcox <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link:
https://lore.kernel.org/r/20260218010630.7407-2-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@kernel.org>
fs/f2fs/compress.c
patch
|
blob
|
history
diff --git
a/fs/f2fs/compress.c
b/fs/f2fs/compress.c
index
006a80a
..
355762d
100644
(file)
--- a/
fs/f2fs/compress.c
+++ b/
fs/f2fs/compress.c
@@
-1819,8
+1819,6
@@
static void f2fs_verify_cluster(struct work_struct *work)
if (fsverity_verify_page(dic->vi, rpage))
SetPageUptodate(rpage);
- else
- ClearPageUptodate(rpage);
unlock_page(rpage);
}