From: Jonathan Rajotte Date: Tue, 13 Aug 2019 18:20:34 +0000 (-0400) Subject: sink.ctf.fs: isa_length is now architecture_bit_width X-Git-Tag: v2.0.0-rc1~289 X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=1163b22c26d9c4aeb6fab3f0c7e5f6312bb86c9f;p=babeltrace.git sink.ctf.fs: isa_length is now architecture_bit_width Signed-off-by: Jonathan Rajotte Change-Id: I30cac20017f7508ed170b936a7b90ebc2916b913 Reviewed-on: https://review.lttng.org/c/babeltrace/+/1905 Reviewed-by: Philippe Proulx CI-Build: Philippe Proulx Tested-by: jenkins --- diff --git a/src/plugins/ctf/fs-sink/fs-sink-trace.c b/src/plugins/ctf/fs-sink/fs-sink-trace.c index d41e1d9f..3d647d2d 100644 --- a/src/plugins/ctf/fs-sink/fs-sink-trace.c +++ b/src/plugins/ctf/fs-sink/fs-sink-trace.c @@ -178,9 +178,9 @@ int append_lttng_trace_path_ust_uid(const struct fs_sink_trace *trace, g_string_append_printf(path, G_DIR_SEPARATOR_S "%" PRId64, bt_value_integer_signed_get(v)); - v = bt_trace_borrow_environment_entry_value_by_name_const(tc, "isa_length"); + v = bt_trace_borrow_environment_entry_value_by_name_const(tc, "architecture_bit_width"); if (!v || !bt_value_is_signed_integer(v)) { - BT_COMP_LOGI_STR("Couldn't get environment value: name=\"isa_length\""); + BT_COMP_LOGI_STR("Couldn't get environment value: name=\"architecture_bit_width\""); goto error; }