]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/f2fs/Kconfig
Merge tag 'kgdb-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux
[linux.git] / fs / f2fs / Kconfig
index 599fb9194c6ae2d0b08209fff9ef44a367cf5b84..f0faada30f30af12edca4434cca85149c911f91a 100644 (file)
@@ -22,7 +22,7 @@ config F2FS_FS
 
 config F2FS_STAT_FS
        bool "F2FS Status Information"
-       depends on F2FS_FS && DEBUG_FS
+       depends on F2FS_FS
        default y
        help
          /sys/kernel/debug/f2fs/ contains information about all the partitions
@@ -93,3 +93,28 @@ config F2FS_FAULT_INJECTION
          Test F2FS to inject faults such as ENOMEM, ENOSPC, and so on.
 
          If unsure, say N.
+
+config F2FS_FS_COMPRESSION
+       bool "F2FS compression feature"
+       depends on F2FS_FS
+       help
+         Enable filesystem-level compression on f2fs regular files,
+         multiple back-end compression algorithms are supported.
+
+config F2FS_FS_LZO
+       bool "LZO compression support"
+       depends on F2FS_FS_COMPRESSION
+       select LZO_COMPRESS
+       select LZO_DECOMPRESS
+       default y
+       help
+         Support LZO compress algorithm, if unsure, say Y.
+
+config F2FS_FS_LZ4
+       bool "LZ4 compression support"
+       depends on F2FS_FS_COMPRESSION
+       select LZ4_COMPRESS
+       select LZ4_DECOMPRESS
+       default y
+       help
+         Support LZ4 compress algorithm, if unsure, say Y.