<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in README</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>e7751617 - docs: blockdev: add it to the admin-guide</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/zram/README#e7751617</link>
        <description>docs: blockdev: add it to the admin-guideThe blockdev book basically contains user-faced documentation.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/zram/README</description>
        <pubDate>Tue, 18 Jun 2019 14:47:10 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>39443104 - docs: blockdev: convert to ReST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/zram/README#39443104</link>
        <description>docs: blockdev: convert to ReSTRename the blockdev documentation files to ReST, add anindex for them and adjust in order to produce a nice htmloutput via the Sphinx build system.The drbd sub-directory contains some graphs and data flows.Add those too to the documentation.At its new index.rst, let&apos;s add a :orphan: while this is not linked tothe main index.rst file, in order to avoid build warnings.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/zram/README</description>
        <pubDate>Thu, 18 Apr 2019 20:29:24 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0ad46bec - selftests/zram: replace ZRAM_LZ4_COMPRESS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/zram/README#0ad46bec</link>
        <description>selftests/zram: replace ZRAM_LZ4_COMPRESSSince commit ce1ed9f98e88(&quot;zram: delete custom lzo/lz4&quot;)we need CONFIG_CRYPTO_LZ4=y instead ofCONFIG_ZRAM_LZ4_COMPRESSSigned-off-by: Fabian Frederick &lt;fabf@skynet.be&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/zram/README</description>
        <pubDate>Fri, 12 Aug 2016 20:49:59 +0000</pubDate>
        <dc:creator>Fabian Frederick &lt;fabf@skynet.be&gt;</dc:creator>
    </item>
<item>
        <title>f21fb798 - selftests/zram: Adding zram tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/zram/README#f21fb798</link>
        <description>selftests/zram: Adding zram testszram: Compressed RAM based block devices----------------------------------------The zram module creates RAM based block devices named /dev/zram&lt;id&gt;(&lt;id&gt; = 0, 1, ...). Pages written to these disks are compressed and storedin memory itself. These disks allow very fast I/O and compression providesgood amounts of memory savings. Some of the usecases include /tmp storage,use as swap disks, various caches under /var and maybe many more :)Statistics for individual zram devices are exported through sysfs nodes at/sys/block/zram&lt;id&gt;/This patch is to validate the zram functionality. Test interacts with blockdevice /dev/zram&lt;id&gt; and sysfs nodes /sys/block/zram&lt;id&gt;/zram.sh: sanity check of CONFIG_ZRAM and to run zram01 and zram02 testszram01.sh: creates general purpose ram disks with different filesystemszram02.sh: creates block device for swapzram_lib.sh: create library with initialization/cleanup functionsREADME: ZRAM introduction and Kconfig required.Makefile: To run zram testszram test output-----------------./zram.sh--------------------running zram tests--------------------/dev/zram0 device file found: OKset max_comp_streams to zram device(s)/sys/block/zram0/max_comp_streams = &apos;2&apos; (1/1)zram max streams: OKtest that we can set compression algorithmsupported algs: [lzo] lz4/sys/block/zram0/comp_algorithm = &apos;lzo&apos; (1/1)zram set compression algorithm: OKset disk size to zram device(s)/sys/block/zram0/disksize = &apos;2097152&apos; (1/1)zram set disksizes: OKset memory limit to zram device(s)/sys/block/zram0/mem_limit = &apos;2M&apos; (1/1)zram set memory limit: OKmake ext4 filesystem on /dev/zram0zram mkfs.ext4: OKmount /dev/zram0zram mount of zram device(s): OKfill zram0...zram0 can be filled with &apos;1932&apos; KBzram used 3M, zram disk sizes 2097152Mzram compression ratio: 699050.66:1: OKzram cleanupzram01 : [PASS]/dev/zram0 device file found: OKset max_comp_streams to zram device(s)/sys/block/zram0/max_comp_streams = &apos;2&apos; (1/1)zram max streams: OKset disk size to zram device(s)/sys/block/zram0/disksize = &apos;1048576&apos; (1/1)zram set disksizes: OKset memory limit to zram device(s)/sys/block/zram0/mem_limit = &apos;1M&apos; (1/1)zram set memory limit: OKmake swap with zram device(s)done with /dev/zram0zram making zram mkswap and swapon: OKzram swapoff: OKzram cleanupzram02 : [PASS]CC: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;CC: Tyler Baker &lt;tyler.baker@linaro.org&gt;CC: Milosz Wasilewski &lt;milosz.wasilewski@linaro.org&gt;CC: Alexey Kodanev &lt;alexey.kodanev@oracle.com&gt;Signed-off-by: Naresh Kamboju &lt;naresh.kamboju@linaro.org&gt;Signed-off-by: Alexey Kodanev &lt;alexey.kodanev@oracle.com&gt;Reviewed-By: Tyler Baker &lt;tyler.baker@linaro.org&gt;Signed-off-by: Shuah Khan &lt;shuahkh@osg.samsung.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/zram/README</description>
        <pubDate>Tue, 18 Aug 2015 07:01:59 +0000</pubDate>
        <dc:creator>Naresh Kamboju &lt;naresh.kamboju@linaro.org&gt;</dc:creator>
    </item>
</channel>
</rss>
