Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758604Ab2JKLlz (ORCPT ); Thu, 11 Oct 2012 07:41:55 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:49951 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758422Ab2JKLlw (ORCPT ); Thu, 11 Oct 2012 07:41:52 -0400 From: Arnd Bergmann To: "Markus F.X.J. Oberhumer" Subject: Re: [PATCH 0/3] Update LZO compression Date: Thu, 11 Oct 2012 11:41:27 +0000 User-Agent: KMail/1.12.2 (Linux/3.5.0; KDE/4.3.2; x86_64; ; ) Cc: Stephen Rothwell , Andrew Morton , linux-kernel@vger.kernel.org, Andi Kleen , Johannes Stezenbach , "richard -rw- weinberger" , linux-btrfs@vger.kernel.org, linux-crypto@vger.kernel.org, Artem Bityutskiy , Adrian Hunter , David Woodhouse , Phillip Lougher , Dan Magenheimer , Dan Carpenter References: <20121009122614.569b9535.akpm@linux-foundation.org> <50748113.80408@oberhumer.com> In-Reply-To: <50748113.80408@oberhumer.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201210111141.27270.arnd@arndb.de> X-Provags-ID: V02:K0:8GKu/vARVrq6R81RPHg/WH9jJn7nFLN2fTDb3fIYgyc r02WO4djIyj4+pZ5BAUjQqoko3opqX0VMpFcP9A0guaNeuvpcw pfCV8Gzd9fDnYG5TrG12gVPyGyeVXfmAaTdNMLsYBSBAOa9CO3 qV+b/1Fcp4npDDqnN/CgL4bv11C4JFwsP0B/lxNTFhiqosZ9/q Re4/6Mm1rlMCrLP7RHa9lWMeXd50IlLk95EVv4oC+hlCkRDwhI RUCoSUgpzLHxpBUbD4cZOyDIxY/GhabyLjxy2iQ7GXxlA/eMj5 G9ge52DKfO1jBSegEd5mdSZjvLaqItbckH4hmdH1ZqvkwbWRBy m+9udYt6Jxj+WeOYW44o= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1917 Lines: 47 On Tuesday 09 October 2012, Markus F.X.J. Oberhumer wrote: > > > > : This commit updates the kernel LZO code to the current upsteam version > > : which features a significant speed improvement - benchmarking the Calgary > > : and Silesia test corpora typically shows a doubled performance in > > : both compression and decompression on modern i386/x86_64/powerpc machines. > > > > There are significant clients of the LZO library - crypto, btrfs, > > jffs2, ubifs, squashfs and zcache. So let's give all those people a cc > > and ask that they test the LZO changes once they land in linux-next. > > For correctness and performance, please. > > The core compression and decompression code has been thoroughly tested, so I > do not expect major problems. > > Good testing after the merge and feedback about build or performance issues > (and improvements!) is highly appreciated. The addition of the lzo tree to linux-next caused this problem for ARM imx_v6_v7_defconfig: In file included from /home/arnd/linux-arm/arch/arm/boot/compressed/decompress.c:40:0: /home/arnd/linux-arm/arch/arm/boot/compressed/../../../../lib/decompress_unlzo.c:34:34: fatal error: lzo/lzo1x_decompress.c: No such file or directory Since the file was renamed, anything including it needs to be updated to the new file name. Signed-off-by: Arnd Bergmann diff --git a/lib/decompress_unlzo.c b/lib/decompress_unlzo.c index 4531294..960183d 100644 --- a/lib/decompress_unlzo.c +++ b/lib/decompress_unlzo.c @@ -31,7 +31,7 @@ */ #ifdef STATIC -#include "lzo/lzo1x_decompress.c" +#include "lzo/lzo1x_decompress_safe.c" #else #include #endif -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/