Merge tag 'doc-4.8-fixes' of git://git.lwn.net/linux
[linux-2.6-block.git] / drivers / block / zram / zram_drv.c
CommitLineData
306b0c95 1/*
f1e3cfff 2 * Compressed RAM block device
306b0c95 3 *
1130ebba 4 * Copyright (C) 2008, 2009, 2010 Nitin Gupta
7bfb3de8 5 * 2012, 2013 Minchan Kim
306b0c95
NG
6 *
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 *
306b0c95
NG
13 */
14
f1e3cfff 15#define KMSG_COMPONENT "zram"
306b0c95
NG
16#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
17
18#include <linux/module.h>
19#include <linux/kernel.h>
8946a086 20#include <linux/bio.h>
306b0c95
NG
21#include <linux/bitops.h>
22#include <linux/blkdev.h>
23#include <linux/buffer_head.h>
24#include <linux/device.h>
25#include <linux/genhd.h>
26#include <linux/highmem.h>
5a0e3ad6 27#include <linux/slab.h>
306b0c95 28#include <linux/string.h>
306b0c95 29#include <linux/vmalloc.h>
fcfa8d95 30#include <linux/err.h>
85508ec6 31#include <linux/idr.h>
6566d1a3 32#include <linux/sysfs.h>
306b0c95 33
16a4bfb9 34#include "zram_drv.h"
306b0c95 35
85508ec6 36static DEFINE_IDR(zram_index_idr);
6566d1a3
SS
37/* idr index must be protected */
38static DEFINE_MUTEX(zram_index_mutex);
39
f1e3cfff 40static int zram_major;
b7ca232e 41static const char *default_compressor = "lzo";
306b0c95 42
306b0c95 43/* Module params (documentation at end) */
ca3d70bd 44static unsigned int num_devices = 1;
33863c21 45
8f7d282c
SS
46static inline void deprecated_attr_warn(const char *name)
47{
48 pr_warn_once("%d (%s) Attribute %s (and others) will be removed. %s\n",
49 task_pid_nr(current),
50 current->comm,
51 name,
52 "See zram documentation.");
53}
54
a68eb3b6 55#define ZRAM_ATTR_RO(name) \
3bca3ef7 56static ssize_t name##_show(struct device *d, \
a68eb3b6
SS
57 struct device_attribute *attr, char *b) \
58{ \
59 struct zram *zram = dev_to_zram(d); \
8f7d282c
SS
60 \
61 deprecated_attr_warn(__stringify(name)); \
56b4e8cb 62 return scnprintf(b, PAGE_SIZE, "%llu\n", \
a68eb3b6
SS
63 (u64)atomic64_read(&zram->stats.name)); \
64} \
083914ea 65static DEVICE_ATTR_RO(name);
a68eb3b6 66
08eee69f 67static inline bool init_done(struct zram *zram)
be2d1d56 68{
08eee69f 69 return zram->disksize;
be2d1d56
SS
70}
71
9b3bb7ab
SS
72static inline struct zram *dev_to_zram(struct device *dev)
73{
74 return (struct zram *)dev_to_disk(dev)->private_data;
75}
76
b31177f2 77/* flag operations require table entry bit_spin_lock() being held */
522698d7
SS
78static int zram_test_flag(struct zram_meta *meta, u32 index,
79 enum zram_pageflags flag)
99ebbd30 80{
522698d7
SS
81 return meta->table[index].value & BIT(flag);
82}
99ebbd30 83
522698d7
SS
84static void zram_set_flag(struct zram_meta *meta, u32 index,
85 enum zram_pageflags flag)
86{
87 meta->table[index].value |= BIT(flag);
88}
99ebbd30 89
522698d7
SS
90static void zram_clear_flag(struct zram_meta *meta, u32 index,
91 enum zram_pageflags flag)
92{
93 meta->table[index].value &= ~BIT(flag);
94}
99ebbd30 95
522698d7
SS
96static size_t zram_get_obj_size(struct zram_meta *meta, u32 index)
97{
98 return meta->table[index].value & (BIT(ZRAM_FLAG_SHIFT) - 1);
99ebbd30
AM
99}
100
522698d7
SS
101static void zram_set_obj_size(struct zram_meta *meta,
102 u32 index, size_t size)
9b3bb7ab 103{
522698d7 104 unsigned long flags = meta->table[index].value >> ZRAM_FLAG_SHIFT;
9b3bb7ab 105
522698d7
SS
106 meta->table[index].value = (flags << ZRAM_FLAG_SHIFT) | size;
107}
108
1c53e0d2 109static inline bool is_partial_io(struct bio_vec *bvec)
522698d7
SS
110{
111 return bvec->bv_len != PAGE_SIZE;
112}
113
114/*
115 * Check if request is within bounds and aligned on zram logical blocks.
116 */
1c53e0d2 117static inline bool valid_io_request(struct zram *zram,
522698d7
SS
118 sector_t start, unsigned int size)
119{
120 u64 end, bound;
121
122 /* unaligned request */
123 if (unlikely(start & (ZRAM_SECTOR_PER_LOGICAL_BLOCK - 1)))
1c53e0d2 124 return false;
522698d7 125 if (unlikely(size & (ZRAM_LOGICAL_BLOCK_SIZE - 1)))
1c53e0d2 126 return false;
522698d7
SS
127
128 end = start + (size >> SECTOR_SHIFT);
129 bound = zram->disksize >> SECTOR_SHIFT;
130 /* out of range range */
131 if (unlikely(start >= bound || end > bound || start > end))
1c53e0d2 132 return false;
522698d7
SS
133
134 /* I/O request is valid */
1c53e0d2 135 return true;
522698d7
SS
136}
137
138static void update_position(u32 *index, int *offset, struct bio_vec *bvec)
139{
140 if (*offset + bvec->bv_len >= PAGE_SIZE)
141 (*index)++;
142 *offset = (*offset + bvec->bv_len) % PAGE_SIZE;
143}
144
145static inline void update_used_max(struct zram *zram,
146 const unsigned long pages)
147{
148 unsigned long old_max, cur_max;
149
150 old_max = atomic_long_read(&zram->stats.max_used_pages);
151
152 do {
153 cur_max = old_max;
154 if (pages > cur_max)
155 old_max = atomic_long_cmpxchg(
156 &zram->stats.max_used_pages, cur_max, pages);
157 } while (old_max != cur_max);
158}
159
1c53e0d2 160static bool page_zero_filled(void *ptr)
522698d7
SS
161{
162 unsigned int pos;
163 unsigned long *page;
164
165 page = (unsigned long *)ptr;
166
167 for (pos = 0; pos != PAGE_SIZE / sizeof(*page); pos++) {
168 if (page[pos])
1c53e0d2 169 return false;
522698d7
SS
170 }
171
1c53e0d2 172 return true;
522698d7
SS
173}
174
175static void handle_zero_page(struct bio_vec *bvec)
176{
177 struct page *page = bvec->bv_page;
178 void *user_mem;
179
180 user_mem = kmap_atomic(page);
181 if (is_partial_io(bvec))
182 memset(user_mem + bvec->bv_offset, 0, bvec->bv_len);
183 else
184 clear_page(user_mem);
185 kunmap_atomic(user_mem);
186
187 flush_dcache_page(page);
9b3bb7ab
SS
188}
189
190static ssize_t initstate_show(struct device *dev,
191 struct device_attribute *attr, char *buf)
192{
a68eb3b6 193 u32 val;
9b3bb7ab
SS
194 struct zram *zram = dev_to_zram(dev);
195
a68eb3b6
SS
196 down_read(&zram->init_lock);
197 val = init_done(zram);
198 up_read(&zram->init_lock);
9b3bb7ab 199
56b4e8cb 200 return scnprintf(buf, PAGE_SIZE, "%u\n", val);
9b3bb7ab
SS
201}
202
522698d7
SS
203static ssize_t disksize_show(struct device *dev,
204 struct device_attribute *attr, char *buf)
205{
206 struct zram *zram = dev_to_zram(dev);
207
208 return scnprintf(buf, PAGE_SIZE, "%llu\n", zram->disksize);
209}
210
9b3bb7ab
SS
211static ssize_t orig_data_size_show(struct device *dev,
212 struct device_attribute *attr, char *buf)
213{
214 struct zram *zram = dev_to_zram(dev);
215
8f7d282c 216 deprecated_attr_warn("orig_data_size");
56b4e8cb 217 return scnprintf(buf, PAGE_SIZE, "%llu\n",
90a7806e 218 (u64)(atomic64_read(&zram->stats.pages_stored)) << PAGE_SHIFT);
9b3bb7ab
SS
219}
220
9b3bb7ab
SS
221static ssize_t mem_used_total_show(struct device *dev,
222 struct device_attribute *attr, char *buf)
223{
224 u64 val = 0;
225 struct zram *zram = dev_to_zram(dev);
9b3bb7ab 226
8f7d282c 227 deprecated_attr_warn("mem_used_total");
9b3bb7ab 228 down_read(&zram->init_lock);
5a99e95b
WY
229 if (init_done(zram)) {
230 struct zram_meta *meta = zram->meta;
722cdc17 231 val = zs_get_total_pages(meta->mem_pool);
5a99e95b 232 }
9b3bb7ab
SS
233 up_read(&zram->init_lock);
234
722cdc17 235 return scnprintf(buf, PAGE_SIZE, "%llu\n", val << PAGE_SHIFT);
9b3bb7ab
SS
236}
237
9ada9da9
MK
238static ssize_t mem_limit_show(struct device *dev,
239 struct device_attribute *attr, char *buf)
240{
241 u64 val;
242 struct zram *zram = dev_to_zram(dev);
243
8f7d282c 244 deprecated_attr_warn("mem_limit");
9ada9da9
MK
245 down_read(&zram->init_lock);
246 val = zram->limit_pages;
247 up_read(&zram->init_lock);
248
249 return scnprintf(buf, PAGE_SIZE, "%llu\n", val << PAGE_SHIFT);
250}
251
252static ssize_t mem_limit_store(struct device *dev,
253 struct device_attribute *attr, const char *buf, size_t len)
254{
255 u64 limit;
256 char *tmp;
257 struct zram *zram = dev_to_zram(dev);
258
259 limit = memparse(buf, &tmp);
260 if (buf == tmp) /* no chars parsed, invalid input */
261 return -EINVAL;
262
263 down_write(&zram->init_lock);
264 zram->limit_pages = PAGE_ALIGN(limit) >> PAGE_SHIFT;
265 up_write(&zram->init_lock);
266
267 return len;
268}
269
461a8eee
MK
270static ssize_t mem_used_max_show(struct device *dev,
271 struct device_attribute *attr, char *buf)
272{
273 u64 val = 0;
274 struct zram *zram = dev_to_zram(dev);
275
8f7d282c 276 deprecated_attr_warn("mem_used_max");
461a8eee
MK
277 down_read(&zram->init_lock);
278 if (init_done(zram))
279 val = atomic_long_read(&zram->stats.max_used_pages);
280 up_read(&zram->init_lock);
281
282 return scnprintf(buf, PAGE_SIZE, "%llu\n", val << PAGE_SHIFT);
283}
284
285static ssize_t mem_used_max_store(struct device *dev,
286 struct device_attribute *attr, const char *buf, size_t len)
287{
288 int err;
289 unsigned long val;
290 struct zram *zram = dev_to_zram(dev);
461a8eee
MK
291
292 err = kstrtoul(buf, 10, &val);
293 if (err || val != 0)
294 return -EINVAL;
295
296 down_read(&zram->init_lock);
5a99e95b
WY
297 if (init_done(zram)) {
298 struct zram_meta *meta = zram->meta;
461a8eee
MK
299 atomic_long_set(&zram->stats.max_used_pages,
300 zs_get_total_pages(meta->mem_pool));
5a99e95b 301 }
461a8eee
MK
302 up_read(&zram->init_lock);
303
304 return len;
305}
306
43209ea2
SS
307/*
308 * We switched to per-cpu streams and this attr is not needed anymore.
309 * However, we will keep it around for some time, because:
310 * a) we may revert per-cpu streams in the future
311 * b) it's visible to user space and we need to follow our 2 years
312 * retirement rule; but we already have a number of 'soon to be
313 * altered' attrs, so max_comp_streams need to wait for the next
314 * layoff cycle.
315 */
522698d7
SS
316static ssize_t max_comp_streams_show(struct device *dev,
317 struct device_attribute *attr, char *buf)
318{
43209ea2 319 return scnprintf(buf, PAGE_SIZE, "%d\n", num_online_cpus());
522698d7
SS
320}
321
beca3ec7
SS
322static ssize_t max_comp_streams_store(struct device *dev,
323 struct device_attribute *attr, const char *buf, size_t len)
324{
43209ea2 325 return len;
beca3ec7
SS
326}
327
e46b8a03
SS
328static ssize_t comp_algorithm_show(struct device *dev,
329 struct device_attribute *attr, char *buf)
330{
331 size_t sz;
332 struct zram *zram = dev_to_zram(dev);
333
334 down_read(&zram->init_lock);
335 sz = zcomp_available_show(zram->compressor, buf);
336 up_read(&zram->init_lock);
337
338 return sz;
339}
340
341static ssize_t comp_algorithm_store(struct device *dev,
342 struct device_attribute *attr, const char *buf, size_t len)
343{
344 struct zram *zram = dev_to_zram(dev);
415403be 345 char compressor[CRYPTO_MAX_ALG_NAME];
4bbacd51
SS
346 size_t sz;
347
415403be
SS
348 strlcpy(compressor, buf, sizeof(compressor));
349 /* ignore trailing newline */
350 sz = strlen(compressor);
351 if (sz > 0 && compressor[sz - 1] == '\n')
352 compressor[sz - 1] = 0x00;
353
354 if (!zcomp_available_algorithm(compressor))
1d5b43bf
LH
355 return -EINVAL;
356
e46b8a03
SS
357 down_write(&zram->init_lock);
358 if (init_done(zram)) {
359 up_write(&zram->init_lock);
360 pr_info("Can't change algorithm for initialized device\n");
361 return -EBUSY;
362 }
4bbacd51 363
415403be 364 strlcpy(zram->compressor, compressor, sizeof(compressor));
e46b8a03
SS
365 up_write(&zram->init_lock);
366 return len;
367}
368
522698d7
SS
369static ssize_t compact_store(struct device *dev,
370 struct device_attribute *attr, const char *buf, size_t len)
306b0c95 371{
522698d7
SS
372 struct zram *zram = dev_to_zram(dev);
373 struct zram_meta *meta;
306b0c95 374
522698d7
SS
375 down_read(&zram->init_lock);
376 if (!init_done(zram)) {
377 up_read(&zram->init_lock);
378 return -EINVAL;
379 }
306b0c95 380
522698d7 381 meta = zram->meta;
7d3f3938 382 zs_compact(meta->mem_pool);
522698d7 383 up_read(&zram->init_lock);
d2d5e762 384
522698d7 385 return len;
d2d5e762
WY
386}
387
522698d7
SS
388static ssize_t io_stat_show(struct device *dev,
389 struct device_attribute *attr, char *buf)
d2d5e762 390{
522698d7
SS
391 struct zram *zram = dev_to_zram(dev);
392 ssize_t ret;
d2d5e762 393
522698d7
SS
394 down_read(&zram->init_lock);
395 ret = scnprintf(buf, PAGE_SIZE,
396 "%8llu %8llu %8llu %8llu\n",
397 (u64)atomic64_read(&zram->stats.failed_reads),
398 (u64)atomic64_read(&zram->stats.failed_writes),
399 (u64)atomic64_read(&zram->stats.invalid_io),
400 (u64)atomic64_read(&zram->stats.notify_free));
401 up_read(&zram->init_lock);
306b0c95 402
522698d7 403 return ret;
9b3bb7ab
SS
404}
405
522698d7
SS
406static ssize_t mm_stat_show(struct device *dev,
407 struct device_attribute *attr, char *buf)
9b3bb7ab 408{
522698d7 409 struct zram *zram = dev_to_zram(dev);
7d3f3938 410 struct zs_pool_stats pool_stats;
522698d7
SS
411 u64 orig_size, mem_used = 0;
412 long max_used;
413 ssize_t ret;
a539c72a 414
7d3f3938
SS
415 memset(&pool_stats, 0x00, sizeof(struct zs_pool_stats));
416
522698d7 417 down_read(&zram->init_lock);
7d3f3938 418 if (init_done(zram)) {
522698d7 419 mem_used = zs_get_total_pages(zram->meta->mem_pool);
7d3f3938
SS
420 zs_pool_stats(zram->meta->mem_pool, &pool_stats);
421 }
9b3bb7ab 422
522698d7
SS
423 orig_size = atomic64_read(&zram->stats.pages_stored);
424 max_used = atomic_long_read(&zram->stats.max_used_pages);
9b3bb7ab 425
522698d7 426 ret = scnprintf(buf, PAGE_SIZE,
7d3f3938 427 "%8llu %8llu %8llu %8lu %8ld %8llu %8lu\n",
522698d7
SS
428 orig_size << PAGE_SHIFT,
429 (u64)atomic64_read(&zram->stats.compr_data_size),
430 mem_used << PAGE_SHIFT,
431 zram->limit_pages << PAGE_SHIFT,
432 max_used << PAGE_SHIFT,
433 (u64)atomic64_read(&zram->stats.zero_pages),
860c707d 434 pool_stats.pages_compacted);
522698d7 435 up_read(&zram->init_lock);
9b3bb7ab 436
522698d7
SS
437 return ret;
438}
439
623e47fc
SS
440static ssize_t debug_stat_show(struct device *dev,
441 struct device_attribute *attr, char *buf)
442{
443 int version = 1;
444 struct zram *zram = dev_to_zram(dev);
445 ssize_t ret;
446
447 down_read(&zram->init_lock);
448 ret = scnprintf(buf, PAGE_SIZE,
449 "version: %d\n%8llu\n",
450 version,
451 (u64)atomic64_read(&zram->stats.writestall));
452 up_read(&zram->init_lock);
453
454 return ret;
455}
456
522698d7
SS
457static DEVICE_ATTR_RO(io_stat);
458static DEVICE_ATTR_RO(mm_stat);
623e47fc 459static DEVICE_ATTR_RO(debug_stat);
522698d7
SS
460ZRAM_ATTR_RO(num_reads);
461ZRAM_ATTR_RO(num_writes);
462ZRAM_ATTR_RO(failed_reads);
463ZRAM_ATTR_RO(failed_writes);
464ZRAM_ATTR_RO(invalid_io);
465ZRAM_ATTR_RO(notify_free);
466ZRAM_ATTR_RO(zero_pages);
467ZRAM_ATTR_RO(compr_data_size);
468
469static inline bool zram_meta_get(struct zram *zram)
470{
471 if (atomic_inc_not_zero(&zram->refcount))
472 return true;
473 return false;
474}
475
476static inline void zram_meta_put(struct zram *zram)
477{
478 atomic_dec(&zram->refcount);
479}
480
481static void zram_meta_free(struct zram_meta *meta, u64 disksize)
482{
483 size_t num_pages = disksize >> PAGE_SHIFT;
484 size_t index;
1fec1172
GM
485
486 /* Free all pages that are still in this zram device */
487 for (index = 0; index < num_pages; index++) {
488 unsigned long handle = meta->table[index].handle;
489
490 if (!handle)
491 continue;
492
493 zs_free(meta->mem_pool, handle);
494 }
495
9b3bb7ab 496 zs_destroy_pool(meta->mem_pool);
9b3bb7ab
SS
497 vfree(meta->table);
498 kfree(meta);
499}
500
4ce321f5 501static struct zram_meta *zram_meta_alloc(char *pool_name, u64 disksize)
9b3bb7ab
SS
502{
503 size_t num_pages;
504 struct zram_meta *meta = kmalloc(sizeof(*meta), GFP_KERNEL);
b8179958 505
9b3bb7ab 506 if (!meta)
b8179958 507 return NULL;
9b3bb7ab 508
9b3bb7ab
SS
509 num_pages = disksize >> PAGE_SHIFT;
510 meta->table = vzalloc(num_pages * sizeof(*meta->table));
511 if (!meta->table) {
512 pr_err("Error allocating zram address table\n");
b8179958 513 goto out_error;
9b3bb7ab
SS
514 }
515
d0d8da2d 516 meta->mem_pool = zs_create_pool(pool_name);
9b3bb7ab
SS
517 if (!meta->mem_pool) {
518 pr_err("Error creating memory pool\n");
b8179958 519 goto out_error;
9b3bb7ab
SS
520 }
521
522 return meta;
523
b8179958 524out_error:
9b3bb7ab 525 vfree(meta->table);
9b3bb7ab 526 kfree(meta);
b8179958 527 return NULL;
9b3bb7ab
SS
528}
529
d2d5e762
WY
530/*
531 * To protect concurrent access to the same index entry,
532 * caller should hold this table index entry's bit_spinlock to
533 * indicate this index entry is accessing.
534 */
f1e3cfff 535static void zram_free_page(struct zram *zram, size_t index)
306b0c95 536{
8b3cc3ed
MK
537 struct zram_meta *meta = zram->meta;
538 unsigned long handle = meta->table[index].handle;
306b0c95 539
fd1a30de 540 if (unlikely(!handle)) {
2e882281
NG
541 /*
542 * No memory is allocated for zero filled pages.
543 * Simply clear zero page flag.
544 */
8b3cc3ed
MK
545 if (zram_test_flag(meta, index, ZRAM_ZERO)) {
546 zram_clear_flag(meta, index, ZRAM_ZERO);
90a7806e 547 atomic64_dec(&zram->stats.zero_pages);
306b0c95
NG
548 }
549 return;
550 }
551
8b3cc3ed 552 zs_free(meta->mem_pool, handle);
306b0c95 553
d2d5e762
WY
554 atomic64_sub(zram_get_obj_size(meta, index),
555 &zram->stats.compr_data_size);
90a7806e 556 atomic64_dec(&zram->stats.pages_stored);
306b0c95 557
8b3cc3ed 558 meta->table[index].handle = 0;
d2d5e762 559 zram_set_obj_size(meta, index, 0);
306b0c95
NG
560}
561
37b51fdd 562static int zram_decompress_page(struct zram *zram, char *mem, u32 index)
306b0c95 563{
b7ca232e 564 int ret = 0;
37b51fdd 565 unsigned char *cmem;
8b3cc3ed 566 struct zram_meta *meta = zram->meta;
92967471 567 unsigned long handle;
ebaf9ab5 568 unsigned int size;
92967471 569
d2d5e762 570 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
92967471 571 handle = meta->table[index].handle;
d2d5e762 572 size = zram_get_obj_size(meta, index);
306b0c95 573
8b3cc3ed 574 if (!handle || zram_test_flag(meta, index, ZRAM_ZERO)) {
d2d5e762 575 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
42e99bd9 576 clear_page(mem);
8c921b2b
JM
577 return 0;
578 }
306b0c95 579
8b3cc3ed 580 cmem = zs_map_object(meta->mem_pool, handle, ZS_MM_RO);
ebaf9ab5 581 if (size == PAGE_SIZE) {
42e99bd9 582 copy_page(mem, cmem);
ebaf9ab5
SS
583 } else {
584 struct zcomp_strm *zstrm = zcomp_stream_get(zram->comp);
585
586 ret = zcomp_decompress(zstrm, cmem, size, mem);
587 zcomp_stream_put(zram->comp);
588 }
8b3cc3ed 589 zs_unmap_object(meta->mem_pool, handle);
d2d5e762 590 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
a1dd52af 591
8c921b2b 592 /* Should NEVER happen. Return bio error if it does. */
b7ca232e 593 if (unlikely(ret)) {
8c921b2b 594 pr_err("Decompression failed! err=%d, page=%u\n", ret, index);
8c921b2b 595 return ret;
a1dd52af 596 }
306b0c95 597
8c921b2b 598 return 0;
306b0c95
NG
599}
600
37b51fdd 601static int zram_bvec_read(struct zram *zram, struct bio_vec *bvec,
b627cff3 602 u32 index, int offset)
924bd88d
JM
603{
604 int ret;
37b51fdd
SS
605 struct page *page;
606 unsigned char *user_mem, *uncmem = NULL;
8b3cc3ed 607 struct zram_meta *meta = zram->meta;
37b51fdd
SS
608 page = bvec->bv_page;
609
d2d5e762 610 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
8b3cc3ed
MK
611 if (unlikely(!meta->table[index].handle) ||
612 zram_test_flag(meta, index, ZRAM_ZERO)) {
d2d5e762 613 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
37b51fdd 614 handle_zero_page(bvec);
924bd88d
JM
615 return 0;
616 }
d2d5e762 617 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
924bd88d 618
37b51fdd
SS
619 if (is_partial_io(bvec))
620 /* Use a temporary buffer to decompress the page */
7e5a5104
MK
621 uncmem = kmalloc(PAGE_SIZE, GFP_NOIO);
622
623 user_mem = kmap_atomic(page);
624 if (!is_partial_io(bvec))
37b51fdd
SS
625 uncmem = user_mem;
626
627 if (!uncmem) {
70864969 628 pr_err("Unable to allocate temp memory\n");
37b51fdd
SS
629 ret = -ENOMEM;
630 goto out_cleanup;
631 }
924bd88d 632
37b51fdd 633 ret = zram_decompress_page(zram, uncmem, index);
924bd88d 634 /* Should NEVER happen. Return bio error if it does. */
b7ca232e 635 if (unlikely(ret))
37b51fdd 636 goto out_cleanup;
924bd88d 637
37b51fdd
SS
638 if (is_partial_io(bvec))
639 memcpy(user_mem + bvec->bv_offset, uncmem + offset,
640 bvec->bv_len);
641
642 flush_dcache_page(page);
643 ret = 0;
644out_cleanup:
645 kunmap_atomic(user_mem);
646 if (is_partial_io(bvec))
647 kfree(uncmem);
648 return ret;
924bd88d
JM
649}
650
651static int zram_bvec_write(struct zram *zram, struct bio_vec *bvec, u32 index,
652 int offset)
306b0c95 653{
397c6066 654 int ret = 0;
ebaf9ab5 655 unsigned int clen;
da9556a2 656 unsigned long handle = 0;
130f315a 657 struct page *page;
924bd88d 658 unsigned char *user_mem, *cmem, *src, *uncmem = NULL;
8b3cc3ed 659 struct zram_meta *meta = zram->meta;
17162f41 660 struct zcomp_strm *zstrm = NULL;
461a8eee 661 unsigned long alloced_pages;
306b0c95 662
8c921b2b 663 page = bvec->bv_page;
924bd88d
JM
664 if (is_partial_io(bvec)) {
665 /*
666 * This is a partial IO. We need to read the full page
667 * before to write the changes.
668 */
7e5a5104 669 uncmem = kmalloc(PAGE_SIZE, GFP_NOIO);
924bd88d 670 if (!uncmem) {
924bd88d
JM
671 ret = -ENOMEM;
672 goto out;
673 }
37b51fdd 674 ret = zram_decompress_page(zram, uncmem, index);
397c6066 675 if (ret)
924bd88d 676 goto out;
924bd88d
JM
677 }
678
da9556a2 679compress_again:
ba82fe2e 680 user_mem = kmap_atomic(page);
397c6066 681 if (is_partial_io(bvec)) {
924bd88d
JM
682 memcpy(uncmem + offset, user_mem + bvec->bv_offset,
683 bvec->bv_len);
397c6066
NG
684 kunmap_atomic(user_mem);
685 user_mem = NULL;
686 } else {
924bd88d 687 uncmem = user_mem;
397c6066 688 }
924bd88d
JM
689
690 if (page_zero_filled(uncmem)) {
c4065152
WY
691 if (user_mem)
692 kunmap_atomic(user_mem);
f40ac2ae 693 /* Free memory associated with this sector now. */
d2d5e762 694 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
f40ac2ae 695 zram_free_page(zram, index);
92967471 696 zram_set_flag(meta, index, ZRAM_ZERO);
d2d5e762 697 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
f40ac2ae 698
90a7806e 699 atomic64_inc(&zram->stats.zero_pages);
924bd88d
JM
700 ret = 0;
701 goto out;
8c921b2b 702 }
306b0c95 703
2aea8493 704 zstrm = zcomp_stream_get(zram->comp);
ebaf9ab5 705 ret = zcomp_compress(zstrm, uncmem, &clen);
397c6066
NG
706 if (!is_partial_io(bvec)) {
707 kunmap_atomic(user_mem);
708 user_mem = NULL;
709 uncmem = NULL;
710 }
306b0c95 711
b7ca232e 712 if (unlikely(ret)) {
8c921b2b 713 pr_err("Compression failed! err=%d\n", ret);
924bd88d 714 goto out;
8c921b2b 715 }
da9556a2 716
b7ca232e 717 src = zstrm->buffer;
c8f2f0db 718 if (unlikely(clen > max_zpage_size)) {
c8f2f0db 719 clen = PAGE_SIZE;
397c6066
NG
720 if (is_partial_io(bvec))
721 src = uncmem;
c8f2f0db 722 }
a1dd52af 723
da9556a2
SS
724 /*
725 * handle allocation has 2 paths:
726 * a) fast path is executed with preemption disabled (for
727 * per-cpu streams) and has __GFP_DIRECT_RECLAIM bit clear,
728 * since we can't sleep;
729 * b) slow path enables preemption and attempts to allocate
730 * the page with __GFP_DIRECT_RECLAIM bit set. we have to
731 * put per-cpu compression stream and, thus, to re-do
732 * the compression once handle is allocated.
733 *
734 * if we have a 'non-null' handle here then we are coming
735 * from the slow path and handle has already been allocated.
736 */
737 if (!handle)
738 handle = zs_malloc(meta->mem_pool, clen,
739 __GFP_KSWAPD_RECLAIM |
740 __GFP_NOWARN |
9bc482d3
MK
741 __GFP_HIGHMEM |
742 __GFP_MOVABLE);
fd1a30de 743 if (!handle) {
2aea8493 744 zcomp_stream_put(zram->comp);
da9556a2
SS
745 zstrm = NULL;
746
623e47fc
SS
747 atomic64_inc(&zram->stats.writestall);
748
da9556a2 749 handle = zs_malloc(meta->mem_pool, clen,
9bc482d3
MK
750 GFP_NOIO | __GFP_HIGHMEM |
751 __GFP_MOVABLE);
da9556a2
SS
752 if (handle)
753 goto compress_again;
754
ebaf9ab5 755 pr_err("Error allocating memory for compressed page: %u, size=%u\n",
596b3dd4 756 index, clen);
924bd88d
JM
757 ret = -ENOMEM;
758 goto out;
8c921b2b 759 }
9ada9da9 760
461a8eee 761 alloced_pages = zs_get_total_pages(meta->mem_pool);
12372755
SS
762 update_used_max(zram, alloced_pages);
763
461a8eee 764 if (zram->limit_pages && alloced_pages > zram->limit_pages) {
9ada9da9
MK
765 zs_free(meta->mem_pool, handle);
766 ret = -ENOMEM;
767 goto out;
768 }
769
8b3cc3ed 770 cmem = zs_map_object(meta->mem_pool, handle, ZS_MM_WO);
306b0c95 771
42e99bd9 772 if ((clen == PAGE_SIZE) && !is_partial_io(bvec)) {
397c6066 773 src = kmap_atomic(page);
42e99bd9 774 copy_page(cmem, src);
397c6066 775 kunmap_atomic(src);
42e99bd9
JL
776 } else {
777 memcpy(cmem, src, clen);
778 }
306b0c95 779
2aea8493 780 zcomp_stream_put(zram->comp);
17162f41 781 zstrm = NULL;
8b3cc3ed 782 zs_unmap_object(meta->mem_pool, handle);
fd1a30de 783
f40ac2ae
SS
784 /*
785 * Free memory associated with this sector
786 * before overwriting unused sectors.
787 */
d2d5e762 788 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
f40ac2ae
SS
789 zram_free_page(zram, index);
790
8b3cc3ed 791 meta->table[index].handle = handle;
d2d5e762
WY
792 zram_set_obj_size(meta, index, clen);
793 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
306b0c95 794
8c921b2b 795 /* Update stats */
90a7806e
SS
796 atomic64_add(clen, &zram->stats.compr_data_size);
797 atomic64_inc(&zram->stats.pages_stored);
924bd88d 798out:
17162f41 799 if (zstrm)
2aea8493 800 zcomp_stream_put(zram->comp);
397c6066
NG
801 if (is_partial_io(bvec))
802 kfree(uncmem);
924bd88d 803 return ret;
8c921b2b
JM
804}
805
f4659d8e
JK
806/*
807 * zram_bio_discard - handler on discard request
808 * @index: physical block index in PAGE_SIZE units
809 * @offset: byte offset within physical block
810 */
811static void zram_bio_discard(struct zram *zram, u32 index,
812 int offset, struct bio *bio)
813{
814 size_t n = bio->bi_iter.bi_size;
d2d5e762 815 struct zram_meta *meta = zram->meta;
f4659d8e
JK
816
817 /*
818 * zram manages data in physical block size units. Because logical block
819 * size isn't identical with physical block size on some arch, we
820 * could get a discard request pointing to a specific offset within a
821 * certain physical block. Although we can handle this request by
822 * reading that physiclal block and decompressing and partially zeroing
823 * and re-compressing and then re-storing it, this isn't reasonable
824 * because our intent with a discard request is to save memory. So
825 * skipping this logical block is appropriate here.
826 */
827 if (offset) {
38515c73 828 if (n <= (PAGE_SIZE - offset))
f4659d8e
JK
829 return;
830
38515c73 831 n -= (PAGE_SIZE - offset);
f4659d8e
JK
832 index++;
833 }
834
835 while (n >= PAGE_SIZE) {
d2d5e762 836 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
f4659d8e 837 zram_free_page(zram, index);
d2d5e762 838 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
015254da 839 atomic64_inc(&zram->stats.notify_free);
f4659d8e
JK
840 index++;
841 n -= PAGE_SIZE;
842 }
843}
844
522698d7 845static int zram_bvec_rw(struct zram *zram, struct bio_vec *bvec, u32 index,
abf54548 846 int offset, int op)
9b3bb7ab 847{
522698d7 848 unsigned long start_time = jiffies;
9b3bb7ab 849 int ret;
9b3bb7ab 850
abf54548 851 generic_start_io_acct(op, bvec->bv_len >> SECTOR_SHIFT,
522698d7 852 &zram->disk->part0);
46a51c80 853
abf54548 854 if (!op_is_write(op)) {
522698d7
SS
855 atomic64_inc(&zram->stats.num_reads);
856 ret = zram_bvec_read(zram, bvec, index, offset);
857 } else {
858 atomic64_inc(&zram->stats.num_writes);
859 ret = zram_bvec_write(zram, bvec, index, offset);
1b672224 860 }
9b3bb7ab 861
abf54548 862 generic_end_io_acct(op, &zram->disk->part0, start_time);
9b3bb7ab 863
522698d7 864 if (unlikely(ret)) {
abf54548 865 if (!op_is_write(op))
522698d7
SS
866 atomic64_inc(&zram->stats.failed_reads);
867 else
868 atomic64_inc(&zram->stats.failed_writes);
1b672224 869 }
9b3bb7ab 870
1b672224 871 return ret;
8c921b2b
JM
872}
873
be257c61 874static void __zram_make_request(struct zram *zram, struct bio *bio)
8c921b2b 875{
abf54548 876 int offset;
8c921b2b 877 u32 index;
7988613b
KO
878 struct bio_vec bvec;
879 struct bvec_iter iter;
8c921b2b 880
4f024f37
KO
881 index = bio->bi_iter.bi_sector >> SECTORS_PER_PAGE_SHIFT;
882 offset = (bio->bi_iter.bi_sector &
883 (SECTORS_PER_PAGE - 1)) << SECTOR_SHIFT;
8c921b2b 884
95fe6c1a 885 if (unlikely(bio_op(bio) == REQ_OP_DISCARD)) {
f4659d8e 886 zram_bio_discard(zram, index, offset, bio);
4246a0b6 887 bio_endio(bio);
f4659d8e
JK
888 return;
889 }
890
7988613b 891 bio_for_each_segment(bvec, bio, iter) {
924bd88d
JM
892 int max_transfer_size = PAGE_SIZE - offset;
893
7988613b 894 if (bvec.bv_len > max_transfer_size) {
924bd88d
JM
895 /*
896 * zram_bvec_rw() can only make operation on a single
897 * zram page. Split the bio vector.
898 */
899 struct bio_vec bv;
900
7988613b 901 bv.bv_page = bvec.bv_page;
924bd88d 902 bv.bv_len = max_transfer_size;
7988613b 903 bv.bv_offset = bvec.bv_offset;
924bd88d 904
abf54548
MC
905 if (zram_bvec_rw(zram, &bv, index, offset,
906 bio_op(bio)) < 0)
924bd88d
JM
907 goto out;
908
7988613b 909 bv.bv_len = bvec.bv_len - max_transfer_size;
924bd88d 910 bv.bv_offset += max_transfer_size;
abf54548
MC
911 if (zram_bvec_rw(zram, &bv, index + 1, 0,
912 bio_op(bio)) < 0)
924bd88d
JM
913 goto out;
914 } else
abf54548
MC
915 if (zram_bvec_rw(zram, &bvec, index, offset,
916 bio_op(bio)) < 0)
924bd88d
JM
917 goto out;
918
7988613b 919 update_position(&index, &offset, &bvec);
a1dd52af 920 }
306b0c95 921
4246a0b6 922 bio_endio(bio);
7d7854b4 923 return;
306b0c95
NG
924
925out:
306b0c95 926 bio_io_error(bio);
306b0c95
NG
927}
928
306b0c95 929/*
f1e3cfff 930 * Handler function for all zram I/O requests.
306b0c95 931 */
dece1635 932static blk_qc_t zram_make_request(struct request_queue *queue, struct bio *bio)
306b0c95 933{
f1e3cfff 934 struct zram *zram = queue->queuedata;
306b0c95 935
08eee69f 936 if (unlikely(!zram_meta_get(zram)))
3de738cd 937 goto error;
0900beae 938
54efd50b
KO
939 blk_queue_split(queue, &bio, queue->bio_split);
940
54850e73 941 if (!valid_io_request(zram, bio->bi_iter.bi_sector,
942 bio->bi_iter.bi_size)) {
da5cc7d3 943 atomic64_inc(&zram->stats.invalid_io);
08eee69f 944 goto put_zram;
6642a67c
JM
945 }
946
be257c61 947 __zram_make_request(zram, bio);
08eee69f 948 zram_meta_put(zram);
dece1635 949 return BLK_QC_T_NONE;
08eee69f
MK
950put_zram:
951 zram_meta_put(zram);
0900beae
JM
952error:
953 bio_io_error(bio);
dece1635 954 return BLK_QC_T_NONE;
306b0c95
NG
955}
956
2ccbec05
NG
957static void zram_slot_free_notify(struct block_device *bdev,
958 unsigned long index)
107c161b 959{
f1e3cfff 960 struct zram *zram;
f614a9f4 961 struct zram_meta *meta;
107c161b 962
f1e3cfff 963 zram = bdev->bd_disk->private_data;
f614a9f4 964 meta = zram->meta;
a0c516cb 965
d2d5e762 966 bit_spin_lock(ZRAM_ACCESS, &meta->table[index].value);
f614a9f4 967 zram_free_page(zram, index);
d2d5e762 968 bit_spin_unlock(ZRAM_ACCESS, &meta->table[index].value);
f614a9f4 969 atomic64_inc(&zram->stats.notify_free);
107c161b
NG
970}
971
8c7f0102 972static int zram_rw_page(struct block_device *bdev, sector_t sector,
abf54548 973 struct page *page, int op)
8c7f0102 974{
08eee69f 975 int offset, err = -EIO;
8c7f0102 976 u32 index;
977 struct zram *zram;
978 struct bio_vec bv;
979
980 zram = bdev->bd_disk->private_data;
08eee69f
MK
981 if (unlikely(!zram_meta_get(zram)))
982 goto out;
983
8c7f0102 984 if (!valid_io_request(zram, sector, PAGE_SIZE)) {
985 atomic64_inc(&zram->stats.invalid_io);
08eee69f
MK
986 err = -EINVAL;
987 goto put_zram;
8c7f0102 988 }
989
990 index = sector >> SECTORS_PER_PAGE_SHIFT;
991 offset = sector & (SECTORS_PER_PAGE - 1) << SECTOR_SHIFT;
992
993 bv.bv_page = page;
994 bv.bv_len = PAGE_SIZE;
995 bv.bv_offset = 0;
996
abf54548 997 err = zram_bvec_rw(zram, &bv, index, offset, op);
08eee69f
MK
998put_zram:
999 zram_meta_put(zram);
1000out:
8c7f0102 1001 /*
1002 * If I/O fails, just return error(ie, non-zero) without
1003 * calling page_endio.
1004 * It causes resubmit the I/O with bio request by upper functions
1005 * of rw_page(e.g., swap_readpage, __swap_writepage) and
1006 * bio->bi_end_io does things to handle the error
1007 * (e.g., SetPageError, set_page_dirty and extra works).
1008 */
1009 if (err == 0)
abf54548 1010 page_endio(page, op, 0);
8c7f0102 1011 return err;
1012}
1013
522698d7
SS
1014static void zram_reset_device(struct zram *zram)
1015{
1016 struct zram_meta *meta;
1017 struct zcomp *comp;
1018 u64 disksize;
306b0c95 1019
522698d7 1020 down_write(&zram->init_lock);
9b3bb7ab 1021
522698d7
SS
1022 zram->limit_pages = 0;
1023
1024 if (!init_done(zram)) {
1025 up_write(&zram->init_lock);
1026 return;
1027 }
1028
1029 meta = zram->meta;
1030 comp = zram->comp;
1031 disksize = zram->disksize;
1032 /*
1033 * Refcount will go down to 0 eventually and r/w handler
1034 * cannot handle further I/O so it will bail out by
1035 * check zram_meta_get.
1036 */
1037 zram_meta_put(zram);
1038 /*
1039 * We want to free zram_meta in process context to avoid
1040 * deadlock between reclaim path and any other locks.
1041 */
1042 wait_event(zram->io_done, atomic_read(&zram->refcount) == 0);
1043
1044 /* Reset stats */
1045 memset(&zram->stats, 0, sizeof(zram->stats));
1046 zram->disksize = 0;
522698d7
SS
1047
1048 set_capacity(zram->disk, 0);
1049 part_stat_set_all(&zram->disk->part0, 0);
1050
1051 up_write(&zram->init_lock);
1052 /* I/O operation under all of CPU are done so let's free */
1053 zram_meta_free(meta, disksize);
1054 zcomp_destroy(comp);
1055}
1056
1057static ssize_t disksize_store(struct device *dev,
1058 struct device_attribute *attr, const char *buf, size_t len)
2f6a3bed 1059{
522698d7
SS
1060 u64 disksize;
1061 struct zcomp *comp;
1062 struct zram_meta *meta;
2f6a3bed 1063 struct zram *zram = dev_to_zram(dev);
522698d7 1064 int err;
2f6a3bed 1065
522698d7
SS
1066 disksize = memparse(buf, NULL);
1067 if (!disksize)
1068 return -EINVAL;
2f6a3bed 1069
522698d7 1070 disksize = PAGE_ALIGN(disksize);
4ce321f5 1071 meta = zram_meta_alloc(zram->disk->disk_name, disksize);
522698d7
SS
1072 if (!meta)
1073 return -ENOMEM;
1074
da9556a2 1075 comp = zcomp_create(zram->compressor);
522698d7 1076 if (IS_ERR(comp)) {
70864969 1077 pr_err("Cannot initialise %s compressing backend\n",
522698d7
SS
1078 zram->compressor);
1079 err = PTR_ERR(comp);
1080 goto out_free_meta;
1081 }
1082
1083 down_write(&zram->init_lock);
1084 if (init_done(zram)) {
1085 pr_info("Cannot change disksize for initialized device\n");
1086 err = -EBUSY;
1087 goto out_destroy_comp;
1088 }
1089
1090 init_waitqueue_head(&zram->io_done);
1091 atomic_set(&zram->refcount, 1);
1092 zram->meta = meta;
1093 zram->comp = comp;
1094 zram->disksize = disksize;
1095 set_capacity(zram->disk, zram->disksize >> SECTOR_SHIFT);
1096 up_write(&zram->init_lock);
1097
1098 /*
1099 * Revalidate disk out of the init_lock to avoid lockdep splat.
1100 * It's okay because disk's capacity is protected by init_lock
1101 * so that revalidate_disk always sees up-to-date capacity.
1102 */
1103 revalidate_disk(zram->disk);
1104
1105 return len;
1106
1107out_destroy_comp:
1108 up_write(&zram->init_lock);
1109 zcomp_destroy(comp);
1110out_free_meta:
1111 zram_meta_free(meta, disksize);
1112 return err;
2f6a3bed
SS
1113}
1114
522698d7
SS
1115static ssize_t reset_store(struct device *dev,
1116 struct device_attribute *attr, const char *buf, size_t len)
4f2109f6 1117{
522698d7
SS
1118 int ret;
1119 unsigned short do_reset;
1120 struct zram *zram;
1121 struct block_device *bdev;
4f2109f6 1122
f405c445
SS
1123 ret = kstrtou16(buf, 10, &do_reset);
1124 if (ret)
1125 return ret;
1126
1127 if (!do_reset)
1128 return -EINVAL;
1129
522698d7
SS
1130 zram = dev_to_zram(dev);
1131 bdev = bdget_disk(zram->disk, 0);
522698d7
SS
1132 if (!bdev)
1133 return -ENOMEM;
4f2109f6 1134
522698d7 1135 mutex_lock(&bdev->bd_mutex);
f405c445
SS
1136 /* Do not reset an active device or claimed device */
1137 if (bdev->bd_openers || zram->claim) {
1138 mutex_unlock(&bdev->bd_mutex);
1139 bdput(bdev);
1140 return -EBUSY;
522698d7
SS
1141 }
1142
f405c445
SS
1143 /* From now on, anyone can't open /dev/zram[0-9] */
1144 zram->claim = true;
1145 mutex_unlock(&bdev->bd_mutex);
522698d7 1146
f405c445 1147 /* Make sure all the pending I/O are finished */
522698d7
SS
1148 fsync_bdev(bdev);
1149 zram_reset_device(zram);
522698d7
SS
1150 revalidate_disk(zram->disk);
1151 bdput(bdev);
1152
f405c445
SS
1153 mutex_lock(&bdev->bd_mutex);
1154 zram->claim = false;
1155 mutex_unlock(&bdev->bd_mutex);
1156
522698d7 1157 return len;
f405c445
SS
1158}
1159
1160static int zram_open(struct block_device *bdev, fmode_t mode)
1161{
1162 int ret = 0;
1163 struct zram *zram;
1164
1165 WARN_ON(!mutex_is_locked(&bdev->bd_mutex));
1166
1167 zram = bdev->bd_disk->private_data;
1168 /* zram was claimed to reset so open request fails */
1169 if (zram->claim)
1170 ret = -EBUSY;
4f2109f6
SS
1171
1172 return ret;
1173}
1174
522698d7 1175static const struct block_device_operations zram_devops = {
f405c445 1176 .open = zram_open,
522698d7
SS
1177 .swap_slot_free_notify = zram_slot_free_notify,
1178 .rw_page = zram_rw_page,
1179 .owner = THIS_MODULE
1180};
1181
1182static DEVICE_ATTR_WO(compact);
1183static DEVICE_ATTR_RW(disksize);
1184static DEVICE_ATTR_RO(initstate);
1185static DEVICE_ATTR_WO(reset);
1186static DEVICE_ATTR_RO(orig_data_size);
1187static DEVICE_ATTR_RO(mem_used_total);
1188static DEVICE_ATTR_RW(mem_limit);
1189static DEVICE_ATTR_RW(mem_used_max);
1190static DEVICE_ATTR_RW(max_comp_streams);
1191static DEVICE_ATTR_RW(comp_algorithm);
a68eb3b6 1192
9b3bb7ab
SS
1193static struct attribute *zram_disk_attrs[] = {
1194 &dev_attr_disksize.attr,
1195 &dev_attr_initstate.attr,
1196 &dev_attr_reset.attr,
1197 &dev_attr_num_reads.attr,
1198 &dev_attr_num_writes.attr,
64447249
SS
1199 &dev_attr_failed_reads.attr,
1200 &dev_attr_failed_writes.attr,
99ebbd30 1201 &dev_attr_compact.attr,
9b3bb7ab
SS
1202 &dev_attr_invalid_io.attr,
1203 &dev_attr_notify_free.attr,
1204 &dev_attr_zero_pages.attr,
1205 &dev_attr_orig_data_size.attr,
1206 &dev_attr_compr_data_size.attr,
1207 &dev_attr_mem_used_total.attr,
9ada9da9 1208 &dev_attr_mem_limit.attr,
461a8eee 1209 &dev_attr_mem_used_max.attr,
beca3ec7 1210 &dev_attr_max_comp_streams.attr,
e46b8a03 1211 &dev_attr_comp_algorithm.attr,
2f6a3bed 1212 &dev_attr_io_stat.attr,
4f2109f6 1213 &dev_attr_mm_stat.attr,
623e47fc 1214 &dev_attr_debug_stat.attr,
9b3bb7ab
SS
1215 NULL,
1216};
1217
1218static struct attribute_group zram_disk_attr_group = {
1219 .attrs = zram_disk_attrs,
1220};
1221
92ff1528
SS
1222/*
1223 * Allocate and initialize new zram device. the function returns
1224 * '>= 0' device_id upon success, and negative value otherwise.
1225 */
1226static int zram_add(void)
306b0c95 1227{
85508ec6 1228 struct zram *zram;
ee980160 1229 struct request_queue *queue;
92ff1528 1230 int ret, device_id;
85508ec6
SS
1231
1232 zram = kzalloc(sizeof(struct zram), GFP_KERNEL);
1233 if (!zram)
1234 return -ENOMEM;
1235
92ff1528 1236 ret = idr_alloc(&zram_index_idr, zram, 0, 0, GFP_KERNEL);
85508ec6
SS
1237 if (ret < 0)
1238 goto out_free_dev;
92ff1528 1239 device_id = ret;
de1a21a0 1240
0900beae 1241 init_rwsem(&zram->init_lock);
306b0c95 1242
ee980160
SS
1243 queue = blk_alloc_queue(GFP_KERNEL);
1244 if (!queue) {
306b0c95
NG
1245 pr_err("Error allocating disk queue for device %d\n",
1246 device_id);
85508ec6
SS
1247 ret = -ENOMEM;
1248 goto out_free_idr;
306b0c95
NG
1249 }
1250
ee980160 1251 blk_queue_make_request(queue, zram_make_request);
306b0c95 1252
85508ec6 1253 /* gendisk structure */
f1e3cfff
NG
1254 zram->disk = alloc_disk(1);
1255 if (!zram->disk) {
70864969 1256 pr_err("Error allocating disk structure for device %d\n",
306b0c95 1257 device_id);
201c7b72 1258 ret = -ENOMEM;
39a9b8ac 1259 goto out_free_queue;
306b0c95
NG
1260 }
1261
f1e3cfff
NG
1262 zram->disk->major = zram_major;
1263 zram->disk->first_minor = device_id;
1264 zram->disk->fops = &zram_devops;
ee980160
SS
1265 zram->disk->queue = queue;
1266 zram->disk->queue->queuedata = zram;
f1e3cfff
NG
1267 zram->disk->private_data = zram;
1268 snprintf(zram->disk->disk_name, 16, "zram%d", device_id);
306b0c95 1269
33863c21 1270 /* Actual capacity set using syfs (/sys/block/zram<id>/disksize */
f1e3cfff 1271 set_capacity(zram->disk, 0);
b67d1ec1
SS
1272 /* zram devices sort of resembles non-rotational disks */
1273 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, zram->disk->queue);
b277da0a 1274 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, zram->disk->queue);
a1dd52af
NG
1275 /*
1276 * To ensure that we always get PAGE_SIZE aligned
1277 * and n*PAGE_SIZED sized I/O requests.
1278 */
f1e3cfff 1279 blk_queue_physical_block_size(zram->disk->queue, PAGE_SIZE);
7b19b8d4
RJ
1280 blk_queue_logical_block_size(zram->disk->queue,
1281 ZRAM_LOGICAL_BLOCK_SIZE);
f1e3cfff
NG
1282 blk_queue_io_min(zram->disk->queue, PAGE_SIZE);
1283 blk_queue_io_opt(zram->disk->queue, PAGE_SIZE);
f4659d8e 1284 zram->disk->queue->limits.discard_granularity = PAGE_SIZE;
2bb4cd5c 1285 blk_queue_max_discard_sectors(zram->disk->queue, UINT_MAX);
f4659d8e
JK
1286 /*
1287 * zram_bio_discard() will clear all logical blocks if logical block
1288 * size is identical with physical block size(PAGE_SIZE). But if it is
1289 * different, we will skip discarding some parts of logical blocks in
1290 * the part of the request range which isn't aligned to physical block
1291 * size. So we can't ensure that all discarded logical blocks are
1292 * zeroed.
1293 */
1294 if (ZRAM_LOGICAL_BLOCK_SIZE == PAGE_SIZE)
1295 zram->disk->queue->limits.discard_zeroes_data = 1;
1296 else
1297 zram->disk->queue->limits.discard_zeroes_data = 0;
1298 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, zram->disk->queue);
5d83d5a0 1299
f1e3cfff 1300 add_disk(zram->disk);
306b0c95 1301
33863c21
NG
1302 ret = sysfs_create_group(&disk_to_dev(zram->disk)->kobj,
1303 &zram_disk_attr_group);
1304 if (ret < 0) {
70864969
SS
1305 pr_err("Error creating sysfs group for device %d\n",
1306 device_id);
39a9b8ac 1307 goto out_free_disk;
33863c21 1308 }
e46b8a03 1309 strlcpy(zram->compressor, default_compressor, sizeof(zram->compressor));
be2d1d56 1310 zram->meta = NULL;
d12b63c9
SS
1311
1312 pr_info("Added device: %s\n", zram->disk->disk_name);
92ff1528 1313 return device_id;
de1a21a0 1314
39a9b8ac
JL
1315out_free_disk:
1316 del_gendisk(zram->disk);
1317 put_disk(zram->disk);
1318out_free_queue:
ee980160 1319 blk_cleanup_queue(queue);
85508ec6
SS
1320out_free_idr:
1321 idr_remove(&zram_index_idr, device_id);
1322out_free_dev:
1323 kfree(zram);
de1a21a0 1324 return ret;
306b0c95
NG
1325}
1326
6566d1a3 1327static int zram_remove(struct zram *zram)
306b0c95 1328{
6566d1a3
SS
1329 struct block_device *bdev;
1330
1331 bdev = bdget_disk(zram->disk, 0);
1332 if (!bdev)
1333 return -ENOMEM;
1334
1335 mutex_lock(&bdev->bd_mutex);
1336 if (bdev->bd_openers || zram->claim) {
1337 mutex_unlock(&bdev->bd_mutex);
1338 bdput(bdev);
1339 return -EBUSY;
1340 }
1341
1342 zram->claim = true;
1343 mutex_unlock(&bdev->bd_mutex);
1344
85508ec6
SS
1345 /*
1346 * Remove sysfs first, so no one will perform a disksize
6566d1a3
SS
1347 * store while we destroy the devices. This also helps during
1348 * hot_remove -- zram_reset_device() is the last holder of
1349 * ->init_lock, no later/concurrent disksize_store() or any
1350 * other sysfs handlers are possible.
85508ec6
SS
1351 */
1352 sysfs_remove_group(&disk_to_dev(zram->disk)->kobj,
1353 &zram_disk_attr_group);
306b0c95 1354
6566d1a3
SS
1355 /* Make sure all the pending I/O are finished */
1356 fsync_bdev(bdev);
85508ec6 1357 zram_reset_device(zram);
6566d1a3
SS
1358 bdput(bdev);
1359
1360 pr_info("Removed device: %s\n", zram->disk->disk_name);
1361
85508ec6
SS
1362 blk_cleanup_queue(zram->disk->queue);
1363 del_gendisk(zram->disk);
1364 put_disk(zram->disk);
1365 kfree(zram);
6566d1a3
SS
1366 return 0;
1367}
1368
1369/* zram-control sysfs attributes */
1370static ssize_t hot_add_show(struct class *class,
1371 struct class_attribute *attr,
1372 char *buf)
1373{
1374 int ret;
1375
1376 mutex_lock(&zram_index_mutex);
1377 ret = zram_add();
1378 mutex_unlock(&zram_index_mutex);
1379
1380 if (ret < 0)
1381 return ret;
1382 return scnprintf(buf, PAGE_SIZE, "%d\n", ret);
1383}
1384
1385static ssize_t hot_remove_store(struct class *class,
1386 struct class_attribute *attr,
1387 const char *buf,
1388 size_t count)
1389{
1390 struct zram *zram;
1391 int ret, dev_id;
1392
1393 /* dev_id is gendisk->first_minor, which is `int' */
1394 ret = kstrtoint(buf, 10, &dev_id);
1395 if (ret)
1396 return ret;
1397 if (dev_id < 0)
1398 return -EINVAL;
1399
1400 mutex_lock(&zram_index_mutex);
1401
1402 zram = idr_find(&zram_index_idr, dev_id);
17ec4cd9 1403 if (zram) {
6566d1a3 1404 ret = zram_remove(zram);
17ec4cd9
JM
1405 idr_remove(&zram_index_idr, dev_id);
1406 } else {
6566d1a3 1407 ret = -ENODEV;
17ec4cd9 1408 }
6566d1a3
SS
1409
1410 mutex_unlock(&zram_index_mutex);
1411 return ret ? ret : count;
85508ec6 1412}
a096cafc 1413
6566d1a3
SS
1414static struct class_attribute zram_control_class_attrs[] = {
1415 __ATTR_RO(hot_add),
1416 __ATTR_WO(hot_remove),
1417 __ATTR_NULL,
1418};
1419
1420static struct class zram_control_class = {
1421 .name = "zram-control",
1422 .owner = THIS_MODULE,
1423 .class_attrs = zram_control_class_attrs,
1424};
1425
85508ec6
SS
1426static int zram_remove_cb(int id, void *ptr, void *data)
1427{
1428 zram_remove(ptr);
1429 return 0;
1430}
a096cafc 1431
85508ec6
SS
1432static void destroy_devices(void)
1433{
6566d1a3 1434 class_unregister(&zram_control_class);
85508ec6
SS
1435 idr_for_each(&zram_index_idr, &zram_remove_cb, NULL);
1436 idr_destroy(&zram_index_idr);
a096cafc 1437 unregister_blkdev(zram_major, "zram");
306b0c95
NG
1438}
1439
f1e3cfff 1440static int __init zram_init(void)
306b0c95 1441{
92ff1528 1442 int ret;
306b0c95 1443
6566d1a3
SS
1444 ret = class_register(&zram_control_class);
1445 if (ret) {
70864969 1446 pr_err("Unable to register zram-control class\n");
6566d1a3
SS
1447 return ret;
1448 }
1449
f1e3cfff
NG
1450 zram_major = register_blkdev(0, "zram");
1451 if (zram_major <= 0) {
70864969 1452 pr_err("Unable to get major number\n");
6566d1a3 1453 class_unregister(&zram_control_class);
a096cafc 1454 return -EBUSY;
306b0c95
NG
1455 }
1456
92ff1528 1457 while (num_devices != 0) {
6566d1a3 1458 mutex_lock(&zram_index_mutex);
92ff1528 1459 ret = zram_add();
6566d1a3 1460 mutex_unlock(&zram_index_mutex);
92ff1528 1461 if (ret < 0)
a096cafc 1462 goto out_error;
92ff1528 1463 num_devices--;
de1a21a0
NG
1464 }
1465
306b0c95 1466 return 0;
de1a21a0 1467
a096cafc 1468out_error:
85508ec6 1469 destroy_devices();
306b0c95
NG
1470 return ret;
1471}
1472
f1e3cfff 1473static void __exit zram_exit(void)
306b0c95 1474{
85508ec6 1475 destroy_devices();
306b0c95
NG
1476}
1477
f1e3cfff
NG
1478module_init(zram_init);
1479module_exit(zram_exit);
306b0c95 1480
9b3bb7ab 1481module_param(num_devices, uint, 0);
c3cdb40e 1482MODULE_PARM_DESC(num_devices, "Number of pre-created zram devices");
9b3bb7ab 1483
306b0c95
NG
1484MODULE_LICENSE("Dual BSD/GPL");
1485MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");
f1e3cfff 1486MODULE_DESCRIPTION("Compressed RAM Block Device");