Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1686343

Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure

From Dan Williams <dan.j.williams@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure
Date 2017-07-13 10:00 +0200
Message-ID <u2Hcu-2Mh-29@gated-at.bofh.it> (permalink)
References <u2jMR-4Kj-7@gated-at.bofh.it> <u2Ab0-6NY-15@gated-at.bofh.it> <u2Gq6-2vr-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Thu, Jul 13, 2017 at 12:04 AM, Geert Uytterhoeven
<geert@linux-m68k.org> wrote:
> Hi Dan,
>
> On Thu, Jul 13, 2017 at 2:29 AM, Dan Williams <dan.j.williams@intel.com> wrote:
>> On Tue, Jul 11, 2017 at 11:57 PM, Geert Uytterhoeven
>> <geert@linux-m68k.org> wrote:
>>> With gcc 4.1.2:
>>>
>>>     mm/memory.o: In function `create_huge_pmd':
>>>     memory.c:(.text+0x93e): undefined reference to `do_huge_pmd_anonymous_page'
>>>
>>> Converting transparent_hugepage_enabled() from a macro to a static
>>> inline function reduced the ability of the compiler to remove unused
>>> code.
>>>
>>> Fix this by marking create_huge_pmd() inline.
>>>
>>> Fixes: 16981d763501c0e0 ("mm: improve readability of transparent_hugepage_enabled()")
>>> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
>>> ---
>>> Interestingly, create_huge_pmd() is emitted in the assembler output, but
>>> never called.
>>> ---
>>>  mm/memory.c | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/mm/memory.c b/mm/memory.c
>>> index cbb57194687e393a..0e517be91a89e162 100644
>>> --- a/mm/memory.c
>>> +++ b/mm/memory.c
>>> @@ -3591,7 +3591,7 @@ static int do_numa_page(struct vm_fault *vmf)
>>>         return 0;
>>>  }
>>>
>>> -static int create_huge_pmd(struct vm_fault *vmf)
>>> +static inline int create_huge_pmd(struct vm_fault *vmf)
>>>  {
>>
>> This seems fragile, what if the kernel decides to ignore the inline
>> hint? If it must be inlined to avoid compile errors then it should be
>> __always_inline, right?
>
> With gcc-4, "inline" is already #define'd to
> #define inline inline           __attribute__((always_inline,unused)) notrace

Ah, ok.

Acked-by: Dan Williams <dan.j.williams@intel.com>

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Geert Uytterhoeven <geert@linux-m68k.org> - 2017-07-12 09:00 +0200
  Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Arnd Bergmann <arnd@arndb.de> - 2017-07-12 09:30 +0200
    Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Geert Uytterhoeven <geert@linux-m68k.org> - 2017-07-12 09:40 +0200
      Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Arnd Bergmann <arnd@arndb.de> - 2017-07-12 10:10 +0200
  Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Dan Williams <dan.j.williams@intel.com> - 2017-07-13 02:30 +0200
    Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Dan Williams <dan.j.williams@intel.com> - 2017-07-13 06:10 +0200
    Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Geert Uytterhoeven <geert@linux-m68k.org> - 2017-07-13 09:10 +0200
      Re: [PATCH] mm: Mark create_huge_pmd() inline to prevent build failure Dan Williams <dan.j.williams@intel.com> - 2017-07-13 10:00 +0200

csiph-web