PATCH PR27323 debuginfod concurrency++

2021-02-02 Thread Frank Ch. Eigler via Elfutils-devel
Hi - Some patches for the 0.183 release. This and PR27092 (low memory) will be important, maybe PR27277 coming too. commit d1608c045c46d2ab3d42ef668474e365c4b54e84 (HEAD -> master) Author: Frank Ch. Eigler Date: Tue Feb 2 16:49:19 2021 -0500 PR27323 debuginfod: improve query concurrency

[Bug debuginfod/27323] New: concurrency during grooming/scanning

2021-02-02 Thread fche at redhat dot com via Elfutils-devel
https://sourceware.org/bugzilla/show_bug.cgi?id=27323 Bug ID: 27323 Summary: concurrency during grooming/scanning Product: elfutils Version: unspecified Status: NEW Severity: normal Priority: P2 Component: debugi

Re: [PATCH 3/4] ar: Pull should_truncate_fname() into file scope

2021-02-02 Thread Timm Bäder via Elfutils-devel
On 29/01/2021 21:48, Mark Wielaard wrote: Hi Timm, On Fri, 2021-01-08 at 09:13 +0100, Timm Bäder via Elfutils-devel wrote: Get rid of a nested function this way. Skipping this one for now since I don't believe I understand this code. Could you explain what the code does what it does and why i

[PATCH] readelf: Remove show_op_index variable

2021-02-02 Thread Timm Bäder via Elfutils-devel
From: Timm Bäder advance_pc() uses show_op_index to save whether the current op_index is > 0 OR the new op_index is > 0. The new op index is calculated via new_op_index = (op_index + op_advance) % max_ops_per_instr; since all of the variables involved are unsigned, new_op_index >= op_index is

Re: Remove nested functions from readelf.c

2021-02-02 Thread Timm Bäder via Elfutils-devel
On 01/02/2021 15:21, Mark Wielaard wrote: On Fri, 2021-01-08 at 09:16 +0100, Timm Bäder via Elfutils-devel wrote: here another round for src/readelf.c. I think they are simple, but I'm not happy with the advance_pc() commit. I'm open for suggestions here but I can't come up with something better