Re: [lttng-dev] [PATCH lttng-tools] Tests: added test_autoload to noinst_SCRIPTS

2018-09-07 Thread Jérémie Galarneau
Merged in master, stable-2.11, stable-2.10 and stable-2.9. Thanks! Jérémie On Thu, Jul 26, 2018 at 09:46:28AM +0200, Anders Wallin wrote: > From: Anders Wallin > > Signed-off-by: Anders Wallin > --- > tests/regression/tools/save-load/Makefile.am | 2 +- > 1 file changed, 1 insertion(+), 1 del

[lttng-dev] [PATCH lttng-modules 1/2] Fix: net: expose sk wmem in sock_exceed_buf_limit tracepoint (4.19)

2018-09-07 Thread Michael Jeanson
See upstream commit: commit d6f19938eb031ee2158272757db33258153ae59c Author: Yafang Shao Date: Sun Jul 1 23:31:30 2018 +0800 net: expose sk wmem in sock_exceed_buf_limit tracepoint Currently trace_sock_exceed_buf_limit() only show rmem info, but wmem limit may also be hit.

[lttng-dev] [PATCH lttng-modules 2/2] Fix: tracing: Centralize preemptirq tracepoints (4.19)

2018-09-07 Thread Michael Jeanson
See upstream commit: commit c3bc8fd637a9623f5c507bd18f9677effbddf584 Author: Joel Fernandes (Google) Date: Mon Jul 30 15:24:23 2018 -0700 tracing: Centralize preemptirq tracepoints and unify their usage This patch detaches the preemptirq tracepoints from the tracers and keep

[lttng-dev] [PATCH lttng-tools 1/2] Fix: use LTTNG_VIEWER_ATTACH_UNK to report a closed session

2018-09-07 Thread Jonathan Rajotte
LTTNG_VIEWER_NEW_STREAMS_HUP is not a valid error number for the LTTNG_VIEWER_ATTACH_SESSION command. This result in erroneous error reporting on the client side. Signed-off-by: Jonathan Rajotte --- src/bin/lttng-relayd/live.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s

[lttng-dev] [PATCH lttng-tools 2/2] Skip closed session on viewer listing

2018-09-07 Thread Jonathan Rajotte
There is no value in listing a closed session. A viewer cannot hook itself to a closed session in live mode and the session is about to be removed from the sessions hash table. Signed-off-by: Jonathan Rajotte --- src/bin/lttng-relayd/live.c | 5 + 1 file changed, 5 insertions(+) diff --git