libcrc32c: Move implementation to crypto crc32c
authorHerbert Xu <herbert@gondor.apana.org.au>
Fri, 7 Nov 2008 07:11:47 +0000 (15:11 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 25 Dec 2008 00:01:40 +0000 (11:01 +1100)
commit69c35efcf1576ab5f00cba83e8ca740923afb6c9
treefaf3bba45be45d530e3355c46d6bf2cd99d0e83c
parent8e3ee85e68c5d5c95451afd3e8f0997eec6f99e5
libcrc32c: Move implementation to crypto crc32c

This patch swaps the role of libcrc32c and crc32c.  Previously
the implementation was in libcrc32c and crc32c was a wrapper.
Now the code is in crc32c and libcrc32c just calls the crypto
layer.

The reason for the change is to tap into the algorithm selection
capability of the crypto API so that optimised implementations
such as the one utilising Intel's CRC32C instruction can be
used where available.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/Kconfig
crypto/crc32c.c
include/linux/crc32c.h
lib/Kconfig
lib/libcrc32c.c