All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/5] mm/compaction: change tracepoint format from decimal to hexadecimal
@ 2015-01-12  8:21 ` Joonsoo Kim
  0 siblings, 0 replies; 28+ messages in thread
From: Joonsoo Kim @ 2015-01-12  8:21 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Vlastimil Babka, Mel Gorman, David Rientjes, linux-mm,
	linux-kernel, Joonsoo Kim

To check the range that compaction is working, tracepoint print
start/end pfn of zone and start pfn of both scanner with decimal format.
Since we manage all pages in order of 2 and it is well represented by
hexadecimal, this patch change the tracepoint format from decimal to
hexadecimal. This would improve readability. For example, it makes us
easily notice whether current scanner try to compact previously
attempted pageblock or not.

Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
---
 include/trace/events/compaction.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/trace/events/compaction.h b/include/trace/events/compaction.h
index c6814b9..1337d9e 100644
--- a/include/trace/events/compaction.h
+++ b/include/trace/events/compaction.h
@@ -104,7 +104,7 @@ TRACE_EVENT(mm_compaction_begin,
 		__entry->zone_end = zone_end;
 	),
 
-	TP_printk("zone_start=%lu migrate_start=%lu free_start=%lu zone_end=%lu",
+	TP_printk("zone_start=0x%lx migrate_start=0x%lx free_start=0x%lx zone_end=0x%lx",
 		__entry->zone_start,
 		__entry->migrate_start,
 		__entry->free_start,
-- 
1.7.9.5

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2015-01-13  8:35 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-12  8:21 [PATCH v2 1/5] mm/compaction: change tracepoint format from decimal to hexadecimal Joonsoo Kim
2015-01-12  8:21 ` Joonsoo Kim
2015-01-12  8:21 ` [PATCH v2 2/5] mm/compaction: enhance tracepoint output for compaction begin/end Joonsoo Kim
2015-01-12  8:21   ` Joonsoo Kim
2015-01-12 14:32   ` Vlastimil Babka
2015-01-12 14:32     ` Vlastimil Babka
2015-01-12  8:21 ` [PATCH v2 3/5] mm/compaction: print current range where compaction work Joonsoo Kim
2015-01-12  8:21   ` Joonsoo Kim
2015-01-12 14:34   ` Vlastimil Babka
2015-01-12 14:34     ` Vlastimil Babka
2015-01-12  8:21 ` [PATCH v2 4/5] mm/compaction: more trace to understand when/why compaction start/finish Joonsoo Kim
2015-01-12  8:21   ` Joonsoo Kim
2015-01-12 15:53   ` Vlastimil Babka
2015-01-12 15:53     ` Vlastimil Babka
2015-01-13  7:16     ` Joonsoo Kim
2015-01-13  7:16       ` Joonsoo Kim
2015-01-13  8:29       ` Vlastimil Babka
2015-01-13  8:29         ` Vlastimil Babka
2015-01-12  8:21 ` [PATCH v2 5/5] mm/compaction: add tracepoint to observe behaviour of compaction defer Joonsoo Kim
2015-01-12  8:21   ` Joonsoo Kim
2015-01-12 16:35   ` Vlastimil Babka
2015-01-12 16:35     ` Vlastimil Babka
2015-01-13  7:18     ` Joonsoo Kim
2015-01-13  7:18       ` Joonsoo Kim
2015-01-13  8:35       ` Vlastimil Babka
2015-01-13  8:35         ` Vlastimil Babka
2015-01-12 14:23 ` [PATCH v2 1/5] mm/compaction: change tracepoint format from decimal to hexadecimal Vlastimil Babka
2015-01-12 14:23   ` Vlastimil Babka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.