From: "Desnes Augusto Nunes do Rosário" <desnesn@linux.vnet.ibm.com>
To: Michael Ellerman <mpe@ellerman.id.au>,
linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org,
amodra@gmail.com
Cc: benh@kernel.crashing.org, paulus@samba.org,
ard.biesheuvel@linaro.org, rusty@rustcorp.com.au
Subject: Re: [PATCH] [powerpc-next] Fix powerpc64 alignment of .toc section in kernel modules
Date: Thu, 7 Dec 2017 11:24:01 -0200 [thread overview]
Message-ID: <dd057271-5ee1-26b5-c7a7-a594940c2920@linux.vnet.ibm.com> (raw)
In-Reply-To: <877etylo6i.fsf@concordia.ellerman.id.au>
Hello Michael,
On 12/07/2017 10:25 AM, Michael Ellerman wrote:
> Hi Desnes,
>
> Am I right that Alan largely wrote this patch?
>
> If so it should probably be From: him, so that he is the author in the
> git log.
Yes, Alan Modra is the main author and I am just committing it with
minor changes. Thus, the author change is necessary.
>
>
> Desnes Augusto Nunes do Rosario <desnesn@linux.vnet.ibm.com> writes:
>> diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
>> index 1381693..c472f5b 100644
>> --- a/arch/powerpc/Makefile
>> +++ b/arch/powerpc/Makefile
>> @@ -63,6 +63,7 @@ UTS_MACHINE := $(subst $(space),,$(machine-y))
>> ifdef CONFIG_PPC32
>> KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o
>> else
>> +KBUILD_LDFLAGS_MODULE += -T arch/powerpc/kernel/module.lds
>
> This needs to be:
>
> KBUILD_LDFLAGS_MODULE += -T $(srctree)/arch/powerpc/kernel/module.lds
>
> Otherwise building with O=../build fails with:
>
> ld: cannot open linker script file arch/powerpc/kernel/module.lds: No such file or directory
>
> I'll fix it up.
Indeed; this change is necessary to avoid any path errors.
>
>> diff --git a/arch/powerpc/kernel/module_64.c b/arch/powerpc/kernel/module_64.c
>> index 759104b..9b2c5c1 100644
>> --- a/arch/powerpc/kernel/module_64.c
>> +++ b/arch/powerpc/kernel/module_64.c
>> @@ -374,11 +377,13 @@ int module_frob_arch_sections(Elf64_Ehdr *hdr,
>> }
>>
>> /* r2 is the TOC pointer: it actually points 0x8000 into the TOC (this
>> - gives the value maximum span in an instruction which uses a signed
>> - offset) */
>> + * gives the value maximum span in an instruction which uses a signed
>> + * offset). Round down to a 256 byte boundary for the odd case where
>> + * we are setting up r2 without a .toc section.
>> + */
>> static inline unsigned long my_r2(const Elf64_Shdr *sechdrs, struct module *me)
>> {
>> - return sechdrs[me->arch.toc_section].sh_addr + 0x8000;
>> + return (sechdrs[me->arch.toc_section].sh_addr & -256) + 0x8000;
>
> I think it's more typical in the kernel to write -256 as ~0xff.
>
> Again I can fix it up.
Good to know!
>
> cheers
>
Lastly, will you fix it up or do you want me to send a second version
then? Whatever is best for you.
Thank you for the review.
--
Desnes Augusto Nunes do Rosário
------------------------------------------
Linux Developer - IBM / Brazil
M.Sc. in Electrical and Computer Engineering - UFRN
(11) 9595-30-900
desnesn@br.ibm.com
next prev parent reply other threads:[~2017-12-07 13:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-06 19:12 [PATCH] [powerpc-next] Fix powerpc64 alignment of .toc section in kernel modules Desnes Augusto Nunes do Rosario
2017-12-07 12:25 ` Michael Ellerman
2017-12-07 13:24 ` Desnes Augusto Nunes do Rosário [this message]
2017-12-08 11:25 ` Michael Ellerman
2017-12-12 11:39 ` Michael Ellerman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=dd057271-5ee1-26b5-c7a7-a594940c2920@linux.vnet.ibm.com \
--to=desnesn@linux.vnet.ibm.com \
--cc=amodra@gmail.com \
--cc=ard.biesheuvel@linaro.org \
--cc=benh@kernel.crashing.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=paulus@samba.org \
--cc=rusty@rustcorp.com.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).