Re: [tip: objtool/urgent] objtool: Fix seg fault with Clang non-section symbols
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
- Subject: Re: [tip: objtool/urgent] objtool: Fix seg fault with Clang non-section symbols
- From: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
- Date: Sat, 13 Feb 2021 15:09:02 +0100
- Cc: Josh Poimboeuf <jpoimboe@xxxxxxxxxx>, Nick Desaulniers <ndesaulniers@xxxxxxxxxx>, Xi Ruoyao <xry111@xxxxxxxxxxxxxxxx>, "# 3.4.x" <stable@xxxxxxxxxxxxxxx>, Arnd Bergmann <arnd@xxxxxxxxxx>, "Peter Zijlstra (Intel)" <peterz@xxxxxxxxxxxxx>, Miroslav Benes <mbenes@xxxxxxx>, "maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT)" <x86@xxxxxxxxxx>, LKML <linux-kernel@xxxxxxxxxxxxxxx>, linux-tip-commits@xxxxxxxxxxxxxxx
- In-reply-to: <20210212124547.1dcf067e@gandalf.local.home>
- References: <ba6b6c0f0dd5acbba66e403955a967d9fdd1726a.1607983452.git.jpoimboe@redhat.com> <160812658044.3364.4188208281079332844.tip-bot2@tip-bot2> <dded80b60d9136ea90987516c28f93273385651f.camel@mengyan1223.wang> <YCU3Vdoqd+EI+zpv@kroah.com> <CAKwvOd=GHdkvAU3u6ROSgtGqC_wrkXo8siL1nZHE-qsqSx0gsw@mail.gmail.com> <YCafKVSTX9MxDBMd@kroah.com> <20210212170750.y7xtitigfqzpchqd@treble> <20210212124547.1dcf067e@gandalf.local.home>
On Fri, Feb 12, 2021 at 12:45:47PM -0500, Steven Rostedt wrote:
> On Fri, 12 Feb 2021 11:07:50 -0600
> Josh Poimboeuf <jpoimboe@xxxxxxxxxx> wrote:
>
>
> > > Any ideas are appreciated.
> >
> > [ Adding Steve Rostedt ]
> >
> > This error message comes from recordmcount. It probably can't handle
> > the missing STT_SECTION symbols which are getting stripped by the new
> > binutils. (Objtool also had trouble with that.)
> >
> > No idea why you only see this on 4.4 though.
> >
>
> Just taking a quick look, but would something like this work?
>
> I created this against v4.4.257.
>
> -- Steve
>
> diff --git a/scripts/recordmcount.h b/scripts/recordmcount.h
> index 04151ede8043..698404f092d0 100644
> --- a/scripts/recordmcount.h
> +++ b/scripts/recordmcount.h
> @@ -437,6 +437,8 @@ static unsigned find_secsym_ndx(unsigned const txtndx,
> if (w2(ehdr->e_machine) == EM_ARM
> && ELF_ST_TYPE(symp->st_info) == STT_FUNC)
> continue;
> + if (ELF_ST_TYPE(symp->st_info) == STT_SECTION)
> + continue;
>
> *recvalp = _w(symp->st_value);
> return symp - sym0;
>
Thanks for the patch, but no, still fails with:
Cannot find symbol for section 8: .text.unlikely.
kernel/kexec_file.o: failed
make[1]: *** [scripts/Makefile.build:277: kernel/kexec_file.o] Error 1
make[1]: *** Deleting file 'kernel/kexec_file.o'
[Index of Archives]
[Linux Stable Commits]
[Linux Stable Kernel]
[Linux Kernel]
[Linux USB Devel]
[Linux Video &Media]
[Linux Audio Users]
[Yosemite News]
[Linux SCSI]