blob: 3920ee45aa5942dd816a775180eeb16f662e804c [file] [log] [blame]
Nitin Gupta306b0c92009-09-22 10:26:53 +05301/*
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05302 * Compressed RAM block device
Nitin Gupta306b0c92009-09-22 10:26:53 +05303 *
Nitin Gupta1130ebb2010-01-28 21:21:35 +05304 * Copyright (C) 2008, 2009, 2010 Nitin Gupta
Minchan Kim7bfb3de2014-01-30 15:45:55 -08005 * 2012, 2013 Minchan Kim
Nitin Gupta306b0c92009-09-22 10:26:53 +05306 *
7 * This code is released using a dual license strategy: BSD/GPL
8 * You can choose the licence that better fits your requirements.
9 *
10 * Released under the terms of 3-clause BSD License
11 * Released under the terms of GNU General Public License Version 2.0
12 *
Nitin Gupta306b0c92009-09-22 10:26:53 +053013 */
14
Nitin Guptaf1e3cff2010-06-01 13:31:25 +053015#define KMSG_COMPONENT "zram"
Nitin Gupta306b0c92009-09-22 10:26:53 +053016#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
17
Robert Jenningsb1f5b812011-01-28 08:59:26 -060018#ifdef CONFIG_ZRAM_DEBUG
19#define DEBUG
20#endif
21
Nitin Gupta306b0c92009-09-22 10:26:53 +053022#include <linux/module.h>
23#include <linux/kernel.h>
Randy Dunlap8946a082010-06-23 20:27:09 -070024#include <linux/bio.h>
Nitin Gupta306b0c92009-09-22 10:26:53 +053025#include <linux/bitops.h>
26#include <linux/blkdev.h>
27#include <linux/buffer_head.h>
28#include <linux/device.h>
29#include <linux/genhd.h>
30#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Nitin Gupta306b0c92009-09-22 10:26:53 +053032#include <linux/string.h>
Nitin Gupta306b0c92009-09-22 10:26:53 +053033#include <linux/vmalloc.h>
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -070034#include <linux/err.h>
Nitin Gupta306b0c92009-09-22 10:26:53 +053035
Nitin Gupta16a4bfb2010-06-01 13:31:24 +053036#include "zram_drv.h"
Nitin Gupta306b0c92009-09-22 10:26:53 +053037
38/* Globals */
Nitin Guptaf1e3cff2010-06-01 13:31:25 +053039static int zram_major;
Jiang Liu0f0e3ba2013-06-07 00:07:29 +080040static struct zram *zram_devices;
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -070041static const char *default_compressor = "lzo";
Nitin Gupta306b0c92009-09-22 10:26:53 +053042
Nitin Gupta306b0c92009-09-22 10:26:53 +053043/* Module params (documentation at end) */
Davidlohr Buesoca3d70b2013-01-01 21:24:13 -080044static unsigned int num_devices = 1;
Nitin Gupta33863c22010-08-09 22:56:47 +053045
Sergey Senozhatskya68eb3b2014-04-07 15:38:04 -070046#define ZRAM_ATTR_RO(name) \
47static ssize_t zram_attr_##name##_show(struct device *d, \
48 struct device_attribute *attr, char *b) \
49{ \
50 struct zram *zram = dev_to_zram(d); \
Sergey Senozhatsky56b4e8c2014-04-07 15:38:22 -070051 return scnprintf(b, PAGE_SIZE, "%llu\n", \
Sergey Senozhatskya68eb3b2014-04-07 15:38:04 -070052 (u64)atomic64_read(&zram->stats.name)); \
53} \
54static struct device_attribute dev_attr_##name = \
55 __ATTR(name, S_IRUGO, zram_attr_##name##_show, NULL);
56
Sergey Senozhatskybe2d1d52014-04-07 15:38:00 -070057static inline int init_done(struct zram *zram)
58{
59 return zram->meta != NULL;
60}
61
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030062static inline struct zram *dev_to_zram(struct device *dev)
63{
64 return (struct zram *)dev_to_disk(dev)->private_data;
65}
66
67static ssize_t disksize_show(struct device *dev,
68 struct device_attribute *attr, char *buf)
69{
70 struct zram *zram = dev_to_zram(dev);
71
Sergey Senozhatsky56b4e8c2014-04-07 15:38:22 -070072 return scnprintf(buf, PAGE_SIZE, "%llu\n", zram->disksize);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030073}
74
75static ssize_t initstate_show(struct device *dev,
76 struct device_attribute *attr, char *buf)
77{
Sergey Senozhatskya68eb3b2014-04-07 15:38:04 -070078 u32 val;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030079 struct zram *zram = dev_to_zram(dev);
80
Sergey Senozhatskya68eb3b2014-04-07 15:38:04 -070081 down_read(&zram->init_lock);
82 val = init_done(zram);
83 up_read(&zram->init_lock);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030084
Sergey Senozhatsky56b4e8c2014-04-07 15:38:22 -070085 return scnprintf(buf, PAGE_SIZE, "%u\n", val);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030086}
87
88static ssize_t orig_data_size_show(struct device *dev,
89 struct device_attribute *attr, char *buf)
90{
91 struct zram *zram = dev_to_zram(dev);
92
Sergey Senozhatsky56b4e8c2014-04-07 15:38:22 -070093 return scnprintf(buf, PAGE_SIZE, "%llu\n",
Sergey Senozhatsky90a78062014-04-07 15:38:03 -070094 (u64)(atomic64_read(&zram->stats.pages_stored)) << PAGE_SHIFT);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030095}
96
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +030097static ssize_t mem_used_total_show(struct device *dev,
98 struct device_attribute *attr, char *buf)
99{
100 u64 val = 0;
101 struct zram *zram = dev_to_zram(dev);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300102
103 down_read(&zram->init_lock);
Weijie Yang5a99e952014-10-29 14:50:57 -0700104 if (init_done(zram)) {
105 struct zram_meta *meta = zram->meta;
Minchan Kim722cdc12014-10-09 15:29:50 -0700106 val = zs_get_total_pages(meta->mem_pool);
Weijie Yang5a99e952014-10-29 14:50:57 -0700107 }
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300108 up_read(&zram->init_lock);
109
Minchan Kim722cdc12014-10-09 15:29:50 -0700110 return scnprintf(buf, PAGE_SIZE, "%llu\n", val << PAGE_SHIFT);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300111}
112
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700113static ssize_t max_comp_streams_show(struct device *dev,
114 struct device_attribute *attr, char *buf)
115{
116 int val;
117 struct zram *zram = dev_to_zram(dev);
118
119 down_read(&zram->init_lock);
120 val = zram->max_comp_streams;
121 up_read(&zram->init_lock);
122
Sergey Senozhatsky56b4e8c2014-04-07 15:38:22 -0700123 return scnprintf(buf, PAGE_SIZE, "%d\n", val);
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700124}
125
Minchan Kim9ada9da2014-10-09 15:29:53 -0700126static ssize_t mem_limit_show(struct device *dev,
127 struct device_attribute *attr, char *buf)
128{
129 u64 val;
130 struct zram *zram = dev_to_zram(dev);
131
132 down_read(&zram->init_lock);
133 val = zram->limit_pages;
134 up_read(&zram->init_lock);
135
136 return scnprintf(buf, PAGE_SIZE, "%llu\n", val << PAGE_SHIFT);
137}
138
139static ssize_t mem_limit_store(struct device *dev,
140 struct device_attribute *attr, const char *buf, size_t len)
141{
142 u64 limit;
143 char *tmp;
144 struct zram *zram = dev_to_zram(dev);
145
146 limit = memparse(buf, &tmp);
147 if (buf == tmp) /* no chars parsed, invalid input */
148 return -EINVAL;
149
150 down_write(&zram->init_lock);
151 zram->limit_pages = PAGE_ALIGN(limit) >> PAGE_SHIFT;
152 up_write(&zram->init_lock);
153
154 return len;
155}
156
Minchan Kim461a8ee2014-10-09 15:29:55 -0700157static ssize_t mem_used_max_show(struct device *dev,
158 struct device_attribute *attr, char *buf)
159{
160 u64 val = 0;
161 struct zram *zram = dev_to_zram(dev);
162
163 down_read(&zram->init_lock);
164 if (init_done(zram))
165 val = atomic_long_read(&zram->stats.max_used_pages);
166 up_read(&zram->init_lock);
167
168 return scnprintf(buf, PAGE_SIZE, "%llu\n", val << PAGE_SHIFT);
169}
170
171static ssize_t mem_used_max_store(struct device *dev,
172 struct device_attribute *attr, const char *buf, size_t len)
173{
174 int err;
175 unsigned long val;
176 struct zram *zram = dev_to_zram(dev);
Minchan Kim461a8ee2014-10-09 15:29:55 -0700177
178 err = kstrtoul(buf, 10, &val);
179 if (err || val != 0)
180 return -EINVAL;
181
182 down_read(&zram->init_lock);
Weijie Yang5a99e952014-10-29 14:50:57 -0700183 if (init_done(zram)) {
184 struct zram_meta *meta = zram->meta;
Minchan Kim461a8ee2014-10-09 15:29:55 -0700185 atomic_long_set(&zram->stats.max_used_pages,
186 zs_get_total_pages(meta->mem_pool));
Weijie Yang5a99e952014-10-29 14:50:57 -0700187 }
Minchan Kim461a8ee2014-10-09 15:29:55 -0700188 up_read(&zram->init_lock);
189
190 return len;
191}
192
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700193static ssize_t max_comp_streams_store(struct device *dev,
194 struct device_attribute *attr, const char *buf, size_t len)
195{
196 int num;
197 struct zram *zram = dev_to_zram(dev);
Minchan Kim60a726e2014-04-07 15:38:21 -0700198 int ret;
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700199
Minchan Kim60a726e2014-04-07 15:38:21 -0700200 ret = kstrtoint(buf, 0, &num);
201 if (ret < 0)
202 return ret;
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700203 if (num < 1)
204 return -EINVAL;
Minchan Kim60a726e2014-04-07 15:38:21 -0700205
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700206 down_write(&zram->init_lock);
207 if (init_done(zram)) {
Minchan Kim60a726e2014-04-07 15:38:21 -0700208 if (!zcomp_set_max_streams(zram->comp, num)) {
Sergey Senozhatskyfe8eb122014-04-07 15:38:15 -0700209 pr_info("Cannot change max compression streams\n");
Minchan Kim60a726e2014-04-07 15:38:21 -0700210 ret = -EINVAL;
211 goto out;
212 }
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700213 }
Minchan Kim60a726e2014-04-07 15:38:21 -0700214
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700215 zram->max_comp_streams = num;
Minchan Kim60a726e2014-04-07 15:38:21 -0700216 ret = len;
217out:
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700218 up_write(&zram->init_lock);
Minchan Kim60a726e2014-04-07 15:38:21 -0700219 return ret;
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700220}
221
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -0700222static ssize_t comp_algorithm_show(struct device *dev,
223 struct device_attribute *attr, char *buf)
224{
225 size_t sz;
226 struct zram *zram = dev_to_zram(dev);
227
228 down_read(&zram->init_lock);
229 sz = zcomp_available_show(zram->compressor, buf);
230 up_read(&zram->init_lock);
231
232 return sz;
233}
234
235static ssize_t comp_algorithm_store(struct device *dev,
236 struct device_attribute *attr, const char *buf, size_t len)
237{
238 struct zram *zram = dev_to_zram(dev);
239 down_write(&zram->init_lock);
240 if (init_done(zram)) {
241 up_write(&zram->init_lock);
242 pr_info("Can't change algorithm for initialized device\n");
243 return -EBUSY;
244 }
245 strlcpy(zram->compressor, buf, sizeof(zram->compressor));
246 up_write(&zram->init_lock);
247 return len;
248}
249
Minchan Kim92967472014-01-30 15:46:03 -0800250/* flag operations needs meta->tb_lock */
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900251static int zram_test_flag(struct zram_meta *meta, u32 index,
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530252 enum zram_pageflags flag)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530253{
Weijie Yangd2d5e762014-08-06 16:08:31 -0700254 return meta->table[index].value & BIT(flag);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530255}
256
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900257static void zram_set_flag(struct zram_meta *meta, u32 index,
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530258 enum zram_pageflags flag)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530259{
Weijie Yangd2d5e762014-08-06 16:08:31 -0700260 meta->table[index].value |= BIT(flag);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530261}
262
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900263static void zram_clear_flag(struct zram_meta *meta, u32 index,
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530264 enum zram_pageflags flag)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530265{
Weijie Yangd2d5e762014-08-06 16:08:31 -0700266 meta->table[index].value &= ~BIT(flag);
267}
268
269static size_t zram_get_obj_size(struct zram_meta *meta, u32 index)
270{
271 return meta->table[index].value & (BIT(ZRAM_FLAG_SHIFT) - 1);
272}
273
274static void zram_set_obj_size(struct zram_meta *meta,
275 u32 index, size_t size)
276{
277 unsigned long flags = meta->table[index].value >> ZRAM_FLAG_SHIFT;
278
279 meta->table[index].value = (flags << ZRAM_FLAG_SHIFT) | size;
Nitin Gupta306b0c92009-09-22 10:26:53 +0530280}
281
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300282static inline int is_partial_io(struct bio_vec *bvec)
283{
284 return bvec->bv_len != PAGE_SIZE;
285}
286
287/*
288 * Check if request is within bounds and aligned on zram logical blocks.
289 */
290static inline int valid_io_request(struct zram *zram, struct bio *bio)
291{
292 u64 start, end, bound;
Kumar Gaurava539c722013-08-08 23:53:24 +0530293
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300294 /* unaligned request */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700295 if (unlikely(bio->bi_iter.bi_sector &
296 (ZRAM_SECTOR_PER_LOGICAL_BLOCK - 1)))
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300297 return 0;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700298 if (unlikely(bio->bi_iter.bi_size & (ZRAM_LOGICAL_BLOCK_SIZE - 1)))
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300299 return 0;
300
Kent Overstreet4f024f32013-10-11 15:44:27 -0700301 start = bio->bi_iter.bi_sector;
302 end = start + (bio->bi_iter.bi_size >> SECTOR_SHIFT);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300303 bound = zram->disksize >> SECTOR_SHIFT;
304 /* out of range range */
Sergey Senozhatsky75c7caf2013-06-22 17:21:00 +0300305 if (unlikely(start >= bound || end > bound || start > end))
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300306 return 0;
307
308 /* I/O request is valid */
309 return 1;
310}
311
312static void zram_meta_free(struct zram_meta *meta)
313{
314 zs_destroy_pool(meta->mem_pool);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300315 vfree(meta->table);
316 kfree(meta);
317}
318
319static struct zram_meta *zram_meta_alloc(u64 disksize)
320{
321 size_t num_pages;
322 struct zram_meta *meta = kmalloc(sizeof(*meta), GFP_KERNEL);
323 if (!meta)
324 goto out;
325
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300326 num_pages = disksize >> PAGE_SHIFT;
327 meta->table = vzalloc(num_pages * sizeof(*meta->table));
328 if (!meta->table) {
329 pr_err("Error allocating zram address table\n");
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700330 goto free_meta;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300331 }
332
333 meta->mem_pool = zs_create_pool(GFP_NOIO | __GFP_HIGHMEM);
334 if (!meta->mem_pool) {
335 pr_err("Error creating memory pool\n");
336 goto free_table;
337 }
338
339 return meta;
340
341free_table:
342 vfree(meta->table);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300343free_meta:
344 kfree(meta);
345 meta = NULL;
346out:
347 return meta;
348}
349
350static void update_position(u32 *index, int *offset, struct bio_vec *bvec)
351{
352 if (*offset + bvec->bv_len >= PAGE_SIZE)
353 (*index)++;
354 *offset = (*offset + bvec->bv_len) % PAGE_SIZE;
355}
356
Nitin Gupta306b0c92009-09-22 10:26:53 +0530357static int page_zero_filled(void *ptr)
358{
359 unsigned int pos;
360 unsigned long *page;
361
362 page = (unsigned long *)ptr;
363
364 for (pos = 0; pos != PAGE_SIZE / sizeof(*page); pos++) {
365 if (page[pos])
366 return 0;
367 }
368
369 return 1;
370}
371
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300372static void handle_zero_page(struct bio_vec *bvec)
373{
374 struct page *page = bvec->bv_page;
375 void *user_mem;
376
377 user_mem = kmap_atomic(page);
378 if (is_partial_io(bvec))
379 memset(user_mem + bvec->bv_offset, 0, bvec->bv_len);
380 else
381 clear_page(user_mem);
382 kunmap_atomic(user_mem);
383
384 flush_dcache_page(page);
385}
386
Weijie Yangd2d5e762014-08-06 16:08:31 -0700387
388/*
389 * To protect concurrent access to the same index entry,
390 * caller should hold this table index entry's bit_spinlock to
391 * indicate this index entry is accessing.
392 */
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530393static void zram_free_page(struct zram *zram, size_t index)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530394{
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900395 struct zram_meta *meta = zram->meta;
396 unsigned long handle = meta->table[index].handle;
Nitin Gupta306b0c92009-09-22 10:26:53 +0530397
Nitin Guptafd1a30d2012-01-09 16:51:59 -0600398 if (unlikely(!handle)) {
Nitin Gupta2e882282010-01-28 21:13:41 +0530399 /*
400 * No memory is allocated for zero filled pages.
401 * Simply clear zero page flag.
402 */
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900403 if (zram_test_flag(meta, index, ZRAM_ZERO)) {
404 zram_clear_flag(meta, index, ZRAM_ZERO);
Sergey Senozhatsky90a78062014-04-07 15:38:03 -0700405 atomic64_dec(&zram->stats.zero_pages);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530406 }
407 return;
408 }
409
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900410 zs_free(meta->mem_pool, handle);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530411
Weijie Yangd2d5e762014-08-06 16:08:31 -0700412 atomic64_sub(zram_get_obj_size(meta, index),
413 &zram->stats.compr_data_size);
Sergey Senozhatsky90a78062014-04-07 15:38:03 -0700414 atomic64_dec(&zram->stats.pages_stored);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530415
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900416 meta->table[index].handle = 0;
Weijie Yangd2d5e762014-08-06 16:08:31 -0700417 zram_set_obj_size(meta, index, 0);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530418}
419
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300420static int zram_decompress_page(struct zram *zram, char *mem, u32 index)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530421{
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700422 int ret = 0;
Jerome Marchand924bd882011-06-10 15:28:48 +0200423 unsigned char *cmem;
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900424 struct zram_meta *meta = zram->meta;
Minchan Kim92967472014-01-30 15:46:03 -0800425 unsigned long handle;
Minchan Kim023b4092014-08-06 16:08:29 -0700426 size_t size;
Minchan Kim92967472014-01-30 15:46:03 -0800427
Weijie Yangd2d5e762014-08-06 16:08:31 -0700428 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
Minchan Kim92967472014-01-30 15:46:03 -0800429 handle = meta->table[index].handle;
Weijie Yangd2d5e762014-08-06 16:08:31 -0700430 size = zram_get_obj_size(meta, index);
Jerome Marchand924bd882011-06-10 15:28:48 +0200431
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900432 if (!handle || zram_test_flag(meta, index, ZRAM_ZERO)) {
Weijie Yangd2d5e762014-08-06 16:08:31 -0700433 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Jiang Liu42e99bd2013-06-07 00:07:30 +0800434 clear_page(mem);
Jerome Marchand924bd882011-06-10 15:28:48 +0200435 return 0;
436 }
437
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900438 cmem = zs_map_object(meta->mem_pool, handle, ZS_MM_RO);
Minchan Kim92967472014-01-30 15:46:03 -0800439 if (size == PAGE_SIZE)
Jiang Liu42e99bd2013-06-07 00:07:30 +0800440 copy_page(mem, cmem);
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300441 else
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700442 ret = zcomp_decompress(zram->comp, cmem, size, mem);
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900443 zs_unmap_object(meta->mem_pool, handle);
Weijie Yangd2d5e762014-08-06 16:08:31 -0700444 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Jerome Marchand924bd882011-06-10 15:28:48 +0200445
446 /* Should NEVER happen. Return bio error if it does. */
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700447 if (unlikely(ret)) {
Jerome Marchand924bd882011-06-10 15:28:48 +0200448 pr_err("Decompression failed! err=%d, page=%u\n", ret, index);
Jerome Marchand924bd882011-06-10 15:28:48 +0200449 return ret;
450 }
451
452 return 0;
453}
454
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300455static int zram_bvec_read(struct zram *zram, struct bio_vec *bvec,
456 u32 index, int offset, struct bio *bio)
457{
458 int ret;
459 struct page *page;
460 unsigned char *user_mem, *uncmem = NULL;
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900461 struct zram_meta *meta = zram->meta;
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300462 page = bvec->bv_page;
463
Weijie Yangd2d5e762014-08-06 16:08:31 -0700464 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900465 if (unlikely(!meta->table[index].handle) ||
466 zram_test_flag(meta, index, ZRAM_ZERO)) {
Weijie Yangd2d5e762014-08-06 16:08:31 -0700467 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300468 handle_zero_page(bvec);
469 return 0;
470 }
Weijie Yangd2d5e762014-08-06 16:08:31 -0700471 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300472
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300473 if (is_partial_io(bvec))
474 /* Use a temporary buffer to decompress the page */
Minchan Kim7e5a5102013-01-30 11:41:39 +0900475 uncmem = kmalloc(PAGE_SIZE, GFP_NOIO);
476
477 user_mem = kmap_atomic(page);
478 if (!is_partial_io(bvec))
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300479 uncmem = user_mem;
480
481 if (!uncmem) {
482 pr_info("Unable to allocate temp memory\n");
483 ret = -ENOMEM;
484 goto out_cleanup;
485 }
486
487 ret = zram_decompress_page(zram, uncmem, index);
488 /* Should NEVER happen. Return bio error if it does. */
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700489 if (unlikely(ret))
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300490 goto out_cleanup;
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300491
492 if (is_partial_io(bvec))
493 memcpy(user_mem + bvec->bv_offset, uncmem + offset,
494 bvec->bv_len);
495
496 flush_dcache_page(page);
497 ret = 0;
498out_cleanup:
499 kunmap_atomic(user_mem);
500 if (is_partial_io(bvec))
501 kfree(uncmem);
502 return ret;
503}
504
Minchan Kim461a8ee2014-10-09 15:29:55 -0700505static inline void update_used_max(struct zram *zram,
506 const unsigned long pages)
507{
508 int old_max, cur_max;
509
510 old_max = atomic_long_read(&zram->stats.max_used_pages);
511
512 do {
513 cur_max = old_max;
514 if (pages > cur_max)
515 old_max = atomic_long_cmpxchg(
516 &zram->stats.max_used_pages, cur_max, pages);
517 } while (old_max != cur_max);
518}
519
Jerome Marchand924bd882011-06-10 15:28:48 +0200520static int zram_bvec_write(struct zram *zram, struct bio_vec *bvec, u32 index,
521 int offset)
522{
Nitin Gupta397c6062013-01-02 08:53:41 -0800523 int ret = 0;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200524 size_t clen;
Minchan Kimc2344342012-06-08 15:39:25 +0900525 unsigned long handle;
Minchan Kim130f3152012-06-08 15:39:27 +0900526 struct page *page;
Jerome Marchand924bd882011-06-10 15:28:48 +0200527 unsigned char *user_mem, *cmem, *src, *uncmem = NULL;
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900528 struct zram_meta *meta = zram->meta;
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700529 struct zcomp_strm *zstrm;
Minchan Kime46e3312014-01-30 15:46:06 -0800530 bool locked = false;
Minchan Kim461a8ee2014-10-09 15:29:55 -0700531 unsigned long alloced_pages;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200532
533 page = bvec->bv_page;
Jerome Marchand924bd882011-06-10 15:28:48 +0200534 if (is_partial_io(bvec)) {
535 /*
536 * This is a partial IO. We need to read the full page
537 * before to write the changes.
538 */
Minchan Kim7e5a5102013-01-30 11:41:39 +0900539 uncmem = kmalloc(PAGE_SIZE, GFP_NOIO);
Jerome Marchand924bd882011-06-10 15:28:48 +0200540 if (!uncmem) {
Jerome Marchand924bd882011-06-10 15:28:48 +0200541 ret = -ENOMEM;
542 goto out;
543 }
Sergey Senozhatsky37b51fd2012-10-30 22:40:23 +0300544 ret = zram_decompress_page(zram, uncmem, index);
Nitin Gupta397c6062013-01-02 08:53:41 -0800545 if (ret)
Jerome Marchand924bd882011-06-10 15:28:48 +0200546 goto out;
Jerome Marchand924bd882011-06-10 15:28:48 +0200547 }
548
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700549 zstrm = zcomp_strm_find(zram->comp);
Minchan Kime46e3312014-01-30 15:46:06 -0800550 locked = true;
Cong Wangba82fe22011-11-25 23:14:25 +0800551 user_mem = kmap_atomic(page);
Jerome Marchand924bd882011-06-10 15:28:48 +0200552
Nitin Gupta397c6062013-01-02 08:53:41 -0800553 if (is_partial_io(bvec)) {
Jerome Marchand924bd882011-06-10 15:28:48 +0200554 memcpy(uncmem + offset, user_mem + bvec->bv_offset,
555 bvec->bv_len);
Nitin Gupta397c6062013-01-02 08:53:41 -0800556 kunmap_atomic(user_mem);
557 user_mem = NULL;
558 } else {
Jerome Marchand924bd882011-06-10 15:28:48 +0200559 uncmem = user_mem;
Nitin Gupta397c6062013-01-02 08:53:41 -0800560 }
Jerome Marchand924bd882011-06-10 15:28:48 +0200561
562 if (page_zero_filled(uncmem)) {
Weijie Yangc4065152014-11-13 15:19:05 -0800563 if (user_mem)
564 kunmap_atomic(user_mem);
Sunghan Suhf40ac2a2013-07-03 20:10:05 +0900565 /* Free memory associated with this sector now. */
Weijie Yangd2d5e762014-08-06 16:08:31 -0700566 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
Sunghan Suhf40ac2a2013-07-03 20:10:05 +0900567 zram_free_page(zram, index);
Minchan Kim92967472014-01-30 15:46:03 -0800568 zram_set_flag(meta, index, ZRAM_ZERO);
Weijie Yangd2d5e762014-08-06 16:08:31 -0700569 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Sunghan Suhf40ac2a2013-07-03 20:10:05 +0900570
Sergey Senozhatsky90a78062014-04-07 15:38:03 -0700571 atomic64_inc(&zram->stats.zero_pages);
Jerome Marchand924bd882011-06-10 15:28:48 +0200572 ret = 0;
573 goto out;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200574 }
575
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700576 ret = zcomp_compress(zram->comp, zstrm, uncmem, &clen);
Nitin Gupta397c6062013-01-02 08:53:41 -0800577 if (!is_partial_io(bvec)) {
578 kunmap_atomic(user_mem);
579 user_mem = NULL;
580 uncmem = NULL;
581 }
Jerome Marchand8c921b22011-06-10 15:28:47 +0200582
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700583 if (unlikely(ret)) {
Jerome Marchand8c921b22011-06-10 15:28:47 +0200584 pr_err("Compression failed! err=%d\n", ret);
Jerome Marchand924bd882011-06-10 15:28:48 +0200585 goto out;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200586 }
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700587 src = zstrm->buffer;
Nitin Guptac8f2f0d2012-10-10 17:42:18 -0700588 if (unlikely(clen > max_zpage_size)) {
Nitin Guptac8f2f0d2012-10-10 17:42:18 -0700589 clen = PAGE_SIZE;
Nitin Gupta397c6062013-01-02 08:53:41 -0800590 if (is_partial_io(bvec))
591 src = uncmem;
Nitin Guptac8f2f0d2012-10-10 17:42:18 -0700592 }
Jerome Marchand8c921b22011-06-10 15:28:47 +0200593
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900594 handle = zs_malloc(meta->mem_pool, clen);
Nitin Guptafd1a30d2012-01-09 16:51:59 -0600595 if (!handle) {
Marlies Ruck596b3dd2013-05-16 14:30:39 -0400596 pr_info("Error allocating memory for compressed page: %u, size=%zu\n",
597 index, clen);
Jerome Marchand924bd882011-06-10 15:28:48 +0200598 ret = -ENOMEM;
599 goto out;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200600 }
Minchan Kim9ada9da2014-10-09 15:29:53 -0700601
Minchan Kim461a8ee2014-10-09 15:29:55 -0700602 alloced_pages = zs_get_total_pages(meta->mem_pool);
603 if (zram->limit_pages && alloced_pages > zram->limit_pages) {
Minchan Kim9ada9da2014-10-09 15:29:53 -0700604 zs_free(meta->mem_pool, handle);
605 ret = -ENOMEM;
606 goto out;
607 }
608
Minchan Kim461a8ee2014-10-09 15:29:55 -0700609 update_used_max(zram, alloced_pages);
610
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900611 cmem = zs_map_object(meta->mem_pool, handle, ZS_MM_WO);
Jerome Marchand8c921b22011-06-10 15:28:47 +0200612
Jiang Liu42e99bd2013-06-07 00:07:30 +0800613 if ((clen == PAGE_SIZE) && !is_partial_io(bvec)) {
Nitin Gupta397c6062013-01-02 08:53:41 -0800614 src = kmap_atomic(page);
Jiang Liu42e99bd2013-06-07 00:07:30 +0800615 copy_page(cmem, src);
Nitin Gupta397c6062013-01-02 08:53:41 -0800616 kunmap_atomic(src);
Jiang Liu42e99bd2013-06-07 00:07:30 +0800617 } else {
618 memcpy(cmem, src, clen);
619 }
Jerome Marchand8c921b22011-06-10 15:28:47 +0200620
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700621 zcomp_strm_release(zram->comp, zstrm);
622 locked = false;
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900623 zs_unmap_object(meta->mem_pool, handle);
Nitin Guptafd1a30d2012-01-09 16:51:59 -0600624
Sunghan Suhf40ac2a2013-07-03 20:10:05 +0900625 /*
626 * Free memory associated with this sector
627 * before overwriting unused sectors.
628 */
Weijie Yangd2d5e762014-08-06 16:08:31 -0700629 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
Sunghan Suhf40ac2a2013-07-03 20:10:05 +0900630 zram_free_page(zram, index);
631
Minchan Kim8b3cc3e2013-02-06 08:48:53 +0900632 meta->table[index].handle = handle;
Weijie Yangd2d5e762014-08-06 16:08:31 -0700633 zram_set_obj_size(meta, index, clen);
634 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Jerome Marchand8c921b22011-06-10 15:28:47 +0200635
636 /* Update stats */
Sergey Senozhatsky90a78062014-04-07 15:38:03 -0700637 atomic64_add(clen, &zram->stats.compr_data_size);
638 atomic64_inc(&zram->stats.pages_stored);
Jerome Marchand924bd882011-06-10 15:28:48 +0200639out:
Minchan Kime46e3312014-01-30 15:46:06 -0800640 if (locked)
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700641 zcomp_strm_release(zram->comp, zstrm);
Nitin Gupta397c6062013-01-02 08:53:41 -0800642 if (is_partial_io(bvec))
643 kfree(uncmem);
Jerome Marchand924bd882011-06-10 15:28:48 +0200644 return ret;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200645}
646
647static int zram_bvec_rw(struct zram *zram, struct bio_vec *bvec, u32 index,
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700648 int offset, struct bio *bio)
Jerome Marchand8c921b22011-06-10 15:28:47 +0200649{
Jerome Marchandc5bde232011-06-10 15:28:49 +0200650 int ret;
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700651 int rw = bio_data_dir(bio);
Jerome Marchand8c921b22011-06-10 15:28:47 +0200652
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700653 if (rw == READ) {
654 atomic64_inc(&zram->stats.num_reads);
Jerome Marchandc5bde232011-06-10 15:28:49 +0200655 ret = zram_bvec_read(zram, bvec, index, offset, bio);
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700656 } else {
657 atomic64_inc(&zram->stats.num_writes);
Jerome Marchandc5bde232011-06-10 15:28:49 +0200658 ret = zram_bvec_write(zram, bvec, index, offset);
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700659 }
Jerome Marchandc5bde232011-06-10 15:28:49 +0200660
Chao Yu0cf1e9d2014-08-29 15:18:37 -0700661 if (unlikely(ret)) {
662 if (rw == READ)
663 atomic64_inc(&zram->stats.failed_reads);
664 else
665 atomic64_inc(&zram->stats.failed_writes);
666 }
667
Jerome Marchandc5bde232011-06-10 15:28:49 +0200668 return ret;
Jerome Marchand924bd882011-06-10 15:28:48 +0200669}
670
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700671/*
672 * zram_bio_discard - handler on discard request
673 * @index: physical block index in PAGE_SIZE units
674 * @offset: byte offset within physical block
675 */
676static void zram_bio_discard(struct zram *zram, u32 index,
677 int offset, struct bio *bio)
678{
679 size_t n = bio->bi_iter.bi_size;
Weijie Yangd2d5e762014-08-06 16:08:31 -0700680 struct zram_meta *meta = zram->meta;
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700681
682 /*
683 * zram manages data in physical block size units. Because logical block
684 * size isn't identical with physical block size on some arch, we
685 * could get a discard request pointing to a specific offset within a
686 * certain physical block. Although we can handle this request by
687 * reading that physiclal block and decompressing and partially zeroing
688 * and re-compressing and then re-storing it, this isn't reasonable
689 * because our intent with a discard request is to save memory. So
690 * skipping this logical block is appropriate here.
691 */
692 if (offset) {
Weijie Yang38515c72014-06-04 16:11:06 -0700693 if (n <= (PAGE_SIZE - offset))
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700694 return;
695
Weijie Yang38515c72014-06-04 16:11:06 -0700696 n -= (PAGE_SIZE - offset);
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700697 index++;
698 }
699
700 while (n >= PAGE_SIZE) {
Weijie Yangd2d5e762014-08-06 16:08:31 -0700701 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700702 zram_free_page(zram, index);
Weijie Yangd2d5e762014-08-06 16:08:31 -0700703 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Sergey Senozhatsky015254d2014-10-09 15:29:57 -0700704 atomic64_inc(&zram->stats.notify_free);
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700705 index++;
706 n -= PAGE_SIZE;
707 }
708}
709
Minchan Kim2b86ab92013-08-12 15:13:55 +0900710static void zram_reset_device(struct zram *zram, bool reset_capacity)
Jerome Marchand924bd882011-06-10 15:28:48 +0200711{
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300712 size_t index;
713 struct zram_meta *meta;
714
Sergey Senozhatsky644d4782013-06-26 15:28:39 +0300715 down_write(&zram->init_lock);
Minchan Kim9ada9da2014-10-09 15:29:53 -0700716
717 zram->limit_pages = 0;
718
Sergey Senozhatskybe2d1d52014-04-07 15:38:00 -0700719 if (!init_done(zram)) {
Sergey Senozhatsky644d4782013-06-26 15:28:39 +0300720 up_write(&zram->init_lock);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300721 return;
Sergey Senozhatsky644d4782013-06-26 15:28:39 +0300722 }
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300723
724 meta = zram->meta;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300725 /* Free all pages that are still in this zram device */
726 for (index = 0; index < zram->disksize >> PAGE_SHIFT; index++) {
727 unsigned long handle = meta->table[index].handle;
728 if (!handle)
729 continue;
730
731 zs_free(meta->mem_pool, handle);
732 }
733
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700734 zcomp_destroy(zram->comp);
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700735 zram->max_comp_streams = 1;
736
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300737 zram_meta_free(zram->meta);
738 zram->meta = NULL;
739 /* Reset stats */
740 memset(&zram->stats, 0, sizeof(zram->stats));
741
742 zram->disksize = 0;
Minchan Kimb4c5c602014-07-23 14:00:04 -0700743 if (reset_capacity)
Minchan Kim2b86ab92013-08-12 15:13:55 +0900744 set_capacity(zram->disk, 0);
Minchan Kimb4c5c602014-07-23 14:00:04 -0700745
Sergey Senozhatsky644d4782013-06-26 15:28:39 +0300746 up_write(&zram->init_lock);
Minchan Kimb4c5c602014-07-23 14:00:04 -0700747
748 /*
749 * Revalidate disk out of the init_lock to avoid lockdep splat.
750 * It's okay because disk's capacity is protected by init_lock
751 * so that revalidate_disk always sees up-to-date capacity.
752 */
753 if (reset_capacity)
754 revalidate_disk(zram->disk);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300755}
756
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300757static ssize_t disksize_store(struct device *dev,
758 struct device_attribute *attr, const char *buf, size_t len)
759{
760 u64 disksize;
Sergey Senozhatskyd61f98c2014-04-07 15:38:19 -0700761 struct zcomp *comp;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300762 struct zram_meta *meta;
763 struct zram *zram = dev_to_zram(dev);
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700764 int err;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300765
766 disksize = memparse(buf, NULL);
767 if (!disksize)
768 return -EINVAL;
769
770 disksize = PAGE_ALIGN(disksize);
771 meta = zram_meta_alloc(disksize);
Minchan Kimdb5d7112014-03-03 15:38:34 -0800772 if (!meta)
773 return -ENOMEM;
Sergey Senozhatskyb67d1ec2014-04-07 15:38:09 -0700774
Sergey Senozhatskyd61f98c2014-04-07 15:38:19 -0700775 comp = zcomp_create(zram->compressor, zram->max_comp_streams);
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700776 if (IS_ERR(comp)) {
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700777 pr_info("Cannot initialise %s compressing backend\n",
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -0700778 zram->compressor);
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700779 err = PTR_ERR(comp);
780 goto out_free_meta;
Sergey Senozhatskyd61f98c2014-04-07 15:38:19 -0700781 }
782
783 down_write(&zram->init_lock);
784 if (init_done(zram)) {
Sergey Senozhatskyd61f98c2014-04-07 15:38:19 -0700785 pr_info("Cannot change disksize for initialized device\n");
786 err = -EBUSY;
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700787 goto out_destroy_comp;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300788 }
789
Sergey Senozhatskyb67d1ec2014-04-07 15:38:09 -0700790 zram->meta = meta;
Sergey Senozhatskyd61f98c2014-04-07 15:38:19 -0700791 zram->comp = comp;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300792 zram->disksize = disksize;
793 set_capacity(zram->disk, zram->disksize >> SECTOR_SHIFT);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300794 up_write(&zram->init_lock);
Minchan Kimb4c5c602014-07-23 14:00:04 -0700795
796 /*
797 * Revalidate disk out of the init_lock to avoid lockdep splat.
798 * It's okay because disk's capacity is protected by init_lock
799 * so that revalidate_disk always sees up-to-date capacity.
800 */
801 revalidate_disk(zram->disk);
802
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300803 return len;
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700804
Sergey Senozhatskyfcfa8d92014-04-07 15:38:20 -0700805out_destroy_comp:
806 up_write(&zram->init_lock);
807 zcomp_destroy(comp);
808out_free_meta:
Sergey Senozhatskyb7ca2322014-04-07 15:38:12 -0700809 zram_meta_free(meta);
810 return err;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300811}
812
813static ssize_t reset_store(struct device *dev,
814 struct device_attribute *attr, const char *buf, size_t len)
815{
816 int ret;
817 unsigned short do_reset;
818 struct zram *zram;
819 struct block_device *bdev;
820
821 zram = dev_to_zram(dev);
822 bdev = bdget_disk(zram->disk, 0);
823
Rashika Kheria46a51c82013-10-30 18:36:32 +0530824 if (!bdev)
825 return -ENOMEM;
826
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300827 /* Do not reset an active device! */
Rashika Kheria1b672222013-11-10 22:13:53 +0530828 if (bdev->bd_holders) {
829 ret = -EBUSY;
830 goto out;
831 }
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300832
833 ret = kstrtou16(buf, 10, &do_reset);
834 if (ret)
Rashika Kheria1b672222013-11-10 22:13:53 +0530835 goto out;
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300836
Rashika Kheria1b672222013-11-10 22:13:53 +0530837 if (!do_reset) {
838 ret = -EINVAL;
839 goto out;
840 }
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300841
842 /* Make sure all pending I/O is finished */
Rashika Kheria46a51c82013-10-30 18:36:32 +0530843 fsync_bdev(bdev);
Rashika Kheria1b672222013-11-10 22:13:53 +0530844 bdput(bdev);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300845
Minchan Kim2b86ab92013-08-12 15:13:55 +0900846 zram_reset_device(zram, true);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300847 return len;
Rashika Kheria1b672222013-11-10 22:13:53 +0530848
849out:
850 bdput(bdev);
851 return ret;
Jerome Marchand8c921b22011-06-10 15:28:47 +0200852}
853
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700854static void __zram_make_request(struct zram *zram, struct bio *bio)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530855{
Kent Overstreet79886132013-11-23 17:19:00 -0800856 int offset;
Nitin Guptaa1dd52a2010-06-01 13:31:23 +0530857 u32 index;
Kent Overstreet79886132013-11-23 17:19:00 -0800858 struct bio_vec bvec;
859 struct bvec_iter iter;
Nitin Gupta306b0c92009-09-22 10:26:53 +0530860
Kent Overstreet4f024f32013-10-11 15:44:27 -0700861 index = bio->bi_iter.bi_sector >> SECTORS_PER_PAGE_SHIFT;
862 offset = (bio->bi_iter.bi_sector &
863 (SECTORS_PER_PAGE - 1)) << SECTOR_SHIFT;
Nitin Gupta306b0c92009-09-22 10:26:53 +0530864
Joonsoo Kimf4659d82014-04-07 15:38:24 -0700865 if (unlikely(bio->bi_rw & REQ_DISCARD)) {
866 zram_bio_discard(zram, index, offset, bio);
867 bio_endio(bio, 0);
868 return;
869 }
870
Kent Overstreet79886132013-11-23 17:19:00 -0800871 bio_for_each_segment(bvec, bio, iter) {
Jerome Marchand924bd882011-06-10 15:28:48 +0200872 int max_transfer_size = PAGE_SIZE - offset;
873
Kent Overstreet79886132013-11-23 17:19:00 -0800874 if (bvec.bv_len > max_transfer_size) {
Jerome Marchand924bd882011-06-10 15:28:48 +0200875 /*
876 * zram_bvec_rw() can only make operation on a single
877 * zram page. Split the bio vector.
878 */
879 struct bio_vec bv;
880
Kent Overstreet79886132013-11-23 17:19:00 -0800881 bv.bv_page = bvec.bv_page;
Jerome Marchand924bd882011-06-10 15:28:48 +0200882 bv.bv_len = max_transfer_size;
Kent Overstreet79886132013-11-23 17:19:00 -0800883 bv.bv_offset = bvec.bv_offset;
Jerome Marchand924bd882011-06-10 15:28:48 +0200884
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700885 if (zram_bvec_rw(zram, &bv, index, offset, bio) < 0)
Jerome Marchand924bd882011-06-10 15:28:48 +0200886 goto out;
887
Kent Overstreet79886132013-11-23 17:19:00 -0800888 bv.bv_len = bvec.bv_len - max_transfer_size;
Jerome Marchand924bd882011-06-10 15:28:48 +0200889 bv.bv_offset += max_transfer_size;
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700890 if (zram_bvec_rw(zram, &bv, index + 1, 0, bio) < 0)
Jerome Marchand924bd882011-06-10 15:28:48 +0200891 goto out;
892 } else
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700893 if (zram_bvec_rw(zram, &bvec, index, offset, bio) < 0)
Jerome Marchand924bd882011-06-10 15:28:48 +0200894 goto out;
895
Kent Overstreet79886132013-11-23 17:19:00 -0800896 update_position(&index, &offset, &bvec);
Nitin Guptaa1dd52a2010-06-01 13:31:23 +0530897 }
Nitin Gupta306b0c92009-09-22 10:26:53 +0530898
899 set_bit(BIO_UPTODATE, &bio->bi_flags);
900 bio_endio(bio, 0);
Nitin Gupta7d7854b2011-01-22 07:36:15 -0500901 return;
Nitin Gupta306b0c92009-09-22 10:26:53 +0530902
903out:
Nitin Gupta306b0c92009-09-22 10:26:53 +0530904 bio_io_error(bio);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530905}
906
Nitin Gupta306b0c92009-09-22 10:26:53 +0530907/*
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530908 * Handler function for all zram I/O requests.
Nitin Gupta306b0c92009-09-22 10:26:53 +0530909 */
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200910static void zram_make_request(struct request_queue *queue, struct bio *bio)
Nitin Gupta306b0c92009-09-22 10:26:53 +0530911{
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530912 struct zram *zram = queue->queuedata;
Nitin Gupta306b0c92009-09-22 10:26:53 +0530913
Jerome Marchand0900bea2011-09-06 15:02:11 +0200914 down_read(&zram->init_lock);
Sergey Senozhatskybe2d1d52014-04-07 15:38:00 -0700915 if (unlikely(!init_done(zram)))
Minchan Kim3de738c2013-01-30 11:41:41 +0900916 goto error;
Jerome Marchand0900bea2011-09-06 15:02:11 +0200917
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530918 if (!valid_io_request(zram, bio)) {
Jiang Liuda5cc7d2013-06-07 00:07:31 +0800919 atomic64_inc(&zram->stats.invalid_io);
Minchan Kim3de738c2013-01-30 11:41:41 +0900920 goto error;
Jerome Marchand6642a672011-02-17 17:11:49 +0100921 }
922
Sergey Senozhatskybe257c62014-04-07 15:38:01 -0700923 __zram_make_request(zram, bio);
Jerome Marchand0900bea2011-09-06 15:02:11 +0200924 up_read(&zram->init_lock);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530925
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -0700926 return;
Jerome Marchand0900bea2011-09-06 15:02:11 +0200927
Jerome Marchand0900bea2011-09-06 15:02:11 +0200928error:
Minchan Kim3de738c2013-01-30 11:41:41 +0900929 up_read(&zram->init_lock);
Jerome Marchand0900bea2011-09-06 15:02:11 +0200930 bio_io_error(bio);
Nitin Gupta306b0c92009-09-22 10:26:53 +0530931}
932
Nitin Gupta2ccbec02011-09-09 19:01:00 -0400933static void zram_slot_free_notify(struct block_device *bdev,
934 unsigned long index)
Nitin Gupta107c1612010-05-17 11:02:44 +0530935{
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530936 struct zram *zram;
Minchan Kimf614a9f2014-01-30 15:46:04 -0800937 struct zram_meta *meta;
Nitin Gupta107c1612010-05-17 11:02:44 +0530938
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530939 zram = bdev->bd_disk->private_data;
Minchan Kimf614a9f2014-01-30 15:46:04 -0800940 meta = zram->meta;
941
Weijie Yangd2d5e762014-08-06 16:08:31 -0700942 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
Minchan Kimf614a9f2014-01-30 15:46:04 -0800943 zram_free_page(zram, index);
Weijie Yangd2d5e762014-08-06 16:08:31 -0700944 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
Jiang Liuda5cc7d2013-06-07 00:07:31 +0800945 atomic64_inc(&zram->stats.notify_free);
Nitin Gupta107c1612010-05-17 11:02:44 +0530946}
947
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530948static const struct block_device_operations zram_devops = {
Nitin Guptaf1e3cff2010-06-01 13:31:25 +0530949 .swap_slot_free_notify = zram_slot_free_notify,
Nitin Gupta107c1612010-05-17 11:02:44 +0530950 .owner = THIS_MODULE
Nitin Gupta306b0c92009-09-22 10:26:53 +0530951};
952
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300953static DEVICE_ATTR(disksize, S_IRUGO | S_IWUSR,
954 disksize_show, disksize_store);
955static DEVICE_ATTR(initstate, S_IRUGO, initstate_show, NULL);
956static DEVICE_ATTR(reset, S_IWUSR, NULL, reset_store);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300957static DEVICE_ATTR(orig_data_size, S_IRUGO, orig_data_size_show, NULL);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300958static DEVICE_ATTR(mem_used_total, S_IRUGO, mem_used_total_show, NULL);
Minchan Kim9ada9da2014-10-09 15:29:53 -0700959static DEVICE_ATTR(mem_limit, S_IRUGO | S_IWUSR, mem_limit_show,
960 mem_limit_store);
Minchan Kim461a8ee2014-10-09 15:29:55 -0700961static DEVICE_ATTR(mem_used_max, S_IRUGO | S_IWUSR, mem_used_max_show,
962 mem_used_max_store);
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700963static DEVICE_ATTR(max_comp_streams, S_IRUGO | S_IWUSR,
964 max_comp_streams_show, max_comp_streams_store);
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -0700965static DEVICE_ATTR(comp_algorithm, S_IRUGO | S_IWUSR,
966 comp_algorithm_show, comp_algorithm_store);
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300967
Sergey Senozhatskya68eb3b2014-04-07 15:38:04 -0700968ZRAM_ATTR_RO(num_reads);
969ZRAM_ATTR_RO(num_writes);
Sergey Senozhatsky64447242014-04-07 15:38:05 -0700970ZRAM_ATTR_RO(failed_reads);
971ZRAM_ATTR_RO(failed_writes);
Sergey Senozhatskya68eb3b2014-04-07 15:38:04 -0700972ZRAM_ATTR_RO(invalid_io);
973ZRAM_ATTR_RO(notify_free);
974ZRAM_ATTR_RO(zero_pages);
975ZRAM_ATTR_RO(compr_data_size);
976
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300977static struct attribute *zram_disk_attrs[] = {
978 &dev_attr_disksize.attr,
979 &dev_attr_initstate.attr,
980 &dev_attr_reset.attr,
981 &dev_attr_num_reads.attr,
982 &dev_attr_num_writes.attr,
Sergey Senozhatsky64447242014-04-07 15:38:05 -0700983 &dev_attr_failed_reads.attr,
984 &dev_attr_failed_writes.attr,
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300985 &dev_attr_invalid_io.attr,
986 &dev_attr_notify_free.attr,
987 &dev_attr_zero_pages.attr,
988 &dev_attr_orig_data_size.attr,
989 &dev_attr_compr_data_size.attr,
990 &dev_attr_mem_used_total.attr,
Minchan Kim9ada9da2014-10-09 15:29:53 -0700991 &dev_attr_mem_limit.attr,
Minchan Kim461a8ee2014-10-09 15:29:55 -0700992 &dev_attr_mem_used_max.attr,
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -0700993 &dev_attr_max_comp_streams.attr,
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -0700994 &dev_attr_comp_algorithm.attr,
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +0300995 NULL,
996};
997
998static struct attribute_group zram_disk_attr_group = {
999 .attrs = zram_disk_attrs,
1000};
1001
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301002static int create_device(struct zram *zram, int device_id)
Nitin Gupta306b0c92009-09-22 10:26:53 +05301003{
Jiang Liu39a9b8a2013-06-07 00:07:24 +08001004 int ret = -ENOMEM;
Nitin Guptade1a21a2010-01-28 21:13:40 +05301005
Jerome Marchand0900bea2011-09-06 15:02:11 +02001006 init_rwsem(&zram->init_lock);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301007
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301008 zram->queue = blk_alloc_queue(GFP_KERNEL);
1009 if (!zram->queue) {
Nitin Gupta306b0c92009-09-22 10:26:53 +05301010 pr_err("Error allocating disk queue for device %d\n",
1011 device_id);
Nitin Guptade1a21a2010-01-28 21:13:40 +05301012 goto out;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301013 }
1014
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301015 blk_queue_make_request(zram->queue, zram_make_request);
1016 zram->queue->queuedata = zram;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301017
1018 /* gendisk structure */
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301019 zram->disk = alloc_disk(1);
1020 if (!zram->disk) {
Sam Hansen94b84352012-06-07 16:03:47 -07001021 pr_warn("Error allocating disk structure for device %d\n",
Nitin Gupta306b0c92009-09-22 10:26:53 +05301022 device_id);
Jiang Liu39a9b8a2013-06-07 00:07:24 +08001023 goto out_free_queue;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301024 }
1025
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301026 zram->disk->major = zram_major;
1027 zram->disk->first_minor = device_id;
1028 zram->disk->fops = &zram_devops;
1029 zram->disk->queue = zram->queue;
1030 zram->disk->private_data = zram;
1031 snprintf(zram->disk->disk_name, 16, "zram%d", device_id);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301032
Nitin Gupta33863c22010-08-09 22:56:47 +05301033 /* Actual capacity set using syfs (/sys/block/zram<id>/disksize */
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301034 set_capacity(zram->disk, 0);
Sergey Senozhatskyb67d1ec2014-04-07 15:38:09 -07001035 /* zram devices sort of resembles non-rotational disks */
1036 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, zram->disk->queue);
Mike Snitzerb277da02014-10-04 10:55:32 -06001037 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, zram->disk->queue);
Nitin Guptaa1dd52a2010-06-01 13:31:23 +05301038 /*
1039 * To ensure that we always get PAGE_SIZE aligned
1040 * and n*PAGE_SIZED sized I/O requests.
1041 */
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301042 blk_queue_physical_block_size(zram->disk->queue, PAGE_SIZE);
Robert Jennings7b19b8d2011-01-28 08:58:17 -06001043 blk_queue_logical_block_size(zram->disk->queue,
1044 ZRAM_LOGICAL_BLOCK_SIZE);
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301045 blk_queue_io_min(zram->disk->queue, PAGE_SIZE);
1046 blk_queue_io_opt(zram->disk->queue, PAGE_SIZE);
Joonsoo Kimf4659d82014-04-07 15:38:24 -07001047 zram->disk->queue->limits.discard_granularity = PAGE_SIZE;
1048 zram->disk->queue->limits.max_discard_sectors = UINT_MAX;
1049 /*
1050 * zram_bio_discard() will clear all logical blocks if logical block
1051 * size is identical with physical block size(PAGE_SIZE). But if it is
1052 * different, we will skip discarding some parts of logical blocks in
1053 * the part of the request range which isn't aligned to physical block
1054 * size. So we can't ensure that all discarded logical blocks are
1055 * zeroed.
1056 */
1057 if (ZRAM_LOGICAL_BLOCK_SIZE == PAGE_SIZE)
1058 zram->disk->queue->limits.discard_zeroes_data = 1;
1059 else
1060 zram->disk->queue->limits.discard_zeroes_data = 0;
1061 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, zram->disk->queue);
Nitin Gupta5d83d5a2010-01-28 21:13:39 +05301062
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301063 add_disk(zram->disk);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301064
Nitin Gupta33863c22010-08-09 22:56:47 +05301065 ret = sysfs_create_group(&disk_to_dev(zram->disk)->kobj,
1066 &zram_disk_attr_group);
1067 if (ret < 0) {
Sam Hansen94b84352012-06-07 16:03:47 -07001068 pr_warn("Error creating sysfs group");
Jiang Liu39a9b8a2013-06-07 00:07:24 +08001069 goto out_free_disk;
Nitin Gupta33863c22010-08-09 22:56:47 +05301070 }
Sergey Senozhatskye46b8a02014-04-07 15:38:17 -07001071 strlcpy(zram->compressor, default_compressor, sizeof(zram->compressor));
Sergey Senozhatskybe2d1d52014-04-07 15:38:00 -07001072 zram->meta = NULL;
Sergey Senozhatskybeca3ec2014-04-07 15:38:14 -07001073 zram->max_comp_streams = 1;
Jiang Liu39a9b8a2013-06-07 00:07:24 +08001074 return 0;
Nitin Guptade1a21a2010-01-28 21:13:40 +05301075
Jiang Liu39a9b8a2013-06-07 00:07:24 +08001076out_free_disk:
1077 del_gendisk(zram->disk);
1078 put_disk(zram->disk);
1079out_free_queue:
1080 blk_cleanup_queue(zram->queue);
Nitin Guptade1a21a2010-01-28 21:13:40 +05301081out:
1082 return ret;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301083}
1084
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301085static void destroy_device(struct zram *zram)
Nitin Gupta306b0c92009-09-22 10:26:53 +05301086{
Nitin Gupta33863c22010-08-09 22:56:47 +05301087 sysfs_remove_group(&disk_to_dev(zram->disk)->kobj,
1088 &zram_disk_attr_group);
Nitin Gupta33863c22010-08-09 22:56:47 +05301089
Rashika Kheria59d3fe52013-10-30 18:43:32 +05301090 del_gendisk(zram->disk);
1091 put_disk(zram->disk);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301092
Rashika Kheria59d3fe52013-10-30 18:43:32 +05301093 blk_cleanup_queue(zram->queue);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301094}
1095
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301096static int __init zram_init(void)
Nitin Gupta306b0c92009-09-22 10:26:53 +05301097{
Nitin Guptade1a21a2010-01-28 21:13:40 +05301098 int ret, dev_id;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301099
Nitin Gupta5fa5a902012-02-12 23:04:45 -05001100 if (num_devices > max_num_devices) {
Sam Hansen94b84352012-06-07 16:03:47 -07001101 pr_warn("Invalid value for num_devices: %u\n",
Nitin Gupta5fa5a902012-02-12 23:04:45 -05001102 num_devices);
Nitin Guptade1a21a2010-01-28 21:13:40 +05301103 ret = -EINVAL;
1104 goto out;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301105 }
1106
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301107 zram_major = register_blkdev(0, "zram");
1108 if (zram_major <= 0) {
Sam Hansen94b84352012-06-07 16:03:47 -07001109 pr_warn("Unable to get major number\n");
Nitin Guptade1a21a2010-01-28 21:13:40 +05301110 ret = -EBUSY;
1111 goto out;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301112 }
1113
Nitin Gupta306b0c92009-09-22 10:26:53 +05301114 /* Allocate the device array and initialize each one */
Nitin Gupta5fa5a902012-02-12 23:04:45 -05001115 zram_devices = kzalloc(num_devices * sizeof(struct zram), GFP_KERNEL);
Noah Watkins43801f62011-07-20 17:05:57 -06001116 if (!zram_devices) {
Nitin Guptade1a21a2010-01-28 21:13:40 +05301117 ret = -ENOMEM;
1118 goto unregister;
1119 }
Nitin Gupta306b0c92009-09-22 10:26:53 +05301120
Nitin Gupta5fa5a902012-02-12 23:04:45 -05001121 for (dev_id = 0; dev_id < num_devices; dev_id++) {
Noah Watkins43801f62011-07-20 17:05:57 -06001122 ret = create_device(&zram_devices[dev_id], dev_id);
Nitin Guptade1a21a2010-01-28 21:13:40 +05301123 if (ret)
Minchan Kim3bf040c2010-01-11 16:15:53 +09001124 goto free_devices;
Nitin Guptade1a21a2010-01-28 21:13:40 +05301125 }
1126
Davidlohr Buesoca3d70b2013-01-01 21:24:13 -08001127 pr_info("Created %u device(s) ...\n", num_devices);
1128
Nitin Gupta306b0c92009-09-22 10:26:53 +05301129 return 0;
Nitin Guptade1a21a2010-01-28 21:13:40 +05301130
Minchan Kim3bf040c2010-01-11 16:15:53 +09001131free_devices:
Nitin Guptade1a21a2010-01-28 21:13:40 +05301132 while (dev_id)
Noah Watkins43801f62011-07-20 17:05:57 -06001133 destroy_device(&zram_devices[--dev_id]);
1134 kfree(zram_devices);
Nitin Guptade1a21a2010-01-28 21:13:40 +05301135unregister:
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301136 unregister_blkdev(zram_major, "zram");
Nitin Guptade1a21a2010-01-28 21:13:40 +05301137out:
Nitin Gupta306b0c92009-09-22 10:26:53 +05301138 return ret;
1139}
1140
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301141static void __exit zram_exit(void)
Nitin Gupta306b0c92009-09-22 10:26:53 +05301142{
1143 int i;
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301144 struct zram *zram;
Nitin Gupta306b0c92009-09-22 10:26:53 +05301145
Nitin Gupta5fa5a902012-02-12 23:04:45 -05001146 for (i = 0; i < num_devices; i++) {
Noah Watkins43801f62011-07-20 17:05:57 -06001147 zram = &zram_devices[i];
Nitin Gupta306b0c92009-09-22 10:26:53 +05301148
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301149 destroy_device(zram);
Minchan Kim2b86ab92013-08-12 15:13:55 +09001150 /*
1151 * Shouldn't access zram->disk after destroy_device
1152 * because destroy_device already released zram->disk.
1153 */
1154 zram_reset_device(zram, false);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301155 }
1156
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301157 unregister_blkdev(zram_major, "zram");
Nitin Gupta306b0c92009-09-22 10:26:53 +05301158
Noah Watkins43801f62011-07-20 17:05:57 -06001159 kfree(zram_devices);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301160 pr_debug("Cleanup done!\n");
1161}
1162
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301163module_init(zram_init);
1164module_exit(zram_exit);
Nitin Gupta306b0c92009-09-22 10:26:53 +05301165
Sergey Senozhatsky9b3bb7a2013-06-22 03:21:18 +03001166module_param(num_devices, uint, 0);
1167MODULE_PARM_DESC(num_devices, "Number of zram devices");
1168
Nitin Gupta306b0c92009-09-22 10:26:53 +05301169MODULE_LICENSE("Dual BSD/GPL");
1170MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");
Nitin Guptaf1e3cff2010-06-01 13:31:25 +05301171MODULE_DESCRIPTION("Compressed RAM Block Device");