Re: [RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-18 Thread Matt Helsley
On Fri, May 15, 2020 at 03:33:38PM -0500, Josh Poimboeuf wrote: > On Mon, May 11, 2020 at 10:35:11AM -0700, Matt Helsley wrote: > > Currently objtool only collects information about relocations with > > addends. In recordmcount, which we are about to merge into objtool, > > some supported architect

Re: [RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-15 Thread Josh Poimboeuf
On Mon, May 11, 2020 at 10:35:11AM -0700, Matt Helsley wrote: > Currently objtool only collects information about relocations with > addends. In recordmcount, which we are about to merge into objtool, > some supported architectures do not use rela relocations. Since > object files use one or the ot

Re: [RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-14 Thread Matt Helsley
On Wed, May 13, 2020 at 05:55:21PM +0100, Julien Thierry wrote: > > > On 5/13/20 5:26 PM, Matt Helsley wrote: > > On Tue, May 12, 2020 at 06:04:50PM +0100, Julien Thierry wrote: > > > Hi Matt, > > > > > > On 5/11/20 6:35 PM, Matt Helsley wrote: > > > > Currently objtool only collects information

Re: [RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-13 Thread Julien Thierry
On 5/13/20 5:26 PM, Matt Helsley wrote: On Tue, May 12, 2020 at 06:04:50PM +0100, Julien Thierry wrote: Hi Matt, On 5/11/20 6:35 PM, Matt Helsley wrote: Currently objtool only collects information about relocations with addends. In recordmcount, which we are about to merge into objtool, som

Re: [RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-13 Thread Matt Helsley
On Tue, May 12, 2020 at 06:04:50PM +0100, Julien Thierry wrote: > Hi Matt, > > On 5/11/20 6:35 PM, Matt Helsley wrote: > > Currently objtool only collects information about relocations with > > addends. In recordmcount, which we are about to merge into objtool, > > some supported architectures do

Re: [RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-12 Thread Julien Thierry
Hi Matt, On 5/11/20 6:35 PM, Matt Helsley wrote: Currently objtool only collects information about relocations with addends. In recordmcount, which we are about to merge into objtool, some supported architectures do not use rela relocations. Since object files use one or the other the list can b

[RFC][PATCH 3/5] objtool: Add support for relocations without addends

2020-05-11 Thread Matt Helsley
Currently objtool only collects information about relocations with addends. In recordmcount, which we are about to merge into objtool, some supported architectures do not use rela relocations. Since object files use one or the other the list can be reused. Signed-off-by: Matt Helsley --- tools/o