diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2013-09-06 22:53:35 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-09-06 22:53:35 -0400 |
commit | eeca9fad52fc4bfdf42c38bfcf383e932eb3e9d6 (patch) | |
tree | cc51c880459d41c0e8d7576405bef4c987bc7aa0 /lib/Kconfig | |
parent | ff6f83fc9d44db09997937c3475d525a6866fbb4 (diff) | |
parent | b48a97be8e6c2afdba2f3b61fd88c3c7743fbd73 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux
Merge upstream tree in order to reinstate crct10dif.
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index f1ed53c3aa44..71d9f81f6eed 100644 --- a/lib/Kconfig +++ b/lib/Kconfig | |||
@@ -66,8 +66,6 @@ config CRC16 | |||
66 | 66 | ||
67 | config CRC_T10DIF | 67 | config CRC_T10DIF |
68 | tristate "CRC calculation for the T10 Data Integrity Field" | 68 | tristate "CRC calculation for the T10 Data Integrity Field" |
69 | select CRYPTO | ||
70 | select CRYPTO_CRCT10DIF | ||
71 | help | 69 | help |
72 | This option is only needed if a module that's not in the | 70 | This option is only needed if a module that's not in the |
73 | kernel tree needs to calculate CRC checks for use with the | 71 | kernel tree needs to calculate CRC checks for use with the |
@@ -194,6 +192,15 @@ config LZO_COMPRESS | |||
194 | config LZO_DECOMPRESS | 192 | config LZO_DECOMPRESS |
195 | tristate | 193 | tristate |
196 | 194 | ||
195 | config LZ4_COMPRESS | ||
196 | tristate | ||
197 | |||
198 | config LZ4HC_COMPRESS | ||
199 | tristate | ||
200 | |||
201 | config LZ4_DECOMPRESS | ||
202 | tristate | ||
203 | |||
197 | source "lib/xz/Kconfig" | 204 | source "lib/xz/Kconfig" |
198 | 205 | ||
199 | # | 206 | # |
@@ -218,6 +225,10 @@ config DECOMPRESS_LZO | |||
218 | select LZO_DECOMPRESS | 225 | select LZO_DECOMPRESS |
219 | tristate | 226 | tristate |
220 | 227 | ||
228 | config DECOMPRESS_LZ4 | ||
229 | select LZ4_DECOMPRESS | ||
230 | tristate | ||
231 | |||
221 | # | 232 | # |
222 | # Generic allocator support is selected if needed | 233 | # Generic allocator support is selected if needed |
223 | # | 234 | # |