zram: avoid access beyond the zram device
[deliverable/linux.git] / drivers / staging / zram / zram_drv.c
CommitLineData
306b0c95 1/*
f1e3cfff 2 * Compressed RAM block device
306b0c95 3 *
1130ebba 4 * Copyright (C) 2008, 2009, 2010 Nitin Gupta
306b0c95
NG
5 *
6 * This code is released using a dual license strategy: BSD/GPL
7 * You can choose the licence that better fits your requirements.
8 *
9 * Released under the terms of 3-clause BSD License
10 * Released under the terms of GNU General Public License Version 2.0
11 *
12 * Project home: http://compcache.googlecode.com
13 */
14
f1e3cfff 15#define KMSG_COMPONENT "zram"
306b0c95
NG
16#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
17
b1f5b81e
RJ
18#ifdef CONFIG_ZRAM_DEBUG
19#define DEBUG
20#endif
21
306b0c95
NG
22#include <linux/module.h>
23#include <linux/kernel.h>
8946a086 24#include <linux/bio.h>
306b0c95
NG
25#include <linux/bitops.h>
26#include <linux/blkdev.h>
27#include <linux/buffer_head.h>
28#include <linux/device.h>
29#include <linux/genhd.h>
30#include <linux/highmem.h>
5a0e3ad6 31#include <linux/slab.h>
306b0c95 32#include <linux/lzo.h>
306b0c95 33#include <linux/string.h>
306b0c95 34#include <linux/vmalloc.h>
306b0c95 35
16a4bfb9 36#include "zram_drv.h"
306b0c95
NG
37
38/* Globals */
f1e3cfff 39static int zram_major;
43801f6e 40struct zram *zram_devices;
306b0c95 41
306b0c95 42/* Module params (documentation at end) */
ca3d70bd 43static unsigned int num_devices = 1;
33863c21 44
33863c21
NG
45static void zram_stat64_add(struct zram *zram, u64 *v, u64 inc)
46{
47 spin_lock(&zram->stat64_lock);
48 *v = *v + inc;
49 spin_unlock(&zram->stat64_lock);
50}
51
52static void zram_stat64_sub(struct zram *zram, u64 *v, u64 dec)
53{
54 spin_lock(&zram->stat64_lock);
55 *v = *v - dec;
56 spin_unlock(&zram->stat64_lock);
57}
58
59static void zram_stat64_inc(struct zram *zram, u64 *v)
60{
61 zram_stat64_add(zram, v, 1);
62}
306b0c95 63
8b3cc3ed 64static int zram_test_flag(struct zram_meta *meta, u32 index,
f1e3cfff 65 enum zram_pageflags flag)
306b0c95 66{
8b3cc3ed 67 return meta->table[index].flags & BIT(flag);
306b0c95
NG
68}
69
8b3cc3ed 70static void zram_set_flag(struct zram_meta *meta, u32 index,
f1e3cfff 71 enum zram_pageflags flag)
306b0c95 72{
8b3cc3ed 73 meta->table[index].flags |= BIT(flag);
306b0c95
NG
74}
75
8b3cc3ed 76static void zram_clear_flag(struct zram_meta *meta, u32 index,
f1e3cfff 77 enum zram_pageflags flag)
306b0c95 78{
8b3cc3ed 79 meta->table[index].flags &= ~BIT(flag);
306b0c95
NG
80}
81
82static int page_zero_filled(void *ptr)
83{
84 unsigned int pos;
85 unsigned long *page;
86
87 page = (unsigned long *)ptr;
88
89 for (pos = 0; pos != PAGE_SIZE / sizeof(*page); pos++) {
90 if (page[pos])
91 return 0;
92 }
93
94 return 1;
95}
96
f1e3cfff 97static void zram_free_page(struct zram *zram, size_t index)
306b0c95 98{
8b3cc3ed
MK
99 struct zram_meta *meta = zram->meta;
100 unsigned long handle = meta->table[index].handle;
101 u16 size = meta->table[index].size;
306b0c95 102
fd1a30de 103 if (unlikely(!handle)) {
2e882281
NG
104 /*
105 * No memory is allocated for zero filled pages.
106 * Simply clear zero page flag.
107 */
8b3cc3ed
MK
108 if (zram_test_flag(meta, index, ZRAM_ZERO)) {
109 zram_clear_flag(meta, index, ZRAM_ZERO);
d178a07c 110 zram->stats.pages_zero--;
306b0c95
NG
111 }
112 return;
113 }
114
130f315a 115 if (unlikely(size > max_zpage_size))
d178a07c 116 zram->stats.bad_compress--;
306b0c95 117
8b3cc3ed 118 zs_free(meta->mem_pool, handle);
306b0c95 119
130f315a 120 if (size <= PAGE_SIZE / 2)
d178a07c 121 zram->stats.good_compress--;
306b0c95 122
fd1a30de 123 zram_stat64_sub(zram, &zram->stats.compr_size,
8b3cc3ed 124 meta->table[index].size);
d178a07c 125 zram->stats.pages_stored--;
306b0c95 126
8b3cc3ed
MK
127 meta->table[index].handle = 0;
128 meta->table[index].size = 0;
306b0c95
NG
129}
130
924bd88d 131static void handle_zero_page(struct bio_vec *bvec)
306b0c95 132{
924bd88d 133 struct page *page = bvec->bv_page;
306b0c95 134 void *user_mem;
306b0c95 135
ba82fe2e 136 user_mem = kmap_atomic(page);
924bd88d 137 memset(user_mem + bvec->bv_offset, 0, bvec->bv_len);
ba82fe2e 138 kunmap_atomic(user_mem);
306b0c95 139
30fb8a71 140 flush_dcache_page(page);
306b0c95
NG
141}
142
924bd88d
JM
143static inline int is_partial_io(struct bio_vec *bvec)
144{
145 return bvec->bv_len != PAGE_SIZE;
146}
147
37b51fdd 148static int zram_decompress_page(struct zram *zram, char *mem, u32 index)
306b0c95 149{
37b51fdd
SS
150 int ret = LZO_E_OK;
151 size_t clen = PAGE_SIZE;
152 unsigned char *cmem;
8b3cc3ed
MK
153 struct zram_meta *meta = zram->meta;
154 unsigned long handle = meta->table[index].handle;
306b0c95 155
8b3cc3ed 156 if (!handle || zram_test_flag(meta, index, ZRAM_ZERO)) {
37b51fdd 157 memset(mem, 0, PAGE_SIZE);
8c921b2b
JM
158 return 0;
159 }
306b0c95 160
8b3cc3ed
MK
161 cmem = zs_map_object(meta->mem_pool, handle, ZS_MM_RO);
162 if (meta->table[index].size == PAGE_SIZE)
37b51fdd
SS
163 memcpy(mem, cmem, PAGE_SIZE);
164 else
8b3cc3ed 165 ret = lzo1x_decompress_safe(cmem, meta->table[index].size,
37b51fdd 166 mem, &clen);
8b3cc3ed 167 zs_unmap_object(meta->mem_pool, handle);
a1dd52af 168
8c921b2b
JM
169 /* Should NEVER happen. Return bio error if it does. */
170 if (unlikely(ret != LZO_E_OK)) {
171 pr_err("Decompression failed! err=%d, page=%u\n", ret, index);
172 zram_stat64_inc(zram, &zram->stats.failed_reads);
173 return ret;
a1dd52af 174 }
306b0c95 175
8c921b2b 176 return 0;
306b0c95
NG
177}
178
37b51fdd
SS
179static int zram_bvec_read(struct zram *zram, struct bio_vec *bvec,
180 u32 index, int offset, struct bio *bio)
924bd88d
JM
181{
182 int ret;
37b51fdd
SS
183 struct page *page;
184 unsigned char *user_mem, *uncmem = NULL;
8b3cc3ed 185 struct zram_meta *meta = zram->meta;
37b51fdd
SS
186 page = bvec->bv_page;
187
8b3cc3ed
MK
188 if (unlikely(!meta->table[index].handle) ||
189 zram_test_flag(meta, index, ZRAM_ZERO)) {
37b51fdd 190 handle_zero_page(bvec);
924bd88d
JM
191 return 0;
192 }
193
37b51fdd
SS
194 if (is_partial_io(bvec))
195 /* Use a temporary buffer to decompress the page */
7e5a5104
MK
196 uncmem = kmalloc(PAGE_SIZE, GFP_NOIO);
197
198 user_mem = kmap_atomic(page);
199 if (!is_partial_io(bvec))
37b51fdd
SS
200 uncmem = user_mem;
201
202 if (!uncmem) {
203 pr_info("Unable to allocate temp memory\n");
204 ret = -ENOMEM;
205 goto out_cleanup;
206 }
924bd88d 207
37b51fdd 208 ret = zram_decompress_page(zram, uncmem, index);
924bd88d 209 /* Should NEVER happen. Return bio error if it does. */
25eeb667 210 if (unlikely(ret != LZO_E_OK))
37b51fdd 211 goto out_cleanup;
924bd88d 212
37b51fdd
SS
213 if (is_partial_io(bvec))
214 memcpy(user_mem + bvec->bv_offset, uncmem + offset,
215 bvec->bv_len);
216
217 flush_dcache_page(page);
218 ret = 0;
219out_cleanup:
220 kunmap_atomic(user_mem);
221 if (is_partial_io(bvec))
222 kfree(uncmem);
223 return ret;
924bd88d
JM
224}
225
226static int zram_bvec_write(struct zram *zram, struct bio_vec *bvec, u32 index,
227 int offset)
306b0c95 228{
397c6066 229 int ret = 0;
8c921b2b 230 size_t clen;
c2344348 231 unsigned long handle;
130f315a 232 struct page *page;
924bd88d 233 unsigned char *user_mem, *cmem, *src, *uncmem = NULL;
8b3cc3ed 234 struct zram_meta *meta = zram->meta;
306b0c95 235
8c921b2b 236 page = bvec->bv_page;
8b3cc3ed 237 src = meta->compress_buffer;
306b0c95 238
924bd88d
JM
239 if (is_partial_io(bvec)) {
240 /*
241 * This is a partial IO. We need to read the full page
242 * before to write the changes.
243 */
7e5a5104 244 uncmem = kmalloc(PAGE_SIZE, GFP_NOIO);
924bd88d 245 if (!uncmem) {
924bd88d
JM
246 ret = -ENOMEM;
247 goto out;
248 }
37b51fdd 249 ret = zram_decompress_page(zram, uncmem, index);
397c6066 250 if (ret)
924bd88d 251 goto out;
924bd88d
JM
252 }
253
8c921b2b
JM
254 /*
255 * System overwrites unused sectors. Free memory associated
256 * with this sector now.
257 */
8b3cc3ed
MK
258 if (meta->table[index].handle ||
259 zram_test_flag(meta, index, ZRAM_ZERO))
8c921b2b 260 zram_free_page(zram, index);
306b0c95 261
ba82fe2e 262 user_mem = kmap_atomic(page);
924bd88d 263
397c6066 264 if (is_partial_io(bvec)) {
924bd88d
JM
265 memcpy(uncmem + offset, user_mem + bvec->bv_offset,
266 bvec->bv_len);
397c6066
NG
267 kunmap_atomic(user_mem);
268 user_mem = NULL;
269 } else {
924bd88d 270 uncmem = user_mem;
397c6066 271 }
924bd88d
JM
272
273 if (page_zero_filled(uncmem)) {
ba82fe2e 274 kunmap_atomic(user_mem);
d178a07c 275 zram->stats.pages_zero++;
8b3cc3ed 276 zram_set_flag(meta, index, ZRAM_ZERO);
924bd88d
JM
277 ret = 0;
278 goto out;
8c921b2b 279 }
306b0c95 280
924bd88d 281 ret = lzo1x_1_compress(uncmem, PAGE_SIZE, src, &clen,
8b3cc3ed 282 meta->compress_workmem);
306b0c95 283
397c6066
NG
284 if (!is_partial_io(bvec)) {
285 kunmap_atomic(user_mem);
286 user_mem = NULL;
287 uncmem = NULL;
288 }
306b0c95 289
8c921b2b 290 if (unlikely(ret != LZO_E_OK)) {
8c921b2b 291 pr_err("Compression failed! err=%d\n", ret);
924bd88d 292 goto out;
8c921b2b 293 }
306b0c95 294
c8f2f0db 295 if (unlikely(clen > max_zpage_size)) {
d178a07c 296 zram->stats.bad_compress++;
c8f2f0db 297 clen = PAGE_SIZE;
397c6066
NG
298 src = NULL;
299 if (is_partial_io(bvec))
300 src = uncmem;
c8f2f0db 301 }
a1dd52af 302
8b3cc3ed 303 handle = zs_malloc(meta->mem_pool, clen);
fd1a30de 304 if (!handle) {
596b3dd4
MR
305 pr_info("Error allocating memory for compressed page: %u, size=%zu\n",
306 index, clen);
924bd88d
JM
307 ret = -ENOMEM;
308 goto out;
8c921b2b 309 }
8b3cc3ed 310 cmem = zs_map_object(meta->mem_pool, handle, ZS_MM_WO);
306b0c95 311
397c6066
NG
312 if ((clen == PAGE_SIZE) && !is_partial_io(bvec))
313 src = kmap_atomic(page);
8c921b2b 314 memcpy(cmem, src, clen);
397c6066
NG
315 if ((clen == PAGE_SIZE) && !is_partial_io(bvec))
316 kunmap_atomic(src);
306b0c95 317
8b3cc3ed 318 zs_unmap_object(meta->mem_pool, handle);
fd1a30de 319
8b3cc3ed
MK
320 meta->table[index].handle = handle;
321 meta->table[index].size = clen;
306b0c95 322
8c921b2b
JM
323 /* Update stats */
324 zram_stat64_add(zram, &zram->stats.compr_size, clen);
d178a07c 325 zram->stats.pages_stored++;
8c921b2b 326 if (clen <= PAGE_SIZE / 2)
d178a07c 327 zram->stats.good_compress++;
306b0c95 328
924bd88d 329out:
397c6066
NG
330 if (is_partial_io(bvec))
331 kfree(uncmem);
332
924bd88d
JM
333 if (ret)
334 zram_stat64_inc(zram, &zram->stats.failed_writes);
335 return ret;
8c921b2b
JM
336}
337
338static int zram_bvec_rw(struct zram *zram, struct bio_vec *bvec, u32 index,
924bd88d 339 int offset, struct bio *bio, int rw)
8c921b2b 340{
c5bde238 341 int ret;
8c921b2b 342
c5bde238
JM
343 if (rw == READ) {
344 down_read(&zram->lock);
345 ret = zram_bvec_read(zram, bvec, index, offset, bio);
346 up_read(&zram->lock);
347 } else {
348 down_write(&zram->lock);
349 ret = zram_bvec_write(zram, bvec, index, offset);
350 up_write(&zram->lock);
351 }
352
353 return ret;
924bd88d
JM
354}
355
356static void update_position(u32 *index, int *offset, struct bio_vec *bvec)
357{
358 if (*offset + bvec->bv_len >= PAGE_SIZE)
359 (*index)++;
360 *offset = (*offset + bvec->bv_len) % PAGE_SIZE;
8c921b2b
JM
361}
362
363static void __zram_make_request(struct zram *zram, struct bio *bio, int rw)
364{
924bd88d 365 int i, offset;
8c921b2b
JM
366 u32 index;
367 struct bio_vec *bvec;
368
369 switch (rw) {
370 case READ:
371 zram_stat64_inc(zram, &zram->stats.num_reads);
372 break;
373 case WRITE:
374 zram_stat64_inc(zram, &zram->stats.num_writes);
375 break;
376 }
377
378 index = bio->bi_sector >> SECTORS_PER_PAGE_SHIFT;
924bd88d 379 offset = (bio->bi_sector & (SECTORS_PER_PAGE - 1)) << SECTOR_SHIFT;
8c921b2b
JM
380
381 bio_for_each_segment(bvec, bio, i) {
924bd88d
JM
382 int max_transfer_size = PAGE_SIZE - offset;
383
384 if (bvec->bv_len > max_transfer_size) {
385 /*
386 * zram_bvec_rw() can only make operation on a single
387 * zram page. Split the bio vector.
388 */
389 struct bio_vec bv;
390
391 bv.bv_page = bvec->bv_page;
392 bv.bv_len = max_transfer_size;
393 bv.bv_offset = bvec->bv_offset;
394
395 if (zram_bvec_rw(zram, &bv, index, offset, bio, rw) < 0)
396 goto out;
397
398 bv.bv_len = bvec->bv_len - max_transfer_size;
399 bv.bv_offset += max_transfer_size;
400 if (zram_bvec_rw(zram, &bv, index+1, 0, bio, rw) < 0)
401 goto out;
402 } else
403 if (zram_bvec_rw(zram, bvec, index, offset, bio, rw)
404 < 0)
405 goto out;
406
407 update_position(&index, &offset, bvec);
a1dd52af 408 }
306b0c95
NG
409
410 set_bit(BIO_UPTODATE, &bio->bi_flags);
411 bio_endio(bio, 0);
7d7854b4 412 return;
306b0c95
NG
413
414out:
306b0c95 415 bio_io_error(bio);
306b0c95
NG
416}
417
306b0c95 418/*
924bd88d 419 * Check if request is within bounds and aligned on zram logical blocks.
306b0c95 420 */
f1e3cfff 421static inline int valid_io_request(struct zram *zram, struct bio *bio)
306b0c95 422{
12a7ad3b
JL
423 u64 start, end, bound;
424
425 /* unaligned request */
426 if (unlikely(bio->bi_sector & (ZRAM_SECTOR_PER_LOGICAL_BLOCK - 1)))
427 return 0;
428 if (unlikely(bio->bi_size & (ZRAM_LOGICAL_BLOCK_SIZE - 1)))
429 return 0;
306b0c95 430
12a7ad3b
JL
431 start = bio->bi_sector;
432 end = start + (bio->bi_size >> SECTOR_SHIFT);
433 bound = zram->disksize >> SECTOR_SHIFT;
434 /* out of range range */
435 if (unlikely(start >= bound || end >= bound || start > end))
306b0c95 436 return 0;
306b0c95 437
a1dd52af 438 /* I/O request is valid */
306b0c95
NG
439 return 1;
440}
441
442/*
f1e3cfff 443 * Handler function for all zram I/O requests.
306b0c95 444 */
5a7bbad2 445static void zram_make_request(struct request_queue *queue, struct bio *bio)
306b0c95 446{
f1e3cfff 447 struct zram *zram = queue->queuedata;
306b0c95 448
0900beae
JM
449 down_read(&zram->init_lock);
450 if (unlikely(!zram->init_done))
3de738cd 451 goto error;
0900beae 452
f1e3cfff
NG
453 if (!valid_io_request(zram, bio)) {
454 zram_stat64_inc(zram, &zram->stats.invalid_io);
3de738cd 455 goto error;
6642a67c
JM
456 }
457
8c921b2b 458 __zram_make_request(zram, bio, bio_data_dir(bio));
0900beae 459 up_read(&zram->init_lock);
306b0c95 460
b4fdcb02 461 return;
0900beae 462
0900beae 463error:
3de738cd 464 up_read(&zram->init_lock);
0900beae 465 bio_io_error(bio);
306b0c95
NG
466}
467
1e927711 468static void __zram_reset_device(struct zram *zram)
306b0c95 469{
97a06382 470 size_t index;
8b3cc3ed 471 struct zram_meta *meta;
306b0c95 472
0231c403
MK
473 if (!zram->init_done)
474 return;
475
8b3cc3ed 476 meta = zram->meta;
f1e3cfff 477 zram->init_done = 0;
7eef7533 478
f1e3cfff
NG
479 /* Free all pages that are still in this zram device */
480 for (index = 0; index < zram->disksize >> PAGE_SHIFT; index++) {
8b3cc3ed 481 unsigned long handle = meta->table[index].handle;
fd1a30de 482 if (!handle)
306b0c95
NG
483 continue;
484
8b3cc3ed 485 zs_free(meta->mem_pool, handle);
306b0c95
NG
486 }
487
8b3cc3ed
MK
488 zram_meta_free(zram->meta);
489 zram->meta = NULL;
306b0c95 490 /* Reset stats */
f1e3cfff 491 memset(&zram->stats, 0, sizeof(zram->stats));
306b0c95 492
f1e3cfff 493 zram->disksize = 0;
0231c403 494 set_capacity(zram->disk, 0);
0900beae
JM
495}
496
497void zram_reset_device(struct zram *zram)
498{
499 down_write(&zram->init_lock);
500 __zram_reset_device(zram);
501 up_write(&zram->init_lock);
306b0c95
NG
502}
503
8b3cc3ed
MK
504void zram_meta_free(struct zram_meta *meta)
505{
506 zs_destroy_pool(meta->mem_pool);
507 kfree(meta->compress_workmem);
508 free_pages((unsigned long)meta->compress_buffer, 1);
509 vfree(meta->table);
510 kfree(meta);
511}
512
513struct zram_meta *zram_meta_alloc(u64 disksize)
306b0c95 514{
306b0c95 515 size_t num_pages;
8b3cc3ed
MK
516 struct zram_meta *meta = kmalloc(sizeof(*meta), GFP_KERNEL);
517 if (!meta)
518 goto out;
519
520 meta->compress_workmem = kzalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL);
78110bb8 521 if (!meta->compress_workmem)
8b3cc3ed 522 goto free_meta;
306b0c95 523
8b3cc3ed
MK
524 meta->compress_buffer =
525 (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, 1);
526 if (!meta->compress_buffer) {
527 pr_err("Error allocating compressor buffer space\n");
528 goto free_workmem;
529 }
530
531 num_pages = disksize >> PAGE_SHIFT;
532 meta->table = vzalloc(num_pages * sizeof(*meta->table));
533 if (!meta->table) {
534 pr_err("Error allocating zram address table\n");
535 goto free_buffer;
536 }
537
538 meta->mem_pool = zs_create_pool(GFP_NOIO | __GFP_HIGHMEM);
539 if (!meta->mem_pool) {
540 pr_err("Error creating memory pool\n");
541 goto free_table;
542 }
543
544 return meta;
545
546free_table:
547 vfree(meta->table);
548free_buffer:
549 free_pages((unsigned long)meta->compress_buffer, 1);
550free_workmem:
551 kfree(meta->compress_workmem);
552free_meta:
553 kfree(meta);
554 meta = NULL;
555out:
556 return meta;
557}
558
559void zram_init_device(struct zram *zram, struct zram_meta *meta)
560{
0231c403
MK
561 if (zram->disksize > 2 * (totalram_pages << PAGE_SHIFT)) {
562 pr_info(
563 "There is little point creating a zram of greater than "
564 "twice the size of memory since we expect a 2:1 compression "
565 "ratio. Note that zram uses about 0.1%% of the size of "
566 "the disk when not in use so a huge zram is "
567 "wasteful.\n"
152bce6b 568 "\tMemory Size: %lu kB\n"
0231c403
MK
569 "\tSize you selected: %llu kB\n"
570 "Continuing anyway ...\n",
571 (totalram_pages << PAGE_SHIFT) >> 10, zram->disksize >> 10
572 );
573 }
306b0c95 574
f1e3cfff
NG
575 /* zram devices sort of resembles non-rotational disks */
576 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, zram->disk->queue);
306b0c95 577
8b3cc3ed 578 zram->meta = meta;
f1e3cfff 579 zram->init_done = 1;
306b0c95
NG
580
581 pr_debug("Initialization done!\n");
306b0c95
NG
582}
583
2ccbec05
NG
584static void zram_slot_free_notify(struct block_device *bdev,
585 unsigned long index)
107c161b 586{
f1e3cfff 587 struct zram *zram;
107c161b 588
f1e3cfff 589 zram = bdev->bd_disk->private_data;
57ab0485 590 down_write(&zram->lock);
f1e3cfff 591 zram_free_page(zram, index);
57ab0485 592 up_write(&zram->lock);
f1e3cfff 593 zram_stat64_inc(zram, &zram->stats.notify_free);
107c161b
NG
594}
595
f1e3cfff 596static const struct block_device_operations zram_devops = {
f1e3cfff 597 .swap_slot_free_notify = zram_slot_free_notify,
107c161b 598 .owner = THIS_MODULE
306b0c95
NG
599};
600
f1e3cfff 601static int create_device(struct zram *zram, int device_id)
306b0c95 602{
39a9b8ac 603 int ret = -ENOMEM;
de1a21a0 604
c5bde238 605 init_rwsem(&zram->lock);
0900beae 606 init_rwsem(&zram->init_lock);
f1e3cfff 607 spin_lock_init(&zram->stat64_lock);
306b0c95 608
f1e3cfff
NG
609 zram->queue = blk_alloc_queue(GFP_KERNEL);
610 if (!zram->queue) {
306b0c95
NG
611 pr_err("Error allocating disk queue for device %d\n",
612 device_id);
de1a21a0 613 goto out;
306b0c95
NG
614 }
615
f1e3cfff
NG
616 blk_queue_make_request(zram->queue, zram_make_request);
617 zram->queue->queuedata = zram;
306b0c95
NG
618
619 /* gendisk structure */
f1e3cfff
NG
620 zram->disk = alloc_disk(1);
621 if (!zram->disk) {
94b8435f 622 pr_warn("Error allocating disk structure for device %d\n",
306b0c95 623 device_id);
39a9b8ac 624 goto out_free_queue;
306b0c95
NG
625 }
626
f1e3cfff
NG
627 zram->disk->major = zram_major;
628 zram->disk->first_minor = device_id;
629 zram->disk->fops = &zram_devops;
630 zram->disk->queue = zram->queue;
631 zram->disk->private_data = zram;
632 snprintf(zram->disk->disk_name, 16, "zram%d", device_id);
306b0c95 633
33863c21 634 /* Actual capacity set using syfs (/sys/block/zram<id>/disksize */
f1e3cfff 635 set_capacity(zram->disk, 0);
5d83d5a0 636
a1dd52af
NG
637 /*
638 * To ensure that we always get PAGE_SIZE aligned
639 * and n*PAGE_SIZED sized I/O requests.
640 */
f1e3cfff 641 blk_queue_physical_block_size(zram->disk->queue, PAGE_SIZE);
7b19b8d4
RJ
642 blk_queue_logical_block_size(zram->disk->queue,
643 ZRAM_LOGICAL_BLOCK_SIZE);
f1e3cfff
NG
644 blk_queue_io_min(zram->disk->queue, PAGE_SIZE);
645 blk_queue_io_opt(zram->disk->queue, PAGE_SIZE);
5d83d5a0 646
f1e3cfff 647 add_disk(zram->disk);
306b0c95 648
33863c21
NG
649 ret = sysfs_create_group(&disk_to_dev(zram->disk)->kobj,
650 &zram_disk_attr_group);
651 if (ret < 0) {
94b8435f 652 pr_warn("Error creating sysfs group");
39a9b8ac 653 goto out_free_disk;
33863c21 654 }
33863c21 655
f1e3cfff 656 zram->init_done = 0;
39a9b8ac 657 return 0;
de1a21a0 658
39a9b8ac
JL
659out_free_disk:
660 del_gendisk(zram->disk);
661 put_disk(zram->disk);
662out_free_queue:
663 blk_cleanup_queue(zram->queue);
de1a21a0
NG
664out:
665 return ret;
306b0c95
NG
666}
667
f1e3cfff 668static void destroy_device(struct zram *zram)
306b0c95 669{
33863c21
NG
670 sysfs_remove_group(&disk_to_dev(zram->disk)->kobj,
671 &zram_disk_attr_group);
33863c21 672
f1e3cfff
NG
673 if (zram->disk) {
674 del_gendisk(zram->disk);
675 put_disk(zram->disk);
306b0c95
NG
676 }
677
f1e3cfff
NG
678 if (zram->queue)
679 blk_cleanup_queue(zram->queue);
306b0c95
NG
680}
681
5fa5a901
NG
682unsigned int zram_get_num_devices(void)
683{
684 return num_devices;
685}
686
f1e3cfff 687static int __init zram_init(void)
306b0c95 688{
de1a21a0 689 int ret, dev_id;
306b0c95 690
5fa5a901 691 if (num_devices > max_num_devices) {
94b8435f 692 pr_warn("Invalid value for num_devices: %u\n",
5fa5a901 693 num_devices);
de1a21a0
NG
694 ret = -EINVAL;
695 goto out;
306b0c95
NG
696 }
697
f1e3cfff
NG
698 zram_major = register_blkdev(0, "zram");
699 if (zram_major <= 0) {
94b8435f 700 pr_warn("Unable to get major number\n");
de1a21a0
NG
701 ret = -EBUSY;
702 goto out;
306b0c95
NG
703 }
704
306b0c95 705 /* Allocate the device array and initialize each one */
5fa5a901 706 zram_devices = kzalloc(num_devices * sizeof(struct zram), GFP_KERNEL);
43801f6e 707 if (!zram_devices) {
de1a21a0
NG
708 ret = -ENOMEM;
709 goto unregister;
710 }
306b0c95 711
5fa5a901 712 for (dev_id = 0; dev_id < num_devices; dev_id++) {
43801f6e 713 ret = create_device(&zram_devices[dev_id], dev_id);
de1a21a0 714 if (ret)
3bf040c7 715 goto free_devices;
de1a21a0
NG
716 }
717
ca3d70bd
DB
718 pr_info("Created %u device(s) ...\n", num_devices);
719
306b0c95 720 return 0;
de1a21a0 721
3bf040c7 722free_devices:
de1a21a0 723 while (dev_id)
43801f6e
NW
724 destroy_device(&zram_devices[--dev_id]);
725 kfree(zram_devices);
de1a21a0 726unregister:
f1e3cfff 727 unregister_blkdev(zram_major, "zram");
de1a21a0 728out:
306b0c95
NG
729 return ret;
730}
731
f1e3cfff 732static void __exit zram_exit(void)
306b0c95
NG
733{
734 int i;
f1e3cfff 735 struct zram *zram;
306b0c95 736
5fa5a901 737 for (i = 0; i < num_devices; i++) {
43801f6e 738 zram = &zram_devices[i];
306b0c95 739
6030ea9b 740 get_disk(zram->disk);
f1e3cfff 741 destroy_device(zram);
0231c403 742 zram_reset_device(zram);
6030ea9b 743 put_disk(zram->disk);
306b0c95
NG
744 }
745
f1e3cfff 746 unregister_blkdev(zram_major, "zram");
306b0c95 747
43801f6e 748 kfree(zram_devices);
306b0c95
NG
749 pr_debug("Cleanup done!\n");
750}
751
5fa5a901
NG
752module_param(num_devices, uint, 0);
753MODULE_PARM_DESC(num_devices, "Number of zram devices");
306b0c95 754
f1e3cfff
NG
755module_init(zram_init);
756module_exit(zram_exit);
306b0c95
NG
757
758MODULE_LICENSE("Dual BSD/GPL");
759MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");
f1e3cfff 760MODULE_DESCRIPTION("Compressed RAM Block Device");
This page took 0.416461 seconds and 5 git commands to generate.