mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-08 04:18:27 +00:00
mm/vmscan.c: change trace_mm_vmscan_writepage() proto type
Move trace_reclaim_flags() into trace function, so that we don't need caculate these flags if the trace is disabled. Signed-off-by: yalin wang <yalin.wang2010@gmail.com> Reviewed-by: Steven Rostedt <rostedt@goodmis.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0b57d6ba0b
commit
3aa2385111
@ -330,10 +330,9 @@ DEFINE_EVENT(mm_vmscan_lru_isolate_template, mm_vmscan_memcg_isolate,
|
|||||||
|
|
||||||
TRACE_EVENT(mm_vmscan_writepage,
|
TRACE_EVENT(mm_vmscan_writepage,
|
||||||
|
|
||||||
TP_PROTO(struct page *page,
|
TP_PROTO(struct page *page),
|
||||||
int reclaim_flags),
|
|
||||||
|
|
||||||
TP_ARGS(page, reclaim_flags),
|
TP_ARGS(page),
|
||||||
|
|
||||||
TP_STRUCT__entry(
|
TP_STRUCT__entry(
|
||||||
__field(unsigned long, pfn)
|
__field(unsigned long, pfn)
|
||||||
@ -342,7 +341,7 @@ TRACE_EVENT(mm_vmscan_writepage,
|
|||||||
|
|
||||||
TP_fast_assign(
|
TP_fast_assign(
|
||||||
__entry->pfn = page_to_pfn(page);
|
__entry->pfn = page_to_pfn(page);
|
||||||
__entry->reclaim_flags = reclaim_flags;
|
__entry->reclaim_flags = trace_reclaim_flags(page);
|
||||||
),
|
),
|
||||||
|
|
||||||
TP_printk("page=%p pfn=%lu flags=%s",
|
TP_printk("page=%p pfn=%lu flags=%s",
|
||||||
|
@ -594,7 +594,7 @@ static pageout_t pageout(struct page *page, struct address_space *mapping,
|
|||||||
/* synchronous write or broken a_ops? */
|
/* synchronous write or broken a_ops? */
|
||||||
ClearPageReclaim(page);
|
ClearPageReclaim(page);
|
||||||
}
|
}
|
||||||
trace_mm_vmscan_writepage(page, trace_reclaim_flags(page));
|
trace_mm_vmscan_writepage(page);
|
||||||
inc_zone_page_state(page, NR_VMSCAN_WRITE);
|
inc_zone_page_state(page, NR_VMSCAN_WRITE);
|
||||||
return PAGE_SUCCESS;
|
return PAGE_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user