Fix: lttng-save command producing wrong XML fields
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Thu, 5 Jul 2018 22:14:54 +0000 (18:14 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 13 Sep 2018 21:30:09 +0000 (17:30 -0400)
commit58e90ed5a722156edd7d9a4ced4cd75d8e35d642
tree51a98b5c34a651c17ff292bdf3f2f0029043ed39
parent1925ed698c6c5ce754d3d5a9cc2e8bb71d787cb7
Fix: lttng-save command producing wrong XML fields

Saving a session configuration with a probe or a function event would
generate a XML file considered invalid by the lttng-load command.

This is due to the fact that for a probe event lttng-save would the
following xml event type field:
  <type>KPROBE</type>
but lttng-load command would be expecting the following field:
  <type>PROBE</type>.

As a fix, the lttng-save command now rightfully outputs the PROBE field.
Given that this usecase never worked, changing the field is not a
breaking change.

Also, the save command was wrongfully using FUNCTION xml event type for
the LTTNG_KERNEL_FUNCTION event type when it is in fact the
FUNCTION_ENTRY xml event type.

Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-sessiond/save.c
This page took 0.025332 seconds and 4 git commands to generate.