debuginfod in ALT linux Ex:Re: Will eu-addr2line support debuginfod?

2021-04-13 Thread Vitaly Chikunov
Hi,

On Tue, Dec 01, 2020 at 10:23:30AM -0500, Frank Ch. Eigler wrote:
> We could also entertain teaching debuginfod itself to compress on the
> fly.  It's just a more tricky use of the libmicrohttpd apis.

Btw, JFYI, we have in ALT Linux our own debuginfod implementation (two
scripts in ruby based on man debuginfod(8) protocol description) since 27
Nov 2020. Maybe it would be useful to know there is alternative
implementations too.

Thanks,



Re: [PATCH] ar: Always close newfd in do_oper_insert.

2021-04-13 Thread Mark Wielaard
On Sat, Apr 03, 2021 at 07:24:42PM +0200, Mark Wielaard wrote:
> newfd is normally created by mkstemp given the original fd exists.
> Otherwise it will created by open from arfname. In the second case
> newfd might not get closed. Preventd this by always trying to close
> it after errout.

Pushed.


Re: [PATCH] unstrip: Fix small leak in handle_output_dir_module.

2021-04-13 Thread Mark Wielaard
On Sat, Apr 03, 2021 at 07:38:07PM +0200, Mark Wielaard wrote:
> eu-unstrip might leak a string for each module found when using the -d
> option. Make sure to free the output_file name when we are done with the
> module.

Pushed.


Re: [PATCH] nm: Fix file descriptor leak on dwfl_begin failure.

2021-04-13 Thread Mark Wielaard
On Sat, Apr 03, 2021 at 07:54:41PM +0200, Mark Wielaard wrote:
> If dwfl_begin fails we won't use the dwfl_fd descriptor we just dupped.
> Make sure to close on dwfl_begin failure to avoid the leak.

Pushed.


Buildbot failure in Wildebeest Builder on whole buildset

2021-04-13 Thread buildbot
The Buildbot has detected a failed build on builder whole buildset while 
building elfutils.
Full details are available at:
https://builder.wildebeest.org/buildbot/#builders/3/builds/747

Buildbot URL: https://builder.wildebeest.org/buildbot/

Worker for this Build: fedora-x86_64

Build Reason: 
Blamelist: Mark Wielaard 

BUILD FAILED: failed test (failure)

Sincerely,
 -The Buildbot



Buildbot failure in Wildebeest Builder on whole buildset

2021-04-13 Thread buildbot
The Buildbot has detected a failed build on builder whole buildset while 
building elfutils.
Full details are available at:
https://builder.wildebeest.org/buildbot/#builders/11/builds/702

Buildbot URL: https://builder.wildebeest.org/buildbot/

Worker for this Build: fedora-ppc64le

Build Reason: 
Blamelist: Mark Wielaard 

BUILD FAILED: failed test (failure)

Sincerely,
 -The Buildbot



Re: debuginfod in ALT linux Ex:Re: Will eu-addr2line support debuginfod?

2021-04-13 Thread Frank Ch. Eigler via Elfutils-devel
Hi -

> On Tue, Dec 01, 2020 at 10:23:30AM -0500, Frank Ch. Eigler wrote:
> > We could also entertain teaching debuginfod itself to compress on the
> > fly.  It's just a more tricky use of the libmicrohttpd apis.
> 
> Btw, JFYI, we have in ALT Linux our own debuginfod implementation (two
> scripts in ruby based on man debuginfod(8) protocol description) since 27
> Nov 2020. Maybe it would be useful to know there is alternative
> implementations too.

Sure, would be glad to link to it, if you send us a URL to the docs/code
and/or server itself.


- FChE