Merge remote-tracking branches 'regmap/topic/const' and 'regmap/topic/hwspinlock...
[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>
b09ab054 28#include <linux/backing-dev.h>
306b0c95 29#include <linux/string.h>
306b0c95 30#include <linux/vmalloc.h>
fcfa8d95 31#include <linux/err.h>
85508ec6 32#include <linux/idr.h>
6566d1a3 33#include <linux/sysfs.h>
1dd6c834 34#include <linux/cpuhotplug.h>
306b0c95 35
16a4bfb9 36#include "zram_drv.h"
306b0c95 37
85508ec6 38static DEFINE_IDR(zram_index_idr);
6566d1a3
SS
39/* idr index must be protected */
40static DEFINE_MUTEX(zram_index_mutex);
41
f1e3cfff 42static int zram_major;
b7ca232e 43static const char *default_compressor = "lzo";
306b0c95 44
306b0c95 45/* Module params (documentation at end) */
ca3d70bd 46static unsigned int num_devices = 1;
33863c21 47
1f7319c7
MK
48static void zram_free_page(struct zram *zram, size_t index);
49
08eee69f 50static inline bool init_done(struct zram *zram)
be2d1d56 51{
08eee69f 52 return zram->disksize;
be2d1d56
SS
53}
54
9b3bb7ab
SS
55static inline struct zram *dev_to_zram(struct device *dev)
56{
57 return (struct zram *)dev_to_disk(dev)->private_data;
58}
59
643ae61d
MK
60static unsigned long zram_get_handle(struct zram *zram, u32 index)
61{
62 return zram->table[index].handle;
63}
64
65static void zram_set_handle(struct zram *zram, u32 index, unsigned long handle)
66{
67 zram->table[index].handle = handle;
68}
69
b31177f2 70/* flag operations require table entry bit_spin_lock() being held */
beb6602c 71static int zram_test_flag(struct zram *zram, u32 index,
522698d7 72 enum zram_pageflags flag)
99ebbd30 73{
beb6602c 74 return zram->table[index].value & BIT(flag);
522698d7 75}
99ebbd30 76
beb6602c 77static void zram_set_flag(struct zram *zram, u32 index,
522698d7
SS
78 enum zram_pageflags flag)
79{
beb6602c 80 zram->table[index].value |= BIT(flag);
522698d7 81}
99ebbd30 82
beb6602c 83static void zram_clear_flag(struct zram *zram, u32 index,
522698d7
SS
84 enum zram_pageflags flag)
85{
beb6602c 86 zram->table[index].value &= ~BIT(flag);
522698d7 87}
99ebbd30 88
beb6602c 89static inline void zram_set_element(struct zram *zram, u32 index,
8e19d540 90 unsigned long element)
91{
beb6602c 92 zram->table[index].element = element;
8e19d540 93}
94
643ae61d 95static unsigned long zram_get_element(struct zram *zram, u32 index)
8e19d540 96{
643ae61d 97 return zram->table[index].element;
8e19d540 98}
99
beb6602c 100static size_t zram_get_obj_size(struct zram *zram, u32 index)
522698d7 101{
beb6602c 102 return zram->table[index].value & (BIT(ZRAM_FLAG_SHIFT) - 1);
99ebbd30
AM
103}
104
beb6602c 105static void zram_set_obj_size(struct zram *zram,
522698d7 106 u32 index, size_t size)
9b3bb7ab 107{
beb6602c 108 unsigned long flags = zram->table[index].value >> ZRAM_FLAG_SHIFT;
9b3bb7ab 109
beb6602c 110 zram->table[index].value = (flags << ZRAM_FLAG_SHIFT) | size;
522698d7
SS
111}
112
1f7319c7 113#if PAGE_SIZE != 4096
1c53e0d2 114static inline bool is_partial_io(struct bio_vec *bvec)
522698d7
SS
115{
116 return bvec->bv_len != PAGE_SIZE;
117}
1f7319c7
MK
118#else
119static inline bool is_partial_io(struct bio_vec *bvec)
120{
121 return false;
122}
123#endif
522698d7 124
b09ab054
MK
125static void zram_revalidate_disk(struct zram *zram)
126{
127 revalidate_disk(zram->disk);
128 /* revalidate_disk reset the BDI_CAP_STABLE_WRITES so set again */
e1735496 129 zram->disk->queue->backing_dev_info->capabilities |=
b09ab054
MK
130 BDI_CAP_STABLE_WRITES;
131}
132
522698d7
SS
133/*
134 * Check if request is within bounds and aligned on zram logical blocks.
135 */
1c53e0d2 136static inline bool valid_io_request(struct zram *zram,
522698d7
SS
137 sector_t start, unsigned int size)
138{
139 u64 end, bound;
140
141 /* unaligned request */
142 if (unlikely(start & (ZRAM_SECTOR_PER_LOGICAL_BLOCK - 1)))
1c53e0d2 143 return false;
522698d7 144 if (unlikely(size & (ZRAM_LOGICAL_BLOCK_SIZE - 1)))
1c53e0d2 145 return false;
522698d7
SS
146
147 end = start + (size >> SECTOR_SHIFT);
148 bound = zram->disksize >> SECTOR_SHIFT;
149 /* out of range range */
150 if (unlikely(start >= bound || end > bound || start > end))
1c53e0d2 151 return false;
522698d7
SS
152
153 /* I/O request is valid */
1c53e0d2 154 return true;
522698d7
SS
155}
156
157static void update_position(u32 *index, int *offset, struct bio_vec *bvec)
158{
e86942c7 159 *index += (*offset + bvec->bv_len) / PAGE_SIZE;
522698d7
SS
160 *offset = (*offset + bvec->bv_len) % PAGE_SIZE;
161}
162
163static inline void update_used_max(struct zram *zram,
164 const unsigned long pages)
165{
166 unsigned long old_max, cur_max;
167
168 old_max = atomic_long_read(&zram->stats.max_used_pages);
169
170 do {
171 cur_max = old_max;
172 if (pages > cur_max)
173 old_max = atomic_long_cmpxchg(
174 &zram->stats.max_used_pages, cur_max, pages);
175 } while (old_max != cur_max);
176}
177
48ad1abe 178static inline void zram_fill_page(void *ptr, unsigned long len,
8e19d540 179 unsigned long value)
180{
8e19d540 181 WARN_ON_ONCE(!IS_ALIGNED(len, sizeof(unsigned long)));
48ad1abe 182 memset_l(ptr, value, len / sizeof(unsigned long));
8e19d540 183}
184
185static bool page_same_filled(void *ptr, unsigned long *element)
522698d7
SS
186{
187 unsigned int pos;
188 unsigned long *page;
f0fe9984 189 unsigned long val;
522698d7
SS
190
191 page = (unsigned long *)ptr;
f0fe9984 192 val = page[0];
522698d7 193
f0fe9984
SP
194 for (pos = 1; pos < PAGE_SIZE / sizeof(*page); pos++) {
195 if (val != page[pos])
1c53e0d2 196 return false;
522698d7
SS
197 }
198
f0fe9984 199 *element = val;
8e19d540 200
1c53e0d2 201 return true;
522698d7
SS
202}
203
9b3bb7ab
SS
204static ssize_t initstate_show(struct device *dev,
205 struct device_attribute *attr, char *buf)
206{
a68eb3b6 207 u32 val;
9b3bb7ab
SS
208 struct zram *zram = dev_to_zram(dev);
209
a68eb3b6
SS
210 down_read(&zram->init_lock);
211 val = init_done(zram);
212 up_read(&zram->init_lock);
9b3bb7ab 213
56b4e8cb 214 return scnprintf(buf, PAGE_SIZE, "%u\n", val);
9b3bb7ab
SS
215}
216
522698d7
SS
217static ssize_t disksize_show(struct device *dev,
218 struct device_attribute *attr, char *buf)
219{
220 struct zram *zram = dev_to_zram(dev);
221
222 return scnprintf(buf, PAGE_SIZE, "%llu\n", zram->disksize);
223}
224
9ada9da9
MK
225static ssize_t mem_limit_store(struct device *dev,
226 struct device_attribute *attr, const char *buf, size_t len)
227{
228 u64 limit;
229 char *tmp;
230 struct zram *zram = dev_to_zram(dev);
231
232 limit = memparse(buf, &tmp);
233 if (buf == tmp) /* no chars parsed, invalid input */
234 return -EINVAL;
235
236 down_write(&zram->init_lock);
237 zram->limit_pages = PAGE_ALIGN(limit) >> PAGE_SHIFT;
238 up_write(&zram->init_lock);
239
240 return len;
241}
242
461a8eee
MK
243static ssize_t mem_used_max_store(struct device *dev,
244 struct device_attribute *attr, const char *buf, size_t len)
245{
246 int err;
247 unsigned long val;
248 struct zram *zram = dev_to_zram(dev);
461a8eee
MK
249
250 err = kstrtoul(buf, 10, &val);
251 if (err || val != 0)
252 return -EINVAL;
253
254 down_read(&zram->init_lock);
5a99e95b 255 if (init_done(zram)) {
461a8eee 256 atomic_long_set(&zram->stats.max_used_pages,
beb6602c 257 zs_get_total_pages(zram->mem_pool));
5a99e95b 258 }
461a8eee
MK
259 up_read(&zram->init_lock);
260
261 return len;
262}
263
013bf95a
MK
264#ifdef CONFIG_ZRAM_WRITEBACK
265static bool zram_wb_enabled(struct zram *zram)
266{
267 return zram->backing_dev;
268}
269
270static void reset_bdev(struct zram *zram)
271{
272 struct block_device *bdev;
273
274 if (!zram_wb_enabled(zram))
275 return;
276
277 bdev = zram->bdev;
278 if (zram->old_block_size)
279 set_blocksize(bdev, zram->old_block_size);
280 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
281 /* hope filp_close flush all of IO */
282 filp_close(zram->backing_dev, NULL);
283 zram->backing_dev = NULL;
284 zram->old_block_size = 0;
285 zram->bdev = NULL;
1363d466
MK
286
287 kvfree(zram->bitmap);
288 zram->bitmap = NULL;
013bf95a
MK
289}
290
291static ssize_t backing_dev_show(struct device *dev,
292 struct device_attribute *attr, char *buf)
293{
294 struct zram *zram = dev_to_zram(dev);
295 struct file *file = zram->backing_dev;
296 char *p;
297 ssize_t ret;
298
299 down_read(&zram->init_lock);
300 if (!zram_wb_enabled(zram)) {
301 memcpy(buf, "none\n", 5);
302 up_read(&zram->init_lock);
303 return 5;
304 }
305
306 p = file_path(file, buf, PAGE_SIZE - 1);
307 if (IS_ERR(p)) {
308 ret = PTR_ERR(p);
309 goto out;
310 }
311
312 ret = strlen(p);
313 memmove(buf, p, ret);
314 buf[ret++] = '\n';
315out:
316 up_read(&zram->init_lock);
317 return ret;
318}
319
320static ssize_t backing_dev_store(struct device *dev,
321 struct device_attribute *attr, const char *buf, size_t len)
322{
323 char *file_name;
324 struct file *backing_dev = NULL;
325 struct inode *inode;
326 struct address_space *mapping;
1363d466
MK
327 unsigned int bitmap_sz, old_block_size = 0;
328 unsigned long nr_pages, *bitmap = NULL;
013bf95a
MK
329 struct block_device *bdev = NULL;
330 int err;
331 struct zram *zram = dev_to_zram(dev);
332
333 file_name = kmalloc(PATH_MAX, GFP_KERNEL);
334 if (!file_name)
335 return -ENOMEM;
336
337 down_write(&zram->init_lock);
338 if (init_done(zram)) {
339 pr_info("Can't setup backing device for initialized device\n");
340 err = -EBUSY;
341 goto out;
342 }
343
344 strlcpy(file_name, buf, len);
345
346 backing_dev = filp_open(file_name, O_RDWR|O_LARGEFILE, 0);
347 if (IS_ERR(backing_dev)) {
348 err = PTR_ERR(backing_dev);
349 backing_dev = NULL;
350 goto out;
351 }
352
353 mapping = backing_dev->f_mapping;
354 inode = mapping->host;
355
356 /* Support only block device in this moment */
357 if (!S_ISBLK(inode->i_mode)) {
358 err = -ENOTBLK;
359 goto out;
360 }
361
362 bdev = bdgrab(I_BDEV(inode));
363 err = blkdev_get(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL, zram);
364 if (err < 0)
365 goto out;
366
1363d466
MK
367 nr_pages = i_size_read(inode) >> PAGE_SHIFT;
368 bitmap_sz = BITS_TO_LONGS(nr_pages) * sizeof(long);
369 bitmap = kvzalloc(bitmap_sz, GFP_KERNEL);
370 if (!bitmap) {
371 err = -ENOMEM;
372 goto out;
373 }
374
013bf95a
MK
375 old_block_size = block_size(bdev);
376 err = set_blocksize(bdev, PAGE_SIZE);
377 if (err)
378 goto out;
379
380 reset_bdev(zram);
1363d466 381 spin_lock_init(&zram->bitmap_lock);
013bf95a
MK
382
383 zram->old_block_size = old_block_size;
384 zram->bdev = bdev;
385 zram->backing_dev = backing_dev;
1363d466
MK
386 zram->bitmap = bitmap;
387 zram->nr_pages = nr_pages;
013bf95a
MK
388 up_write(&zram->init_lock);
389
390 pr_info("setup backing device %s\n", file_name);
391 kfree(file_name);
392
393 return len;
394out:
1363d466
MK
395 if (bitmap)
396 kvfree(bitmap);
397
013bf95a
MK
398 if (bdev)
399 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
400
401 if (backing_dev)
402 filp_close(backing_dev, NULL);
403
404 up_write(&zram->init_lock);
405
406 kfree(file_name);
407
408 return err;
409}
410
1363d466
MK
411static unsigned long get_entry_bdev(struct zram *zram)
412{
413 unsigned long entry;
414
415 spin_lock(&zram->bitmap_lock);
416 /* skip 0 bit to confuse zram.handle = 0 */
417 entry = find_next_zero_bit(zram->bitmap, zram->nr_pages, 1);
418 if (entry == zram->nr_pages) {
419 spin_unlock(&zram->bitmap_lock);
420 return 0;
421 }
422
423 set_bit(entry, zram->bitmap);
424 spin_unlock(&zram->bitmap_lock);
425
426 return entry;
427}
428
429static void put_entry_bdev(struct zram *zram, unsigned long entry)
430{
431 int was_set;
432
433 spin_lock(&zram->bitmap_lock);
434 was_set = test_and_clear_bit(entry, zram->bitmap);
435 spin_unlock(&zram->bitmap_lock);
436 WARN_ON_ONCE(!was_set);
437}
438
db8ffbd4
MK
439void zram_page_end_io(struct bio *bio)
440{
441 struct page *page = bio->bi_io_vec[0].bv_page;
442
443 page_endio(page, op_is_write(bio_op(bio)),
444 blk_status_to_errno(bio->bi_status));
445 bio_put(bio);
446}
447
8e654f8f
MK
448/*
449 * Returns 1 if the submission is successful.
450 */
451static int read_from_bdev_async(struct zram *zram, struct bio_vec *bvec,
452 unsigned long entry, struct bio *parent)
453{
454 struct bio *bio;
455
456 bio = bio_alloc(GFP_ATOMIC, 1);
457 if (!bio)
458 return -ENOMEM;
459
460 bio->bi_iter.bi_sector = entry * (PAGE_SIZE >> 9);
a0725ab0 461 bio_set_dev(bio, zram->bdev);
8e654f8f
MK
462 if (!bio_add_page(bio, bvec->bv_page, bvec->bv_len, bvec->bv_offset)) {
463 bio_put(bio);
464 return -EIO;
465 }
466
467 if (!parent) {
468 bio->bi_opf = REQ_OP_READ;
469 bio->bi_end_io = zram_page_end_io;
470 } else {
471 bio->bi_opf = parent->bi_opf;
472 bio_chain(bio, parent);
473 }
474
475 submit_bio(bio);
476 return 1;
477}
478
479struct zram_work {
480 struct work_struct work;
481 struct zram *zram;
482 unsigned long entry;
483 struct bio *bio;
484};
485
486#if PAGE_SIZE != 4096
487static void zram_sync_read(struct work_struct *work)
488{
489 struct bio_vec bvec;
490 struct zram_work *zw = container_of(work, struct zram_work, work);
491 struct zram *zram = zw->zram;
492 unsigned long entry = zw->entry;
493 struct bio *bio = zw->bio;
494
495 read_from_bdev_async(zram, &bvec, entry, bio);
496}
497
498/*
499 * Block layer want one ->make_request_fn to be active at a time
500 * so if we use chained IO with parent IO in same context,
501 * it's a deadlock. To avoid, it, it uses worker thread context.
502 */
503static int read_from_bdev_sync(struct zram *zram, struct bio_vec *bvec,
504 unsigned long entry, struct bio *bio)
505{
506 struct zram_work work;
507
508 work.zram = zram;
509 work.entry = entry;
510 work.bio = bio;
511
512 INIT_WORK_ONSTACK(&work.work, zram_sync_read);
513 queue_work(system_unbound_wq, &work.work);
514 flush_work(&work.work);
515 destroy_work_on_stack(&work.work);
516
517 return 1;
518}
519#else
520static int read_from_bdev_sync(struct zram *zram, struct bio_vec *bvec,
521 unsigned long entry, struct bio *bio)
522{
523 WARN_ON(1);
524 return -EIO;
525}
526#endif
527
528static int read_from_bdev(struct zram *zram, struct bio_vec *bvec,
529 unsigned long entry, struct bio *parent, bool sync)
530{
531 if (sync)
532 return read_from_bdev_sync(zram, bvec, entry, parent);
533 else
534 return read_from_bdev_async(zram, bvec, entry, parent);
535}
536
db8ffbd4
MK
537static int write_to_bdev(struct zram *zram, struct bio_vec *bvec,
538 u32 index, struct bio *parent,
539 unsigned long *pentry)
540{
541 struct bio *bio;
542 unsigned long entry;
543
544 bio = bio_alloc(GFP_ATOMIC, 1);
545 if (!bio)
546 return -ENOMEM;
547
548 entry = get_entry_bdev(zram);
549 if (!entry) {
550 bio_put(bio);
551 return -ENOSPC;
552 }
553
554 bio->bi_iter.bi_sector = entry * (PAGE_SIZE >> 9);
a0725ab0 555 bio_set_dev(bio, zram->bdev);
db8ffbd4
MK
556 if (!bio_add_page(bio, bvec->bv_page, bvec->bv_len,
557 bvec->bv_offset)) {
558 bio_put(bio);
559 put_entry_bdev(zram, entry);
560 return -EIO;
561 }
562
563 if (!parent) {
564 bio->bi_opf = REQ_OP_WRITE | REQ_SYNC;
565 bio->bi_end_io = zram_page_end_io;
566 } else {
567 bio->bi_opf = parent->bi_opf;
568 bio_chain(bio, parent);
569 }
570
571 submit_bio(bio);
572 *pentry = entry;
573
574 return 0;
575}
576
577static void zram_wb_clear(struct zram *zram, u32 index)
578{
579 unsigned long entry;
580
581 zram_clear_flag(zram, index, ZRAM_WB);
582 entry = zram_get_element(zram, index);
583 zram_set_element(zram, index, 0);
584 put_entry_bdev(zram, entry);
585}
586
013bf95a
MK
587#else
588static bool zram_wb_enabled(struct zram *zram) { return false; }
589static inline void reset_bdev(struct zram *zram) {};
db8ffbd4
MK
590static int write_to_bdev(struct zram *zram, struct bio_vec *bvec,
591 u32 index, struct bio *parent,
592 unsigned long *pentry)
593
594{
595 return -EIO;
596}
8e654f8f
MK
597
598static int read_from_bdev(struct zram *zram, struct bio_vec *bvec,
599 unsigned long entry, struct bio *parent, bool sync)
600{
601 return -EIO;
602}
db8ffbd4 603static void zram_wb_clear(struct zram *zram, u32 index) {}
013bf95a
MK
604#endif
605
606
43209ea2
SS
607/*
608 * We switched to per-cpu streams and this attr is not needed anymore.
609 * However, we will keep it around for some time, because:
610 * a) we may revert per-cpu streams in the future
611 * b) it's visible to user space and we need to follow our 2 years
612 * retirement rule; but we already have a number of 'soon to be
613 * altered' attrs, so max_comp_streams need to wait for the next
614 * layoff cycle.
615 */
522698d7
SS
616static ssize_t max_comp_streams_show(struct device *dev,
617 struct device_attribute *attr, char *buf)
618{
43209ea2 619 return scnprintf(buf, PAGE_SIZE, "%d\n", num_online_cpus());
522698d7
SS
620}
621
beca3ec7
SS
622static ssize_t max_comp_streams_store(struct device *dev,
623 struct device_attribute *attr, const char *buf, size_t len)
624{
43209ea2 625 return len;
beca3ec7
SS
626}
627
e46b8a03
SS
628static ssize_t comp_algorithm_show(struct device *dev,
629 struct device_attribute *attr, char *buf)
630{
631 size_t sz;
632 struct zram *zram = dev_to_zram(dev);
633
634 down_read(&zram->init_lock);
635 sz = zcomp_available_show(zram->compressor, buf);
636 up_read(&zram->init_lock);
637
638 return sz;
639}
640
641static ssize_t comp_algorithm_store(struct device *dev,
642 struct device_attribute *attr, const char *buf, size_t len)
643{
644 struct zram *zram = dev_to_zram(dev);
f357e345 645 char compressor[ARRAY_SIZE(zram->compressor)];
4bbacd51
SS
646 size_t sz;
647
415403be
SS
648 strlcpy(compressor, buf, sizeof(compressor));
649 /* ignore trailing newline */
650 sz = strlen(compressor);
651 if (sz > 0 && compressor[sz - 1] == '\n')
652 compressor[sz - 1] = 0x00;
653
654 if (!zcomp_available_algorithm(compressor))
1d5b43bf
LH
655 return -EINVAL;
656
e46b8a03
SS
657 down_write(&zram->init_lock);
658 if (init_done(zram)) {
659 up_write(&zram->init_lock);
660 pr_info("Can't change algorithm for initialized device\n");
661 return -EBUSY;
662 }
4bbacd51 663
f357e345 664 strcpy(zram->compressor, compressor);
e46b8a03
SS
665 up_write(&zram->init_lock);
666 return len;
667}
668
522698d7
SS
669static ssize_t compact_store(struct device *dev,
670 struct device_attribute *attr, const char *buf, size_t len)
306b0c95 671{
522698d7 672 struct zram *zram = dev_to_zram(dev);
306b0c95 673
522698d7
SS
674 down_read(&zram->init_lock);
675 if (!init_done(zram)) {
676 up_read(&zram->init_lock);
677 return -EINVAL;
678 }
306b0c95 679
beb6602c 680 zs_compact(zram->mem_pool);
522698d7 681 up_read(&zram->init_lock);
d2d5e762 682
522698d7 683 return len;
d2d5e762
WY
684}
685
522698d7
SS
686static ssize_t io_stat_show(struct device *dev,
687 struct device_attribute *attr, char *buf)
d2d5e762 688{
522698d7
SS
689 struct zram *zram = dev_to_zram(dev);
690 ssize_t ret;
d2d5e762 691
522698d7
SS
692 down_read(&zram->init_lock);
693 ret = scnprintf(buf, PAGE_SIZE,
694 "%8llu %8llu %8llu %8llu\n",
695 (u64)atomic64_read(&zram->stats.failed_reads),
696 (u64)atomic64_read(&zram->stats.failed_writes),
697 (u64)atomic64_read(&zram->stats.invalid_io),
698 (u64)atomic64_read(&zram->stats.notify_free));
699 up_read(&zram->init_lock);
306b0c95 700
522698d7 701 return ret;
9b3bb7ab
SS
702}
703
522698d7
SS
704static ssize_t mm_stat_show(struct device *dev,
705 struct device_attribute *attr, char *buf)
9b3bb7ab 706{
522698d7 707 struct zram *zram = dev_to_zram(dev);
7d3f3938 708 struct zs_pool_stats pool_stats;
522698d7
SS
709 u64 orig_size, mem_used = 0;
710 long max_used;
711 ssize_t ret;
a539c72a 712
7d3f3938
SS
713 memset(&pool_stats, 0x00, sizeof(struct zs_pool_stats));
714
522698d7 715 down_read(&zram->init_lock);
7d3f3938 716 if (init_done(zram)) {
beb6602c
MK
717 mem_used = zs_get_total_pages(zram->mem_pool);
718 zs_pool_stats(zram->mem_pool, &pool_stats);
7d3f3938 719 }
9b3bb7ab 720
522698d7
SS
721 orig_size = atomic64_read(&zram->stats.pages_stored);
722 max_used = atomic_long_read(&zram->stats.max_used_pages);
9b3bb7ab 723
522698d7 724 ret = scnprintf(buf, PAGE_SIZE,
7d3f3938 725 "%8llu %8llu %8llu %8lu %8ld %8llu %8lu\n",
522698d7
SS
726 orig_size << PAGE_SHIFT,
727 (u64)atomic64_read(&zram->stats.compr_data_size),
728 mem_used << PAGE_SHIFT,
729 zram->limit_pages << PAGE_SHIFT,
730 max_used << PAGE_SHIFT,
8e19d540 731 (u64)atomic64_read(&zram->stats.same_pages),
860c707d 732 pool_stats.pages_compacted);
522698d7 733 up_read(&zram->init_lock);
9b3bb7ab 734
522698d7
SS
735 return ret;
736}
737
623e47fc
SS
738static ssize_t debug_stat_show(struct device *dev,
739 struct device_attribute *attr, char *buf)
740{
741 int version = 1;
742 struct zram *zram = dev_to_zram(dev);
743 ssize_t ret;
744
745 down_read(&zram->init_lock);
746 ret = scnprintf(buf, PAGE_SIZE,
747 "version: %d\n%8llu\n",
748 version,
749 (u64)atomic64_read(&zram->stats.writestall));
750 up_read(&zram->init_lock);
751
752 return ret;
753}
754
522698d7
SS
755static DEVICE_ATTR_RO(io_stat);
756static DEVICE_ATTR_RO(mm_stat);
623e47fc 757static DEVICE_ATTR_RO(debug_stat);
522698d7 758
86c49814
MK
759static void zram_slot_lock(struct zram *zram, u32 index)
760{
beb6602c 761 bit_spin_lock(ZRAM_ACCESS, &zram->table[index].value);
86c49814
MK
762}
763
764static void zram_slot_unlock(struct zram *zram, u32 index)
765{
beb6602c 766 bit_spin_unlock(ZRAM_ACCESS, &zram->table[index].value);
86c49814
MK
767}
768
beb6602c 769static void zram_meta_free(struct zram *zram, u64 disksize)
522698d7
SS
770{
771 size_t num_pages = disksize >> PAGE_SHIFT;
772 size_t index;
1fec1172
GM
773
774 /* Free all pages that are still in this zram device */
302128dc
MK
775 for (index = 0; index < num_pages; index++)
776 zram_free_page(zram, index);
1fec1172 777
beb6602c
MK
778 zs_destroy_pool(zram->mem_pool);
779 vfree(zram->table);
9b3bb7ab
SS
780}
781
beb6602c 782static bool zram_meta_alloc(struct zram *zram, u64 disksize)
9b3bb7ab
SS
783{
784 size_t num_pages;
9b3bb7ab 785
9b3bb7ab 786 num_pages = disksize >> PAGE_SHIFT;
beb6602c
MK
787 zram->table = vzalloc(num_pages * sizeof(*zram->table));
788 if (!zram->table)
789 return false;
9b3bb7ab 790
beb6602c
MK
791 zram->mem_pool = zs_create_pool(zram->disk->disk_name);
792 if (!zram->mem_pool) {
793 vfree(zram->table);
794 return false;
9b3bb7ab
SS
795 }
796
beb6602c 797 return true;
9b3bb7ab
SS
798}
799
d2d5e762
WY
800/*
801 * To protect concurrent access to the same index entry,
802 * caller should hold this table index entry's bit_spinlock to
803 * indicate this index entry is accessing.
804 */
f1e3cfff 805static void zram_free_page(struct zram *zram, size_t index)
306b0c95 806{
db8ffbd4
MK
807 unsigned long handle;
808
809 if (zram_wb_enabled(zram) && zram_test_flag(zram, index, ZRAM_WB)) {
810 zram_wb_clear(zram, index);
811 atomic64_dec(&zram->stats.pages_stored);
812 return;
813 }
306b0c95 814
8e19d540 815 /*
816 * No memory is allocated for same element filled pages.
817 * Simply clear same page flag.
818 */
beb6602c
MK
819 if (zram_test_flag(zram, index, ZRAM_SAME)) {
820 zram_clear_flag(zram, index, ZRAM_SAME);
643ae61d 821 zram_set_element(zram, index, 0);
8e19d540 822 atomic64_dec(&zram->stats.same_pages);
51f9f82c 823 atomic64_dec(&zram->stats.pages_stored);
306b0c95
NG
824 return;
825 }
826
db8ffbd4 827 handle = zram_get_handle(zram, index);
8e19d540 828 if (!handle)
829 return;
830
beb6602c 831 zs_free(zram->mem_pool, handle);
306b0c95 832
beb6602c 833 atomic64_sub(zram_get_obj_size(zram, index),
d2d5e762 834 &zram->stats.compr_data_size);
90a7806e 835 atomic64_dec(&zram->stats.pages_stored);
306b0c95 836
643ae61d 837 zram_set_handle(zram, index, 0);
beb6602c 838 zram_set_obj_size(zram, index, 0);
306b0c95
NG
839}
840
8e654f8f
MK
841static int __zram_bvec_read(struct zram *zram, struct page *page, u32 index,
842 struct bio *bio, bool partial_io)
306b0c95 843{
1f7319c7 844 int ret;
92967471 845 unsigned long handle;
ebaf9ab5 846 unsigned int size;
1f7319c7 847 void *src, *dst;
1f7319c7 848
8e654f8f
MK
849 if (zram_wb_enabled(zram)) {
850 zram_slot_lock(zram, index);
851 if (zram_test_flag(zram, index, ZRAM_WB)) {
852 struct bio_vec bvec;
853
854 zram_slot_unlock(zram, index);
855
856 bvec.bv_page = page;
857 bvec.bv_len = PAGE_SIZE;
858 bvec.bv_offset = 0;
859 return read_from_bdev(zram, &bvec,
860 zram_get_element(zram, index),
861 bio, partial_io);
862 }
863 zram_slot_unlock(zram, index);
864 }
865
86c49814 866 zram_slot_lock(zram, index);
643ae61d 867 handle = zram_get_handle(zram, index);
ae94264e
MK
868 if (!handle || zram_test_flag(zram, index, ZRAM_SAME)) {
869 unsigned long value;
870 void *mem;
871
872 value = handle ? zram_get_element(zram, index) : 0;
873 mem = kmap_atomic(page);
874 zram_fill_page(mem, PAGE_SIZE, value);
875 kunmap_atomic(mem);
876 zram_slot_unlock(zram, index);
877 return 0;
878 }
879
beb6602c 880 size = zram_get_obj_size(zram, index);
306b0c95 881
beb6602c 882 src = zs_map_object(zram->mem_pool, handle, ZS_MM_RO);
ebaf9ab5 883 if (size == PAGE_SIZE) {
1f7319c7
MK
884 dst = kmap_atomic(page);
885 memcpy(dst, src, PAGE_SIZE);
886 kunmap_atomic(dst);
887 ret = 0;
ebaf9ab5
SS
888 } else {
889 struct zcomp_strm *zstrm = zcomp_stream_get(zram->comp);
890
1f7319c7
MK
891 dst = kmap_atomic(page);
892 ret = zcomp_decompress(zstrm, src, size, dst);
893 kunmap_atomic(dst);
ebaf9ab5
SS
894 zcomp_stream_put(zram->comp);
895 }
beb6602c 896 zs_unmap_object(zram->mem_pool, handle);
86c49814 897 zram_slot_unlock(zram, index);
a1dd52af 898
8c921b2b 899 /* Should NEVER happen. Return bio error if it does. */
1f7319c7 900 if (unlikely(ret))
8c921b2b 901 pr_err("Decompression failed! err=%d, page=%u\n", ret, index);
306b0c95 902
1f7319c7 903 return ret;
306b0c95
NG
904}
905
37b51fdd 906static int zram_bvec_read(struct zram *zram, struct bio_vec *bvec,
8e654f8f 907 u32 index, int offset, struct bio *bio)
924bd88d
JM
908{
909 int ret;
37b51fdd 910 struct page *page;
37b51fdd 911
1f7319c7
MK
912 page = bvec->bv_page;
913 if (is_partial_io(bvec)) {
914 /* Use a temporary buffer to decompress the page */
915 page = alloc_page(GFP_NOIO|__GFP_HIGHMEM);
916 if (!page)
917 return -ENOMEM;
924bd88d
JM
918 }
919
8e654f8f 920 ret = __zram_bvec_read(zram, page, index, bio, is_partial_io(bvec));
1f7319c7
MK
921 if (unlikely(ret))
922 goto out;
7e5a5104 923
1f7319c7
MK
924 if (is_partial_io(bvec)) {
925 void *dst = kmap_atomic(bvec->bv_page);
926 void *src = kmap_atomic(page);
37b51fdd 927
1f7319c7
MK
928 memcpy(dst + bvec->bv_offset, src + offset, bvec->bv_len);
929 kunmap_atomic(src);
930 kunmap_atomic(dst);
37b51fdd 931 }
1f7319c7 932out:
37b51fdd 933 if (is_partial_io(bvec))
1f7319c7 934 __free_page(page);
37b51fdd 935
37b51fdd 936 return ret;
924bd88d
JM
937}
938
db8ffbd4
MK
939static int __zram_bvec_write(struct zram *zram, struct bio_vec *bvec,
940 u32 index, struct bio *bio)
306b0c95 941{
ae85a807 942 int ret = 0;
1f7319c7 943 unsigned long alloced_pages;
da9556a2 944 unsigned long handle = 0;
97ec7c8b
MK
945 unsigned int comp_len = 0;
946 void *src, *dst, *mem;
947 struct zcomp_strm *zstrm;
948 struct page *page = bvec->bv_page;
949 unsigned long element = 0;
950 enum zram_pageflags flags = 0;
db8ffbd4 951 bool allow_wb = true;
97ec7c8b
MK
952
953 mem = kmap_atomic(page);
954 if (page_same_filled(mem, &element)) {
955 kunmap_atomic(mem);
956 /* Free memory associated with this sector now. */
957 flags = ZRAM_SAME;
958 atomic64_inc(&zram->stats.same_pages);
959 goto out;
960 }
961 kunmap_atomic(mem);
924bd88d 962
da9556a2 963compress_again:
97ec7c8b 964 zstrm = zcomp_stream_get(zram->comp);
1f7319c7 965 src = kmap_atomic(page);
97ec7c8b 966 ret = zcomp_compress(zstrm, src, &comp_len);
1f7319c7 967 kunmap_atomic(src);
306b0c95 968
b7ca232e 969 if (unlikely(ret)) {
97ec7c8b 970 zcomp_stream_put(zram->comp);
8c921b2b 971 pr_err("Compression failed! err=%d\n", ret);
97ec7c8b 972 zs_free(zram->mem_pool, handle);
1f7319c7 973 return ret;
8c921b2b 974 }
da9556a2 975
db8ffbd4
MK
976 if (unlikely(comp_len > max_zpage_size)) {
977 if (zram_wb_enabled(zram) && allow_wb) {
978 zcomp_stream_put(zram->comp);
979 ret = write_to_bdev(zram, bvec, index, bio, &element);
980 if (!ret) {
981 flags = ZRAM_WB;
982 ret = 1;
983 goto out;
984 }
985 allow_wb = false;
986 goto compress_again;
987 }
1f7319c7 988 comp_len = PAGE_SIZE;
db8ffbd4 989 }
a1dd52af 990
da9556a2
SS
991 /*
992 * handle allocation has 2 paths:
993 * a) fast path is executed with preemption disabled (for
994 * per-cpu streams) and has __GFP_DIRECT_RECLAIM bit clear,
995 * since we can't sleep;
996 * b) slow path enables preemption and attempts to allocate
997 * the page with __GFP_DIRECT_RECLAIM bit set. we have to
998 * put per-cpu compression stream and, thus, to re-do
999 * the compression once handle is allocated.
1000 *
1001 * if we have a 'non-null' handle here then we are coming
1002 * from the slow path and handle has already been allocated.
1003 */
1004 if (!handle)
beb6602c 1005 handle = zs_malloc(zram->mem_pool, comp_len,
da9556a2
SS
1006 __GFP_KSWAPD_RECLAIM |
1007 __GFP_NOWARN |
9bc482d3
MK
1008 __GFP_HIGHMEM |
1009 __GFP_MOVABLE);
fd1a30de 1010 if (!handle) {
2aea8493 1011 zcomp_stream_put(zram->comp);
623e47fc 1012 atomic64_inc(&zram->stats.writestall);
beb6602c 1013 handle = zs_malloc(zram->mem_pool, comp_len,
9bc482d3
MK
1014 GFP_NOIO | __GFP_HIGHMEM |
1015 __GFP_MOVABLE);
da9556a2
SS
1016 if (handle)
1017 goto compress_again;
1f7319c7 1018 return -ENOMEM;
8c921b2b 1019 }
9ada9da9 1020
beb6602c 1021 alloced_pages = zs_get_total_pages(zram->mem_pool);
12372755
SS
1022 update_used_max(zram, alloced_pages);
1023
461a8eee 1024 if (zram->limit_pages && alloced_pages > zram->limit_pages) {
97ec7c8b 1025 zcomp_stream_put(zram->comp);
beb6602c 1026 zs_free(zram->mem_pool, handle);
1f7319c7
MK
1027 return -ENOMEM;
1028 }
1029
beb6602c 1030 dst = zs_map_object(zram->mem_pool, handle, ZS_MM_WO);
1f7319c7
MK
1031
1032 src = zstrm->buffer;
1033 if (comp_len == PAGE_SIZE)
397c6066 1034 src = kmap_atomic(page);
1f7319c7
MK
1035 memcpy(dst, src, comp_len);
1036 if (comp_len == PAGE_SIZE)
397c6066 1037 kunmap_atomic(src);
306b0c95 1038
2aea8493 1039 zcomp_stream_put(zram->comp);
beb6602c 1040 zs_unmap_object(zram->mem_pool, handle);
4ebbe7f7
MK
1041 atomic64_add(comp_len, &zram->stats.compr_data_size);
1042out:
f40ac2ae
SS
1043 /*
1044 * Free memory associated with this sector
1045 * before overwriting unused sectors.
1046 */
86c49814 1047 zram_slot_lock(zram, index);
f40ac2ae 1048 zram_free_page(zram, index);
db8ffbd4
MK
1049
1050 if (flags) {
1051 zram_set_flag(zram, index, flags);
4ebbe7f7 1052 zram_set_element(zram, index, element);
db8ffbd4 1053 } else {
4ebbe7f7
MK
1054 zram_set_handle(zram, index, handle);
1055 zram_set_obj_size(zram, index, comp_len);
1056 }
86c49814 1057 zram_slot_unlock(zram, index);
306b0c95 1058
8c921b2b 1059 /* Update stats */
90a7806e 1060 atomic64_inc(&zram->stats.pages_stored);
ae85a807 1061 return ret;
1f7319c7
MK
1062}
1063
1064static int zram_bvec_write(struct zram *zram, struct bio_vec *bvec,
db8ffbd4 1065 u32 index, int offset, struct bio *bio)
1f7319c7
MK
1066{
1067 int ret;
1068 struct page *page = NULL;
1069 void *src;
1070 struct bio_vec vec;
1071
1072 vec = *bvec;
1073 if (is_partial_io(bvec)) {
1074 void *dst;
1075 /*
1076 * This is a partial IO. We need to read the full page
1077 * before to write the changes.
1078 */
1079 page = alloc_page(GFP_NOIO|__GFP_HIGHMEM);
1080 if (!page)
1081 return -ENOMEM;
1082
8e654f8f 1083 ret = __zram_bvec_read(zram, page, index, bio, true);
1f7319c7
MK
1084 if (ret)
1085 goto out;
1086
1087 src = kmap_atomic(bvec->bv_page);
1088 dst = kmap_atomic(page);
1089 memcpy(dst + offset, src + bvec->bv_offset, bvec->bv_len);
1090 kunmap_atomic(dst);
1091 kunmap_atomic(src);
1092
1093 vec.bv_page = page;
1094 vec.bv_len = PAGE_SIZE;
1095 vec.bv_offset = 0;
1096 }
1097
db8ffbd4 1098 ret = __zram_bvec_write(zram, &vec, index, bio);
924bd88d 1099out:
397c6066 1100 if (is_partial_io(bvec))
1f7319c7 1101 __free_page(page);
924bd88d 1102 return ret;
8c921b2b
JM
1103}
1104
f4659d8e
JK
1105/*
1106 * zram_bio_discard - handler on discard request
1107 * @index: physical block index in PAGE_SIZE units
1108 * @offset: byte offset within physical block
1109 */
1110static void zram_bio_discard(struct zram *zram, u32 index,
1111 int offset, struct bio *bio)
1112{
1113 size_t n = bio->bi_iter.bi_size;
1114
1115 /*
1116 * zram manages data in physical block size units. Because logical block
1117 * size isn't identical with physical block size on some arch, we
1118 * could get a discard request pointing to a specific offset within a
1119 * certain physical block. Although we can handle this request by
1120 * reading that physiclal block and decompressing and partially zeroing
1121 * and re-compressing and then re-storing it, this isn't reasonable
1122 * because our intent with a discard request is to save memory. So
1123 * skipping this logical block is appropriate here.
1124 */
1125 if (offset) {
38515c73 1126 if (n <= (PAGE_SIZE - offset))
f4659d8e
JK
1127 return;
1128
38515c73 1129 n -= (PAGE_SIZE - offset);
f4659d8e
JK
1130 index++;
1131 }
1132
1133 while (n >= PAGE_SIZE) {
86c49814 1134 zram_slot_lock(zram, index);
f4659d8e 1135 zram_free_page(zram, index);
86c49814 1136 zram_slot_unlock(zram, index);
015254da 1137 atomic64_inc(&zram->stats.notify_free);
f4659d8e
JK
1138 index++;
1139 n -= PAGE_SIZE;
1140 }
1141}
1142
ae85a807
MK
1143/*
1144 * Returns errno if it has some problem. Otherwise return 0 or 1.
1145 * Returns 0 if IO request was done synchronously
1146 * Returns 1 if IO request was successfully submitted.
1147 */
522698d7 1148static int zram_bvec_rw(struct zram *zram, struct bio_vec *bvec, u32 index,
db8ffbd4 1149 int offset, bool is_write, struct bio *bio)
9b3bb7ab 1150{
522698d7 1151 unsigned long start_time = jiffies;
c11f0c0b 1152 int rw_acct = is_write ? REQ_OP_WRITE : REQ_OP_READ;
d62e26b3 1153 struct request_queue *q = zram->disk->queue;
9b3bb7ab 1154 int ret;
9b3bb7ab 1155
d62e26b3 1156 generic_start_io_acct(q, rw_acct, bvec->bv_len >> SECTOR_SHIFT,
522698d7 1157 &zram->disk->part0);
46a51c80 1158
c11f0c0b 1159 if (!is_write) {
522698d7 1160 atomic64_inc(&zram->stats.num_reads);
8e654f8f 1161 ret = zram_bvec_read(zram, bvec, index, offset, bio);
1f7319c7 1162 flush_dcache_page(bvec->bv_page);
522698d7
SS
1163 } else {
1164 atomic64_inc(&zram->stats.num_writes);
db8ffbd4 1165 ret = zram_bvec_write(zram, bvec, index, offset, bio);
1b672224 1166 }
9b3bb7ab 1167
d62e26b3 1168 generic_end_io_acct(q, rw_acct, &zram->disk->part0, start_time);
9b3bb7ab 1169
ae85a807 1170 if (unlikely(ret < 0)) {
c11f0c0b 1171 if (!is_write)
522698d7
SS
1172 atomic64_inc(&zram->stats.failed_reads);
1173 else
1174 atomic64_inc(&zram->stats.failed_writes);
1b672224 1175 }
9b3bb7ab 1176
1b672224 1177 return ret;
8c921b2b
JM
1178}
1179
be257c61 1180static void __zram_make_request(struct zram *zram, struct bio *bio)
8c921b2b 1181{
abf54548 1182 int offset;
8c921b2b 1183 u32 index;
7988613b
KO
1184 struct bio_vec bvec;
1185 struct bvec_iter iter;
8c921b2b 1186
4f024f37
KO
1187 index = bio->bi_iter.bi_sector >> SECTORS_PER_PAGE_SHIFT;
1188 offset = (bio->bi_iter.bi_sector &
1189 (SECTORS_PER_PAGE - 1)) << SECTOR_SHIFT;
8c921b2b 1190
31edeacd
CH
1191 switch (bio_op(bio)) {
1192 case REQ_OP_DISCARD:
1193 case REQ_OP_WRITE_ZEROES:
f4659d8e 1194 zram_bio_discard(zram, index, offset, bio);
4246a0b6 1195 bio_endio(bio);
f4659d8e 1196 return;
31edeacd
CH
1197 default:
1198 break;
f4659d8e
JK
1199 }
1200
7988613b 1201 bio_for_each_segment(bvec, bio, iter) {
e86942c7
MK
1202 struct bio_vec bv = bvec;
1203 unsigned int unwritten = bvec.bv_len;
924bd88d 1204
e86942c7
MK
1205 do {
1206 bv.bv_len = min_t(unsigned int, PAGE_SIZE - offset,
1207 unwritten);
abf54548 1208 if (zram_bvec_rw(zram, &bv, index, offset,
db8ffbd4 1209 op_is_write(bio_op(bio)), bio) < 0)
924bd88d
JM
1210 goto out;
1211
e86942c7
MK
1212 bv.bv_offset += bv.bv_len;
1213 unwritten -= bv.bv_len;
924bd88d 1214
e86942c7
MK
1215 update_position(&index, &offset, &bv);
1216 } while (unwritten);
a1dd52af 1217 }
306b0c95 1218
4246a0b6 1219 bio_endio(bio);
7d7854b4 1220 return;
306b0c95
NG
1221
1222out:
306b0c95 1223 bio_io_error(bio);
306b0c95
NG
1224}
1225
306b0c95 1226/*
f1e3cfff 1227 * Handler function for all zram I/O requests.
306b0c95 1228 */
dece1635 1229static blk_qc_t zram_make_request(struct request_queue *queue, struct bio *bio)
306b0c95 1230{
f1e3cfff 1231 struct zram *zram = queue->queuedata;
306b0c95 1232
54850e73 1233 if (!valid_io_request(zram, bio->bi_iter.bi_sector,
1234 bio->bi_iter.bi_size)) {
da5cc7d3 1235 atomic64_inc(&zram->stats.invalid_io);
a09759ac 1236 goto error;
6642a67c
JM
1237 }
1238
be257c61 1239 __zram_make_request(zram, bio);
dece1635 1240 return BLK_QC_T_NONE;
a09759ac 1241
0900beae
JM
1242error:
1243 bio_io_error(bio);
dece1635 1244 return BLK_QC_T_NONE;
306b0c95
NG
1245}
1246
2ccbec05
NG
1247static void zram_slot_free_notify(struct block_device *bdev,
1248 unsigned long index)
107c161b 1249{
f1e3cfff 1250 struct zram *zram;
107c161b 1251
f1e3cfff 1252 zram = bdev->bd_disk->private_data;
a0c516cb 1253
86c49814 1254 zram_slot_lock(zram, index);
f614a9f4 1255 zram_free_page(zram, index);
86c49814 1256 zram_slot_unlock(zram, index);
f614a9f4 1257 atomic64_inc(&zram->stats.notify_free);
107c161b
NG
1258}
1259
8c7f0102 1260static int zram_rw_page(struct block_device *bdev, sector_t sector,
c11f0c0b 1261 struct page *page, bool is_write)
8c7f0102 1262{
ae85a807 1263 int offset, ret;
8c7f0102 1264 u32 index;
1265 struct zram *zram;
1266 struct bio_vec bv;
1267
98cc093c
HY
1268 if (PageTransHuge(page))
1269 return -ENOTSUPP;
8c7f0102 1270 zram = bdev->bd_disk->private_data;
08eee69f 1271
8c7f0102 1272 if (!valid_io_request(zram, sector, PAGE_SIZE)) {
1273 atomic64_inc(&zram->stats.invalid_io);
ae85a807 1274 ret = -EINVAL;
a09759ac 1275 goto out;
8c7f0102 1276 }
1277
1278 index = sector >> SECTORS_PER_PAGE_SHIFT;
4ca82dab 1279 offset = (sector & (SECTORS_PER_PAGE - 1)) << SECTOR_SHIFT;
8c7f0102 1280
1281 bv.bv_page = page;
1282 bv.bv_len = PAGE_SIZE;
1283 bv.bv_offset = 0;
1284
db8ffbd4 1285 ret = zram_bvec_rw(zram, &bv, index, offset, is_write, NULL);
08eee69f 1286out:
8c7f0102 1287 /*
1288 * If I/O fails, just return error(ie, non-zero) without
1289 * calling page_endio.
1290 * It causes resubmit the I/O with bio request by upper functions
1291 * of rw_page(e.g., swap_readpage, __swap_writepage) and
1292 * bio->bi_end_io does things to handle the error
1293 * (e.g., SetPageError, set_page_dirty and extra works).
1294 */
ae85a807
MK
1295 if (unlikely(ret < 0))
1296 return ret;
1297
1298 switch (ret) {
1299 case 0:
c11f0c0b 1300 page_endio(page, is_write, 0);
ae85a807
MK
1301 break;
1302 case 1:
1303 ret = 0;
1304 break;
1305 default:
1306 WARN_ON(1);
1307 }
1308 return ret;
8c7f0102 1309}
1310
522698d7
SS
1311static void zram_reset_device(struct zram *zram)
1312{
522698d7
SS
1313 struct zcomp *comp;
1314 u64 disksize;
306b0c95 1315
522698d7 1316 down_write(&zram->init_lock);
9b3bb7ab 1317
522698d7
SS
1318 zram->limit_pages = 0;
1319
1320 if (!init_done(zram)) {
1321 up_write(&zram->init_lock);
1322 return;
1323 }
1324
522698d7
SS
1325 comp = zram->comp;
1326 disksize = zram->disksize;
522698d7 1327 zram->disksize = 0;
522698d7
SS
1328
1329 set_capacity(zram->disk, 0);
1330 part_stat_set_all(&zram->disk->part0, 0);
1331
1332 up_write(&zram->init_lock);
1333 /* I/O operation under all of CPU are done so let's free */
beb6602c 1334 zram_meta_free(zram, disksize);
302128dc 1335 memset(&zram->stats, 0, sizeof(zram->stats));
522698d7 1336 zcomp_destroy(comp);
013bf95a 1337 reset_bdev(zram);
522698d7
SS
1338}
1339
1340static ssize_t disksize_store(struct device *dev,
1341 struct device_attribute *attr, const char *buf, size_t len)
2f6a3bed 1342{
522698d7
SS
1343 u64 disksize;
1344 struct zcomp *comp;
2f6a3bed 1345 struct zram *zram = dev_to_zram(dev);
522698d7 1346 int err;
2f6a3bed 1347
522698d7
SS
1348 disksize = memparse(buf, NULL);
1349 if (!disksize)
1350 return -EINVAL;
2f6a3bed 1351
beb6602c
MK
1352 down_write(&zram->init_lock);
1353 if (init_done(zram)) {
1354 pr_info("Cannot change disksize for initialized device\n");
1355 err = -EBUSY;
1356 goto out_unlock;
1357 }
1358
522698d7 1359 disksize = PAGE_ALIGN(disksize);
beb6602c
MK
1360 if (!zram_meta_alloc(zram, disksize)) {
1361 err = -ENOMEM;
1362 goto out_unlock;
1363 }
522698d7 1364
da9556a2 1365 comp = zcomp_create(zram->compressor);
522698d7 1366 if (IS_ERR(comp)) {
70864969 1367 pr_err("Cannot initialise %s compressing backend\n",
522698d7
SS
1368 zram->compressor);
1369 err = PTR_ERR(comp);
1370 goto out_free_meta;
1371 }
1372
522698d7
SS
1373 zram->comp = comp;
1374 zram->disksize = disksize;
1375 set_capacity(zram->disk, zram->disksize >> SECTOR_SHIFT);
b09ab054 1376 zram_revalidate_disk(zram);
e7ccfc4c 1377 up_write(&zram->init_lock);
522698d7
SS
1378
1379 return len;
1380
522698d7 1381out_free_meta:
beb6602c
MK
1382 zram_meta_free(zram, disksize);
1383out_unlock:
1384 up_write(&zram->init_lock);
522698d7 1385 return err;
2f6a3bed
SS
1386}
1387
522698d7
SS
1388static ssize_t reset_store(struct device *dev,
1389 struct device_attribute *attr, const char *buf, size_t len)
4f2109f6 1390{
522698d7
SS
1391 int ret;
1392 unsigned short do_reset;
1393 struct zram *zram;
1394 struct block_device *bdev;
4f2109f6 1395
f405c445
SS
1396 ret = kstrtou16(buf, 10, &do_reset);
1397 if (ret)
1398 return ret;
1399
1400 if (!do_reset)
1401 return -EINVAL;
1402
522698d7
SS
1403 zram = dev_to_zram(dev);
1404 bdev = bdget_disk(zram->disk, 0);
522698d7
SS
1405 if (!bdev)
1406 return -ENOMEM;
4f2109f6 1407
522698d7 1408 mutex_lock(&bdev->bd_mutex);
f405c445
SS
1409 /* Do not reset an active device or claimed device */
1410 if (bdev->bd_openers || zram->claim) {
1411 mutex_unlock(&bdev->bd_mutex);
1412 bdput(bdev);
1413 return -EBUSY;
522698d7
SS
1414 }
1415
f405c445
SS
1416 /* From now on, anyone can't open /dev/zram[0-9] */
1417 zram->claim = true;
1418 mutex_unlock(&bdev->bd_mutex);
522698d7 1419
f405c445 1420 /* Make sure all the pending I/O are finished */
522698d7
SS
1421 fsync_bdev(bdev);
1422 zram_reset_device(zram);
b09ab054 1423 zram_revalidate_disk(zram);
522698d7
SS
1424 bdput(bdev);
1425
f405c445
SS
1426 mutex_lock(&bdev->bd_mutex);
1427 zram->claim = false;
1428 mutex_unlock(&bdev->bd_mutex);
1429
522698d7 1430 return len;
f405c445
SS
1431}
1432
1433static int zram_open(struct block_device *bdev, fmode_t mode)
1434{
1435 int ret = 0;
1436 struct zram *zram;
1437
1438 WARN_ON(!mutex_is_locked(&bdev->bd_mutex));
1439
1440 zram = bdev->bd_disk->private_data;
1441 /* zram was claimed to reset so open request fails */
1442 if (zram->claim)
1443 ret = -EBUSY;
4f2109f6
SS
1444
1445 return ret;
1446}
1447
522698d7 1448static const struct block_device_operations zram_devops = {
f405c445 1449 .open = zram_open,
522698d7
SS
1450 .swap_slot_free_notify = zram_slot_free_notify,
1451 .rw_page = zram_rw_page,
1452 .owner = THIS_MODULE
1453};
1454
1455static DEVICE_ATTR_WO(compact);
1456static DEVICE_ATTR_RW(disksize);
1457static DEVICE_ATTR_RO(initstate);
1458static DEVICE_ATTR_WO(reset);
c87d1655
SS
1459static DEVICE_ATTR_WO(mem_limit);
1460static DEVICE_ATTR_WO(mem_used_max);
522698d7
SS
1461static DEVICE_ATTR_RW(max_comp_streams);
1462static DEVICE_ATTR_RW(comp_algorithm);
013bf95a
MK
1463#ifdef CONFIG_ZRAM_WRITEBACK
1464static DEVICE_ATTR_RW(backing_dev);
1465#endif
a68eb3b6 1466
9b3bb7ab
SS
1467static struct attribute *zram_disk_attrs[] = {
1468 &dev_attr_disksize.attr,
1469 &dev_attr_initstate.attr,
1470 &dev_attr_reset.attr,
99ebbd30 1471 &dev_attr_compact.attr,
9ada9da9 1472 &dev_attr_mem_limit.attr,
461a8eee 1473 &dev_attr_mem_used_max.attr,
beca3ec7 1474 &dev_attr_max_comp_streams.attr,
e46b8a03 1475 &dev_attr_comp_algorithm.attr,
013bf95a
MK
1476#ifdef CONFIG_ZRAM_WRITEBACK
1477 &dev_attr_backing_dev.attr,
1478#endif
2f6a3bed 1479 &dev_attr_io_stat.attr,
4f2109f6 1480 &dev_attr_mm_stat.attr,
623e47fc 1481 &dev_attr_debug_stat.attr,
9b3bb7ab
SS
1482 NULL,
1483};
1484
bc1bb362 1485static const struct attribute_group zram_disk_attr_group = {
9b3bb7ab
SS
1486 .attrs = zram_disk_attrs,
1487};
1488
92ff1528
SS
1489/*
1490 * Allocate and initialize new zram device. the function returns
1491 * '>= 0' device_id upon success, and negative value otherwise.
1492 */
1493static int zram_add(void)
306b0c95 1494{
85508ec6 1495 struct zram *zram;
ee980160 1496 struct request_queue *queue;
92ff1528 1497 int ret, device_id;
85508ec6
SS
1498
1499 zram = kzalloc(sizeof(struct zram), GFP_KERNEL);
1500 if (!zram)
1501 return -ENOMEM;
1502
92ff1528 1503 ret = idr_alloc(&zram_index_idr, zram, 0, 0, GFP_KERNEL);
85508ec6
SS
1504 if (ret < 0)
1505 goto out_free_dev;
92ff1528 1506 device_id = ret;
de1a21a0 1507
0900beae 1508 init_rwsem(&zram->init_lock);
306b0c95 1509
ee980160
SS
1510 queue = blk_alloc_queue(GFP_KERNEL);
1511 if (!queue) {
306b0c95
NG
1512 pr_err("Error allocating disk queue for device %d\n",
1513 device_id);
85508ec6
SS
1514 ret = -ENOMEM;
1515 goto out_free_idr;
306b0c95
NG
1516 }
1517
ee980160 1518 blk_queue_make_request(queue, zram_make_request);
306b0c95 1519
85508ec6 1520 /* gendisk structure */
f1e3cfff
NG
1521 zram->disk = alloc_disk(1);
1522 if (!zram->disk) {
70864969 1523 pr_err("Error allocating disk structure for device %d\n",
306b0c95 1524 device_id);
201c7b72 1525 ret = -ENOMEM;
39a9b8ac 1526 goto out_free_queue;
306b0c95
NG
1527 }
1528
f1e3cfff
NG
1529 zram->disk->major = zram_major;
1530 zram->disk->first_minor = device_id;
1531 zram->disk->fops = &zram_devops;
ee980160
SS
1532 zram->disk->queue = queue;
1533 zram->disk->queue->queuedata = zram;
f1e3cfff
NG
1534 zram->disk->private_data = zram;
1535 snprintf(zram->disk->disk_name, 16, "zram%d", device_id);
306b0c95 1536
33863c21 1537 /* Actual capacity set using syfs (/sys/block/zram<id>/disksize */
f1e3cfff 1538 set_capacity(zram->disk, 0);
b67d1ec1
SS
1539 /* zram devices sort of resembles non-rotational disks */
1540 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, zram->disk->queue);
b277da0a 1541 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, zram->disk->queue);
a1dd52af
NG
1542 /*
1543 * To ensure that we always get PAGE_SIZE aligned
1544 * and n*PAGE_SIZED sized I/O requests.
1545 */
f1e3cfff 1546 blk_queue_physical_block_size(zram->disk->queue, PAGE_SIZE);
7b19b8d4
RJ
1547 blk_queue_logical_block_size(zram->disk->queue,
1548 ZRAM_LOGICAL_BLOCK_SIZE);
f1e3cfff
NG
1549 blk_queue_io_min(zram->disk->queue, PAGE_SIZE);
1550 blk_queue_io_opt(zram->disk->queue, PAGE_SIZE);
f4659d8e 1551 zram->disk->queue->limits.discard_granularity = PAGE_SIZE;
2bb4cd5c 1552 blk_queue_max_discard_sectors(zram->disk->queue, UINT_MAX);
31edeacd
CH
1553 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, zram->disk->queue);
1554
f4659d8e
JK
1555 /*
1556 * zram_bio_discard() will clear all logical blocks if logical block
1557 * size is identical with physical block size(PAGE_SIZE). But if it is
1558 * different, we will skip discarding some parts of logical blocks in
1559 * the part of the request range which isn't aligned to physical block
1560 * size. So we can't ensure that all discarded logical blocks are
1561 * zeroed.
1562 */
1563 if (ZRAM_LOGICAL_BLOCK_SIZE == PAGE_SIZE)
31edeacd 1564 blk_queue_max_write_zeroes_sectors(zram->disk->queue, UINT_MAX);
5d83d5a0 1565
f1e3cfff 1566 add_disk(zram->disk);
306b0c95 1567
33863c21
NG
1568 ret = sysfs_create_group(&disk_to_dev(zram->disk)->kobj,
1569 &zram_disk_attr_group);
1570 if (ret < 0) {
70864969
SS
1571 pr_err("Error creating sysfs group for device %d\n",
1572 device_id);
39a9b8ac 1573 goto out_free_disk;
33863c21 1574 }
e46b8a03 1575 strlcpy(zram->compressor, default_compressor, sizeof(zram->compressor));
d12b63c9
SS
1576
1577 pr_info("Added device: %s\n", zram->disk->disk_name);
92ff1528 1578 return device_id;
de1a21a0 1579
39a9b8ac
JL
1580out_free_disk:
1581 del_gendisk(zram->disk);
1582 put_disk(zram->disk);
1583out_free_queue:
ee980160 1584 blk_cleanup_queue(queue);
85508ec6
SS
1585out_free_idr:
1586 idr_remove(&zram_index_idr, device_id);
1587out_free_dev:
1588 kfree(zram);
de1a21a0 1589 return ret;
306b0c95
NG
1590}
1591
6566d1a3 1592static int zram_remove(struct zram *zram)
306b0c95 1593{
6566d1a3
SS
1594 struct block_device *bdev;
1595
1596 bdev = bdget_disk(zram->disk, 0);
1597 if (!bdev)
1598 return -ENOMEM;
1599
1600 mutex_lock(&bdev->bd_mutex);
1601 if (bdev->bd_openers || zram->claim) {
1602 mutex_unlock(&bdev->bd_mutex);
1603 bdput(bdev);
1604 return -EBUSY;
1605 }
1606
1607 zram->claim = true;
1608 mutex_unlock(&bdev->bd_mutex);
1609
85508ec6
SS
1610 /*
1611 * Remove sysfs first, so no one will perform a disksize
6566d1a3
SS
1612 * store while we destroy the devices. This also helps during
1613 * hot_remove -- zram_reset_device() is the last holder of
1614 * ->init_lock, no later/concurrent disksize_store() or any
1615 * other sysfs handlers are possible.
85508ec6
SS
1616 */
1617 sysfs_remove_group(&disk_to_dev(zram->disk)->kobj,
1618 &zram_disk_attr_group);
306b0c95 1619
6566d1a3
SS
1620 /* Make sure all the pending I/O are finished */
1621 fsync_bdev(bdev);
85508ec6 1622 zram_reset_device(zram);
6566d1a3
SS
1623 bdput(bdev);
1624
1625 pr_info("Removed device: %s\n", zram->disk->disk_name);
1626
85508ec6
SS
1627 blk_cleanup_queue(zram->disk->queue);
1628 del_gendisk(zram->disk);
1629 put_disk(zram->disk);
1630 kfree(zram);
6566d1a3
SS
1631 return 0;
1632}
1633
1634/* zram-control sysfs attributes */
27104a53
GKH
1635
1636/*
1637 * NOTE: hot_add attribute is not the usual read-only sysfs attribute. In a
1638 * sense that reading from this file does alter the state of your system -- it
1639 * creates a new un-initialized zram device and returns back this device's
1640 * device_id (or an error code if it fails to create a new device).
1641 */
6566d1a3
SS
1642static ssize_t hot_add_show(struct class *class,
1643 struct class_attribute *attr,
1644 char *buf)
1645{
1646 int ret;
1647
1648 mutex_lock(&zram_index_mutex);
1649 ret = zram_add();
1650 mutex_unlock(&zram_index_mutex);
1651
1652 if (ret < 0)
1653 return ret;
1654 return scnprintf(buf, PAGE_SIZE, "%d\n", ret);
1655}
f40609d1 1656static CLASS_ATTR_RO(hot_add);
6566d1a3
SS
1657
1658static ssize_t hot_remove_store(struct class *class,
1659 struct class_attribute *attr,
1660 const char *buf,
1661 size_t count)
1662{
1663 struct zram *zram;
1664 int ret, dev_id;
1665
1666 /* dev_id is gendisk->first_minor, which is `int' */
1667 ret = kstrtoint(buf, 10, &dev_id);
1668 if (ret)
1669 return ret;
1670 if (dev_id < 0)
1671 return -EINVAL;
1672
1673 mutex_lock(&zram_index_mutex);
1674
1675 zram = idr_find(&zram_index_idr, dev_id);
17ec4cd9 1676 if (zram) {
6566d1a3 1677 ret = zram_remove(zram);
529e71e1
TI
1678 if (!ret)
1679 idr_remove(&zram_index_idr, dev_id);
17ec4cd9 1680 } else {
6566d1a3 1681 ret = -ENODEV;
17ec4cd9 1682 }
6566d1a3
SS
1683
1684 mutex_unlock(&zram_index_mutex);
1685 return ret ? ret : count;
85508ec6 1686}
27104a53 1687static CLASS_ATTR_WO(hot_remove);
a096cafc 1688
27104a53
GKH
1689static struct attribute *zram_control_class_attrs[] = {
1690 &class_attr_hot_add.attr,
1691 &class_attr_hot_remove.attr,
1692 NULL,
6566d1a3 1693};
27104a53 1694ATTRIBUTE_GROUPS(zram_control_class);
6566d1a3
SS
1695
1696static struct class zram_control_class = {
1697 .name = "zram-control",
1698 .owner = THIS_MODULE,
27104a53 1699 .class_groups = zram_control_class_groups,
6566d1a3
SS
1700};
1701
85508ec6
SS
1702static int zram_remove_cb(int id, void *ptr, void *data)
1703{
1704 zram_remove(ptr);
1705 return 0;
1706}
a096cafc 1707
85508ec6
SS
1708static void destroy_devices(void)
1709{
6566d1a3 1710 class_unregister(&zram_control_class);
85508ec6
SS
1711 idr_for_each(&zram_index_idr, &zram_remove_cb, NULL);
1712 idr_destroy(&zram_index_idr);
a096cafc 1713 unregister_blkdev(zram_major, "zram");
1dd6c834 1714 cpuhp_remove_multi_state(CPUHP_ZCOMP_PREPARE);
306b0c95
NG
1715}
1716
f1e3cfff 1717static int __init zram_init(void)
306b0c95 1718{
92ff1528 1719 int ret;
306b0c95 1720
1dd6c834
AMG
1721 ret = cpuhp_setup_state_multi(CPUHP_ZCOMP_PREPARE, "block/zram:prepare",
1722 zcomp_cpu_up_prepare, zcomp_cpu_dead);
1723 if (ret < 0)
1724 return ret;
1725
6566d1a3
SS
1726 ret = class_register(&zram_control_class);
1727 if (ret) {
70864969 1728 pr_err("Unable to register zram-control class\n");
1dd6c834 1729 cpuhp_remove_multi_state(CPUHP_ZCOMP_PREPARE);
6566d1a3
SS
1730 return ret;
1731 }
1732
f1e3cfff
NG
1733 zram_major = register_blkdev(0, "zram");
1734 if (zram_major <= 0) {
70864969 1735 pr_err("Unable to get major number\n");
6566d1a3 1736 class_unregister(&zram_control_class);
1dd6c834 1737 cpuhp_remove_multi_state(CPUHP_ZCOMP_PREPARE);
a096cafc 1738 return -EBUSY;
306b0c95
NG
1739 }
1740
92ff1528 1741 while (num_devices != 0) {
6566d1a3 1742 mutex_lock(&zram_index_mutex);
92ff1528 1743 ret = zram_add();
6566d1a3 1744 mutex_unlock(&zram_index_mutex);
92ff1528 1745 if (ret < 0)
a096cafc 1746 goto out_error;
92ff1528 1747 num_devices--;
de1a21a0
NG
1748 }
1749
306b0c95 1750 return 0;
de1a21a0 1751
a096cafc 1752out_error:
85508ec6 1753 destroy_devices();
306b0c95
NG
1754 return ret;
1755}
1756
f1e3cfff 1757static void __exit zram_exit(void)
306b0c95 1758{
85508ec6 1759 destroy_devices();
306b0c95
NG
1760}
1761
f1e3cfff
NG
1762module_init(zram_init);
1763module_exit(zram_exit);
306b0c95 1764
9b3bb7ab 1765module_param(num_devices, uint, 0);
c3cdb40e 1766MODULE_PARM_DESC(num_devices, "Number of pre-created zram devices");
9b3bb7ab 1767
306b0c95
NG
1768MODULE_LICENSE("Dual BSD/GPL");
1769MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");
f1e3cfff 1770MODULE_DESCRIPTION("Compressed RAM Block Device");