From 02cadf67b23806b37ea71c0a16459876817b337b Mon Sep 17 00:00:00 2001 From: Rui Salvaterra Date: Tue, 2 Mar 2021 09:31:22 +0000 Subject: luci-mod-system/zram: replace deflate with zstd Deflate is just too slow for zram. Replace it with zstd, which is much faster at similar compression ratios. As a side note, this is an ugly hack. We're hard-coding compression algorithms which might not be available in the system. The availability should be parsed from /sys/block/zram0/comp_algorithm. Signed-off-by: Rui Salvaterra --- .../luci-mod-system/htdocs/luci-static/resources/view/system/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js index 2e087f5f4c..14a15052ea 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js @@ -194,7 +194,7 @@ return view.extend({ o.default = 'lzo'; o.value('lzo', 'lzo'); o.value('lz4', 'lz4'); - o.value('deflate', 'deflate'); + o.value('zstd', 'zstd'); o = s.taboption('zram', form.Value, 'zram_comp_streams', _('ZRam Compression Streams'), _('Number of parallel threads used for compression')); o.optional = true; -- cgit v1.2.3