From: Lasse Collin <lasse.collin@tukaani.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-embedded@vger.kernel.org,
"H. Peter Anvin" <hpa@zytor.com>, Alain Knaff <alain@knaff.lu>,
Albin Tonnerre <albin.tonnerre@free-electrons.com>,
Phillip Lougher <phillip@lougher.demon.co.uk>
Subject: Re: [PATCH RFC 1/3] Decompressors: Add XZ decompressor module
Date: Thu, 25 Nov 2010 16:34:03 +0200 [thread overview]
Message-ID: <201011251634.04065.lasse.collin@tukaani.org> (raw)
In-Reply-To: <20101124142549.c1b9ad14.akpm@linux-foundation.org>
On 2010-11-25 Andrew Morton wrote:
> On Wed, 24 Nov 2010 22:51:52 +0200
> Lasse Collin <lasse.collin@tukaani.org> wrote:
> > This patch: Add the main decompression code (xz_dec), testing
> > module (xz_dec_test), wrapper script (xz_wrap.sh) for the xz
> > command line tool, and documentation. The xz_dec module is
> > enough to have a usable XZ decompressor e.g. for Squashfs.
>
> I'm not seeing any documentation which tells me how to create,
> install and execute xs-compressed kernels. There are new makefile
> targets?
The last paragraph under "XZ related components in the kernel" in
Documentation/xz.txt mentions xzkern and xzmisc commands available for
makefiles. They are defined in scripts/Makefile.lib and have some
comments as documentation there too.
The Kconfig options to enable XZ-compressed kernel are added in the
second patch. There is already an option to select the kernel
compression method so I only added XZ to that list. I assume that people
will find this option just like they have been able to find the other
compression methods.
> > +#define bcj_x86_test_msbyte(b) ((b) == 0x00 || (b) == 0xFF)
>
> This should be written in C. It looks nicer, and so
> bcj_x86_test_msbyte(*p++) won't explode.
Thanks. It's fixed in XZ Embedded git repository now:
git clone http://git.tukaani.org/xz-embedded.git
(clone only, no WWW for now)
I will post updated patches when needed.
> > +static noinline_for_stack size_t bcj_x86(
>
> hm, but it uses little stack space.
I wrote that code 19 months ago and now it looks odd to me too. I
remember that my idea was to minimize stack usage in this call stack:
xz_dec_run() -> xz_dec_bcj_run() -> xz_dec_lzma2_run() -> ...
I wanted to prevent the BCJ filters from being inlined into
xz_dec_bcj_run() because inlining would have increased the maximum
stack usage by 100-150 bytes.
The BCJ filters are called via bcj_apply() which is called in two places
from xz_dec_bcj_run(). Since there are two calls to bcj_apply(), GCC
won't inline it. It will only inline the BCJ filters into bcj_apply()
and that's OK. So noinline_for_stack does nothing good here. Maybe my
early version had only one call to bcj_apply() or something like that.
Anyway, I removed noinline_for_stacks. I tested it also when only
one BCJ filter is enabled and with a few different GCC versions.
> > +static noinline_for_stack size_t bcj_x86(
> > + struct xz_dec_bcj *s, uint8_t *buf, size_t size)
>
> The preferred style is
>
> static noinline_for_stack size_t bcj_x86(struct xz_dec_bcj *s, uint8_t *buf,
> size_t size)
>
> or
>
> static noinline_for_stack size_t
> bcj_x86(struct xz_dec_bcj *s, uint8_t *buf, size_t size)
>
> (lots of dittoes)
Fixed.
--
Lasse Collin | IRC: Larhzu @ IRCnet & Freenode
prev parent reply other threads:[~2010-11-25 14:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-24 20:51 Lasse Collin
2010-11-24 22:25 ` Andrew Morton
2010-11-24 22:50 ` H. Peter Anvin
2010-11-24 22:51 ` H. Peter Anvin
2010-11-25 14:34 ` Lasse Collin [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=201011251634.04065.lasse.collin@tukaani.org \
--to=lasse.collin@tukaani.org \
--cc=akpm@linux-foundation.org \
--cc=alain@knaff.lu \
--cc=albin.tonnerre@free-electrons.com \
--cc=hpa@zytor.com \
--cc=linux-embedded@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=phillip@lougher.demon.co.uk \
/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
all inboxes | Powered by JetHome®