config ZRAM
        tristate "Compressed RAM block device support"
        depends on BLOCK && SYSFS && ZSMALLOC && CRYPTO
-       select CRYPTO_LZO
+       depends on CRYPTO_LZO || CRYPTO_ZSTD || CRYPTO_LZ4 || CRYPTO_LZ4HC || CRYPTO_842
        help
          Creates virtual block devices called /dev/zramX (X = 0, 1, ...).
          Pages written to these disks are compressed and stored in memory
 
          See Documentation/admin-guide/blockdev/zram.rst for more information.
 
+choice
+       prompt "Default zram compressor"
+       default ZRAM_DEF_COMP_LZORLE
+       depends on ZRAM
+
+config ZRAM_DEF_COMP_LZORLE
+       bool "lzo-rle"
+       depends on CRYPTO_LZO
+
+config ZRAM_DEF_COMP_ZSTD
+       bool "zstd"
+       depends on CRYPTO_ZSTD
+
+config ZRAM_DEF_COMP_LZ4
+       bool "lz4"
+       depends on CRYPTO_LZ4
+
+config ZRAM_DEF_COMP_LZO
+       bool "lzo"
+       depends on CRYPTO_LZO
+
+config ZRAM_DEF_COMP_LZ4HC
+       bool "lz4hc"
+       depends on CRYPTO_LZ4HC
+
+config ZRAM_DEF_COMP_842
+       bool "842"
+       depends on CRYPTO_842
+
+endchoice
+
+config ZRAM_DEF_COMP
+       string
+       default "lzo-rle" if ZRAM_DEF_COMP_LZORLE
+       default "zstd" if ZRAM_DEF_COMP_ZSTD
+       default "lz4" if ZRAM_DEF_COMP_LZ4
+       default "lzo" if ZRAM_DEF_COMP_LZO
+       default "lz4hc" if ZRAM_DEF_COMP_LZ4HC
+       default "842" if ZRAM_DEF_COMP_842
+
 config ZRAM_WRITEBACK
        bool "Write back incompressible or idle page to backing device"
        depends on ZRAM
 
 static DEFINE_MUTEX(zram_index_mutex);
 
 static int zram_major;
-static const char *default_compressor = "lzo-rle";
+static const char *default_compressor = CONFIG_ZRAM_DEF_COMP;
 
 /* Module params (documentation at end) */
 static unsigned int num_devices = 1;