Re: [lttng-dev] [PATCH babeltrace] Fix: text output missing separator when printing the domain

2017-05-26 Thread Jérémie Galarneau
Merged in master, stable-1.5, and stable-1.4. Thanks! Jérémie On 17 March 2017 at 16:15, Julien Desfossez wrote: > With the "-f all" option, we expect to see > ::, but instead we see > :. > > Judging from the pattern of the other printed fields, the check for > "dom_print" variable seems to be m

Re: [lttng-dev] [PATCH babeltrace v5] Build Python bindings with distutils for consistent installs

2017-05-26 Thread Jérémie Galarneau
Merged in stable-1.4 and stable-1.5. Thanks! Jérémie On 11 April 2017 at 15:27, Francis Deslauriers wrote: > v5: Manually load shared objects used by the Babeltrace Python module > > This patch changes the build system used to compile and install the > Python Bindings. Distutils is used to find

Re: [lttng-dev] [PATCH babeltrace stable-1.5] Fix: disable debug by default info on Cygwin

2017-05-26 Thread Jérémie Galarneau
Merged in stable-1.5. Thanks! Jérémie On 7 April 2017 at 15:44, Michael Jeanson wrote: > elfutils is not available on Cygwin. > > Signed-off-by: Michael Jeanson > --- > configure.ac | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/configure.ac b/configure.ac > index 2382e53..c8e9b98 10

Re: [lttng-dev] [PATCH babeltrace stable-1.5] Fix: ctf writer test on Cygwin

2017-05-26 Thread Jérémie Galarneau
Merged in stable-1.5. Thanks! Jérémie On 11 April 2017 at 16:37, Michael Jeanson wrote: > On 2017-04-10 18:18, Michael Jeanson wrote: >> >> You can hold on merging this patch for now, I think it's only useful for >> a very specific environment which might not be worth supporting. >> > > Scratch

Re: [lttng-dev] [PATCH babeltrace] Set the minimum Python version to 3.0

2017-05-26 Thread Jérémie Galarneau
Merged in stable-1.5 and stable-1.4. Thanks! Jérémie On 21 February 2017 at 15:41, Francis Deslauriers wrote: > To be applied on Babeltrace v1.5 > > Signed-off-by: Francis Deslauriers > --- > configure.ac | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/configure.ac b/c

Re: [lttng-dev] [PATCH babeltrace 1/4] Cleanup: bt namespace for compat strerror_r

2017-05-26 Thread Jérémie Galarneau
All four patches were merged in master, thanks! Jérémie On 14 September 2016 at 20:32, Michael Jeanson wrote: > Signed-off-by: Michael Jeanson > --- > include/babeltrace/babeltrace-internal.h | 4 ++-- > include/babeltrace/compat/string.h | 4 ++-- > 2 files changed, 4 insertions(+), 4 d

Re: [lttng-dev] [RFC PATCH babeltrace] Use glib portable macros to convert gpointer to int

2017-05-26 Thread Jérémie Galarneau
Merged in master, thanks! Jérémie On 14 September 2016 at 20:52, Michael Jeanson wrote: > --- > formats/ctf-text/ctf-text.c | 2 +- > formats/ctf/callbacks.c | 4 ++-- > formats/ctf/events.c | 2 +- > forma

Re: [lttng-dev] [PATCH babeltrace 1/3] Port: Use glib portable macros to convert gpointer to int

2017-05-26 Thread Jérémie Galarneau
All three patches were merged in master. Thanks! Jérémie On 15 September 2016 at 12:14, Michael Jeanson wrote: > Signed-off-by: Michael Jeanson > --- > formats/ctf-text/ctf-text.c | 2 +- > formats/ctf/callbacks.c | 4 ++-- > formats/ctf/

[lttng-dev] [PATCH lttng-ust master, 2.10-rc] Introduce LTTNG_UST_ALLOW_BLOCKING env. var.

2017-05-26 Thread Mathieu Desnoyers
Introduce the LTTNG_UST_ALLOW_BLOCKING env. var. to control whether applications are allowed to block when a buffer is full. If set, it allows the tracer to block the application when buffers are full. The blocking is now controlled by a per-channel configuration option in the LTTng control interf

[lttng-dev] [PATCH lttng-tools 1/3 master, 2.10-rc] Fix: discard event/lost packet counters

2017-05-26 Thread Mathieu Desnoyers
For per-pid buffers, we need to sum the counters for each application. For per-uid buffers, if no application has launched yet, it should not be considered as an error (which stops iteration on all other channels), but rather as values of 0. Signed-off-by: Mathieu Desnoyers --- src/bin/lttng-se

[lttng-dev] [PATCH lttng-tools 2/3 master, 2.10-rc] Fix: lttng list of channels should return errors

2017-05-26 Thread Mathieu Desnoyers
Signed-off-by: Mathieu Desnoyers --- src/bin/lttng-sessiond/cmd.c | 20 ++-- 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/bin/lttng-sessiond/cmd.c b/src/bin/lttng-sessiond/cmd.c index c4e4ccf..dea5ab2 100644 --- a/src/bin/lttng-sessiond/cmd.c +++ b/src/bin/lt

[lttng-dev] [PATCH lttng-tools 3/3 master, 2.10-rc] Introduce "--blocking-timeout" channel parameter

2017-05-26 Thread Mathieu Desnoyers
Introduce the blocking timeout channel parameter to control blocking behavior for lttng-ust buffers. It only affects applications launched with the LTTNG_UST_ALLOW_BLOCKING environment variable. The blocking timeout parameter expects: - 0 (default) which does not block, - a timeout value in usec,

Re: [lttng-dev] [PATCH lttng-tools 3/3 master, 2.10-rc] Introduce "--blocking-timeout" channel parameter

2017-05-26 Thread Jonathan Rajotte-Julien
Hi, Comments bellow, only kept relevant part of the patch. On Fri, May 26, 2017 at 06:14:20PM +0200, Mathieu Desnoyers wrote: > diff --git a/src/bin/lttng-sessiond/channel.c > b/src/bin/lttng-sessiond/channel.c > index 8a88ecc..5aa0cd8 100644 > --- a/src/bin/lttng-sessiond/channel.c > +++ b/src/

[lttng-dev] [PATCH babeltrace stable-1.5] Fix: Add missing LIBS to python bindings

2017-05-26 Thread Michael Jeanson
Also move includes to CPPFLAGS. Signed-off-by: Michael Jeanson --- .gitignore | 1 + bindings/python/Makefile.am | 7 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9259b6f..e3db41f 100644 --- a/.gitignore +++ b/.gitignore @@

[lttng-dev] [PATCH v2 lttng-tools master, 2.10-rc] Introduce "--blocking-timeout" channel parameter

2017-05-26 Thread Mathieu Desnoyers
Introduce the blocking timeout channel parameter to control blocking behavior for lttng-ust buffers. It only affects applications launched with the LTTNG_UST_ALLOW_BLOCKING environment variable. The blocking timeout parameter expects: - 0 (default) which does not block, - a timeout value in usec,

[lttng-dev] [PATCH v2 lttng-ust master, 2.10-rc] Introduce LTTNG_UST_ALLOW_BLOCKING env. var.

2017-05-26 Thread Mathieu Desnoyers
Introduce the LTTNG_UST_ALLOW_BLOCKING env. var. to control whether applications are allowed to block when a buffer is full. If set, it allows the tracer to block the application when buffers are full. The blocking is now controlled by a per-channel configuration option in the LTTng control interf