* [PATCH 26/31] blkparse: treat sector as %llu for custom format like elsewhere in code
@ 2018-04-27 13:07 Steffen Maier
0 siblings, 0 replies; only message in thread
From: Steffen Maier @ 2018-04-27 13:07 UTC (permalink / raw)
To: linux-btrace
blk_io_trace.sector is __u64.
Signed-off-by: Steffen Maier <maier@linux.ibm.com>
---
blkparse_fmt.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/blkparse_fmt.c b/blkparse_fmt.c
index c110dad10b0b..818208808198 100644
--- a/blkparse_fmt.c
+++ b/blkparse_fmt.c
@@ -230,7 +230,8 @@ static void print_field(char *act, struct per_cpu_info *pci,
fprintf(ofp, strcat(format, "ld"), t->sequence);
break;
case 'S':
- fprintf(ofp, strcat(format, "lu"), t->sector);
+ fprintf(ofp, strcat(format, "llu"),
+ (unsigned long long)t->sector);
break;
case 't':
sprintf(format, "%%0%dlu", has_w ? width : 9);
--
2.14.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2018-04-27 13:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-27 13:07 [PATCH 26/31] blkparse: treat sector as %llu for custom format like elsewhere in code Steffen Maier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).