From: Sven Schmidt <4sschmid@informatik.uni-hamburg.de>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] lz4: fix KERNEL_LZ4 support
Date: Thu, 9 Feb 2017 12:09:45 +0100 [thread overview]
Message-ID: <20170209110945.GD3575@bierbaron.springfield.local> (raw)
In-Reply-To: <CAK8P3a1xDpkLJUm+NVZBjG+a6Mqr5pYuHLa9TxO=dwfSe-XCVA@mail.gmail.com>
Hello,
On Wed, Feb 08, 2017 at 11:06:34PM +0100, Arnd Bergmann wrote:
> On Wed, Feb 8, 2017 at 10:34 PM, Andrew Morton
> <akpm@linux-foundation.org> wrote:
> > On Wed, 8 Feb 2017 22:19:23 +0100 Arnd Bergmann <arnd@arndb.de> wrote:
> >
> >> The updated lz4 library removed the #ifdef guards around the various
> >> EXPORT_SYMBOL statements in the original kernel lz4 support, which broke
> >> CONFIG_KERNEL_LZ4 on x86:
> >>
> >> x86_64-linux-ld: -r and -pie may not be used together
> >> scripts/Makefile.build:308: recipe for target 'arch/x86/boot/compressed/misc.o' failed
> >>
> >> This uses a simpler way to do the same thing, by overriding the
> >> EXPORT_SYMBOL macro.
> >>
> >
> > hm, why does this CONFIG_KERNEL_LZ4 thing exist? What makes lz4
> > different from a billion other kernel modules?
>
> This symbol means the kernel (bzImage) itself is compressed with lz4, an we
> include the lz4_decompress.c code from arch/x86/boot/compressed/misc.c
>
> >> index 9bf918233749..a390f63bc475 100644
> >> --- a/lib/lz4/lz4_decompress.c
> >> +++ b/lib/lz4/lz4_decompress.c
> >> @@ -40,6 +40,11 @@
> >> #include <linux/kernel.h>
> >> #include <asm/unaligned.h>
> >>
> >> +#ifdef STATIC
> >> +#undef EXPORT_SYMBOL
> >> +#define EXPORT_SYMBOL(x)
> >> +#endif
> >> +
> >
> > That is a bit hacky, and somewhat "surprising". Why not do it the old
> > fashioned way?
>
> I was trying to keep the modification small, to simplify adding it the
> next time we update the lz4 library.
>
> > +
> > +#ifndef STATIC
> > +EXPORT_SYMBOL(LZ4_decompress_safe);
> > +EXPORT_SYMBOL(LZ4_decompress_safe_partial);
> > +EXPORT_SYMBOL(LZ4_decompress_fast);
> > +EXPORT_SYMBOL(LZ4_setStreamDecode);
> > +EXPORT_SYMBOL(LZ4_decompress_safe_continue);
> > +EXPORT_SYMBOL(LZ4_decompress_fast_continue);
> > +EXPORT_SYMBOL(LZ4_decompress_safe_usingDict);
> > EXPORT_SYMBOL(LZ4_decompress_fast_usingDict);
> > +#endif
> >
>
> This seems fine too, but then we probably want to keep the #ifndef around
> the MODULE_LICENSE()/MODULE_DESCRIPTION() macros as well,
> like we do in the other decompressors that we can use for boot image.
>
> lib/inflate.c also marks all functions as STATIC, but the other algorithms
> don't, so I'm not sure whether we should do the same here.
>
> Arnd
this looks reasonable for me.
Andrew: What is the usual way of dealing with such fixes? Since there's some feedback left, would I include it directly
in my patchseries?
Thanks,
Sven
prev parent reply other threads:[~2017-02-09 11:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-08 21:19 [PATCH] lz4: fix KERNEL_LZ4 support Arnd Bergmann
2017-02-08 21:34 ` Andrew Morton
2017-02-08 22:06 ` Arnd Bergmann
2017-02-09 11:09 ` Sven Schmidt [this message]
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=20170209110945.GD3575@bierbaron.springfield.local \
--to=4sschmid@informatik.uni-hamburg.de \
--cc=akpm@linux-foundation.org \
--cc=arnd@arndb.de \
--cc=linux-kernel@vger.kernel.org \
/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