Staging: ramzswap: Support generic I/O requests
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / ramzswap / ramzswap_drv.h
blobad91726013bb34307672460fbfb1de7c005c895c
1 /*
2 * Compressed RAM based swap device
4 * Copyright (C) 2008, 2009, 2010 Nitin Gupta
6 * This code is released using a dual license strategy: BSD/GPL
7 * You can choose the licence that better fits your requirements.
9 * Released under the terms of 3-clause BSD License
10 * Released under the terms of GNU General Public License Version 2.0
12 * Project home: http://compcache.googlecode.com
15 #ifndef _RAMZSWAP_DRV_H_
16 #define _RAMZSWAP_DRV_H_
18 #include <linux/spinlock.h>
19 #include <linux/mutex.h>
21 #include "ramzswap_ioctl.h"
22 #include "xvmalloc.h"
25 * Some arbitrary value. This is just to catch
26 * invalid value for num_devices module parameter.
28 static const unsigned max_num_devices = 32;
31 * Stored at beginning of each compressed object.
33 * It stores back-reference to table entry which points to this
34 * object. This is required to support memory defragmentation.
36 struct zobj_header {
37 #if 0
38 u32 table_idx;
39 #endif
42 /*-- Configurable parameters */
44 /* Default ramzswap disk size: 25% of total RAM */
45 static const unsigned default_disksize_perc_ram = 25;
48 * Pages that compress to size greater than this are stored
49 * uncompressed in memory.
51 static const unsigned max_zpage_size = PAGE_SIZE / 4 * 3;
54 * NOTE: max_zpage_size must be less than or equal to:
55 * XV_MAX_ALLOC_SIZE - sizeof(struct zobj_header)
56 * otherwise, xv_malloc() would always return failure.
59 /*-- End of configurable params */
61 #define SECTOR_SHIFT 9
62 #define SECTOR_SIZE (1 << SECTOR_SHIFT)
63 #define SECTORS_PER_PAGE_SHIFT (PAGE_SHIFT - SECTOR_SHIFT)
64 #define SECTORS_PER_PAGE (1 << SECTORS_PER_PAGE_SHIFT)
66 /* Flags for ramzswap pages (table[page_no].flags) */
67 enum rzs_pageflags {
68 /* Page is stored uncompressed */
69 RZS_UNCOMPRESSED,
71 /* Page consists entirely of zeros */
72 RZS_ZERO,
74 __NR_RZS_PAGEFLAGS,
77 /*-- Data structures */
80 * Allocated for each swap slot, indexed by page no.
81 * These table entries must fit exactly in a page.
83 struct table {
84 struct page *page;
85 u16 offset;
86 u8 count; /* object ref count (not yet used) */
87 u8 flags;
88 } __attribute__((aligned(4)));
90 struct ramzswap_stats {
91 /* basic stats */
92 size_t compr_size; /* compressed size of pages stored -
93 * needed to enforce memlimit */
94 /* more stats */
95 #if defined(CONFIG_RAMZSWAP_STATS)
96 u64 num_reads; /* failed + successful */
97 u64 num_writes; /* --do-- */
98 u64 failed_reads; /* should NEVER! happen */
99 u64 failed_writes; /* can happen when memory is too low */
100 u64 invalid_io; /* non-swap I/O requests */
101 u64 notify_free; /* no. of swap slot free notifications */
102 u32 pages_zero; /* no. of zero filled pages */
103 u32 pages_stored; /* no. of pages currently stored */
104 u32 good_compress; /* % of pages with compression ratio<=50% */
105 u32 pages_expand; /* % of incompressible pages */
106 #endif
109 struct ramzswap {
110 struct xv_pool *mem_pool;
111 void *compress_workmem;
112 void *compress_buffer;
113 struct table *table;
114 spinlock_t stat64_lock; /* protect 64-bit stats */
115 struct mutex lock; /* protect compression buffers against
116 * concurrent writes */
117 struct request_queue *queue;
118 struct gendisk *disk;
119 int init_done;
121 * This is limit on amount of *uncompressed* worth of data
122 * we can hold. When backing swap device is provided, it is
123 * set equal to device size.
125 size_t disksize; /* bytes */
127 struct ramzswap_stats stats;
130 /*-- */
132 /* Debugging and Stats */
133 #if defined(CONFIG_RAMZSWAP_STATS)
134 static void rzs_stat_inc(u32 *v)
136 *v = *v + 1;
139 static void rzs_stat_dec(u32 *v)
141 *v = *v - 1;
144 static void rzs_stat64_inc(struct ramzswap *rzs, u64 *v)
146 spin_lock(&rzs->stat64_lock);
147 *v = *v + 1;
148 spin_unlock(&rzs->stat64_lock);
151 static u64 rzs_stat64_read(struct ramzswap *rzs, u64 *v)
153 u64 val;
155 spin_lock(&rzs->stat64_lock);
156 val = *v;
157 spin_unlock(&rzs->stat64_lock);
159 return val;
161 #else
162 #define rzs_stat_inc(v)
163 #define rzs_stat_dec(v)
164 #define rzs_stat64_inc(r, v)
165 #define rzs_stat64_read(r, v)
166 #endif /* CONFIG_RAMZSWAP_STATS */
168 #endif