Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe *lttng-tools* to *2.13.13* has Succeeded.
Next steps:
- apply the patch: git am 0001-lttng-tools-upgrade-2.13.11-2.13.13.patch
- check the changes to upstream patches and summarize them in the commit
message,
- compile an image that contains the package
- perform some basic sanity tests
- amend the patch and sign it off: git commit -s --reset-author --amend
- send it to the appropriate mailing list
Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.
Please review the attached files for further information and build/update
failures.
Any problem please file a bug at
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler
Regards,
The Upgrade Helper
-- >8 --
From 897bb52d0d5164a38b8c0e3c107d09f8bf3d28de Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Tue, 16 Apr 2024 01:29:22 +0000
Subject: [PATCH] lttng-tools: upgrade 2.13.11 -> 2.13.13
---
...troy-flush-fix-session-daemon-abort-.patch | 7 +-
...pat-Define-off64_t-as-off_t-on-linux.patch | 17 +++-
...skip_kernel_test-to-check-root-user-.patch | 99 +++++++++----------
...-tests-do-not-strip-a-helper-library.patch | 9 +-
.../lttng/lttng-tools/disable-tests.patch | 16 ++-
...ools_2.13.11.bb => lttng-tools_2.13.13.bb} | 2 +-
6 files changed, 80 insertions(+), 70 deletions(-)
rename meta/recipes-kernel/lttng/{lttng-tools_2.13.11.bb =>
lttng-tools_2.13.13.bb} (99%)
diff --git
a/meta/recipes-kernel/lttng/lttng-tools/0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch
b/meta/recipes-kernel/lttng/lttng-tools/0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch
index 3286dfb5c1..9ac7252426 100644
---
a/meta/recipes-kernel/lttng/lttng-tools/0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch
+++
b/meta/recipes-kernel/lttng/lttng-tools/0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch
@@ -1,4 +1,4 @@
-From 6b45c5f80d20e7bbf3d98c1fa17d2cf8716af3bb Mon Sep 17 00:00:00 2001
+From 37c967f3708cd4dae9db41fa16936605169423d6 Mon Sep 17 00:00:00 2001
From: Xiangyu Chen <[email protected]>
Date: Mon, 25 Mar 2024 18:20:14 +0800
Subject: [PATCH] Fix: rotation-destroy-flush: fix session daemon abort if no
@@ -33,7 +33,7 @@ Signed-off-by: Xiangyu Chen <[email protected]>
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush
b/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush
-index 669bcbc43..64161768f 100755
+index 8ef4f0d..e506b53 100755
--- a/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush
+++ b/tests/regression/ust/rotation-destroy-flush/test_rotation_destroy_flush
@@ -23,11 +23,11 @@ SIZE_LIMIT=$PAGE_SIZE
@@ -51,6 +51,3 @@ index 669bcbc43..64161768f 100755
# MUST set TESTDIR before calling those functions
function run_app()
{
---
-2.25.1
-
diff --git
a/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
b/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
index 4e21d1e9f1..1846c1a856 100644
---
a/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
+++
b/meta/recipes-kernel/lttng/lttng-tools/0001-compat-Define-off64_t-as-off_t-on-linux.patch
@@ -1,7 +1,11 @@
-From 74b3844737b03492756b4f896c938b504b069f14 Mon Sep 17 00:00:00 2001
-From: Jérémie Galarneau <[email protected]>
+From d02874699acdc6771c499fcf8b22b490807839ce Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Galarneau?=
+ <[email protected]>
Date: Tue, 17 Jan 2023 16:57:35 -0500
Subject: [PATCH] compat: off64_t is not defined by musl
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
This helps compile with latest musl, where off64_t is not defined unless
_LARGEFILE64_SOURCE is defined. On glibc, _LARGEFILE64_SOURCE is defined
@@ -19,7 +23,12 @@ Reported-by: Khem Raj <[email protected]>
Signed-off-by: Jérémie Galarneau <[email protected]>
Change-Id: If2c6007a8c85bc3f3065002af8a7538b882fb4a8
---
+ src/common/compat/compat-fcntl.c | 5 ++++-
+ src/common/compat/fcntl.h | 10 +++-------
+ 2 files changed, 7 insertions(+), 8 deletions(-)
+diff --git a/src/common/compat/compat-fcntl.c
b/src/common/compat/compat-fcntl.c
+index 5c0bdc9..18bab0a 100644
--- a/src/common/compat/compat-fcntl.c
+++ b/src/common/compat/compat-fcntl.c
@@ -8,14 +8,17 @@
@@ -41,6 +50,8 @@ Change-Id: If2c6007a8c85bc3f3065002af8a7538b882fb4a8
#ifdef HAVE_SYNC_FILE_RANGE
return sync_file_range(fd, offset, nbytes, flags);
#else
+diff --git a/src/common/compat/fcntl.h b/src/common/compat/fcntl.h
+index 5e566e5..93b22b7 100644
--- a/src/common/compat/fcntl.h
+++ b/src/common/compat/fcntl.h
@@ -13,16 +13,12 @@
@@ -61,7 +72,7 @@ Change-Id: If2c6007a8c85bc3f3065002af8a7538b882fb4a8
unsigned int flags);
#define lttng_sync_file_range(fd, offset, nbytes, flags) \
compat_sync_file_range(fd, offset, nbytes, flags)
-@@ -37,8 +33,8 @@ extern int compat_sync_file_range(int fd
+@@ -37,8 +33,8 @@ extern int compat_sync_file_range(int fd, off64_t offset,
off64_t nbytes,
#define SYNC_FILE_RANGE_WAIT_BEFORE 0
#define SYNC_FILE_RANGE_WRITE 0
diff --git
a/meta/recipes-kernel/lttng/lttng-tools/0001-tests-add-check_skip_kernel_test-to-check-root-user-.patch
b/meta/recipes-kernel/lttng/lttng-tools/0001-tests-add-check_skip_kernel_test-to-check-root-user-.patch
index 2671a1908e..eda3a31f8c 100644
---
a/meta/recipes-kernel/lttng/lttng-tools/0001-tests-add-check_skip_kernel_test-to-check-root-user-.patch
+++
b/meta/recipes-kernel/lttng/lttng-tools/0001-tests-add-check_skip_kernel_test-to-check-root-user-.patch
@@ -1,4 +1,4 @@
-From cf558f802b259a33605fe0ede4d74ae2ff6be699 Mon Sep 17 00:00:00 2001
+From 0a8f8583289fe14b52eef153e352565c04ad3740 Mon Sep 17 00:00:00 2001
From: Xiangyu Chen <[email protected]>
Date: Mon, 12 Feb 2024 09:23:54 -0500
Subject: [PATCH] tests: add check_skip_kernel_test to check root user and
@@ -83,7 +83,7 @@ Signed-off-by: Jérémie Galarneau
<[email protected]>
47 files changed, 166 insertions(+), 363 deletions(-)
diff --git a/tests/destructive/metadata-regeneration
b/tests/destructive/metadata-regeneration
-index b81e7af32..36b130d17 100755
+index b81e7af..36b130d 100755
--- a/tests/destructive/metadata-regeneration
+++ b/tests/destructive/metadata-regeneration
@@ -185,19 +185,13 @@ function test_ust_streaming ()
@@ -108,7 +108,7 @@ index b81e7af32..36b130d17 100755
start_lttng_relayd "-o $TRACE_PATH"
start_lttng_sessiond
diff --git a/tests/perf/test_perf_raw.in b/tests/perf/test_perf_raw.in
-index f293ccd71..d35529a87 100644
+index f293ccd..d35529a 100644
--- a/tests/perf/test_perf_raw.in
+++ b/tests/perf/test_perf_raw.in
@@ -137,12 +137,6 @@ function test_kernel_raw()
@@ -134,7 +134,7 @@ index f293ccd71..d35529a87 100644
modprobe lttng-test
test_kernel_raw
diff --git a/tests/regression/kernel/test_all_events
b/tests/regression/kernel/test_all_events
-index 2e20888df..044f9b65f 100755
+index 2e20888..044f9b6 100755
--- a/tests/regression/kernel/test_all_events
+++ b/tests/regression/kernel/test_all_events
@@ -43,13 +43,7 @@ plan_tests $NUM_TESTS
@@ -153,7 +153,7 @@ index 2e20888df..044f9b65f 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/kernel/test_callstack
b/tests/regression/kernel/test_callstack
-index a4477fd7c..d8d6b5e0f 100755
+index a4477fd..d8d6b5e 100755
--- a/tests/regression/kernel/test_callstack
+++ b/tests/regression/kernel/test_callstack
@@ -134,13 +134,7 @@ plan_tests $NUM_TESTS
@@ -172,7 +172,7 @@ index a4477fd7c..d8d6b5e0f 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/kernel/test_channel
b/tests/regression/kernel/test_channel
-index 9cc74c4e8..4c377bd2a 100755
+index 9cc74c4..4c377bd 100755
--- a/tests/regression/kernel/test_channel
+++ b/tests/regression/kernel/test_channel
@@ -47,13 +47,7 @@ function test_channel_buffer_too_large()
@@ -191,7 +191,7 @@ index 9cc74c4e8..4c377bd2a 100755
start_lttng_sessiond
diff --git a/tests/regression/kernel/test_clock_override
b/tests/regression/kernel/test_clock_override
-index 72892898b..48a3f926a 100755
+index 7289289..48a3f92 100755
--- a/tests/regression/kernel/test_clock_override
+++ b/tests/regression/kernel/test_clock_override
@@ -172,13 +172,7 @@ TESTS=(
@@ -210,7 +210,7 @@ index 72892898b..48a3f926a 100755
validate_lttng_modules_present
trap signal_cleanup SIGTERM SIGINT
diff --git a/tests/regression/kernel/test_event_basic
b/tests/regression/kernel/test_event_basic
-index ac9ec0549..387e2f733 100755
+index ac9ec05..387e2f7 100755
--- a/tests/regression/kernel/test_event_basic
+++ b/tests/regression/kernel/test_event_basic
@@ -73,13 +73,7 @@ plan_tests $NUM_TESTS
@@ -229,7 +229,7 @@ index ac9ec0549..387e2f733 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/kernel/test_kernel_function
b/tests/regression/kernel/test_kernel_function
-index b1d5491fc..ea16cdeef 100755
+index b1d5491..ea16cde 100755
--- a/tests/regression/kernel/test_kernel_function
+++ b/tests/regression/kernel/test_kernel_function
@@ -43,13 +43,7 @@ plan_tests $NUM_TESTS
@@ -248,7 +248,7 @@ index b1d5491fc..ea16cdeef 100755
start_lttng_sessiond_notap
validate_lttng_modules_present
diff --git a/tests/regression/kernel/test_lttng_logger
b/tests/regression/kernel/test_lttng_logger
-index b8f7ded82..00eaae823 100755
+index b8f7ded..00eaae8 100755
--- a/tests/regression/kernel/test_lttng_logger
+++ b/tests/regression/kernel/test_lttng_logger
@@ -110,13 +110,7 @@ plan_tests $NUM_TESTS
@@ -267,7 +267,7 @@ index b8f7ded82..00eaae823 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/kernel/test_ns_contexts
b/tests/regression/kernel/test_ns_contexts
-index 0c8718d78..59e2568f6 100755
+index 7d447bc..1c71ea5 100755
--- a/tests/regression/kernel/test_ns_contexts
+++ b/tests/regression/kernel/test_ns_contexts
@@ -108,13 +108,7 @@ plan_tests $NUM_TESTS
@@ -286,7 +286,7 @@ index 0c8718d78..59e2568f6 100755
system_has_ns=0
if [ -d "/proc/$$/ns" ]; then
diff --git a/tests/regression/kernel/test_ns_contexts_change
b/tests/regression/kernel/test_ns_contexts_change
-index 42a61276b..3f5e4eeab 100755
+index 42a6127..3f5e4ee 100755
--- a/tests/regression/kernel/test_ns_contexts_change
+++ b/tests/regression/kernel/test_ns_contexts_change
@@ -162,14 +162,7 @@ plan_tests $NUM_TESTS
@@ -306,7 +306,7 @@ index 42a61276b..3f5e4eeab 100755
system_has_ns=0
if [ -d "/proc/$$/ns" ]; then
diff --git a/tests/regression/kernel/test_rotation_destroy_flush
b/tests/regression/kernel/test_rotation_destroy_flush
-index cb773d7df..0af514b49 100755
+index cb773d7..0af514b 100755
--- a/tests/regression/kernel/test_rotation_destroy_flush
+++ b/tests/regression/kernel/test_rotation_destroy_flush
@@ -120,13 +120,7 @@ TESTS=(
@@ -325,7 +325,7 @@ index cb773d7df..0af514b49 100755
validate_lttng_modules_present
trap signal_cleanup SIGTERM SIGINT
diff --git a/tests/regression/kernel/test_select_poll_epoll
b/tests/regression/kernel/test_select_poll_epoll
-index d8245a0e7..20f0ef0ae 100755
+index d8245a0..20f0ef0 100755
--- a/tests/regression/kernel/test_select_poll_epoll
+++ b/tests/regression/kernel/test_select_poll_epoll
@@ -374,13 +374,7 @@ if test $? != 0; then
@@ -344,7 +344,7 @@ index d8245a0e7..20f0ef0ae 100755
validate_lttng_modules_present
diff --git a/tests/regression/kernel/test_syscall
b/tests/regression/kernel/test_syscall
-index 401a18a8d..219d94703 100755
+index 401a18a..219d947 100755
--- a/tests/regression/kernel/test_syscall
+++ b/tests/regression/kernel/test_syscall
@@ -664,13 +664,7 @@ plan_tests $NUM_TESTS
@@ -363,7 +363,7 @@ index 401a18a8d..219d94703 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/kernel/test_userspace_probe
b/tests/regression/kernel/test_userspace_probe
-index 1091ee65e..5d984d666 100755
+index 1091ee6..5d984d6 100755
--- a/tests/regression/kernel/test_userspace_probe
+++ b/tests/regression/kernel/test_userspace_probe
@@ -815,13 +815,7 @@ fi
@@ -382,7 +382,7 @@ index 1091ee65e..5d984d666 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/tools/clear/test_kernel
b/tests/regression/tools/clear/test_kernel
-index 06fb1c368..48250a742 100755
+index 06fb1c3..48250a7 100755
--- a/tests/regression/tools/clear/test_kernel
+++ b/tests/regression/tools/clear/test_kernel
@@ -536,12 +536,6 @@ plan_tests $NUM_TESTS
@@ -408,7 +408,7 @@ index 06fb1c368..48250a742 100755
trap signal_cleanup SIGTERM SIGINT
diff --git a/tests/regression/tools/filtering/test_invalid_filter
b/tests/regression/tools/filtering/test_invalid_filter
-index 7d9e524d9..8435e5546 100755
+index 7d9e524..8435e55 100755
--- a/tests/regression/tools/filtering/test_invalid_filter
+++ b/tests/regression/tools/filtering/test_invalid_filter
@@ -168,13 +168,7 @@ done
@@ -427,7 +427,7 @@ index 7d9e524d9..8435e5546 100755
diag "Test kernel filters"
i=0
diff --git a/tests/regression/tools/filtering/test_unsupported_op
b/tests/regression/tools/filtering/test_unsupported_op
-index 299247a3c..91eb86d21 100755
+index 299247a..91eb86d 100755
--- a/tests/regression/tools/filtering/test_unsupported_op
+++ b/tests/regression/tools/filtering/test_unsupported_op
@@ -103,13 +103,7 @@ while [ "$i" -lt "$OP_COUNT" ]; do
@@ -446,7 +446,7 @@ index 299247a3c..91eb86d21 100755
diag "Test kernel unsupported filter operations"
diff --git a/tests/regression/tools/filtering/test_valid_filter
b/tests/regression/tools/filtering/test_valid_filter
-index e76ffa25f..1ba7c79bb 100755
+index e76ffa2..1ba7c79 100755
--- a/tests/regression/tools/filtering/test_valid_filter
+++ b/tests/regression/tools/filtering/test_valid_filter
@@ -1452,13 +1452,7 @@ KERNEL_FILTERS=(
@@ -465,7 +465,7 @@ index e76ffa25f..1ba7c79bb 100755
diag "Test kernel valid filters"
diff --git a/tests/regression/tools/health/test_health.sh
b/tests/regression/tools/health/test_health.sh
-index b3d6419d2..68716e6b9 100644
+index b3d6419..68716e6 100644
--- a/tests/regression/tools/health/test_health.sh
+++ b/tests/regression/tools/health/test_health.sh
@@ -82,7 +82,7 @@ function test_health
@@ -500,7 +500,7 @@ index b3d6419d2..68716e6b9 100644
i=0
while [ "$i" -lt "$THREAD_COUNT" ]; do
diff --git a/tests/regression/tools/health/test_thread_ok
b/tests/regression/tools/health/test_thread_ok
-index e84adb611..e5e23543f 100755
+index e84adb6..e5e2354 100755
--- a/tests/regression/tools/health/test_thread_ok
+++ b/tests/regression/tools/health/test_thread_ok
@@ -67,7 +67,7 @@ function test_thread_ok
@@ -527,7 +527,7 @@ index e84adb611..e5e23543f 100755
rm -rf ${HEALTH_PATH}
diff --git a/tests/regression/tools/live/test_kernel
b/tests/regression/tools/live/test_kernel
-index b622b5214..fdaa09f0d 100755
+index b622b52..fdaa09f 100755
--- a/tests/regression/tools/live/test_kernel
+++ b/tests/regression/tools/live/test_kernel
@@ -39,13 +39,11 @@ function clean_live_tracing()
@@ -549,7 +549,7 @@ index b622b5214..fdaa09f0d 100755
modprobe lttng-test
diff --git a/tests/regression/tools/live/test_lttng_kernel
b/tests/regression/tools/live/test_lttng_kernel
-index a23d9373a..1b933648f 100755
+index a23d937..1b93364 100755
--- a/tests/regression/tools/live/test_lttng_kernel
+++ b/tests/regression/tools/live/test_lttng_kernel
@@ -45,13 +45,7 @@ function clean_live_tracing()
@@ -568,7 +568,7 @@ index a23d9373a..1b933648f 100755
modprobe lttng-test
diff --git a/tests/regression/tools/metadata/test_kernel
b/tests/regression/tools/metadata/test_kernel
-index 57cace6ea..26e95d93a 100755
+index 57cace6..26e95d9 100755
--- a/tests/regression/tools/metadata/test_kernel
+++ b/tests/regression/tools/metadata/test_kernel
@@ -91,13 +91,7 @@ plan_tests $NUM_TESTS
@@ -587,7 +587,7 @@ index 57cace6ea..26e95d93a 100755
validate_lttng_modules_present
modprobe lttng-test
diff --git
a/tests/regression/tools/notification/test_notification_kernel_buffer_usage
b/tests/regression/tools/notification/test_notification_kernel_buffer_usage
-index 76e69a77e..8fdaabb3e 100755
+index 76e69a7..8fdaabb 100755
--- a/tests/regression/tools/notification/test_notification_kernel_buffer_usage
+++ b/tests/regression/tools/notification/test_notification_kernel_buffer_usage
@@ -60,29 +60,27 @@ function test_buffer_usage_notification
@@ -638,7 +638,7 @@ index 76e69a77e..8fdaabb3e 100755
+rm -rf "${consumerd_pipe[@]}" 2> /dev/null
rm -rf "$TEST_TMPDIR"
diff --git
a/tests/regression/tools/notification/test_notification_kernel_capture
b/tests/regression/tools/notification/test_notification_kernel_capture
-index 88f123d3d..0f8a2bc6f 100755
+index 88f123d..0f8a2bc 100755
--- a/tests/regression/tools/notification/test_notification_kernel_capture
+++ b/tests/regression/tools/notification/test_notification_kernel_capture
@@ -31,22 +31,21 @@ function test_basic_error_path
@@ -676,7 +676,7 @@ index 88f123d3d..0f8a2bc6f 100755
rm -f "$TESTAPP_STATE_PATH"
diff --git
a/tests/regression/tools/notification/test_notification_kernel_error
b/tests/regression/tools/notification/test_notification_kernel_error
-index 80fe6e5b5..b757ec2b4 100755
+index 80fe6e5..b757ec2 100755
--- a/tests/regression/tools/notification/test_notification_kernel_error
+++ b/tests/regression/tools/notification/test_notification_kernel_error
@@ -30,23 +30,22 @@ function test_basic_error_path
@@ -715,7 +715,7 @@ index 80fe6e5b5..b757ec2b4 100755
rm -f "$TESTAPP_STATE_PATH"
diff --git
a/tests/regression/tools/notification/test_notification_kernel_instrumentation
b/tests/regression/tools/notification/test_notification_kernel_instrumentation
-index 90545a541..705f7703d 100755
+index 90545a5..705f770 100755
---
a/tests/regression/tools/notification/test_notification_kernel_instrumentation
+++
b/tests/regression/tools/notification/test_notification_kernel_instrumentation
@@ -28,22 +28,21 @@ function test_kernel_instrumentation_notification
@@ -753,7 +753,7 @@ index 90545a541..705f7703d 100755
rm -f "$TESTAPP_STATE_PATH"
diff --git
a/tests/regression/tools/notification/test_notification_kernel_syscall
b/tests/regression/tools/notification/test_notification_kernel_syscall
-index d273cb55d..7fa235388 100755
+index d273cb5..7fa2353 100755
--- a/tests/regression/tools/notification/test_notification_kernel_syscall
+++ b/tests/regression/tools/notification/test_notification_kernel_syscall
@@ -31,19 +31,18 @@ function test_kernel_syscall_notification
@@ -786,7 +786,7 @@ index d273cb55d..7fa235388 100755
rm -f "$TESTAPP_STATE_PATH"
diff --git
a/tests/regression/tools/notification/test_notification_kernel_userspace_probe
b/tests/regression/tools/notification/test_notification_kernel_userspace_probe
-index 8ef8d708d..abddd9be7 100755
+index 8ef8d70..abddd9b 100755
---
a/tests/regression/tools/notification/test_notification_kernel_userspace_probe
+++
b/tests/regression/tools/notification/test_notification_kernel_userspace_probe
@@ -29,18 +29,18 @@ function test_kernel_userspace_probe_notification
@@ -819,7 +819,7 @@ index 8ef8d708d..abddd9be7 100755
rm -f "$TESTAPP_STATE_PATH"
diff --git a/tests/regression/tools/notification/test_notification_multi_app
b/tests/regression/tools/notification/test_notification_multi_app
-index d8b639225..61891b56f 100755
+index d8b6392..61891b5 100755
--- a/tests/regression/tools/notification/test_notification_multi_app
+++ b/tests/regression/tools/notification/test_notification_multi_app
@@ -411,22 +411,18 @@ function test_on_register_evaluation ()
@@ -851,7 +851,7 @@ index d8b639225..61891b56f 100755
for fct_test in ${TESTS[@]};
do
diff --git
a/tests/regression/tools/notification/test_notification_notifier_discarded_count
b/tests/regression/tools/notification/test_notification_notifier_discarded_count
-index c9235393e..a6c31a728 100755
+index c923539..a6c31a7 100755
---
a/tests/regression/tools/notification/test_notification_notifier_discarded_count
+++
b/tests/regression/tools/notification/test_notification_notifier_discarded_count
@@ -391,7 +391,8 @@ function
test_ust_notifier_discarded_regardless_trigger_owner
@@ -877,7 +877,7 @@ index c9235393e..a6c31a728 100755
rm -rf "$TEST_TMPDIR"
diff --git a/tests/regression/tools/regen-metadata/test_kernel
b/tests/regression/tools/regen-metadata/test_kernel
-index 49eea32a7..555a4e2ce 100755
+index 49eea32..555a4e2 100755
--- a/tests/regression/tools/regen-metadata/test_kernel
+++ b/tests/regression/tools/regen-metadata/test_kernel
@@ -99,13 +99,7 @@ plan_tests $NUM_TESTS
@@ -896,7 +896,7 @@ index 49eea32a7..555a4e2ce 100755
validate_lttng_modules_present
diff --git a/tests/regression/tools/regen-statedump/test_kernel
b/tests/regression/tools/regen-statedump/test_kernel
-index 8a261355d..bbbac3942 100755
+index 8a26135..bbbac39 100755
--- a/tests/regression/tools/regen-statedump/test_kernel
+++ b/tests/regression/tools/regen-statedump/test_kernel
@@ -39,13 +39,7 @@ plan_tests $NUM_TESTS
@@ -915,7 +915,7 @@ index 8a261355d..bbbac3942 100755
validate_lttng_modules_present
start_lttng_sessiond
diff --git a/tests/regression/tools/rotation/test_kernel
b/tests/regression/tools/rotation/test_kernel
-index f5f1f5553..efe3fd359 100755
+index f5f1f55..efe3fd3 100755
--- a/tests/regression/tools/rotation/test_kernel
+++ b/tests/regression/tools/rotation/test_kernel
@@ -82,13 +82,7 @@ plan_tests $NUM_TESTS
@@ -934,7 +934,7 @@ index f5f1f5553..efe3fd359 100755
validate_lttng_modules_present
diff --git a/tests/regression/tools/snapshots/test_kernel
b/tests/regression/tools/snapshots/test_kernel
-index abb243563..d91876867 100755
+index abb2435..d918768 100755
--- a/tests/regression/tools/snapshots/test_kernel
+++ b/tests/regression/tools/snapshots/test_kernel
@@ -217,13 +217,7 @@ plan_tests $NUM_TESTS
@@ -953,7 +953,7 @@ index abb243563..d91876867 100755
validate_lttng_modules_present
diff --git a/tests/regression/tools/snapshots/test_kernel_streaming
b/tests/regression/tools/snapshots/test_kernel_streaming
-index 0c92dc710..dd965afee 100755
+index 0c92dc7..dd965af 100755
--- a/tests/regression/tools/snapshots/test_kernel_streaming
+++ b/tests/regression/tools/snapshots/test_kernel_streaming
@@ -145,13 +145,7 @@ plan_tests $NUM_TESTS
@@ -972,7 +972,7 @@ index 0c92dc710..dd965afee 100755
validate_lttng_modules_present
diff --git a/tests/regression/tools/streaming/test_high_throughput_limits
b/tests/regression/tools/streaming/test_high_throughput_limits
-index 2b9e3ad39..c55d51098 100755
+index 2b9e3ad..c55d510 100755
--- a/tests/regression/tools/streaming/test_high_throughput_limits
+++ b/tests/regression/tools/streaming/test_high_throughput_limits
@@ -170,13 +170,7 @@ plan_tests $NUM_TESTS
@@ -991,7 +991,7 @@ index 2b9e3ad39..c55d51098 100755
# Catch sigint and try to cleanup limits
diff --git a/tests/regression/tools/streaming/test_kernel
b/tests/regression/tools/streaming/test_kernel
-index 33334229f..113eea7bf 100755
+index 3333422..113eea7 100755
--- a/tests/regression/tools/streaming/test_kernel
+++ b/tests/regression/tools/streaming/test_kernel
@@ -47,13 +47,7 @@ plan_tests $NUM_TESTS
@@ -1010,7 +1010,7 @@ index 33334229f..113eea7bf 100755
validate_lttng_modules_present
diff --git a/tests/regression/tools/tracker/test_event_tracker
b/tests/regression/tools/tracker/test_event_tracker
-index cc0f698d2..de0c79d36 100755
+index cc0f698..de0c79d 100755
--- a/tests/regression/tools/tracker/test_event_tracker
+++ b/tests/regression/tools/tracker/test_event_tracker
@@ -466,13 +466,7 @@ test_event_track_untrack ust 0 "${EVENT_NAME}" "--pid
--all" # backward compat
@@ -1029,7 +1029,7 @@ index cc0f698d2..de0c79d36 100755
diag "Test kernel tracker"
diff --git a/tests/regression/tools/trigger/test_add_trigger_cli
b/tests/regression/tools/trigger/test_add_trigger_cli
-index 98ecf6272..d1763aa2e 100755
+index 98ecf62..d1763aa 100755
--- a/tests/regression/tools/trigger/test_add_trigger_cli
+++ b/tests/regression/tools/trigger/test_add_trigger_cli
@@ -34,12 +34,6 @@ tmp_stdout=$(mktemp --tmpdir -t
test_parse_cli_trigger_stdout.XXXXXX)
@@ -1073,7 +1073,7 @@ index 98ecf6272..d1763aa2e 100755
--name="syscall-trigger-0" \
--condition event-rule-matches --type=syscall --name=open \
diff --git a/tests/regression/tools/trigger/test_list_triggers_cli
b/tests/regression/tools/trigger/test_list_triggers_cli
-index a04018013..02c3de3e9 100755
+index 2574e15..652a08c 100755
--- a/tests/regression/tools/trigger/test_list_triggers_cli
+++ b/tests/regression/tools/trigger/test_list_triggers_cli
@@ -36,22 +36,12 @@ uprobe_sdt_binary=$(realpath
"${TESTDIR}/utils/testapp/userspace-probe-sdt-binar
@@ -1120,7 +1120,7 @@ index a04018013..02c3de3e9 100755
test_buffer_usage_conditions
test_session_rotation_conditions
diff --git a/tests/regression/tools/wildcard/test_event_wildcard
b/tests/regression/tools/wildcard/test_event_wildcard
-index f69baffc4..14d9bb88a 100755
+index f69baff..14d9bb8 100755
--- a/tests/regression/tools/wildcard/test_event_wildcard
+++ b/tests/regression/tools/wildcard/test_event_wildcard
@@ -124,13 +124,7 @@ test_event_wildcard ust 1 'tp*tptest'
@@ -1139,7 +1139,7 @@ index f69baffc4..14d9bb88a 100755
diag "Test kernel wildcards"
diff --git
a/tests/regression/tools/working-directory/test_relayd_working_directory
b/tests/regression/tools/working-directory/test_relayd_working_directory
-index c7e784cca..6bd1e504a 100755
+index c7e784c..6bd1e50 100755
--- a/tests/regression/tools/working-directory/test_relayd_working_directory
+++ b/tests/regression/tools/working-directory/test_relayd_working_directory
@@ -145,9 +145,9 @@ function test_relayd_debug_permission()
@@ -1155,7 +1155,7 @@ index c7e784cca..6bd1e504a 100755
skip $is_user "Skipping permission debug output test; operation can't
fail as root" 6 ||
diff --git a/tests/regression/ust/namespaces/test_ns_contexts_change
b/tests/regression/ust/namespaces/test_ns_contexts_change
-index 8a4b62ce3..622241f7b 100755
+index 8a4b62c..622241f 100755
--- a/tests/regression/ust/namespaces/test_ns_contexts_change
+++ b/tests/regression/ust/namespaces/test_ns_contexts_change
@@ -101,12 +101,7 @@ plan_tests $NUM_TESTS
@@ -1173,7 +1173,7 @@ index 8a4b62ce3..622241f7b 100755
system_has_ns=0
if [ -d "/proc/$$/ns" ]; then
diff --git a/tests/regression/ust/test_event_perf
b/tests/regression/ust/test_event_perf
-index 33aab2981..178959a19 100755
+index 33aab29..178959a 100755
--- a/tests/regression/ust/test_event_perf
+++ b/tests/regression/ust/test_event_perf
@@ -119,17 +119,11 @@ plan_tests $NUM_TESTS
@@ -1196,7 +1196,7 @@ index 33aab2981..178959a19 100755
test_event_basic
}
diff --git a/tests/utils/utils.sh b/tests/utils/utils.sh
-index faa87e783..da0e0569d 100644
+index 48a60fe..c0c50c3 100644
--- a/tests/utils/utils.sh
+++ b/tests/utils/utils.sh
@@ -318,6 +318,41 @@ function conf_proc_count()
@@ -1241,6 +1241,3 @@ index faa87e783..da0e0569d 100644
# Check if base lttng-modules are present.
# Bail out on failure
function validate_lttng_modules_present ()
---
-2.25.1
-
diff --git
a/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
b/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
index 2d08b08879..78adf88466 100644
---
a/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
+++
b/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
@@ -1,4 +1,4 @@
-From ab238c213fac190972f55e73cf3e0bb1c7846eb8 Mon Sep 17 00:00:00 2001
+From 1b4bcdf01bcf9ddee2798b0e27cdbc902db38c4d Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <[email protected]>
Date: Thu, 12 Dec 2019 16:52:07 +0100
Subject: [PATCH] tests: do not strip a helper library
@@ -10,10 +10,10 @@ Signed-off-by: Alexander Kanavin <[email protected]>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/utils/testapp/userspace-probe-elf-binary/Makefile.am
b/tests/utils/testapp/userspace-probe-elf-binary/Makefile.am
-index 03f5d5a..d12c343 100644
+index 836f13e..e19a554 100644
--- a/tests/utils/testapp/userspace-probe-elf-binary/Makefile.am
+++ b/tests/utils/testapp/userspace-probe-elf-binary/Makefile.am
-@@ -12,7 +12,7 @@ userspace_probe_elf_binary_LDADD = libfoo.la
+@@ -14,7 +14,7 @@ userspace_probe_elf_binary_LDADD = libfoo.la
libfoo.strip: libfoo.la
$(OBJCOPY) --strip-all .libs/libfoo.so
@@ -22,6 +22,3 @@ index 03f5d5a..d12c343 100644
@if [ x"$(srcdir)" != x"$(builddir)" ]; then \
for script in $(EXTRA_DIST); do \
cp -f $(srcdir)/$$script $(builddir); \
---
-2.17.1
-
diff --git a/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
b/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
index 3a77ea2e43..45dada9cfb 100644
--- a/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
+++ b/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
@@ -1,3 +1,8 @@
+From fd3cbcd3fb0059769b409d3847ae6e82aab6eef2 Mon Sep 17 00:00:00 2001
+From: Richard Purdie <[email protected]>
+Date: Tue, 14 Dec 2021 12:34:04 +0000
+Subject: [PATCH] lttng-tools: Disable problem tests
+
Upstream-Status: Inappropriate [need to root cause the test hangs]
We keep seeing hangs in the tools/notifications tests on x86 and arm for
@@ -8,11 +13,14 @@ of them.
https://bugzilla.yoctoproject.org/show_bug.cgi?id=14263
Signed-off-by: Richard Purdie <[email protected]>
+---
+ tests/regression/Makefile.am | 12 ------------
+ 1 file changed, 12 deletions(-)
-Index: lttng-tools-2.13.1/tests/regression/Makefile.am
-===================================================================
---- lttng-tools-2.13.1.orig/tests/regression/Makefile.am
-+++ lttng-tools-2.13.1/tests/regression/Makefile.am
+diff --git a/tests/regression/Makefile.am b/tests/regression/Makefile.am
+index e556223..756fb98 100644
+--- a/tests/regression/Makefile.am
++++ b/tests/regression/Makefile.am
@@ -29,18 +29,6 @@ TESTS = tools/base-path/test_ust \
tools/crash/test_crash \
tools/regen-metadata/test_ust \
diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.13.11.bb
b/meta/recipes-kernel/lttng/lttng-tools_2.13.13.bb
similarity index 99%
rename from meta/recipes-kernel/lttng/lttng-tools_2.13.11.bb
rename to meta/recipes-kernel/lttng/lttng-tools_2.13.13.bb
index f6abd9e11a..174dec036e 100644
--- a/meta/recipes-kernel/lttng/lttng-tools_2.13.11.bb
+++ b/meta/recipes-kernel/lttng/lttng-tools_2.13.13.bb
@@ -41,7 +41,7 @@ SRC_URI =
"https://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \
file://0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch \
"
-SRC_URI[sha256sum] =
"ac5baeef9fa690936b1ca01ecd1742da762c2c08511ff1b4e923938d94d0f979"
+SRC_URI[sha256sum] =
"ff5f4f00b081dac66092afe8e72b7c790670931cf1c1ee0deaa7f80fbc53883e"
inherit autotools ptest pkgconfig useradd python3-dir manpages systemd
--
2.42.0
0001-lttng-tools-upgrade-2.13.11-2.13.13.patch
Description: Binary data
packages/core2-64-poky-linux/lttng-tools/lttng-tools-ptest: FILELIST: added "/usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-data-pending/Makefile /usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-data-pending/gen-data-pending"
packages/core2-64-poky-linux/lttng-tools: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools: SRC_URI changed from "https://lttng.org/files/lttng-tools/lttng-tools-2.13.11.tar.bz2 file://0001-tests-do-not-strip-a-helper-library.patch file://run-ptest file://lttng-sessiond.service file://disable-tests.patch file://0001-compat-Define-off64_t-as-off_t-on-linux.patch file://0001-tests-add-check_skip_kernel_test-to-check-root-user-.patch file://0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch" to "https://lttng.org/files/lttng-tools/lttng-tools-2.13.13.tar.bz2 file://0001-tests-do-not-strip-a-helper-library.patch file://run-ptest file://lttng-sessiond.service file://disable-tests.patch file://0001-compat-Define-off64_t-as-off_t-on-linux.patch file://0001-tests-add-check_skip_kernel_test-to-check-root-user-.patch file://0001-Fix-rotation-destroy-flush-fix-session-daemon-abort-.patch" packages/core2-64-poky-linux/lttng-tools: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-dbg: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-dbg: FILELIST: added "/usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-data-pending/.debug/gen-data-pending" packages/core2-64-poky-linux/lttng-tools/lttng-tools-dbg: PKGSIZE changed from 55777120 to 55860128 (+0%) packages/core2-64-poky-linux/lttng-tools/lttng-tools-dbg: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-dev: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-dev: PKGSIZE changed from 240995 to 240996 (+0%) packages/core2-64-poky-linux/lttng-tools/lttng-tools-dev: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-doc: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-doc: PKGSIZE changed from 301014 to 301940 (+0%) packages/core2-64-poky-linux/lttng-tools/lttng-tools-doc: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-locale: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-locale: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-ptest: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-ptest: FILELIST: added "/usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-data-pending/Makefile /usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-data-pending/gen-data-pending" packages/core2-64-poky-linux/lttng-tools/lttng-tools-ptest: PKGSIZE changed from 15817594 to 15849925 (+0%) packages/core2-64-poky-linux/lttng-tools/lttng-tools-ptest: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-src: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-src: FILELIST: directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/argpar -> /usr/src/debug/lttng-tools/2.13.13/src/common/argpar, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/relayd -> /usr/src/debug/lttng-tools/2.13.13/src/common/relayd, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/rotation -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/rotation, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/clock-override -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/clock-override, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/overlap/demo -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/overlap/demo, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/index -> /usr/src/debug/lttng-tools/2.13.13/src/common/index, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/bin/lttng-c onsumerd -> /usr/src/debug/lttng-tools/2.13.13/src/bin/lttng-consumerd, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/config -> /usr/src/debug/lttng-tools/2.13.13/src/common/config, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/kernel-consumer -> /usr/src/debug/lttng-tools/2.13.13/src/common/kernel-consumer, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/exit-fast -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/exit-fast, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/unit/ini_config -> /usr/src/debug/lttng-tools/2.13.13/tests/unit/ini_config, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/vendor/msgpack -> /usr/src/debug/lttng-tools/2.13.13/src/vendor/msgpack, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-ust-events-ns -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-ust-events-ns, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common /event-expr -> /usr/src/debug/lttng-tools/2.13.13/src/common/event-expr, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/userspace-probe-elf-binary -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/userspace-probe-elf-binary, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/type-declarations -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/type-declarations, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/conditions -> /usr/src/debug/lttng-tools/2.13.13/src/common/conditions, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/xml-utils -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/xml-utils, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/trigger/hidden -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/trigger/hidden, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/high-throughput -> /usr/src/debug/lttng-tools/2.13.13/ tests/regression/ust/high-throughput, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/low-throughput -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/low-throughput, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/health -> /usr/src/debug/lttng-tools/2.13.13/src/common/health, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/multi-lib -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/multi-lib, directory renamed /usr/src/debug/lttng-tools/2.13.11/include/lttng/notification -> /usr/src/debug/lttng-tools/2.13.13/include/lttng/notification, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/fork -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/fork, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/compat -> /usr/src/debug/lttng-tools/2.13.13/src/common/compat, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/sessiond-comm -> /usr/src/debug /lttng-tools/2.13.13/src/common/sessiond-comm, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/notification -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/notification, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/actions -> /usr/src/debug/lttng-tools/2.13.13/src/common/actions, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/bin/lttng/commands -> /usr/src/debug/lttng-tools/2.13.13/src/bin/lttng/commands, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/health -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/health, directory renamed /usr/src/debug/lttng-tools/2.13.11/include/lttng/trigger -> /usr/src/debug/lttng-tools/2.13.13/include/lttng/trigger, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/lib/lttng-ctl -> /usr/src/debug/lttng-too ls/2.13.13/src/lib/lttng-ctl, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/bytecode -> /usr/src/debug/lttng-tools/2.13.13/src/common/bytecode, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/baddr-statedump -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/baddr-statedump, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/bin/lttng -> /usr/src/debug/lttng-tools/2.13.13/src/bin/lttng, directory renamed /usr/src/debug/lttng-tools/2.13.11/include/lttng/action -> /usr/src/debug/lttng-tools/2.13.13/include/lttng/action, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/unit -> /usr/src/debug/lttng-tools/2.13.13/tests/unit, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-ust-tracef -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-ust-tracef, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/hashtable -> /usr/src/debug/lttng-tools/2.13.13/src/common/hashtable, direc tory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/trigger/utils -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/trigger/utils, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/bin/lttng-sessiond -> /usr/src/debug/lttng-tools/2.13.13/src/bin/lttng-sessiond, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/argpar-utils -> /usr/src/debug/lttng-tools/2.13.13/src/common/argpar-utils, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/fd-tracker -> /usr/src/debug/lttng-tools/2.13.13/src/common/fd-tracker, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/ust-consumer -> /usr/src/debug/lttng-tools/2.13.13/src/common/ust-consumer, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/filtering -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/filtering, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/daemon -> /usr/src/debug/lttng-tools/2.13.13/tests /regression/ust/daemon, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/tap -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/tap, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-ns-events -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-ns-events, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-ust-nevents -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-ust-nevents, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/libc-wrapper -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/libc-wrapper, directory renamed /usr/src/debug/lttng-tools/2.13.11/include/lttng/event-rule -> /usr/src/debug/lttng-tools/2.13.13/include/lttng/event-rule, directory renamed /usr/src/debug/lttng-tools/2.13.11/include/lttng/condition -> /usr/src/debug/lttng-tools/2.13.13/include/lttng/condition, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/kernel-ctl -> /usr/ src/debug/lttng-tools/2.13.13/src/common/kernel-ctl, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/ust-dl -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/ust-dl, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-ust-events -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-ust-events, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/getcpu-override -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/getcpu-override, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-ust-nevents-str -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-ust-nevents-str, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/bin/lttng-crash -> /usr/src/debug/lttng-tools/2.13.13/src/bin/lttng-crash, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/event-rule -> /usr/src/debug/lttng-tools/2.13.13/src/common/event-rule, directory renamed /usr/src/d ebug/lttng-tools/2.13.11/src/common/consumer -> /usr/src/debug/lttng-tools/2.13.13/src/common/consumer, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/multi-session -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/multi-session, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/live -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/live, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/testpoint -> /usr/src/debug/lttng-tools/2.13.13/src/common/testpoint, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/common/filter -> /usr/src/debug/lttng-tools/2.13.13/src/common/filter, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils/testapp/gen-kernel-test-events -> /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-kernel-test-events, directory renamed /usr/src/debug/lttng-tools/2.13.11/include/lttng -> /usr/src/debug/lttng-tools/2.13.13/include/lttng, directory renamed /usr/ src/debug/lttng-tools/2.13.11/src/common/string-utils -> /usr/src/debug/lttng-tools/2.13.13/src/common/string-utils, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/kernel -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/kernel, directory renamed /usr/src/debug/lttng-tools/2.13.11/src/bin/lttng-relayd -> /usr/src/debug/lttng-tools/2.13.13/src/bin/lttng-relayd, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/tools/trigger/name -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/tools/trigger/name, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/utils -> /usr/src/debug/lttng-tools/2.13.13/tests/utils, directory renamed /usr/src/debug/lttng-tools/2.13.11/tests/regression/ust/linking -> /usr/src/debug/lttng-tools/2.13.13/tests/regression/ust/linking, removed "/usr/src/debug/lttng-tools/2.13.11/src/common/log-level-rule.c /usr/src/debug/lttng-tools/2.13.11/src/common/lttng-elf.c /usr/src/debug/lttng-tools/2.13.11/src/common/ lttng-elf.h /usr/src/debug/lttng-tools/2.13.11/src/common/snapshot.c /usr/src/debug/lttng-tools/2.13.11/src/common/snapshot.h /usr/src/debug/lttng-tools/2.13.11/src/common/session-descriptor.c /usr/src/debug/lttng-tools/2.13.11/src/common/tracker.h /usr/src/debug/lttng-tools/2.13.11/src/common/trace-chunk.c /usr/src/debug/lttng-tools/2.13.11/src/common/dynamic-array.c /usr/src/debug/lttng-tools/2.13.11/src/common/tracker.c /usr/src/debug/lttng-tools/2.13.11/src/common/dynamic-array.h /usr/src/debug/lttng-tools/2.13.11/src/common/trace-chunk.h /usr/src/debug/lttng-tools/2.13.11/src/common/time.c /usr/src/debug/lttng-tools/2.13.11/src/common/time.h /usr/src/debug/lttng-tools/2.13.11/src/common/utils.h /usr/src/debug/lttng-tools/2.13.11/src/common/utils.c /usr/src/debug/lttng-tools/2.13.11/src/common/endpoint.c /usr/src/debug/lttng-tools/2.13.11/src/common/readwrite.h /usr/src/debug/lttng-tools/2.13.11/src/common/readwrite.c /usr/src/debug/lttng-tools/2.13.11/src/common/uuid.h /usr/src /debug/lttng-tools/2.13.11/src/common/uuid.c /usr/src/debug/lttng-tools/2.13.11/src/common/fs-handle-internal.h /usr/src/debug/lttng-tools/2.13.11/src/common/futex.c /usr/src/debug/lttng-tools/2.13.11/src/common/random.c /usr/src/debug/lttng-tools/2.13.11/src/common/futex.h /usr/src/debug/lttng-tools/2.13.11/src/common/random.h /usr/src/debug/lttng-tools/2.13.11/src/common/error-query.c /usr/src/debug/lttng-tools/2.13.11/src/common/fd-handle.h /usr/src/debug/lttng-tools/2.13.11/src/common/fs-handle.h /usr/src/debug/lttng-tools/2.13.11/src/common/fd-handle.c /usr/src/debug/lttng-tools/2.13.11/src/common/fs-handle.c /usr/src/debug/lttng-tools/2.13.11/src/common/notification.c /usr/src/debug/lttng-tools/2.13.11/src/common/pipe.c /usr/src/debug/lttng-tools/2.13.11/src/common/mi-lttng.c /usr/src/debug/lttng-tools/2.13.11/src/common/daemonize.c /usr/src/debug/lttng-tools/2.13.11/src/common/channel.c /usr/src/debug/lttng-tools/2.13.11/src/common/mi-lttng.h /usr/src/debug/lttng-tools/2.13.1 1/src/common/pipe.h /usr/src/debug/lttng-tools/2.13.11/src/common/daemonize.h /usr/src/debug/lttng-tools/2.13.11/src/common/userspace-probe.c /usr/src/debug/lttng-tools/2.13.11/src/common/uri.c /usr/src/debug/lttng-tools/2.13.11/src/common/credentials.c /usr/src/debug/lttng-tools/2.13.11/src/common/dynamic-buffer.c /usr/src/debug/lttng-tools/2.13.11/src/common/credentials.h /usr/src/debug/lttng-tools/2.13.11/src/common/kernel-probe.c /usr/src/debug/lttng-tools/2.13.11/src/common/dynamic-buffer.h /usr/src/debug/lttng-tools/2.13.11/src/common/uri.h /usr/src/debug/lttng-tools/2.13.11/src/common/event.c /usr/src/debug/lttng-tools/2.13.11/src/common/trace-chunk-registry.h /usr/src/debug/lttng-tools/2.13.11/src/common/shm.h /usr/src/debug/lttng-tools/2.13.11/src/common/shm.c /usr/src/debug/lttng-tools/2.13.11/src/common/unix.h /usr/src/debug/lttng-tools/2.13.11/src/common/unix.c /usr/src/debug/lttng-tools/2.13.11/src/common/domain.c /usr/src/debug/lttng-tools/2.13.11/src/common/waiter.c / usr/src/debug/lttng-tools/2.13.11/src/common/evaluation.c /usr/src/debug/lttng-tools/2.13.11/src/common/runas.c /usr/src/debug/lttng-tools/2.13.11/src/common/spawn-viewer.c /usr/src/debug/lttng-tools/2.13.11/src/common/waiter.h /usr/src/debug/lttng-tools/2.13.11/src/common/spawn-viewer.h /usr/src/debug/lttng-tools/2.13.11/src/common/runas.h /usr/src/debug/lttng-tools/2.13.11/src/common/context.h /usr/src/debug/lttng-tools/2.13.11/src/common/context.c /usr/src/debug/lttng-tools/2.13.11/src/common/lttng-kernel-old.h /usr/src/debug/lttng-tools/2.13.11/src/common/lttng-kernel.h /usr/src/debug/lttng-tools/2.13.11/src/common/path.c /usr/src/debug/lttng-tools/2.13.11/src/common/event-field-value.c /usr/src/debug/lttng-tools/2.13.11/src/common/path.h /usr/src/debug/lttng-tools/2.13.11/src/common/location.c /usr/src/debug/lttng-tools/2.13.11/src/common/defaults.c /usr/src/debug/lttng-tools/2.13.11/src/common/trigger.c /usr/src/debug/lttng-tools/2.13.11/src/common/payload-view.c /usr/src/debu g/lttng-tools/2.13.11/src/common/defaults.h /usr/src/debug/lttng-tools/2.13.11/src/common/payload-view.h /usr/src/debug/lttng-tools/2.13.11/src/common/index-allocator.h /usr/src/debug/lttng-tools/2.13.11/src/common/index-allocator.c /usr/src/debug/lttng-tools/2.13.11/src/common/thread.h /usr/src/debug/lttng-tools/2.13.11/src/common/filter.c /usr/src/debug/lttng-tools/2.13.11/src/common/filter.h /usr/src/debug/lttng-tools/2.13.11/src/common/thread.c /usr/src/debug/lttng-tools/2.13.11/src/common/payload.h /usr/src/debug/lttng-tools/2.13.11/src/common/payload.c /usr/src/debug/lttng-tools/2.13.11/src/common/buffer-view.c /usr/src/debug/lttng-tools/2.13.11/src/common/error.h /usr/src/debug/lttng-tools/2.13.11/src/common/buffer-view.h /usr/src/debug/lttng-tools/2.13.11/src/common/macros.h /usr/src/debug/lttng-tools/2.13.11/src/common/error.c", added "/usr/src/debug/lttng-tools/2.13.13/src/common/log-level-rule.c /usr/src/debug/lttng-tools/2.13.13/src/common/lttng-elf.c /usr/src/debug/lttn g-tools/2.13.13/src/common/lttng-elf.h /usr/src/debug/lttng-tools/2.13.13/src/common/snapshot.c /usr/src/debug/lttng-tools/2.13.13/src/common/snapshot.h /usr/src/debug/lttng-tools/2.13.13/src/common/session-descriptor.c /usr/src/debug/lttng-tools/2.13.13/src/common/lockfile.h /usr/src/debug/lttng-tools/2.13.13/src/common/lockfile.c /usr/src/debug/lttng-tools/2.13.13/src/common/tracker.h /usr/src/debug/lttng-tools/2.13.13/src/common/trace-chunk.c /usr/src/debug/lttng-tools/2.13.13/src/common/dynamic-array.c /usr/src/debug/lttng-tools/2.13.13/src/common/tracker.c /usr/src/debug/lttng-tools/2.13.13/src/common/trace-chunk.h /usr/src/debug/lttng-tools/2.13.13/src/common/dynamic-array.h /usr/src/debug/lttng-tools/2.13.13/src/common/time.c /usr/src/debug/lttng-tools/2.13.13/src/common/time.h /usr/src/debug/lttng-tools/2.13.13/src/common/utils.h /usr/src/debug/lttng-tools/2.13.13/src/common/utils.c /usr/src/debug/lttng-tools/2.13.13/src/common/endpoint.c /usr/src/debug/lttng-tools/2.13.13/s rc/common/readwrite.h /usr/src/debug/lttng-tools/2.13.13/src/common/readwrite.c /usr/src/debug/lttng-tools/2.13.13/src/common/uuid.h /usr/src/debug/lttng-tools/2.13.13/src/common/uuid.c /usr/src/debug/lttng-tools/2.13.13/src/common/fs-handle-internal.h /usr/src/debug/lttng-tools/2.13.13/src/common/futex.c /usr/src/debug/lttng-tools/2.13.13/src/common/random.c /usr/src/debug/lttng-tools/2.13.13/src/common/futex.h /usr/src/debug/lttng-tools/2.13.13/src/common/random.h /usr/src/debug/lttng-tools/2.13.13/src/common/error-query.c /usr/src/debug/lttng-tools/2.13.13/src/common/fd-handle.h /usr/src/debug/lttng-tools/2.13.13/src/common/fs-handle.h /usr/src/debug/lttng-tools/2.13.13/src/common/fd-handle.c /usr/src/debug/lttng-tools/2.13.13/src/common/fs-handle.c /usr/src/debug/lttng-tools/2.13.13/src/common/notification.c /usr/src/debug/lttng-tools/2.13.13/src/common/pipe.c /usr/src/debug/lttng-tools/2.13.13/src/common/mi-lttng.c /usr/src/debug/lttng-tools/2.13.13/src/common/daemonize.c /usr/ src/debug/lttng-tools/2.13.13/src/common/channel.c /usr/src/debug/lttng-tools/2.13.13/src/common/mi-lttng.h /usr/src/debug/lttng-tools/2.13.13/src/common/pipe.h /usr/src/debug/lttng-tools/2.13.13/src/common/daemonize.h /usr/src/debug/lttng-tools/2.13.13/src/common/userspace-probe.c /usr/src/debug/lttng-tools/2.13.13/src/common/uri.c /usr/src/debug/lttng-tools/2.13.13/src/common/credentials.c /usr/src/debug/lttng-tools/2.13.13/src/common/dynamic-buffer.c /usr/src/debug/lttng-tools/2.13.13/src/common/credentials.h /usr/src/debug/lttng-tools/2.13.13/src/common/kernel-probe.c /usr/src/debug/lttng-tools/2.13.13/src/common/dynamic-buffer.h /usr/src/debug/lttng-tools/2.13.13/src/common/uri.h /usr/src/debug/lttng-tools/2.13.13/src/common/event.c /usr/src/debug/lttng-tools/2.13.13/src/common/trace-chunk-registry.h /usr/src/debug/lttng-tools/2.13.13/src/common/shm.h /usr/src/debug/lttng-tools/2.13.13/src/common/shm.c /usr/src/debug/lttng-tools/2.13.13/src/common/unix.h /usr/src/debug/lttng-to ols/2.13.13/src/common/unix.c /usr/src/debug/lttng-tools/2.13.13/src/common/domain.c /usr/src/debug/lttng-tools/2.13.13/src/common/waiter.c /usr/src/debug/lttng-tools/2.13.13/src/common/evaluation.c /usr/src/debug/lttng-tools/2.13.13/src/common/runas.c /usr/src/debug/lttng-tools/2.13.13/src/common/spawn-viewer.c /usr/src/debug/lttng-tools/2.13.13/src/common/waiter.h /usr/src/debug/lttng-tools/2.13.13/src/common/spawn-viewer.h /usr/src/debug/lttng-tools/2.13.13/src/common/runas.h /usr/src/debug/lttng-tools/2.13.13/src/common/context.h /usr/src/debug/lttng-tools/2.13.13/src/common/context.c /usr/src/debug/lttng-tools/2.13.13/src/common/lttng-kernel-old.h /usr/src/debug/lttng-tools/2.13.13/src/common/lttng-kernel.h /usr/src/debug/lttng-tools/2.13.13/src/common/path.c /usr/src/debug/lttng-tools/2.13.13/tests/utils/testapp/gen-data-pending/main.cpp /usr/src/debug/lttng-tools/2.13.13/src/common/event-field-value.c /usr/src/debug/lttng-tools/2.13.13/src/common/path.h /usr/src/debug/lttng-t ools/2.13.13/src/common/location.c /usr/src/debug/lttng-tools/2.13.13/src/common/defaults.c /usr/src/debug/lttng-tools/2.13.13/src/common/trigger.c /usr/src/debug/lttng-tools/2.13.13/src/common/payload-view.c /usr/src/debug/lttng-tools/2.13.13/src/common/defaults.h /usr/src/debug/lttng-tools/2.13.13/src/common/payload-view.h /usr/src/debug/lttng-tools/2.13.13/src/common/index-allocator.h /usr/src/debug/lttng-tools/2.13.13/src/common/index-allocator.c /usr/src/debug/lttng-tools/2.13.13/src/common/thread.h /usr/src/debug/lttng-tools/2.13.13/src/common/filter.c /usr/src/debug/lttng-tools/2.13.13/src/common/filter.h /usr/src/debug/lttng-tools/2.13.13/src/common/thread.c /usr/src/debug/lttng-tools/2.13.13/src/common/payload.h /usr/src/debug/lttng-tools/2.13.13/src/common/payload.c /usr/src/debug/lttng-tools/2.13.13/src/common/buffer-view.c /usr/src/debug/lttng-tools/2.13.13/src/common/error.h /usr/src/debug/lttng-tools/2.13.13/src/common/buffer-view.h /usr/src/debug/lttng-tools/2.13.13/s rc/common/macros.h /usr/src/debug/lttng-tools/2.13.13/src/common/error.c" packages/core2-64-poky-linux/lttng-tools/lttng-tools-src: PKGSIZE changed from 6109798 to 6119783 (+0%) packages/core2-64-poky-linux/lttng-tools/lttng-tools-src: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools-staticdev: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools-staticdev: PKGV changed from 2.13.11 [default] to 2.13.13 [default] packages/core2-64-poky-linux/lttng-tools/lttng-tools: PV changed from "2.13.11" to "2.13.13" packages/core2-64-poky-linux/lttng-tools/lttng-tools: PKGSIZE changed from 5166273 to 5158081 (-0%) packages/core2-64-poky-linux/lttng-tools/lttng-tools: PKGV changed from 2.13.11 [default] to 2.13.13 [default]
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#198391): https://lists.openembedded.org/g/openembedded-core/message/198391 Mute This Topic: https://lists.openembedded.org/mt/105552187/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
