aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Konovalov <andrey.konovalov@linaro.org>2014-02-05 13:17:33 +0400
committerAndrey Konovalov <andrey.konovalov@linaro.org>2014-02-05 13:17:33 +0400
commita4af495cd80fec58162fe9be9c8bdbbac26fbd16 (patch)
treebf7c5075bae121981880c37a40bafb779ed76820
parent42a005408d652b8f3be1bf33e8517aa7256b3db2 (diff)
Make BTRFS_FS to select LIBCRC32C againtracking-llct-misc-fixes-llct-20140205.1
Commit 14a958e "Btrfs: fix btrfs boot when compiled as built-in" has removed "select LIBCRC32C", but the btrfs code outside the initialization function still uses crc32c(). Kernel with btrfs support fails to build if LIBCRC32C is not enabled. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
-rw-r--r--fs/btrfs/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/Kconfig b/fs/btrfs/Kconfig
index a66768ebc8d1..3def5122904a 100644
--- a/fs/btrfs/Kconfig
+++ b/fs/btrfs/Kconfig
@@ -1,5 +1,6 @@
config BTRFS_FS
tristate "Btrfs filesystem support"
+ select LIBCRC32C
select CRYPTO
select CRYPTO_CRC32C
select ZLIB_INFLATE