projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abc8a8a
)
buffer: use b_folio in touch_buffer()
author
Matthew Wilcox (Oracle)
<willy@infradead.org>
Thu, 15 Dec 2022 21:43:53 +0000
(21:43 +0000)
committer
Andrew Morton
<akpm@linux-foundation.org>
Thu, 19 Jan 2023 01:12:40 +0000
(17:12 -0800)
Removes a call to compound_head() in this path.
Link:
https://lkml.kernel.org/r/20221215214402.3522366-4-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/buffer.c
patch
|
blob
|
history
diff --git
a/fs/buffer.c
b/fs/buffer.c
index e1055fe0b366577b328144f4215c234046392d57..8a02fdaeec9a3f9fa5f07938cbcd77a13ee0d7fe 100644
(file)
--- a/
fs/buffer.c
+++ b/
fs/buffer.c
@@
-60,7
+60,7
@@
static void submit_bh_wbc(blk_opf_t opf, struct buffer_head *bh,
inline void touch_buffer(struct buffer_head *bh)
{
trace_block_touch_buffer(bh);
-
mark_page_accessed(bh->b_page
);
+
folio_mark_accessed(bh->b_folio
);
}
EXPORT_SYMBOL(touch_buffer);