[PATCH] tests: Limit the number of concurrent requests in debuginfod-federation

2023-04-14 Thread Mark Wielaard
It seems doing 100 parallel requests can crash some versions of libmicrohttpd so limit the number a little to the number of processors times 4, with a max of 64. * tests/run-debuginfod-federation-metrics.sh: Use nproc * 4, or 64 for seq curl requests. * tests/run-debuginfod-feder

☺ Buildbot (Sourceware): elfutils - build successful (master)

2023-04-14 Thread builder--- via Elfutils-devel
A restored build has been detected on builder elfutils-fedora-s390x while building elfutils. Full details are available at: https://builder.sourceware.org/buildbot/#builders/43/builds/182 Build state: build successful Revision: d8d1900ace46542e0fd4e0cec8af2324166109e4 Worker: fedora-s390x Bu

☠ Buildbot (Sourceware): elfutils - failed test (failure) (master)

2023-04-14 Thread builder--- via Elfutils-devel
A new failure has been detected on builder elfutils-fedora-s390x while building elfutils. Full details are available at: https://builder.sourceware.org/buildbot/#builders/43/builds/181 Build state: failed test (failure) Revision: 3daddabd5d619bc2316813a5676d9be34ad3f6ac Worker: fedora-s390x

Re: [PATCH] backends: Check results for NULL early in dwarf_peeled_die_type

2023-04-14 Thread Mark Wielaard
Hi, On Thu, 2023-04-06 at 17:04 +0200, Mark Wielaard wrote: > Calling dwarf_peeled_die_type with a NULL results pointer is an error, > check early that result is not NULL so dwarf_formref_die and > dwarf_peel_type won't try to set the NULL Dwarf_Die. > > * backends/libebl_CPU.h (dwarf_peele

Re: [PATCH] readelf: Handle NULL shdr in section_name

2023-04-14 Thread Mark Wielaard
Hi, On Thu, 2023-04-06 at 17:04 +0200, Mark Wielaard wrote: > In some error cases we want to show the section name but cannot > because the section header is corrupt or NULL. Make sure the > section_name always returns "???" in that case. > > * src/readelf.c (section_name): Check for shdr =