mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
erofs: adapt folios for z_erofs_read_folio()
It's a straight-forward conversion and no logic changes (except that it renames the corresponding tracepoint.) Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com> Link: https://lore.kernel.org/r/20230817083942.103303-1-hsiangkao@linux.alibaba.com
This commit is contained in:
@@ -80,11 +80,11 @@ TRACE_EVENT(erofs_fill_inode,
|
||||
__entry->blkaddr, __entry->ofs)
|
||||
);
|
||||
|
||||
TRACE_EVENT(erofs_readpage,
|
||||
TRACE_EVENT(erofs_read_folio,
|
||||
|
||||
TP_PROTO(struct page *page, bool raw),
|
||||
TP_PROTO(struct folio *folio, bool raw),
|
||||
|
||||
TP_ARGS(page, raw),
|
||||
TP_ARGS(folio, raw),
|
||||
|
||||
TP_STRUCT__entry(
|
||||
__field(dev_t, dev )
|
||||
@@ -96,11 +96,11 @@ TRACE_EVENT(erofs_readpage,
|
||||
),
|
||||
|
||||
TP_fast_assign(
|
||||
__entry->dev = page->mapping->host->i_sb->s_dev;
|
||||
__entry->nid = EROFS_I(page->mapping->host)->nid;
|
||||
__entry->dir = S_ISDIR(page->mapping->host->i_mode);
|
||||
__entry->index = page->index;
|
||||
__entry->uptodate = PageUptodate(page);
|
||||
__entry->dev = folio->mapping->host->i_sb->s_dev;
|
||||
__entry->nid = EROFS_I(folio->mapping->host)->nid;
|
||||
__entry->dir = S_ISDIR(folio->mapping->host->i_mode);
|
||||
__entry->index = folio->index;
|
||||
__entry->uptodate = folio_test_uptodate(folio);
|
||||
__entry->raw = raw;
|
||||
),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user