xref: /linux/drivers/block/zram/zram_drv.h (revision 26bb0d3f38a764b743a3ad5c8b6e5b5044d7ceb4)
1 /*
2  * Compressed RAM block device
3  *
4  * Copyright (C) 2008, 2009, 2010  Nitin Gupta
5  *               2012, 2013 Minchan Kim
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  *
13  */
14 
15 #ifndef _ZRAM_DRV_H_
16 #define _ZRAM_DRV_H_
17 
18 #include <linux/rwsem.h>
19 #include <linux/zsmalloc.h>
20 #include <linux/crypto.h>
21 
22 #include "zcomp.h"
23 
24 #define SECTORS_PER_PAGE_SHIFT	(PAGE_SHIFT - SECTOR_SHIFT)
25 #define SECTORS_PER_PAGE	(1 << SECTORS_PER_PAGE_SHIFT)
26 #define ZRAM_LOGICAL_BLOCK_SHIFT 12
27 #define ZRAM_LOGICAL_BLOCK_SIZE	(1 << ZRAM_LOGICAL_BLOCK_SHIFT)
28 #define ZRAM_SECTOR_PER_LOGICAL_BLOCK	\
29 	(1 << (ZRAM_LOGICAL_BLOCK_SHIFT - SECTOR_SHIFT))
30 
31 
32 /*
33  * ZRAM is mainly used for memory efficiency so we want to keep memory
34  * footprint small and thus squeeze size and zram pageflags into a flags
35  * member. The lower ZRAM_FLAG_SHIFT bits is for object size (excluding
36  * header), which cannot be larger than PAGE_SIZE (requiring PAGE_SHIFT
37  * bits), the higher bits are for zram_pageflags.
38  *
39  * We use BUILD_BUG_ON() to make sure that zram pageflags don't overflow.
40  */
41 #define ZRAM_FLAG_SHIFT (PAGE_SHIFT + 1)
42 
43 /* Only 2 bits are allowed for comp priority index */
44 #define ZRAM_COMP_PRIORITY_MASK	0x3
45 
46 /* Flags for zram pages (table[page_no].flags) */
47 enum zram_pageflags {
48 	ZRAM_SAME = ZRAM_FLAG_SHIFT,	/* Page consists the same element */
49 	ZRAM_WB,	/* page is stored on backing_device */
50 	ZRAM_UNDER_WB,	/* page is under writeback */
51 	ZRAM_HUGE,	/* Incompressible page */
52 	ZRAM_IDLE,	/* not accessed page since last idle marking */
53 	ZRAM_INCOMPRESSIBLE, /* none of the algorithms could compress it */
54 
55 	ZRAM_COMP_PRIORITY_BIT1, /* First bit of comp priority index */
56 	ZRAM_COMP_PRIORITY_BIT2, /* Second bit of comp priority index */
57 
58 	__NR_ZRAM_PAGEFLAGS,
59 };
60 
61 /*-- Data structures */
62 
63 /* Allocated for each disk page */
64 struct zram_table_entry {
65 	union {
66 		unsigned long handle;
67 		unsigned long element;
68 	};
69 	unsigned int flags;
70 	spinlock_t lock;
71 #ifdef CONFIG_ZRAM_TRACK_ENTRY_ACTIME
72 	ktime_t ac_time;
73 #endif
74 };
75 
76 struct zram_stats {
77 	atomic64_t compr_data_size;	/* compressed size of pages stored */
78 	atomic64_t failed_reads;	/* can happen when memory is too low */
79 	atomic64_t failed_writes;	/* can happen when memory is too low */
80 	atomic64_t notify_free;	/* no. of swap slot free notifications */
81 	atomic64_t same_pages;		/* no. of same element filled pages */
82 	atomic64_t huge_pages;		/* no. of huge pages */
83 	atomic64_t huge_pages_since;	/* no. of huge pages since zram set up */
84 	atomic64_t pages_stored;	/* no. of pages currently stored */
85 	atomic_long_t max_used_pages;	/* no. of maximum pages stored */
86 	atomic64_t writestall;		/* no. of write slow paths */
87 	atomic64_t miss_free;		/* no. of missed free */
88 #ifdef	CONFIG_ZRAM_WRITEBACK
89 	atomic64_t bd_count;		/* no. of pages in backing device */
90 	atomic64_t bd_reads;		/* no. of reads from backing device */
91 	atomic64_t bd_writes;		/* no. of writes from backing device */
92 #endif
93 };
94 
95 #ifdef CONFIG_ZRAM_MULTI_COMP
96 #define ZRAM_PRIMARY_COMP	0U
97 #define ZRAM_SECONDARY_COMP	1U
98 #define ZRAM_MAX_COMPS	4U
99 #else
100 #define ZRAM_PRIMARY_COMP	0U
101 #define ZRAM_SECONDARY_COMP	0U
102 #define ZRAM_MAX_COMPS	1U
103 #endif
104 
105 struct zram {
106 	struct zram_table_entry *table;
107 	struct zs_pool *mem_pool;
108 	struct zcomp *comps[ZRAM_MAX_COMPS];
109 	struct gendisk *disk;
110 	/* Prevent concurrent execution of device init */
111 	struct rw_semaphore init_lock;
112 	/*
113 	 * the number of pages zram can consume for storing compressed data
114 	 */
115 	unsigned long limit_pages;
116 
117 	struct zram_stats stats;
118 	/*
119 	 * This is the limit on amount of *uncompressed* worth of data
120 	 * we can store in a disk.
121 	 */
122 	u64 disksize;	/* bytes */
123 	const char *comp_algs[ZRAM_MAX_COMPS];
124 	s8 num_active_comps;
125 	/*
126 	 * zram is claimed so open request will be failed
127 	 */
128 	bool claim; /* Protected by disk->open_mutex */
129 #ifdef CONFIG_ZRAM_WRITEBACK
130 	struct file *backing_dev;
131 	spinlock_t wb_limit_lock;
132 	bool wb_limit_enable;
133 	u64 bd_wb_limit;
134 	struct block_device *bdev;
135 	unsigned long *bitmap;
136 	unsigned long nr_pages;
137 #endif
138 #ifdef CONFIG_ZRAM_MEMORY_TRACKING
139 	struct dentry *debugfs_dir;
140 #endif
141 };
142 #endif
143