blob: b31ac5e5d4b9291d741fb37a5b82e380bc4d2d70 [file] [log] [blame]
Nitin Gupta00ac9ba2010-06-01 13:31:26 +05301zram: Compressed RAM based block devices
2----------------------------------------
Nitin Gupta47f9afb2009-09-22 10:26:54 +05303
Nitin Gupta47f9afb2009-09-22 10:26:54 +05304* Introduction
5
Nitin Gupta9b9913d2010-08-09 22:56:55 +05306The zram module creates RAM based block devices named /dev/zram<id>
7(<id> = 0, 1, ...). Pages written to these disks are compressed and stored
8in memory itself. These disks allow very fast I/O and compression provides
9good amounts of memory savings. Some of the usecases include /tmp storage,
10use as swap disks, various caches under /var and maybe many more :)
Nitin Gupta47f9afb2009-09-22 10:26:54 +053011
Nitin Gupta9b9913d2010-08-09 22:56:55 +053012Statistics for individual zram devices are exported through sysfs nodes at
13/sys/block/zram<id>/
Nitin Gupta47f9afb2009-09-22 10:26:54 +053014
15* Usage
16
Nitin Gupta00ac9ba2010-06-01 13:31:26 +053017Following shows a typical sequence of steps for using zram.
Nitin Gupta47f9afb2009-09-22 10:26:54 +053018
Nitin Gupta9b9913d2010-08-09 22:56:55 +0530191) Load Module:
Nitin Gupta00ac9ba2010-06-01 13:31:26 +053020 modprobe zram num_devices=4
Nitin Gupta9b9913d2010-08-09 22:56:55 +053021 This creates 4 devices: /dev/zram{0,1,2,3}
Nitin Gupta47f9afb2009-09-22 10:26:54 +053022 (num_devices parameter is optional. Default: 1)
23
Minchan Kim0231c402013-01-30 11:41:40 +0900242) Set Disksize
25 Set disk size by writing the value to sysfs node 'disksize'.
26 The value can be either in bytes or you can use mem suffixes.
27 Examples:
28 # Initialize /dev/zram0 with 50MB disksize
29 echo $((50*1024*1024)) > /sys/block/zram0/disksize
Nitin Gupta47f9afb2009-09-22 10:26:54 +053030
Minchan Kim0231c402013-01-30 11:41:40 +090031 # Using mem suffixes
32 echo 256K > /sys/block/zram0/disksize
33 echo 512M > /sys/block/zram0/disksize
34 echo 1G > /sys/block/zram0/disksize
Nitin Gupta47f9afb2009-09-22 10:26:54 +053035
Sergey Senozhatskye64cd512014-04-07 15:38:07 -070036Note:
37There is little point creating a zram of greater than twice the size of memory
38since we expect a 2:1 compression ratio. Note that zram uses about 0.1% of the
39size of the disk when not in use so a huge zram is wasteful.
40
Nitin Gupta47f9afb2009-09-22 10:26:54 +0530413) Activate:
Nitin Gupta00ac9ba2010-06-01 13:31:26 +053042 mkswap /dev/zram0
43 swapon /dev/zram0
44
45 mkfs.ext4 /dev/zram1
46 mount /dev/zram1 /tmp
Nitin Gupta47f9afb2009-09-22 10:26:54 +053047
484) Stats:
Nitin Gupta9b9913d2010-08-09 22:56:55 +053049 Per-device statistics are exported as various nodes under
50 /sys/block/zram<id>/
51 disksize
52 num_reads
53 num_writes
Sergey Senozhatsky8dd1d322014-04-07 15:38:08 -070054 failed_reads
55 failed_writes
Nitin Gupta9b9913d2010-08-09 22:56:55 +053056 invalid_io
57 notify_free
Nitin Gupta9b9913d2010-08-09 22:56:55 +053058 zero_pages
59 orig_data_size
60 compr_data_size
61 mem_used_total
Nitin Gupta47f9afb2009-09-22 10:26:54 +053062
635) Deactivate:
Nitin Gupta00ac9ba2010-06-01 13:31:26 +053064 swapoff /dev/zram0
65 umount /dev/zram1
Nitin Gupta47f9afb2009-09-22 10:26:54 +053066
676) Reset:
Nitin Gupta9b9913d2010-08-09 22:56:55 +053068 Write any positive value to 'reset' sysfs node
69 echo 1 > /sys/block/zram0/reset
70 echo 1 > /sys/block/zram1/reset
71
Minchan Kim0231c402013-01-30 11:41:40 +090072 This frees all the memory allocated for the given device and
73 resets the disksize to zero. You must set the disksize again
74 before reusing the device.
Nitin Gupta47f9afb2009-09-22 10:26:54 +053075
Nitin Gupta47f9afb2009-09-22 10:26:54 +053076Nitin Gupta
77ngupta@vflare.org