[dpdk-dev] [PATCH 1/2] trace: fix size_t field emitter

Sunil Kumar Kori skori at marvell.com
Sun Aug 30 09:35:16 CEST 2020


>-----Original Message-----
>From: pbhagavatula at marvell.com <pbhagavatula at marvell.com>
>Sent: Wednesday, August 26, 2020 4:54 AM
>To: Jerin Jacob Kollanukkaran <jerinj at marvell.com>; Sunil Kumar Kori
><skori at marvell.com>
>Cc: dev at dpdk.org; Pavan Nikhilesh Bhagavatula
><pbhagavatula at marvell.com>
>Subject: [dpdk-dev] [PATCH 1/2] trace: fix size_t field emitter
>
>From: Pavan Nikhilesh <pbhagavatula at marvell.com>
>
>Add size_t CTF format metadata, this is needed by CTF analyzers to
>parse the emitted CTF trace.
>
>Fixes: 262c4ee791c6 ("trace: add size_t field emitter")
>
>Signed-off-by: Pavan Nikhilesh <pbhagavatula at marvell.com>
>---
> lib/librte_eal/common/eal_common_trace_ctf.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
>diff --git a/lib/librte_eal/common/eal_common_trace_ctf.c
>b/lib/librte_eal/common/eal_common_trace_ctf.c
>index 302e2bb74..9dc91df0f 100644
>--- a/lib/librte_eal/common/eal_common_trace_ctf.c
>+++ b/lib/librte_eal/common/eal_common_trace_ctf.c
>@@ -83,6 +83,11 @@ meta_data_type_emit(char **meta, int *offset)
> 		"typealias integer {size = 32; base = x;} := long;\n"
> #endif
> 		"typealias integer {size = 8; signed = false; encoding = ASCII; }
>:= string_bounded_t;\n\n"
>+#ifdef RTE_ARCH_64
>+		"typealias integer {size = 64; base = x;} := size_t;\n"
>+#else
>+		"typealias integer {size = 32; base = x;} := size_t;\n"
>+#endif
> 		"typealias floating_point {\n"
> 		"    exp_dig = 8;\n"
> 		"    mant_dig = 24;\n"
>--
>2.17.1

Acked-by: Sunil Kumar Kori <skori at mavell.com>



More information about the dev mailing list