From: Geneviève Bastien Date: Tue, 12 Jul 2016 16:21:51 +0000 (-0400) Subject: Fix: endianness for the container type of enum X-Git-Tag: v2.9.0-rc1~43 X-Git-Url: http://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=578e68ec82a889d3864e90ddc203d69360362110 Fix: endianness for the container type of enum If the endianness is specified for an enumeration, it should be written in the metadata like for any other integer type. Signed-off-by: Geneviève Bastien Signed-off-by: Mathieu Desnoyers --- diff --git a/lttng-events.c b/lttng-events.c index 455b790f..176908bf 100644 --- a/lttng-events.c +++ b/lttng-events.c @@ -1909,7 +1909,7 @@ int _lttng_enum_statedump(struct lttng_session *session, if (ret) goto end; ret = lttng_metadata_printf(session, - "enum : integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u; } {\n", + "enum : integer { size = %u; align = %u; signed = %u; encoding = %s; base = %u;%s } {\n", container_type->size, container_type->alignment, container_type->signedness, @@ -1918,7 +1918,13 @@ int _lttng_enum_statedump(struct lttng_session *session, : (container_type->encoding == lttng_encode_UTF8) ? "UTF8" : "ASCII", - container_type->base); + container_type->base, +#if __BYTE_ORDER == __BIG_ENDIAN + container_type->reverse_byte_order ? " byte_order = le;" : "" +#else + container_type->reverse_byte_order ? " byte_order = be;" : "" +#endif + ); if (ret) goto end; /* Dump all entries */