summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace
diff options
context:
space:
mode:
authorRandy MacLeod <Randy.MacLeod@windriver.com>2023-10-31 17:54:23 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-05 11:28:31 +0000
commitc395a9f9f715f908415d215bfc131bb5eba04ab8 (patch)
treee4176054317d20f544665bad557247a87c5e2dd5 /meta/recipes-devtools/strace/strace
parentf59eece1a09128687806cac5b6c9797d567e4705 (diff)
downloadpoky-c395a9f9f715f908415d215bfc131bb5eba04ab8.tar.gz
strace: upgrade 6.5 -> 6.6
Update the COPYING checksum; only the copyright date changed. Noteworthy changes in strace 6.6 (2023-10-31) ============================================= * Improvements * Implemented --kill-on-exit option that instructs the tracer to set PTRACE_O_EXITKILL option to all tracee processes and not to detach them on cleanup so they will not be left running after the tracer exit. * Implemented automatic activation of --kill-on-exit option when --seccomp-bpf is enabled and -p/--attach option is not used. * Implemented decoding of map_shadow_stack syscall. * Implemented decoding of FSCONFIG_CMD_CREATE_EXCL fsconfig command. * Implemented decoding of IFLA_BRPORT_BACKUP_NHID netlink attribute. * Implemented decoding of SECCOMP_IOCTL_NOTIF_SET_FLAGS ioctl. * Implemented decoding of UFFDIO_CONTINUE, UFFDIO_POISON, and UFFDIO_WRITEPROTECT ioctls. * Updated lists of ARCH_*, BPF_*, DEVCONF_*, IORING_*, KEXEC_*, MAP_*, NT_*, PTRACE_*, QFMT_*, SEGV_*, UFFD_*, V4L2_*, and XDP_* constants. * Updated lists of ioctl commands from Linux 6.6. ptest-runner results on qemux86-64/kvm with qemuparms="-m 1024 -smp 4": ============================================================================ Testsuite summary for strace 6.6 ============================================================================ ============================================================================ (From OE-Core rev: 12ae00d4cc4ed78643cafce97cd02e396b3348f4) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace')
-rw-r--r--meta/recipes-devtools/strace/strace/tests-fix-so_peerpidfd-test.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-devtools/strace/strace/tests-fix-so_peerpidfd-test.patch b/meta/recipes-devtools/strace/strace/tests-fix-so_peerpidfd-test.patch
deleted file mode 100644
index 62f73d3643..0000000000
--- a/meta/recipes-devtools/strace/strace/tests-fix-so_peerpidfd-test.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 44cf51a38cce1e90bb6c22208fa45f95cdcc8f5d Mon Sep 17 00:00:00 2001
2From: "Dmitry V. Levin" <ldv@strace.io>
3Date: Sat, 14 Oct 2023 08:00:00 +0000
4Subject: [PATCH] tests: fix so_peerpidfd test
5
6* tests/so_peerpidfd.c (print_pidfd): Fix expected output.
7
8Fixes: v6.5~38 "net: implement decoding of SO_PEERPIDFD socket option"
9Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2243631
10
11Upstream-Status: Backport [https://github.com/strace/strace/commit/44cf51a38cce1e90bb6c22208fa45f95cdcc8f5d]
12Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
13---
14 tests/so_peerpidfd.c | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/tests/so_peerpidfd.c b/tests/so_peerpidfd.c
18index 33988edec..dfad1c434 100644
19--- a/tests/so_peerpidfd.c
20+++ b/tests/so_peerpidfd.c
21@@ -37,7 +37,7 @@ print_pidfd(int *p)
22 if (rc < 0)
23 printf("%p", p);
24 else
25- printf("%d%s", *p, pidfd_suffix);
26+ printf("[%d%s]", *p, pidfd_suffix);
27 }
28
29 static void
30--
312.34.1
32