Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753324Ab2JGPIp (ORCPT ); Sun, 7 Oct 2012 11:08:45 -0400 Received: from mail.servus.at ([193.170.194.20]:53308 "EHLO mail.servus.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751225Ab2JGPIh (ORCPT ); Sun, 7 Oct 2012 11:08:37 -0400 Date: Sun, 7 Oct 2012 17:08:33 +0200 From: "Markus F.X.J. Oberhumer" To: linux-kernel@vger.kernel.org Cc: "Markus F.X.J. Oberhumer" , Andi Kleen , Andrew Morton , Johannes Stezenbach , richard -rw- weinberger Subject: [PATCH 1/3] lib/lzo: Rename lzo1x_decompress.c to lzo1x_decompress_safe.c Message-ID: <7c979cebc0f93dc692b734c12665a6824d219c20.1349621096.git.markus@oberhumer.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-12-10) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1265 Lines: 34 Rename the source file to match the function name and thereby also make room for a possible future even slightly faster "non-safe" decompressor version. Signed-off-by: Markus F.X.J. Oberhumer --- lib/lzo/Makefile | 2 +- ...{lzo1x_decompress.c => lzo1x_decompress_safe.c} | 0 2 files changed, 1 insertions(+), 1 deletions(-) rename lib/lzo/{lzo1x_decompress.c => lzo1x_decompress_safe.c} (100%) diff --git a/lib/lzo/Makefile b/lib/lzo/Makefile index e764116..f0f7d7c 100644 --- a/lib/lzo/Makefile +++ b/lib/lzo/Makefile @@ -1,5 +1,5 @@ lzo_compress-objs := lzo1x_compress.o -lzo_decompress-objs := lzo1x_decompress.o +lzo_decompress-objs := lzo1x_decompress_safe.o obj-$(CONFIG_LZO_COMPRESS) += lzo_compress.o obj-$(CONFIG_LZO_DECOMPRESS) += lzo_decompress.o diff --git a/lib/lzo/lzo1x_decompress.c b/lib/lzo/lzo1x_decompress_safe.c similarity index 100% rename from lib/lzo/lzo1x_decompress.c rename to lib/lzo/lzo1x_decompress_safe.c -- 1.7.1 -- 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/