[PATCH net-next v2] page_pool: fix build on powerpc with GCC 14

Mina Almasry almasrymina at google.com
Sat Sep 14 07:38:45 AEST 2024


On Fri, Sep 13, 2024 at 2:33 PM Mina Almasry <almasrymina at google.com> wrote:
>
> Building net-next with powerpc with GCC 14 compiler results in this
> build error:
>
> /home/sfr/next/tmp/ccuSzwiR.s: Assembler messages:
> /home/sfr/next/tmp/ccuSzwiR.s:2579: Error: operand out of domain (39 is
> not a multiple of 4)
> make[5]: *** [/home/sfr/next/next/scripts/Makefile.build:229:
> net/core/page_pool.o] Error 1
>
> Root caused in this thread:
> https://lore.kernel.org/netdev/913e2fbd-d318-4c9b-aed2-4d333a1d5cf0@cs-soprasteria.com/
>
> We try to access offset 40 in the pointer returned by this function:
>
> static inline unsigned long _compound_head(const struct page *page)
> {
>         unsigned long head = READ_ONCE(page->compound_head);
>
>         if (unlikely(head & 1))
>                 return head - 1;
>         return (unsigned long)page_fixed_fake_head(page);
> }
>
> The GCC 14 (but not 11) compiler optimizes this by doing:
>
> ld page + 39
>
> Rather than:
>
> ld (page - 1) + 40
>
> And causing an unaligned load. Get around this by issuing a READ_ONCE as
> we convert the page to netmem.  That disables the compiler optimizing the
> load in this way.
>
> Cc: Simon Horman <horms at kernel.org>
> Cc: Stephen Rothwell <sfr at canb.auug.org.au>
> Cc: Jakub Kicinski <kuba at kernel.org>
> Cc: David Miller <davem at davemloft.net>
> Cc: Paolo Abeni <pabeni at redhat.com>
> Cc: Networking <netdev at vger.kernel.org>
> Cc: Linux Kernel Mailing List <linux-kernel at vger.kernel.org>
> Cc: Linux Next Mailing List <linux-next at vger.kernel.org>
> Cc: Arnd Bergmann <arnd at arndb.de>
> Cc: "linuxppc-dev at lists.ozlabs.org" <linuxppc-dev at lists.ozlabs.org>
> Cc: Matthew Wilcox <willy at infradead.org>
>
> Suggested-by: Jakub Kicinski <kuba at kernel.org>
> Signed-off-by: Mina Almasry <almasrymina at google.com>
>

Gah, right after I hit send I realized I missed the 24hr rule.
Although I'm unsure about the urgency of build fixes. Sorry about
that.

-- 
Thanks,
Mina


More information about the Linuxppc-dev mailing list