1
0
Fork 0

include/trace/events/vmscan.h: drop zone id from kswapd tracepoints

It is not clear how the zone id is useful in kswapd tracepoints and the id
itself is not really easy to process because it depends on the
configuration (available zones).  Let's drop the id for now.  If somebody
really needs that information then the zone name should be used instead.

[mhocko@suse.com: new changelog]
Link: http://lkml.kernel.org/r/1552451813-10833-1-git-send-email-laoar.shao@gmail.com
Signed-off-by: Yafang Shao <laoar.shao@gmail.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.2
Yafang Shao 2019-05-13 17:16:34 -07:00 committed by Linus Torvalds
parent 745e10146c
commit 3b775998ec
1 changed files with 4 additions and 3 deletions

View File

@ -73,7 +73,9 @@ TRACE_EVENT(mm_vmscan_kswapd_wake,
__entry->order = order;
),
TP_printk("nid=%d zid=%d order=%d", __entry->nid, __entry->zid, __entry->order)
TP_printk("nid=%d order=%d",
__entry->nid,
__entry->order)
);
TRACE_EVENT(mm_vmscan_wakeup_kswapd,
@ -96,9 +98,8 @@ TRACE_EVENT(mm_vmscan_wakeup_kswapd,
__entry->gfp_flags = gfp_flags;
),
TP_printk("nid=%d zid=%d order=%d gfp_flags=%s",
TP_printk("nid=%d order=%d gfp_flags=%s",
__entry->nid,
__entry->zid,
__entry->order,
show_gfp_flags(__entry->gfp_flags))
);