Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pstore/Kconfig: Select ZLIB_DEFLATE and ZLIB_INFLATE when PSTORE is selected

Pstore will make use of deflate and inflate algorithm to compress and decompress
the data. So when Pstore is enabled select zlib_deflate and zlib_inflate.

Signed-off-by: Aruna Balakrishnaiah <aruna@linux.vnet.ibm.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by

Aruna Balakrishnaiah and committed by
Tony Luck
90ce4ca6 b3b515bb

+2
+2
fs/pstore/Kconfig
··· 1 1 config PSTORE 2 2 bool "Persistent store support" 3 3 default n 4 + select ZLIB_DEFLATE 5 + select ZLIB_INFLATE 4 6 help 5 7 This option enables generic access to platform level 6 8 persistent storage via "pstore" filesystem that can