[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7c979cebc0f93dc692b734c12665a6824d219c20.1349621096.git.markus@oberhumer.com>
Date: Sun, 7 Oct 2012 17:08:33 +0200
From: "Markus F.X.J. Oberhumer" <markus@...rhumer.com>
To: linux-kernel@...r.kernel.org
Cc: "Markus F.X.J. Oberhumer" <markus@...rhumer.com>,
Andi Kleen <andi@...stfloor.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Johannes Stezenbach <js@...21.net>,
richard -rw- weinberger <richard.weinberger@...il.com>
Subject: [PATCH 1/3] lib/lzo: Rename lzo1x_decompress.c to
lzo1x_decompress_safe.c
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 <markus@...rhumer.com>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists