Commit b1746b99 authored by Yafang Shao's avatar Yafang Shao Committed by Linus Torvalds

mm: compaction: show gfp flag names in try_to_compact_pages tracepoint

Showing the gfp flag names instead of the gfp_mask makes trace more
convenient.

Link: http://lkml.kernel.org/r/1552527998-13162-1-git-send-email-laoar.shao@gmail.comSigned-off-by: default avatarYafang Shao <laoar.shao@gmail.com>
Acked-by: default avatarMichal Hocko <mhocko@suse.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 2b59e01a
......@@ -189,9 +189,9 @@ TRACE_EVENT(mm_compaction_try_to_compact_pages,
__entry->prio = prio;
),
TP_printk("order=%d gfp_mask=0x%x priority=%d",
TP_printk("order=%d gfp_mask=%s priority=%d",
__entry->order,
__entry->gfp_mask,
show_gfp_flags(__entry->gfp_mask),
__entry->prio)
);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment