LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] handle 512 byte aligned gzip headers
@ 2004-05-23 18:17 Olaf Hering
0 siblings, 0 replies; only message in thread
From: Olaf Hering @ 2004-05-23 18:17 UTC (permalink / raw)
To: Andrew Morton, viro; +Cc: linux-kernel
This one is from Al, maybe he sent it already. Some compressed initramfs
cpio archive cant be uncompressed with current kernels.
<viro> olh: what happens does happen when the end of final header is well-aligned
<viro> olh: cpio does pad the sucker otherwise and that's enough to mask the bug in do_skip()
<viro> olh: if the end of header is on a multiple of 512, as it is in your case, it _is_ the last thing gunzip shoves into window
<viro> olh: and there's nothing past it
<viro> olh: fix is trivial - in do_skip() replace <= with <
diff -purNX /tmp/kernel_exclude.txt linux-2.6.7-rc1.orig/init/initramfs.c linux-2.6.7-rc1/init/initramfs.c
--- linux-2.6.7-rc1.orig/init/initramfs.c 2004-05-10 02:31:59.000000000 +0000
+++ linux-2.6.7-rc1/init/initramfs.c 2004-05-23 17:44:45.000000000 +0000
@@ -207,7 +207,7 @@ static int __init do_header(void)
static int __init do_skip(void)
{
- if (this_header + count <= next_header) {
+ if (this_header + count < next_header) {
eat(count);
return 1;
} else {
--
USB is for mice, FireWire is for men!
sUse lINUX ag, nÜRNBERG
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-05-23 18:17 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-23 18:17 [PATCH] handle 512 byte aligned gzip headers Olaf Hering
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).