blob: b6b5acc92ca2da725de6a7b0f867c7c83b77d464 [file] [log] [blame]
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001/*
2 * Copyright (C) 2009-2011 Red Hat, Inc.
3 *
4 * Author: Mikulas Patocka <mpatocka@redhat.com>
5 *
6 * This file is released under the GPL.
7 */
8
Mikulas Patockaafa53df2018-03-15 16:02:31 -04009#include <linux/dm-bufio.h>
Mikulas Patocka95d402f2011-10-31 20:19:09 +000010
11#include <linux/device-mapper.h>
12#include <linux/dm-io.h>
13#include <linux/slab.h>
Ingo Molnar5b3cc152017-02-02 20:43:54 +010014#include <linux/sched/mm.h>
Asaf Vertzf4953392015-01-06 15:44:15 +020015#include <linux/jiffies.h>
Mikulas Patocka95d402f2011-10-31 20:19:09 +000016#include <linux/vmalloc.h>
Mikulas Patocka95d402f2011-10-31 20:19:09 +000017#include <linux/shrinker.h>
Stephen Rothwell6f662632011-11-01 18:30:49 +110018#include <linux/module.h>
Joe Thornber4e420c42014-10-06 13:48:51 +010019#include <linux/rbtree.h>
Mikulas Patocka86bad0c2015-11-23 19:20:06 -050020#include <linux/stacktrace.h>
Mikulas Patocka95d402f2011-10-31 20:19:09 +000021
22#define DM_MSG_PREFIX "bufio"
23
24/*
25 * Memory management policy:
26 * Limit the number of buffers to DM_BUFIO_MEMORY_PERCENT of main memory
27 * or DM_BUFIO_VMALLOC_PERCENT of vmalloc memory (whichever is lower).
28 * Always allocate at least DM_BUFIO_MIN_BUFFERS buffers.
29 * Start background writeback when there are DM_BUFIO_WRITEBACK_PERCENT
30 * dirty buffers.
31 */
32#define DM_BUFIO_MIN_BUFFERS 8
33
34#define DM_BUFIO_MEMORY_PERCENT 2
35#define DM_BUFIO_VMALLOC_PERCENT 25
36#define DM_BUFIO_WRITEBACK_PERCENT 75
37
38/*
39 * Check buffer ages in this interval (seconds)
40 */
Joe Thornber33096a72014-10-09 11:10:25 +010041#define DM_BUFIO_WORK_TIMER_SECS 30
Mikulas Patocka95d402f2011-10-31 20:19:09 +000042
43/*
44 * Free buffers when they are older than this (seconds)
45 */
Joe Thornber33096a72014-10-09 11:10:25 +010046#define DM_BUFIO_DEFAULT_AGE_SECS 300
47
48/*
49 * The nr of bytes of cached data to keep around.
50 */
51#define DM_BUFIO_DEFAULT_RETAIN_BYTES (256 * 1024)
Mikulas Patocka95d402f2011-10-31 20:19:09 +000052
53/*
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -040054 * Align buffer writes to this boundary.
55 * Tests show that SSDs have the highest IOPS when using 4k writes.
56 */
57#define DM_BUFIO_WRITE_ALIGN 4096
58
59/*
Mikulas Patocka95d402f2011-10-31 20:19:09 +000060 * dm_buffer->list_mode
61 */
62#define LIST_CLEAN 0
63#define LIST_DIRTY 1
64#define LIST_SIZE 2
65
66/*
67 * Linking of buffers:
Shenghui Wangef992372018-10-30 15:35:54 +080068 * All buffers are linked to buffer_tree with their node field.
Mikulas Patocka95d402f2011-10-31 20:19:09 +000069 *
70 * Clean buffers that are not being written (B_WRITING not set)
71 * are linked to lru[LIST_CLEAN] with their lru_list field.
72 *
73 * Dirty and clean buffers that are being written are linked to
74 * lru[LIST_DIRTY] with their lru_list field. When the write
75 * finishes, the buffer cannot be relinked immediately (because we
76 * are in an interrupt context and relinking requires process
77 * context), so some clean-not-writing buffers can be held on
78 * dirty_lru too. They are later added to lru in the process
79 * context.
80 */
81struct dm_bufio_client {
82 struct mutex lock;
83
84 struct list_head lru[LIST_SIZE];
85 unsigned long n_buffers[LIST_SIZE];
86
87 struct block_device *bdev;
88 unsigned block_size;
Mikulas Patockaf51f2e02018-03-26 20:29:46 +020089 s8 sectors_per_block_bits;
Mikulas Patocka95d402f2011-10-31 20:19:09 +000090 void (*alloc_callback)(struct dm_buffer *);
91 void (*write_callback)(struct dm_buffer *);
92
Mikulas Patocka359dbf12018-03-26 20:29:45 +020093 struct kmem_cache *slab_buffer;
Mikulas Patocka21bb1322018-03-26 20:29:42 +020094 struct kmem_cache *slab_cache;
Mikulas Patocka95d402f2011-10-31 20:19:09 +000095 struct dm_io_client *dm_io;
96
97 struct list_head reserved_buffers;
98 unsigned need_reserved_buffers;
99
Mikulas Patocka55b082e2014-01-13 19:13:05 -0500100 unsigned minimum_buffers;
101
Joe Thornber4e420c42014-10-06 13:48:51 +0100102 struct rb_root buffer_tree;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000103 wait_queue_head_t free_buffer_wait;
104
Mikulas Patocka400a0be2017-01-04 20:23:52 +0100105 sector_t start;
106
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000107 int async_write_error;
108
109 struct list_head client_list;
110 struct shrinker shrinker;
111};
112
113/*
114 * Buffer state bits.
115 */
116#define B_READING 0
117#define B_WRITING 1
118#define B_DIRTY 2
119
120/*
121 * Describes how the block was allocated:
122 * kmem_cache_alloc(), __get_free_pages() or vmalloc().
123 * See the comment at alloc_buffer_data.
124 */
125enum data_mode {
126 DATA_MODE_SLAB = 0,
127 DATA_MODE_GET_FREE_PAGES = 1,
128 DATA_MODE_VMALLOC = 2,
129 DATA_MODE_LIMIT = 3
130};
131
132struct dm_buffer {
Joe Thornber4e420c42014-10-06 13:48:51 +0100133 struct rb_node node;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000134 struct list_head lru_list;
135 sector_t block;
136 void *data;
Mikulas Patocka03b029392018-03-26 20:29:44 +0200137 unsigned char data_mode; /* DATA_MODE_* */
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000138 unsigned char list_mode; /* LIST_* */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200139 blk_status_t read_error;
140 blk_status_t write_error;
Mikulas Patocka03b029392018-03-26 20:29:44 +0200141 unsigned hold_count;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000142 unsigned long state;
143 unsigned long last_accessed;
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400144 unsigned dirty_start;
145 unsigned dirty_end;
146 unsigned write_start;
147 unsigned write_end;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000148 struct dm_bufio_client *c;
Mikulas Patocka24809452013-07-10 23:41:18 +0100149 struct list_head write_list;
Mikulas Patocka45354f12018-03-26 20:29:47 +0200150 void (*end_io)(struct dm_buffer *, blk_status_t);
Mikulas Patocka86bad0c2015-11-23 19:20:06 -0500151#ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
152#define MAX_STACK 10
Thomas Gleixner741b58f2019-04-25 11:45:07 +0200153 unsigned int stack_len;
Mikulas Patocka86bad0c2015-11-23 19:20:06 -0500154 unsigned long stack_entries[MAX_STACK];
155#endif
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000156};
157
158/*----------------------------------------------------------------*/
159
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000160#define dm_bufio_in_request() (!!current->bio_list)
161
162static void dm_bufio_lock(struct dm_bufio_client *c)
163{
164 mutex_lock_nested(&c->lock, dm_bufio_in_request());
165}
166
167static int dm_bufio_trylock(struct dm_bufio_client *c)
168{
169 return mutex_trylock(&c->lock);
170}
171
172static void dm_bufio_unlock(struct dm_bufio_client *c)
173{
174 mutex_unlock(&c->lock);
175}
176
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000177/*----------------------------------------------------------------*/
178
179/*
180 * Default cache size: available memory divided by the ratio.
181 */
182static unsigned long dm_bufio_default_cache_size;
183
184/*
185 * Total cache size set by the user.
186 */
187static unsigned long dm_bufio_cache_size;
188
189/*
190 * A copy of dm_bufio_cache_size because dm_bufio_cache_size can change
191 * at any time. If it disagrees, the user has changed cache size.
192 */
193static unsigned long dm_bufio_cache_size_latch;
194
195static DEFINE_SPINLOCK(param_spinlock);
196
197/*
198 * Buffers are freed after this timeout
199 */
200static unsigned dm_bufio_max_age = DM_BUFIO_DEFAULT_AGE_SECS;
Mikulas Patocka13840d32017-04-30 17:32:28 -0400201static unsigned long dm_bufio_retain_bytes = DM_BUFIO_DEFAULT_RETAIN_BYTES;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000202
203static unsigned long dm_bufio_peak_allocated;
204static unsigned long dm_bufio_allocated_kmem_cache;
205static unsigned long dm_bufio_allocated_get_free_pages;
206static unsigned long dm_bufio_allocated_vmalloc;
207static unsigned long dm_bufio_current_allocated;
208
209/*----------------------------------------------------------------*/
210
211/*
212 * Per-client cache: dm_bufio_cache_size / dm_bufio_client_count
213 */
214static unsigned long dm_bufio_cache_size_per_client;
215
216/*
217 * The current number of clients.
218 */
219static int dm_bufio_client_count;
220
221/*
222 * The list of all clients.
223 */
224static LIST_HEAD(dm_bufio_all_clients);
225
226/*
227 * This mutex protects dm_bufio_cache_size_latch,
228 * dm_bufio_cache_size_per_client and dm_bufio_client_count
229 */
230static DEFINE_MUTEX(dm_bufio_clients_lock);
231
Mikulas Patocka86bad0c2015-11-23 19:20:06 -0500232#ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
233static void buffer_record_stack(struct dm_buffer *b)
234{
Thomas Gleixner741b58f2019-04-25 11:45:07 +0200235 b->stack_len = stack_trace_save(b->stack_entries, MAX_STACK, 2);
Mikulas Patocka86bad0c2015-11-23 19:20:06 -0500236}
237#endif
238
Joe Thornber4e420c42014-10-06 13:48:51 +0100239/*----------------------------------------------------------------
240 * A red/black tree acts as an index for all the buffers.
241 *--------------------------------------------------------------*/
242static struct dm_buffer *__find(struct dm_bufio_client *c, sector_t block)
243{
244 struct rb_node *n = c->buffer_tree.rb_node;
245 struct dm_buffer *b;
246
247 while (n) {
248 b = container_of(n, struct dm_buffer, node);
249
250 if (b->block == block)
251 return b;
252
253 n = (b->block < block) ? n->rb_left : n->rb_right;
254 }
255
256 return NULL;
257}
258
259static void __insert(struct dm_bufio_client *c, struct dm_buffer *b)
260{
261 struct rb_node **new = &c->buffer_tree.rb_node, *parent = NULL;
262 struct dm_buffer *found;
263
264 while (*new) {
265 found = container_of(*new, struct dm_buffer, node);
266
267 if (found->block == b->block) {
268 BUG_ON(found != b);
269 return;
270 }
271
272 parent = *new;
273 new = (found->block < b->block) ?
274 &((*new)->rb_left) : &((*new)->rb_right);
275 }
276
277 rb_link_node(&b->node, parent, new);
278 rb_insert_color(&b->node, &c->buffer_tree);
279}
280
281static void __remove(struct dm_bufio_client *c, struct dm_buffer *b)
282{
283 rb_erase(&b->node, &c->buffer_tree);
284}
285
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000286/*----------------------------------------------------------------*/
287
Mikulas Patocka03b029392018-03-26 20:29:44 +0200288static void adjust_total_allocated(unsigned char data_mode, long diff)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000289{
290 static unsigned long * const class_ptr[DATA_MODE_LIMIT] = {
291 &dm_bufio_allocated_kmem_cache,
292 &dm_bufio_allocated_get_free_pages,
293 &dm_bufio_allocated_vmalloc,
294 };
295
296 spin_lock(&param_spinlock);
297
298 *class_ptr[data_mode] += diff;
299
300 dm_bufio_current_allocated += diff;
301
302 if (dm_bufio_current_allocated > dm_bufio_peak_allocated)
303 dm_bufio_peak_allocated = dm_bufio_current_allocated;
304
305 spin_unlock(&param_spinlock);
306}
307
308/*
309 * Change the number of clients and recalculate per-client limit.
310 */
311static void __cache_size_refresh(void)
312{
313 BUG_ON(!mutex_is_locked(&dm_bufio_clients_lock));
314 BUG_ON(dm_bufio_client_count < 0);
315
Mark Rutland6aa7de02017-10-23 14:07:29 -0700316 dm_bufio_cache_size_latch = READ_ONCE(dm_bufio_cache_size);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000317
318 /*
319 * Use default if set to 0 and report the actual cache size used.
320 */
321 if (!dm_bufio_cache_size_latch) {
322 (void)cmpxchg(&dm_bufio_cache_size, 0,
323 dm_bufio_default_cache_size);
324 dm_bufio_cache_size_latch = dm_bufio_default_cache_size;
325 }
326
327 dm_bufio_cache_size_per_client = dm_bufio_cache_size_latch /
328 (dm_bufio_client_count ? : 1);
329}
330
331/*
332 * Allocating buffer data.
333 *
334 * Small buffers are allocated with kmem_cache, to use space optimally.
335 *
336 * For large buffers, we choose between get_free_pages and vmalloc.
337 * Each has advantages and disadvantages.
338 *
339 * __get_free_pages can randomly fail if the memory is fragmented.
340 * __vmalloc won't randomly fail, but vmalloc space is limited (it may be
341 * as low as 128M) so using it for caching is not appropriate.
342 *
343 * If the allocation may fail we use __get_free_pages. Memory fragmentation
344 * won't have a fatal effect here, but it just causes flushes of some other
345 * buffers and more I/O will be performed. Don't use __get_free_pages if it
346 * always fails (i.e. order >= MAX_ORDER).
347 *
348 * If the allocation shouldn't fail we use __vmalloc. This is only for the
349 * initial reserve allocation, so there's no risk of wasting all vmalloc
350 * space.
351 */
352static void *alloc_buffer_data(struct dm_bufio_client *c, gfp_t gfp_mask,
Mikulas Patocka03b029392018-03-26 20:29:44 +0200353 unsigned char *data_mode)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000354{
Mikulas Patocka21bb1322018-03-26 20:29:42 +0200355 if (unlikely(c->slab_cache != NULL)) {
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000356 *data_mode = DATA_MODE_SLAB;
Mikulas Patocka21bb1322018-03-26 20:29:42 +0200357 return kmem_cache_alloc(c->slab_cache, gfp_mask);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000358 }
359
Mikulas Patockaf51f2e02018-03-26 20:29:46 +0200360 if (c->block_size <= KMALLOC_MAX_SIZE &&
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000361 gfp_mask & __GFP_NORETRY) {
362 *data_mode = DATA_MODE_GET_FREE_PAGES;
363 return (void *)__get_free_pages(gfp_mask,
Mikulas Patockaf51f2e02018-03-26 20:29:46 +0200364 c->sectors_per_block_bits - (PAGE_SHIFT - SECTOR_SHIFT));
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000365 }
366
367 *data_mode = DATA_MODE_VMALLOC;
Mikulas Patocka502624b2013-05-10 14:37:15 +0100368
369 /*
370 * __vmalloc allocates the data pages and auxiliary structures with
371 * gfp_flags that were specified, but pagetables are always allocated
372 * with GFP_KERNEL, no matter what was specified as gfp_mask.
373 *
374 * Consequently, we must set per-process flag PF_MEMALLOC_NOIO so that
375 * all allocations done by this process (including pagetables) are done
376 * as if GFP_NOIO was specified.
377 */
Arnd Bergmann590347e2018-02-22 16:56:16 +0100378 if (gfp_mask & __GFP_NORETRY) {
379 unsigned noio_flag = memalloc_noio_save();
380 void *ptr = __vmalloc(c->block_size, gfp_mask, PAGE_KERNEL);
Mikulas Patocka502624b2013-05-10 14:37:15 +0100381
Mikulas Patocka502624b2013-05-10 14:37:15 +0100382 memalloc_noio_restore(noio_flag);
Arnd Bergmann590347e2018-02-22 16:56:16 +0100383 return ptr;
384 }
Mikulas Patocka502624b2013-05-10 14:37:15 +0100385
Arnd Bergmann590347e2018-02-22 16:56:16 +0100386 return __vmalloc(c->block_size, gfp_mask, PAGE_KERNEL);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000387}
388
389/*
390 * Free buffer's data.
391 */
392static void free_buffer_data(struct dm_bufio_client *c,
Mikulas Patocka03b029392018-03-26 20:29:44 +0200393 void *data, unsigned char data_mode)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000394{
395 switch (data_mode) {
396 case DATA_MODE_SLAB:
Mikulas Patocka21bb1322018-03-26 20:29:42 +0200397 kmem_cache_free(c->slab_cache, data);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000398 break;
399
400 case DATA_MODE_GET_FREE_PAGES:
Mikulas Patockaf51f2e02018-03-26 20:29:46 +0200401 free_pages((unsigned long)data,
402 c->sectors_per_block_bits - (PAGE_SHIFT - SECTOR_SHIFT));
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000403 break;
404
405 case DATA_MODE_VMALLOC:
406 vfree(data);
407 break;
408
409 default:
410 DMCRIT("dm_bufio_free_buffer_data: bad data mode: %d",
411 data_mode);
412 BUG();
413 }
414}
415
416/*
417 * Allocate buffer and its data.
418 */
419static struct dm_buffer *alloc_buffer(struct dm_bufio_client *c, gfp_t gfp_mask)
420{
Mikulas Patocka359dbf12018-03-26 20:29:45 +0200421 struct dm_buffer *b = kmem_cache_alloc(c->slab_buffer, gfp_mask);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000422
423 if (!b)
424 return NULL;
425
426 b->c = c;
427
428 b->data = alloc_buffer_data(c, gfp_mask, &b->data_mode);
429 if (!b->data) {
Mikulas Patocka359dbf12018-03-26 20:29:45 +0200430 kmem_cache_free(c->slab_buffer, b);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000431 return NULL;
432 }
433
434 adjust_total_allocated(b->data_mode, (long)c->block_size);
435
Mikulas Patocka86bad0c2015-11-23 19:20:06 -0500436#ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
Thomas Gleixner741b58f2019-04-25 11:45:07 +0200437 b->stack_len = 0;
Mikulas Patocka86bad0c2015-11-23 19:20:06 -0500438#endif
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000439 return b;
440}
441
442/*
443 * Free buffer and its data.
444 */
445static void free_buffer(struct dm_buffer *b)
446{
447 struct dm_bufio_client *c = b->c;
448
449 adjust_total_allocated(b->data_mode, -(long)c->block_size);
450
451 free_buffer_data(c, b->data, b->data_mode);
Mikulas Patocka359dbf12018-03-26 20:29:45 +0200452 kmem_cache_free(c->slab_buffer, b);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000453}
454
455/*
Shenghui Wangef992372018-10-30 15:35:54 +0800456 * Link buffer to the buffer tree and clean or dirty queue.
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000457 */
458static void __link_buffer(struct dm_buffer *b, sector_t block, int dirty)
459{
460 struct dm_bufio_client *c = b->c;
461
462 c->n_buffers[dirty]++;
463 b->block = block;
464 b->list_mode = dirty;
465 list_add(&b->lru_list, &c->lru[dirty]);
Joe Thornber4e420c42014-10-06 13:48:51 +0100466 __insert(b->c, b);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000467 b->last_accessed = jiffies;
468}
469
470/*
Shenghui Wangef992372018-10-30 15:35:54 +0800471 * Unlink buffer from the buffer tree and dirty or clean queue.
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000472 */
473static void __unlink_buffer(struct dm_buffer *b)
474{
475 struct dm_bufio_client *c = b->c;
476
477 BUG_ON(!c->n_buffers[b->list_mode]);
478
479 c->n_buffers[b->list_mode]--;
Joe Thornber4e420c42014-10-06 13:48:51 +0100480 __remove(b->c, b);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000481 list_del(&b->lru_list);
482}
483
484/*
485 * Place the buffer to the head of dirty or clean LRU queue.
486 */
487static void __relink_lru(struct dm_buffer *b, int dirty)
488{
489 struct dm_bufio_client *c = b->c;
490
491 BUG_ON(!c->n_buffers[b->list_mode]);
492
493 c->n_buffers[b->list_mode]--;
494 c->n_buffers[dirty]++;
495 b->list_mode = dirty;
Wei Yongjun54499af2012-10-12 16:59:44 +0100496 list_move(&b->lru_list, &c->lru[dirty]);
Joe Thornbereb76faf2014-09-30 09:32:46 +0100497 b->last_accessed = jiffies;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000498}
499
500/*----------------------------------------------------------------
501 * Submit I/O on the buffer.
502 *
503 * Bio interface is faster but it has some problems:
504 * the vector list is limited (increasing this limit increases
505 * memory-consumption per buffer, so it is not viable);
506 *
507 * the memory must be direct-mapped, not vmalloced;
508 *
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000509 * If the buffer is small enough (up to DM_BUFIO_INLINE_VECS pages) and
510 * it is not vmalloced, try using the bio interface.
511 *
512 * If the buffer is big, if it is vmalloced or if the underlying device
513 * rejects the bio because it is too large, use dm-io layer to do the I/O.
514 * The dm-io layer splits the I/O into multiple requests, avoiding the above
515 * shortcomings.
516 *--------------------------------------------------------------*/
517
518/*
519 * dm-io completion routine. It just calls b->bio.bi_end_io, pretending
520 * that the request was handled directly with bio interface.
521 */
522static void dmio_complete(unsigned long error, void *context)
523{
524 struct dm_buffer *b = context;
525
Mikulas Patocka45354f12018-03-26 20:29:47 +0200526 b->end_io(b, unlikely(error != 0) ? BLK_STS_IOERR : 0);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000527}
528
Mikulas Patocka400a0be2017-01-04 20:23:52 +0100529static void use_dmio(struct dm_buffer *b, int rw, sector_t sector,
Mikulas Patocka45354f12018-03-26 20:29:47 +0200530 unsigned n_sectors, unsigned offset)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000531{
532 int r;
533 struct dm_io_request io_req = {
Mike Christiee6047142016-06-05 14:32:04 -0500534 .bi_op = rw,
535 .bi_op_flags = 0,
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000536 .notify.fn = dmio_complete,
537 .notify.context = b,
538 .client = b->c->dm_io,
539 };
540 struct dm_io_region region = {
541 .bdev = b->c->bdev,
Mikulas Patocka400a0be2017-01-04 20:23:52 +0100542 .sector = sector,
543 .count = n_sectors,
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000544 };
545
546 if (b->data_mode != DATA_MODE_VMALLOC) {
547 io_req.mem.type = DM_IO_KMEM;
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400548 io_req.mem.ptr.addr = (char *)b->data + offset;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000549 } else {
550 io_req.mem.type = DM_IO_VMA;
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400551 io_req.mem.ptr.vma = (char *)b->data + offset;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000552 }
553
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000554 r = dm_io(&io_req, 1, &region, NULL);
Mikulas Patocka45354f12018-03-26 20:29:47 +0200555 if (unlikely(r))
556 b->end_io(b, errno_to_blk_status(r));
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000557}
558
Mikulas Patocka45354f12018-03-26 20:29:47 +0200559static void bio_complete(struct bio *bio)
Darrick J. Wong445559c2014-11-25 17:45:15 -0800560{
Mikulas Patocka45354f12018-03-26 20:29:47 +0200561 struct dm_buffer *b = bio->bi_private;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200562 blk_status_t status = bio->bi_status;
Mikulas Patocka45354f12018-03-26 20:29:47 +0200563 bio_put(bio);
564 b->end_io(b, status);
Darrick J. Wong445559c2014-11-25 17:45:15 -0800565}
566
Mikulas Patocka45354f12018-03-26 20:29:47 +0200567static void use_bio(struct dm_buffer *b, int rw, sector_t sector,
568 unsigned n_sectors, unsigned offset)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000569{
Mikulas Patocka45354f12018-03-26 20:29:47 +0200570 struct bio *bio;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000571 char *ptr;
Mikulas Patocka45354f12018-03-26 20:29:47 +0200572 unsigned vec_size, len;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000573
Mikulas Patocka45354f12018-03-26 20:29:47 +0200574 vec_size = b->c->block_size >> PAGE_SHIFT;
575 if (unlikely(b->c->sectors_per_block_bits < PAGE_SHIFT - SECTOR_SHIFT))
576 vec_size += 2;
577
578 bio = bio_kmalloc(GFP_NOWAIT | __GFP_NORETRY | __GFP_NOWARN, vec_size);
579 if (!bio) {
580dmio:
581 use_dmio(b, rw, sector, n_sectors, offset);
582 return;
583 }
584
585 bio->bi_iter.bi_sector = sector;
586 bio_set_dev(bio, b->c->bdev);
587 bio_set_op_attrs(bio, rw, 0);
588 bio->bi_end_io = bio_complete;
589 bio->bi_private = b;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000590
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400591 ptr = (char *)b->data + offset;
Mikulas Patocka400a0be2017-01-04 20:23:52 +0100592 len = n_sectors << SECTOR_SHIFT;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000593
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000594 do {
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400595 unsigned this_step = min((unsigned)(PAGE_SIZE - offset_in_page(ptr)), len);
Mikulas Patocka45354f12018-03-26 20:29:47 +0200596 if (!bio_add_page(bio, virt_to_page(ptr), this_step,
Al Viro756d0972016-01-02 12:45:27 -0500597 offset_in_page(ptr))) {
Mikulas Patocka45354f12018-03-26 20:29:47 +0200598 bio_put(bio);
599 goto dmio;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000600 }
601
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400602 len -= this_step;
603 ptr += this_step;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000604 } while (len > 0);
605
Mikulas Patocka45354f12018-03-26 20:29:47 +0200606 submit_bio(bio);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000607}
608
Mikulas Patocka45354f12018-03-26 20:29:47 +0200609static void submit_io(struct dm_buffer *b, int rw, void (*end_io)(struct dm_buffer *, blk_status_t))
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000610{
Mikulas Patocka400a0be2017-01-04 20:23:52 +0100611 unsigned n_sectors;
612 sector_t sector;
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400613 unsigned offset, end;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000614
Mikulas Patocka45354f12018-03-26 20:29:47 +0200615 b->end_io = end_io;
616
Mikulas Patockaf51f2e02018-03-26 20:29:46 +0200617 if (likely(b->c->sectors_per_block_bits >= 0))
618 sector = b->block << b->c->sectors_per_block_bits;
619 else
620 sector = b->block * (b->c->block_size >> SECTOR_SHIFT);
621 sector += b->c->start;
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400622
Mikulas Patocka905be0a2017-12-02 00:33:39 -0500623 if (rw != REQ_OP_WRITE) {
Mikulas Patockaf51f2e02018-03-26 20:29:46 +0200624 n_sectors = b->c->block_size >> SECTOR_SHIFT;
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400625 offset = 0;
626 } else {
627 if (b->c->write_callback)
628 b->c->write_callback(b);
629 offset = b->write_start;
630 end = b->write_end;
631 offset &= -DM_BUFIO_WRITE_ALIGN;
632 end += DM_BUFIO_WRITE_ALIGN - 1;
633 end &= -DM_BUFIO_WRITE_ALIGN;
634 if (unlikely(end > b->c->block_size))
635 end = b->c->block_size;
636
637 sector += offset >> SECTOR_SHIFT;
638 n_sectors = (end - offset) >> SECTOR_SHIFT;
639 }
Mikulas Patocka400a0be2017-01-04 20:23:52 +0100640
Mikulas Patocka45354f12018-03-26 20:29:47 +0200641 if (b->data_mode != DATA_MODE_VMALLOC)
642 use_bio(b, rw, sector, n_sectors, offset);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000643 else
Mikulas Patocka45354f12018-03-26 20:29:47 +0200644 use_dmio(b, rw, sector, n_sectors, offset);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000645}
646
647/*----------------------------------------------------------------
648 * Writing dirty buffers
649 *--------------------------------------------------------------*/
650
651/*
652 * The endio routine for write.
653 *
654 * Set the error, clear B_WRITING bit and wake anyone who was waiting on
655 * it.
656 */
Mikulas Patocka45354f12018-03-26 20:29:47 +0200657static void write_endio(struct dm_buffer *b, blk_status_t status)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000658{
Mikulas Patocka45354f12018-03-26 20:29:47 +0200659 b->write_error = status;
660 if (unlikely(status)) {
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000661 struct dm_bufio_client *c = b->c;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200662
663 (void)cmpxchg(&c->async_write_error, 0,
Mikulas Patocka45354f12018-03-26 20:29:47 +0200664 blk_status_to_errno(status));
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000665 }
666
667 BUG_ON(!test_bit(B_WRITING, &b->state));
668
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100669 smp_mb__before_atomic();
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000670 clear_bit(B_WRITING, &b->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100671 smp_mb__after_atomic();
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000672
673 wake_up_bit(&b->state, B_WRITING);
674}
675
676/*
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000677 * Initiate a write on a dirty buffer, but don't wait for it.
678 *
679 * - If the buffer is not dirty, exit.
680 * - If there some previous write going on, wait for it to finish (we can't
681 * have two writes on the same buffer simultaneously).
682 * - Submit our write and don't wait on it. We set B_WRITING indicating
683 * that there is a write in progress.
684 */
Mikulas Patocka24809452013-07-10 23:41:18 +0100685static void __write_dirty_buffer(struct dm_buffer *b,
686 struct list_head *write_list)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000687{
688 if (!test_bit(B_DIRTY, &b->state))
689 return;
690
691 clear_bit(B_DIRTY, &b->state);
NeilBrown74316202014-07-07 15:16:04 +1000692 wait_on_bit_lock_io(&b->state, B_WRITING, TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000693
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -0400694 b->write_start = b->dirty_start;
695 b->write_end = b->dirty_end;
696
Mikulas Patocka24809452013-07-10 23:41:18 +0100697 if (!write_list)
Mikulas Patocka905be0a2017-12-02 00:33:39 -0500698 submit_io(b, REQ_OP_WRITE, write_endio);
Mikulas Patocka24809452013-07-10 23:41:18 +0100699 else
700 list_add_tail(&b->write_list, write_list);
701}
702
703static void __flush_write_list(struct list_head *write_list)
704{
705 struct blk_plug plug;
706 blk_start_plug(&plug);
707 while (!list_empty(write_list)) {
708 struct dm_buffer *b =
709 list_entry(write_list->next, struct dm_buffer, write_list);
710 list_del(&b->write_list);
Mikulas Patocka905be0a2017-12-02 00:33:39 -0500711 submit_io(b, REQ_OP_WRITE, write_endio);
Peter Zijlstra7cd32672016-09-13 10:45:20 +0200712 cond_resched();
Mikulas Patocka24809452013-07-10 23:41:18 +0100713 }
714 blk_finish_plug(&plug);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000715}
716
717/*
718 * Wait until any activity on the buffer finishes. Possibly write the
719 * buffer if it is dirty. When this function finishes, there is no I/O
720 * running on the buffer and the buffer is not dirty.
721 */
722static void __make_buffer_clean(struct dm_buffer *b)
723{
724 BUG_ON(b->hold_count);
725
726 if (!b->state) /* fast case */
727 return;
728
NeilBrown74316202014-07-07 15:16:04 +1000729 wait_on_bit_io(&b->state, B_READING, TASK_UNINTERRUPTIBLE);
Mikulas Patocka24809452013-07-10 23:41:18 +0100730 __write_dirty_buffer(b, NULL);
NeilBrown74316202014-07-07 15:16:04 +1000731 wait_on_bit_io(&b->state, B_WRITING, TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000732}
733
734/*
735 * Find some buffer that is not held by anybody, clean it, unlink it and
736 * return it.
737 */
738static struct dm_buffer *__get_unclaimed_buffer(struct dm_bufio_client *c)
739{
740 struct dm_buffer *b;
741
742 list_for_each_entry_reverse(b, &c->lru[LIST_CLEAN], lru_list) {
743 BUG_ON(test_bit(B_WRITING, &b->state));
744 BUG_ON(test_bit(B_DIRTY, &b->state));
745
746 if (!b->hold_count) {
747 __make_buffer_clean(b);
748 __unlink_buffer(b);
749 return b;
750 }
Peter Zijlstra7cd32672016-09-13 10:45:20 +0200751 cond_resched();
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000752 }
753
754 list_for_each_entry_reverse(b, &c->lru[LIST_DIRTY], lru_list) {
755 BUG_ON(test_bit(B_READING, &b->state));
756
757 if (!b->hold_count) {
758 __make_buffer_clean(b);
759 __unlink_buffer(b);
760 return b;
761 }
Peter Zijlstra7cd32672016-09-13 10:45:20 +0200762 cond_resched();
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000763 }
764
765 return NULL;
766}
767
768/*
769 * Wait until some other threads free some buffer or release hold count on
770 * some buffer.
771 *
772 * This function is entered with c->lock held, drops it and regains it
773 * before exiting.
774 */
775static void __wait_for_free_buffer(struct dm_bufio_client *c)
776{
777 DECLARE_WAITQUEUE(wait, current);
778
779 add_wait_queue(&c->free_buffer_wait, &wait);
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800780 set_current_state(TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000781 dm_bufio_unlock(c);
782
783 io_schedule();
784
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000785 remove_wait_queue(&c->free_buffer_wait, &wait);
786
787 dm_bufio_lock(c);
788}
789
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100790enum new_flag {
791 NF_FRESH = 0,
792 NF_READ = 1,
793 NF_GET = 2,
794 NF_PREFETCH = 3
795};
796
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000797/*
798 * Allocate a new buffer. If the allocation is not possible, wait until
799 * some other thread frees a buffer.
800 *
801 * May drop the lock and regain it.
802 */
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100803static struct dm_buffer *__alloc_buffer_wait_no_callback(struct dm_bufio_client *c, enum new_flag nf)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000804{
805 struct dm_buffer *b;
Mikulas Patocka41c73a42016-11-23 17:04:00 -0500806 bool tried_noio_alloc = false;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000807
808 /*
809 * dm-bufio is resistant to allocation failures (it just keeps
810 * one buffer reserved in cases all the allocations fail).
811 * So set flags to not try too hard:
Douglas Anderson9ea61ca2016-11-17 11:24:20 -0800812 * GFP_NOWAIT: don't wait; if we need to sleep we'll release our
813 * mutex and wait ourselves.
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000814 * __GFP_NORETRY: don't retry and rather return failure
815 * __GFP_NOMEMALLOC: don't use emergency reserves
816 * __GFP_NOWARN: don't print a warning in case of failure
817 *
818 * For debugging, if we set the cache size to 1, no new buffers will
819 * be allocated.
820 */
821 while (1) {
822 if (dm_bufio_cache_size_latch != 1) {
Douglas Anderson9ea61ca2016-11-17 11:24:20 -0800823 b = alloc_buffer(c, GFP_NOWAIT | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000824 if (b)
825 return b;
826 }
827
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100828 if (nf == NF_PREFETCH)
829 return NULL;
830
Mikulas Patocka41c73a42016-11-23 17:04:00 -0500831 if (dm_bufio_cache_size_latch != 1 && !tried_noio_alloc) {
832 dm_bufio_unlock(c);
833 b = alloc_buffer(c, GFP_NOIO | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN);
834 dm_bufio_lock(c);
835 if (b)
836 return b;
837 tried_noio_alloc = true;
838 }
839
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000840 if (!list_empty(&c->reserved_buffers)) {
841 b = list_entry(c->reserved_buffers.next,
842 struct dm_buffer, lru_list);
843 list_del(&b->lru_list);
844 c->need_reserved_buffers++;
845
846 return b;
847 }
848
849 b = __get_unclaimed_buffer(c);
850 if (b)
851 return b;
852
853 __wait_for_free_buffer(c);
854 }
855}
856
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100857static struct dm_buffer *__alloc_buffer_wait(struct dm_bufio_client *c, enum new_flag nf)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000858{
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100859 struct dm_buffer *b = __alloc_buffer_wait_no_callback(c, nf);
860
861 if (!b)
862 return NULL;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000863
864 if (c->alloc_callback)
865 c->alloc_callback(b);
866
867 return b;
868}
869
870/*
871 * Free a buffer and wake other threads waiting for free buffers.
872 */
873static void __free_buffer_wake(struct dm_buffer *b)
874{
875 struct dm_bufio_client *c = b->c;
876
877 if (!c->need_reserved_buffers)
878 free_buffer(b);
879 else {
880 list_add(&b->lru_list, &c->reserved_buffers);
881 c->need_reserved_buffers--;
882 }
883
884 wake_up(&c->free_buffer_wait);
885}
886
Mikulas Patocka24809452013-07-10 23:41:18 +0100887static void __write_dirty_buffers_async(struct dm_bufio_client *c, int no_wait,
888 struct list_head *write_list)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000889{
890 struct dm_buffer *b, *tmp;
891
892 list_for_each_entry_safe_reverse(b, tmp, &c->lru[LIST_DIRTY], lru_list) {
893 BUG_ON(test_bit(B_READING, &b->state));
894
895 if (!test_bit(B_DIRTY, &b->state) &&
896 !test_bit(B_WRITING, &b->state)) {
897 __relink_lru(b, LIST_CLEAN);
898 continue;
899 }
900
901 if (no_wait && test_bit(B_WRITING, &b->state))
902 return;
903
Mikulas Patocka24809452013-07-10 23:41:18 +0100904 __write_dirty_buffer(b, write_list);
Peter Zijlstra7cd32672016-09-13 10:45:20 +0200905 cond_resched();
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000906 }
907}
908
909/*
910 * Get writeback threshold and buffer limit for a given client.
911 */
912static void __get_memory_limit(struct dm_bufio_client *c,
913 unsigned long *threshold_buffers,
914 unsigned long *limit_buffers)
915{
916 unsigned long buffers;
917
Mark Rutland6aa7de02017-10-23 14:07:29 -0700918 if (unlikely(READ_ONCE(dm_bufio_cache_size) != dm_bufio_cache_size_latch)) {
Mikulas Patocka1b0fb5a2017-04-30 17:33:26 -0400919 if (mutex_trylock(&dm_bufio_clients_lock)) {
920 __cache_size_refresh();
921 mutex_unlock(&dm_bufio_clients_lock);
922 }
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000923 }
924
Mikulas Patockaf51f2e02018-03-26 20:29:46 +0200925 buffers = dm_bufio_cache_size_per_client;
926 if (likely(c->sectors_per_block_bits >= 0))
927 buffers >>= c->sectors_per_block_bits + SECTOR_SHIFT;
928 else
929 buffers /= c->block_size;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000930
Mikulas Patocka55b082e2014-01-13 19:13:05 -0500931 if (buffers < c->minimum_buffers)
932 buffers = c->minimum_buffers;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000933
934 *limit_buffers = buffers;
Eric Biggers74d41082017-11-15 16:38:09 -0800935 *threshold_buffers = mult_frac(buffers,
936 DM_BUFIO_WRITEBACK_PERCENT, 100);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000937}
938
939/*
940 * Check if we're over watermark.
941 * If we are over threshold_buffers, start freeing buffers.
942 * If we're over "limit_buffers", block until we get under the limit.
943 */
Mikulas Patocka24809452013-07-10 23:41:18 +0100944static void __check_watermark(struct dm_bufio_client *c,
945 struct list_head *write_list)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000946{
947 unsigned long threshold_buffers, limit_buffers;
948
949 __get_memory_limit(c, &threshold_buffers, &limit_buffers);
950
951 while (c->n_buffers[LIST_CLEAN] + c->n_buffers[LIST_DIRTY] >
952 limit_buffers) {
953
954 struct dm_buffer *b = __get_unclaimed_buffer(c);
955
956 if (!b)
957 return;
958
959 __free_buffer_wake(b);
Peter Zijlstra7cd32672016-09-13 10:45:20 +0200960 cond_resched();
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000961 }
962
963 if (c->n_buffers[LIST_DIRTY] > threshold_buffers)
Mikulas Patocka24809452013-07-10 23:41:18 +0100964 __write_dirty_buffers_async(c, 1, write_list);
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000965}
966
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000967/*----------------------------------------------------------------
968 * Getting a buffer
969 *--------------------------------------------------------------*/
970
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000971static struct dm_buffer *__bufio_new(struct dm_bufio_client *c, sector_t block,
Mikulas Patocka24809452013-07-10 23:41:18 +0100972 enum new_flag nf, int *need_submit,
973 struct list_head *write_list)
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000974{
975 struct dm_buffer *b, *new_b = NULL;
976
977 *need_submit = 0;
978
979 b = __find(c, block);
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100980 if (b)
981 goto found_buffer;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000982
983 if (nf == NF_GET)
984 return NULL;
985
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100986 new_b = __alloc_buffer_wait(c, nf);
987 if (!new_b)
988 return NULL;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000989
990 /*
991 * We've had a period where the mutex was unlocked, so need to
Shenghui Wangef992372018-10-30 15:35:54 +0800992 * recheck the buffer tree.
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000993 */
994 b = __find(c, block);
995 if (b) {
996 __free_buffer_wake(new_b);
Mikulas Patockaa66cc282012-03-28 18:41:29 +0100997 goto found_buffer;
Mikulas Patocka95d402f2011-10-31 20:19:09 +0000998 }
999
Mikulas Patocka24809452013-07-10 23:41:18 +01001000 __check_watermark(c, write_list);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001001
1002 b = new_b;
1003 b->hold_count = 1;
1004 b->read_error = 0;
1005 b->write_error = 0;
1006 __link_buffer(b, block, LIST_CLEAN);
1007
1008 if (nf == NF_FRESH) {
1009 b->state = 0;
1010 return b;
1011 }
1012
1013 b->state = 1 << B_READING;
1014 *need_submit = 1;
1015
1016 return b;
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001017
1018found_buffer:
1019 if (nf == NF_PREFETCH)
1020 return NULL;
1021 /*
1022 * Note: it is essential that we don't wait for the buffer to be
1023 * read if dm_bufio_get function is used. Both dm_bufio_get and
1024 * dm_bufio_prefetch can be used in the driver request routine.
1025 * If the user called both dm_bufio_prefetch and dm_bufio_get on
1026 * the same buffer, it would deadlock if we waited.
1027 */
1028 if (nf == NF_GET && unlikely(test_bit(B_READING, &b->state)))
1029 return NULL;
1030
1031 b->hold_count++;
1032 __relink_lru(b, test_bit(B_DIRTY, &b->state) ||
1033 test_bit(B_WRITING, &b->state));
1034 return b;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001035}
1036
1037/*
1038 * The endio routine for reading: set the error, clear the bit and wake up
1039 * anyone waiting on the buffer.
1040 */
Mikulas Patocka45354f12018-03-26 20:29:47 +02001041static void read_endio(struct dm_buffer *b, blk_status_t status)
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001042{
Mikulas Patocka45354f12018-03-26 20:29:47 +02001043 b->read_error = status;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001044
1045 BUG_ON(!test_bit(B_READING, &b->state));
1046
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001047 smp_mb__before_atomic();
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001048 clear_bit(B_READING, &b->state);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001049 smp_mb__after_atomic();
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001050
1051 wake_up_bit(&b->state, B_READING);
1052}
1053
1054/*
1055 * A common routine for dm_bufio_new and dm_bufio_read. Operation of these
1056 * functions is similar except that dm_bufio_new doesn't read the
1057 * buffer from the disk (assuming that the caller overwrites all the data
1058 * and uses dm_bufio_mark_buffer_dirty to write new data back).
1059 */
1060static void *new_read(struct dm_bufio_client *c, sector_t block,
1061 enum new_flag nf, struct dm_buffer **bp)
1062{
1063 int need_submit;
1064 struct dm_buffer *b;
1065
Mikulas Patocka24809452013-07-10 23:41:18 +01001066 LIST_HEAD(write_list);
1067
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001068 dm_bufio_lock(c);
Mikulas Patocka24809452013-07-10 23:41:18 +01001069 b = __bufio_new(c, block, nf, &need_submit, &write_list);
Mikulas Patocka86bad0c2015-11-23 19:20:06 -05001070#ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
1071 if (b && b->hold_count == 1)
1072 buffer_record_stack(b);
1073#endif
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001074 dm_bufio_unlock(c);
1075
Mikulas Patocka24809452013-07-10 23:41:18 +01001076 __flush_write_list(&write_list);
1077
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001078 if (!b)
Mikulas Patockaf98c8f72015-11-23 19:11:32 -05001079 return NULL;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001080
1081 if (need_submit)
Mikulas Patocka905be0a2017-12-02 00:33:39 -05001082 submit_io(b, REQ_OP_READ, read_endio);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001083
NeilBrown74316202014-07-07 15:16:04 +10001084 wait_on_bit_io(&b->state, B_READING, TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001085
1086 if (b->read_error) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001087 int error = blk_status_to_errno(b->read_error);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001088
1089 dm_bufio_release(b);
1090
1091 return ERR_PTR(error);
1092 }
1093
1094 *bp = b;
1095
1096 return b->data;
1097}
1098
1099void *dm_bufio_get(struct dm_bufio_client *c, sector_t block,
1100 struct dm_buffer **bp)
1101{
1102 return new_read(c, block, NF_GET, bp);
1103}
1104EXPORT_SYMBOL_GPL(dm_bufio_get);
1105
1106void *dm_bufio_read(struct dm_bufio_client *c, sector_t block,
1107 struct dm_buffer **bp)
1108{
1109 BUG_ON(dm_bufio_in_request());
1110
1111 return new_read(c, block, NF_READ, bp);
1112}
1113EXPORT_SYMBOL_GPL(dm_bufio_read);
1114
1115void *dm_bufio_new(struct dm_bufio_client *c, sector_t block,
1116 struct dm_buffer **bp)
1117{
1118 BUG_ON(dm_bufio_in_request());
1119
1120 return new_read(c, block, NF_FRESH, bp);
1121}
1122EXPORT_SYMBOL_GPL(dm_bufio_new);
1123
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001124void dm_bufio_prefetch(struct dm_bufio_client *c,
1125 sector_t block, unsigned n_blocks)
1126{
1127 struct blk_plug plug;
1128
Mikulas Patocka24809452013-07-10 23:41:18 +01001129 LIST_HEAD(write_list);
1130
Mikulas Patocka3b6b7812013-03-20 17:21:25 +00001131 BUG_ON(dm_bufio_in_request());
1132
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001133 blk_start_plug(&plug);
1134 dm_bufio_lock(c);
1135
1136 for (; n_blocks--; block++) {
1137 int need_submit;
1138 struct dm_buffer *b;
Mikulas Patocka24809452013-07-10 23:41:18 +01001139 b = __bufio_new(c, block, NF_PREFETCH, &need_submit,
1140 &write_list);
1141 if (unlikely(!list_empty(&write_list))) {
1142 dm_bufio_unlock(c);
1143 blk_finish_plug(&plug);
1144 __flush_write_list(&write_list);
1145 blk_start_plug(&plug);
1146 dm_bufio_lock(c);
1147 }
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001148 if (unlikely(b != NULL)) {
1149 dm_bufio_unlock(c);
1150
1151 if (need_submit)
Mikulas Patocka905be0a2017-12-02 00:33:39 -05001152 submit_io(b, REQ_OP_READ, read_endio);
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001153 dm_bufio_release(b);
1154
Peter Zijlstra7cd32672016-09-13 10:45:20 +02001155 cond_resched();
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001156
1157 if (!n_blocks)
1158 goto flush_plug;
1159 dm_bufio_lock(c);
1160 }
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001161 }
1162
1163 dm_bufio_unlock(c);
1164
1165flush_plug:
1166 blk_finish_plug(&plug);
1167}
1168EXPORT_SYMBOL_GPL(dm_bufio_prefetch);
1169
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001170void dm_bufio_release(struct dm_buffer *b)
1171{
1172 struct dm_bufio_client *c = b->c;
1173
1174 dm_bufio_lock(c);
1175
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001176 BUG_ON(!b->hold_count);
1177
1178 b->hold_count--;
1179 if (!b->hold_count) {
1180 wake_up(&c->free_buffer_wait);
1181
1182 /*
1183 * If there were errors on the buffer, and the buffer is not
1184 * to be written, free the buffer. There is no point in caching
1185 * invalid buffer.
1186 */
1187 if ((b->read_error || b->write_error) &&
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001188 !test_bit(B_READING, &b->state) &&
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001189 !test_bit(B_WRITING, &b->state) &&
1190 !test_bit(B_DIRTY, &b->state)) {
1191 __unlink_buffer(b);
1192 __free_buffer_wake(b);
1193 }
1194 }
1195
1196 dm_bufio_unlock(c);
1197}
1198EXPORT_SYMBOL_GPL(dm_bufio_release);
1199
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -04001200void dm_bufio_mark_partial_buffer_dirty(struct dm_buffer *b,
1201 unsigned start, unsigned end)
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001202{
1203 struct dm_bufio_client *c = b->c;
1204
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -04001205 BUG_ON(start >= end);
1206 BUG_ON(end > b->c->block_size);
1207
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001208 dm_bufio_lock(c);
1209
Mikulas Patockaa66cc282012-03-28 18:41:29 +01001210 BUG_ON(test_bit(B_READING, &b->state));
1211
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -04001212 if (!test_and_set_bit(B_DIRTY, &b->state)) {
1213 b->dirty_start = start;
1214 b->dirty_end = end;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001215 __relink_lru(b, LIST_DIRTY);
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -04001216 } else {
1217 if (start < b->dirty_start)
1218 b->dirty_start = start;
1219 if (end > b->dirty_end)
1220 b->dirty_end = end;
1221 }
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001222
1223 dm_bufio_unlock(c);
1224}
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -04001225EXPORT_SYMBOL_GPL(dm_bufio_mark_partial_buffer_dirty);
1226
1227void dm_bufio_mark_buffer_dirty(struct dm_buffer *b)
1228{
1229 dm_bufio_mark_partial_buffer_dirty(b, 0, b->c->block_size);
1230}
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001231EXPORT_SYMBOL_GPL(dm_bufio_mark_buffer_dirty);
1232
1233void dm_bufio_write_dirty_buffers_async(struct dm_bufio_client *c)
1234{
Mikulas Patocka24809452013-07-10 23:41:18 +01001235 LIST_HEAD(write_list);
1236
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001237 BUG_ON(dm_bufio_in_request());
1238
1239 dm_bufio_lock(c);
Mikulas Patocka24809452013-07-10 23:41:18 +01001240 __write_dirty_buffers_async(c, 0, &write_list);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001241 dm_bufio_unlock(c);
Mikulas Patocka24809452013-07-10 23:41:18 +01001242 __flush_write_list(&write_list);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001243}
1244EXPORT_SYMBOL_GPL(dm_bufio_write_dirty_buffers_async);
1245
1246/*
1247 * For performance, it is essential that the buffers are written asynchronously
1248 * and simultaneously (so that the block layer can merge the writes) and then
1249 * waited upon.
1250 *
1251 * Finally, we flush hardware disk cache.
1252 */
1253int dm_bufio_write_dirty_buffers(struct dm_bufio_client *c)
1254{
Dan Carpenteredc11d42017-07-12 10:26:34 +03001255 int a, f;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001256 unsigned long buffers_processed = 0;
1257 struct dm_buffer *b, *tmp;
1258
Mikulas Patocka24809452013-07-10 23:41:18 +01001259 LIST_HEAD(write_list);
1260
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001261 dm_bufio_lock(c);
Mikulas Patocka24809452013-07-10 23:41:18 +01001262 __write_dirty_buffers_async(c, 0, &write_list);
1263 dm_bufio_unlock(c);
1264 __flush_write_list(&write_list);
1265 dm_bufio_lock(c);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001266
1267again:
1268 list_for_each_entry_safe_reverse(b, tmp, &c->lru[LIST_DIRTY], lru_list) {
1269 int dropped_lock = 0;
1270
1271 if (buffers_processed < c->n_buffers[LIST_DIRTY])
1272 buffers_processed++;
1273
1274 BUG_ON(test_bit(B_READING, &b->state));
1275
1276 if (test_bit(B_WRITING, &b->state)) {
1277 if (buffers_processed < c->n_buffers[LIST_DIRTY]) {
1278 dropped_lock = 1;
1279 b->hold_count++;
1280 dm_bufio_unlock(c);
NeilBrown74316202014-07-07 15:16:04 +10001281 wait_on_bit_io(&b->state, B_WRITING,
1282 TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001283 dm_bufio_lock(c);
1284 b->hold_count--;
1285 } else
NeilBrown74316202014-07-07 15:16:04 +10001286 wait_on_bit_io(&b->state, B_WRITING,
1287 TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001288 }
1289
1290 if (!test_bit(B_DIRTY, &b->state) &&
1291 !test_bit(B_WRITING, &b->state))
1292 __relink_lru(b, LIST_CLEAN);
1293
Peter Zijlstra7cd32672016-09-13 10:45:20 +02001294 cond_resched();
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001295
1296 /*
1297 * If we dropped the lock, the list is no longer consistent,
1298 * so we must restart the search.
1299 *
1300 * In the most common case, the buffer just processed is
1301 * relinked to the clean list, so we won't loop scanning the
1302 * same buffer again and again.
1303 *
1304 * This may livelock if there is another thread simultaneously
1305 * dirtying buffers, so we count the number of buffers walked
1306 * and if it exceeds the total number of buffers, it means that
1307 * someone is doing some writes simultaneously with us. In
1308 * this case, stop, dropping the lock.
1309 */
1310 if (dropped_lock)
1311 goto again;
1312 }
1313 wake_up(&c->free_buffer_wait);
1314 dm_bufio_unlock(c);
1315
1316 a = xchg(&c->async_write_error, 0);
1317 f = dm_bufio_issue_flush(c);
1318 if (a)
1319 return a;
1320
1321 return f;
1322}
1323EXPORT_SYMBOL_GPL(dm_bufio_write_dirty_buffers);
1324
1325/*
Shenghui Wangef992372018-10-30 15:35:54 +08001326 * Use dm-io to send an empty barrier to flush the device.
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001327 */
1328int dm_bufio_issue_flush(struct dm_bufio_client *c)
1329{
1330 struct dm_io_request io_req = {
Mike Christiee6047142016-06-05 14:32:04 -05001331 .bi_op = REQ_OP_WRITE,
Jan Karaff0361b2017-05-31 09:44:32 +02001332 .bi_op_flags = REQ_PREFLUSH | REQ_SYNC,
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001333 .mem.type = DM_IO_KMEM,
1334 .mem.ptr.addr = NULL,
1335 .client = c->dm_io,
1336 };
1337 struct dm_io_region io_reg = {
1338 .bdev = c->bdev,
1339 .sector = 0,
1340 .count = 0,
1341 };
1342
1343 BUG_ON(dm_bufio_in_request());
1344
1345 return dm_io(&io_req, 1, &io_reg, NULL);
1346}
1347EXPORT_SYMBOL_GPL(dm_bufio_issue_flush);
1348
1349/*
1350 * We first delete any other buffer that may be at that new location.
1351 *
1352 * Then, we write the buffer to the original location if it was dirty.
1353 *
1354 * Then, if we are the only one who is holding the buffer, relink the buffer
Shenghui Wangef992372018-10-30 15:35:54 +08001355 * in the buffer tree for the new location.
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001356 *
1357 * If there was someone else holding the buffer, we write it to the new
1358 * location but not relink it, because that other user needs to have the buffer
1359 * at the same place.
1360 */
1361void dm_bufio_release_move(struct dm_buffer *b, sector_t new_block)
1362{
1363 struct dm_bufio_client *c = b->c;
1364 struct dm_buffer *new;
1365
1366 BUG_ON(dm_bufio_in_request());
1367
1368 dm_bufio_lock(c);
1369
1370retry:
1371 new = __find(c, new_block);
1372 if (new) {
1373 if (new->hold_count) {
1374 __wait_for_free_buffer(c);
1375 goto retry;
1376 }
1377
1378 /*
1379 * FIXME: Is there any point waiting for a write that's going
1380 * to be overwritten in a bit?
1381 */
1382 __make_buffer_clean(new);
1383 __unlink_buffer(new);
1384 __free_buffer_wake(new);
1385 }
1386
1387 BUG_ON(!b->hold_count);
1388 BUG_ON(test_bit(B_READING, &b->state));
1389
Mikulas Patocka24809452013-07-10 23:41:18 +01001390 __write_dirty_buffer(b, NULL);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001391 if (b->hold_count == 1) {
NeilBrown74316202014-07-07 15:16:04 +10001392 wait_on_bit_io(&b->state, B_WRITING,
1393 TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001394 set_bit(B_DIRTY, &b->state);
Mikulas Patocka1e3b21c2017-04-30 17:31:22 -04001395 b->dirty_start = 0;
1396 b->dirty_end = c->block_size;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001397 __unlink_buffer(b);
1398 __link_buffer(b, new_block, LIST_DIRTY);
1399 } else {
1400 sector_t old_block;
NeilBrown74316202014-07-07 15:16:04 +10001401 wait_on_bit_lock_io(&b->state, B_WRITING,
1402 TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001403 /*
1404 * Relink buffer to "new_block" so that write_callback
1405 * sees "new_block" as a block number.
1406 * After the write, link the buffer back to old_block.
1407 * All this must be done in bufio lock, so that block number
1408 * change isn't visible to other threads.
1409 */
1410 old_block = b->block;
1411 __unlink_buffer(b);
1412 __link_buffer(b, new_block, b->list_mode);
Mikulas Patocka905be0a2017-12-02 00:33:39 -05001413 submit_io(b, REQ_OP_WRITE, write_endio);
NeilBrown74316202014-07-07 15:16:04 +10001414 wait_on_bit_io(&b->state, B_WRITING,
1415 TASK_UNINTERRUPTIBLE);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001416 __unlink_buffer(b);
1417 __link_buffer(b, old_block, b->list_mode);
1418 }
1419
1420 dm_bufio_unlock(c);
1421 dm_bufio_release(b);
1422}
1423EXPORT_SYMBOL_GPL(dm_bufio_release_move);
1424
Mikulas Patocka55494bf2014-01-13 19:12:36 -05001425/*
1426 * Free the given buffer.
1427 *
1428 * This is just a hint, if the buffer is in use or dirty, this function
1429 * does nothing.
1430 */
1431void dm_bufio_forget(struct dm_bufio_client *c, sector_t block)
1432{
1433 struct dm_buffer *b;
1434
1435 dm_bufio_lock(c);
1436
1437 b = __find(c, block);
1438 if (b && likely(!b->hold_count) && likely(!b->state)) {
1439 __unlink_buffer(b);
1440 __free_buffer_wake(b);
1441 }
1442
1443 dm_bufio_unlock(c);
1444}
Mikulas Patockaafa53df2018-03-15 16:02:31 -04001445EXPORT_SYMBOL_GPL(dm_bufio_forget);
Mikulas Patocka55494bf2014-01-13 19:12:36 -05001446
Mikulas Patocka55b082e2014-01-13 19:13:05 -05001447void dm_bufio_set_minimum_buffers(struct dm_bufio_client *c, unsigned n)
1448{
1449 c->minimum_buffers = n;
1450}
Mikulas Patockaafa53df2018-03-15 16:02:31 -04001451EXPORT_SYMBOL_GPL(dm_bufio_set_minimum_buffers);
Mikulas Patocka55b082e2014-01-13 19:13:05 -05001452
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001453unsigned dm_bufio_get_block_size(struct dm_bufio_client *c)
1454{
1455 return c->block_size;
1456}
1457EXPORT_SYMBOL_GPL(dm_bufio_get_block_size);
1458
1459sector_t dm_bufio_get_device_size(struct dm_bufio_client *c)
1460{
Mikulas Patockaf51f2e02018-03-26 20:29:46 +02001461 sector_t s = i_size_read(c->bdev->bd_inode) >> SECTOR_SHIFT;
1462 if (likely(c->sectors_per_block_bits >= 0))
1463 s >>= c->sectors_per_block_bits;
1464 else
1465 sector_div(s, c->block_size >> SECTOR_SHIFT);
1466 return s;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001467}
1468EXPORT_SYMBOL_GPL(dm_bufio_get_device_size);
1469
1470sector_t dm_bufio_get_block_number(struct dm_buffer *b)
1471{
1472 return b->block;
1473}
1474EXPORT_SYMBOL_GPL(dm_bufio_get_block_number);
1475
1476void *dm_bufio_get_block_data(struct dm_buffer *b)
1477{
1478 return b->data;
1479}
1480EXPORT_SYMBOL_GPL(dm_bufio_get_block_data);
1481
1482void *dm_bufio_get_aux_data(struct dm_buffer *b)
1483{
1484 return b + 1;
1485}
1486EXPORT_SYMBOL_GPL(dm_bufio_get_aux_data);
1487
1488struct dm_bufio_client *dm_bufio_get_client(struct dm_buffer *b)
1489{
1490 return b->c;
1491}
1492EXPORT_SYMBOL_GPL(dm_bufio_get_client);
1493
1494static void drop_buffers(struct dm_bufio_client *c)
1495{
1496 struct dm_buffer *b;
1497 int i;
Mikulas Patocka86bad0c2015-11-23 19:20:06 -05001498 bool warned = false;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001499
1500 BUG_ON(dm_bufio_in_request());
1501
1502 /*
1503 * An optimization so that the buffers are not written one-by-one.
1504 */
1505 dm_bufio_write_dirty_buffers_async(c);
1506
1507 dm_bufio_lock(c);
1508
1509 while ((b = __get_unclaimed_buffer(c)))
1510 __free_buffer_wake(b);
1511
1512 for (i = 0; i < LIST_SIZE; i++)
Mikulas Patocka86bad0c2015-11-23 19:20:06 -05001513 list_for_each_entry(b, &c->lru[i], lru_list) {
1514 WARN_ON(!warned);
1515 warned = true;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001516 DMERR("leaked buffer %llx, hold count %u, list %d",
1517 (unsigned long long)b->block, b->hold_count, i);
Mikulas Patocka86bad0c2015-11-23 19:20:06 -05001518#ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
Thomas Gleixner741b58f2019-04-25 11:45:07 +02001519 stack_trace_print(b->stack_entries, b->stack_len, 1);
1520 /* mark unclaimed to avoid BUG_ON below */
1521 b->hold_count = 0;
Mikulas Patocka86bad0c2015-11-23 19:20:06 -05001522#endif
1523 }
1524
1525#ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
1526 while ((b = __get_unclaimed_buffer(c)))
1527 __free_buffer_wake(b);
1528#endif
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001529
1530 for (i = 0; i < LIST_SIZE; i++)
1531 BUG_ON(!list_empty(&c->lru[i]));
1532
1533 dm_bufio_unlock(c);
1534}
1535
1536/*
Joe Thornber33096a72014-10-09 11:10:25 +01001537 * We may not be able to evict this buffer if IO pending or the client
1538 * is still using it. Caller is expected to know buffer is too old.
1539 *
Mikulas Patocka9d28eb12014-10-16 14:45:20 -04001540 * And if GFP_NOFS is used, we must not do any I/O because we hold
1541 * dm_bufio_clients_lock and we would risk deadlock if the I/O gets
1542 * rerouted to different bufio client.
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001543 */
Joe Thornber33096a72014-10-09 11:10:25 +01001544static bool __try_evict_buffer(struct dm_buffer *b, gfp_t gfp)
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001545{
Mikulas Patocka9d28eb12014-10-16 14:45:20 -04001546 if (!(gfp & __GFP_FS)) {
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001547 if (test_bit(B_READING, &b->state) ||
1548 test_bit(B_WRITING, &b->state) ||
1549 test_bit(B_DIRTY, &b->state))
Joe Thornber33096a72014-10-09 11:10:25 +01001550 return false;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001551 }
1552
1553 if (b->hold_count)
Joe Thornber33096a72014-10-09 11:10:25 +01001554 return false;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001555
1556 __make_buffer_clean(b);
1557 __unlink_buffer(b);
1558 __free_buffer_wake(b);
1559
Joe Thornber33096a72014-10-09 11:10:25 +01001560 return true;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001561}
1562
Mikulas Patocka13840d32017-04-30 17:32:28 -04001563static unsigned long get_retain_buffers(struct dm_bufio_client *c)
Joe Thornber33096a72014-10-09 11:10:25 +01001564{
Mikulas Patockaf51f2e02018-03-26 20:29:46 +02001565 unsigned long retain_bytes = READ_ONCE(dm_bufio_retain_bytes);
1566 if (likely(c->sectors_per_block_bits >= 0))
1567 retain_bytes >>= c->sectors_per_block_bits + SECTOR_SHIFT;
1568 else
1569 retain_bytes /= c->block_size;
1570 return retain_bytes;
Joe Thornber33096a72014-10-09 11:10:25 +01001571}
1572
1573static unsigned long __scan(struct dm_bufio_client *c, unsigned long nr_to_scan,
1574 gfp_t gfp_mask)
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001575{
1576 int l;
1577 struct dm_buffer *b, *tmp;
Joe Thornber33096a72014-10-09 11:10:25 +01001578 unsigned long freed = 0;
Suren Baghdasaryanfbc7c072017-12-06 09:27:30 -08001579 unsigned long count = c->n_buffers[LIST_CLEAN] +
1580 c->n_buffers[LIST_DIRTY];
Mikulas Patocka13840d32017-04-30 17:32:28 -04001581 unsigned long retain_target = get_retain_buffers(c);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001582
1583 for (l = 0; l < LIST_SIZE; l++) {
Dave Chinner7dc19d52013-08-28 10:18:11 +10001584 list_for_each_entry_safe_reverse(b, tmp, &c->lru[l], lru_list) {
Joe Thornber33096a72014-10-09 11:10:25 +01001585 if (__try_evict_buffer(b, gfp_mask))
1586 freed++;
1587 if (!--nr_to_scan || ((count - freed) <= retain_target))
Mikulas Patocka0e825862014-10-01 13:29:48 -04001588 return freed;
Peter Zijlstra7cd32672016-09-13 10:45:20 +02001589 cond_resched();
Dave Chinner7dc19d52013-08-28 10:18:11 +10001590 }
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001591 }
Dave Chinner7dc19d52013-08-28 10:18:11 +10001592 return freed;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001593}
1594
Dave Chinner7dc19d52013-08-28 10:18:11 +10001595static unsigned long
1596dm_bufio_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001597{
Dave Chinner7dc19d52013-08-28 10:18:11 +10001598 struct dm_bufio_client *c;
1599 unsigned long freed;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001600
Dave Chinner7dc19d52013-08-28 10:18:11 +10001601 c = container_of(shrink, struct dm_bufio_client, shrinker);
Junxiao Bibd293d02019-07-09 17:17:19 -07001602 if (!dm_bufio_trylock(c))
Dave Chinner7dc19d52013-08-28 10:18:11 +10001603 return SHRINK_STOP;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001604
Dave Chinner7dc19d52013-08-28 10:18:11 +10001605 freed = __scan(c, sc->nr_to_scan, sc->gfp_mask);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001606 dm_bufio_unlock(c);
Dave Chinner7dc19d52013-08-28 10:18:11 +10001607 return freed;
1608}
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001609
Dave Chinner7dc19d52013-08-28 10:18:11 +10001610static unsigned long
1611dm_bufio_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
1612{
Mikulas Patockad12067f2016-11-23 16:52:01 -05001613 struct dm_bufio_client *c = container_of(shrink, struct dm_bufio_client, shrinker);
Suren Baghdasaryanfbc7c072017-12-06 09:27:30 -08001614 unsigned long count = READ_ONCE(c->n_buffers[LIST_CLEAN]) +
1615 READ_ONCE(c->n_buffers[LIST_DIRTY]);
1616 unsigned long retain_target = get_retain_buffers(c);
Dave Chinner7dc19d52013-08-28 10:18:11 +10001617
Suren Baghdasaryanfbc7c072017-12-06 09:27:30 -08001618 return (count < retain_target) ? 0 : (count - retain_target);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001619}
1620
1621/*
1622 * Create the buffering interface
1623 */
1624struct dm_bufio_client *dm_bufio_client_create(struct block_device *bdev, unsigned block_size,
1625 unsigned reserved_buffers, unsigned aux_size,
1626 void (*alloc_callback)(struct dm_buffer *),
1627 void (*write_callback)(struct dm_buffer *))
1628{
1629 int r;
1630 struct dm_bufio_client *c;
1631 unsigned i;
Mikulas Patocka359dbf12018-03-26 20:29:45 +02001632 char slab_name[27];
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001633
Mikulas Patockaf51f2e02018-03-26 20:29:46 +02001634 if (!block_size || block_size & ((1 << SECTOR_SHIFT) - 1)) {
1635 DMERR("%s: block size not specified or is not multiple of 512b", __func__);
1636 r = -EINVAL;
1637 goto bad_client;
1638 }
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001639
Greg Thelend8c712e2014-07-31 09:07:19 -07001640 c = kzalloc(sizeof(*c), GFP_KERNEL);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001641 if (!c) {
1642 r = -ENOMEM;
1643 goto bad_client;
1644 }
Joe Thornber4e420c42014-10-06 13:48:51 +01001645 c->buffer_tree = RB_ROOT;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001646
1647 c->bdev = bdev;
1648 c->block_size = block_size;
Mikulas Patockaf51f2e02018-03-26 20:29:46 +02001649 if (is_power_of_2(block_size))
1650 c->sectors_per_block_bits = __ffs(block_size) - SECTOR_SHIFT;
1651 else
1652 c->sectors_per_block_bits = -1;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001653
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001654 c->alloc_callback = alloc_callback;
1655 c->write_callback = write_callback;
1656
1657 for (i = 0; i < LIST_SIZE; i++) {
1658 INIT_LIST_HEAD(&c->lru[i]);
1659 c->n_buffers[i] = 0;
1660 }
1661
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001662 mutex_init(&c->lock);
1663 INIT_LIST_HEAD(&c->reserved_buffers);
1664 c->need_reserved_buffers = reserved_buffers;
1665
Mikulas Patockaafa53df2018-03-15 16:02:31 -04001666 dm_bufio_set_minimum_buffers(c, DM_BUFIO_MIN_BUFFERS);
Mikulas Patocka55b082e2014-01-13 19:13:05 -05001667
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001668 init_waitqueue_head(&c->free_buffer_wait);
1669 c->async_write_error = 0;
1670
1671 c->dm_io = dm_io_client_create();
1672 if (IS_ERR(c->dm_io)) {
1673 r = PTR_ERR(c->dm_io);
1674 goto bad_dm_io;
1675 }
1676
Mikulas Patockaf51f2e02018-03-26 20:29:46 +02001677 if (block_size <= KMALLOC_MAX_SIZE &&
1678 (block_size < PAGE_SIZE || !is_power_of_2(block_size))) {
Mikulas Patockaf7879b42018-04-19 08:33:00 -04001679 unsigned align = min(1U << __ffs(block_size), (unsigned)PAGE_SIZE);
1680 snprintf(slab_name, sizeof slab_name, "dm_bufio_cache-%u", block_size);
1681 c->slab_cache = kmem_cache_create(slab_name, block_size, align,
Mikulas Patocka6b5e7182018-03-15 17:22:00 -04001682 SLAB_RECLAIM_ACCOUNT, NULL);
Mikulas Patocka21bb1322018-03-26 20:29:42 +02001683 if (!c->slab_cache) {
1684 r = -ENOMEM;
1685 goto bad;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001686 }
1687 }
Mikulas Patocka359dbf12018-03-26 20:29:45 +02001688 if (aux_size)
1689 snprintf(slab_name, sizeof slab_name, "dm_bufio_buffer-%u", aux_size);
1690 else
1691 snprintf(slab_name, sizeof slab_name, "dm_bufio_buffer");
1692 c->slab_buffer = kmem_cache_create(slab_name, sizeof(struct dm_buffer) + aux_size,
1693 0, SLAB_RECLAIM_ACCOUNT, NULL);
1694 if (!c->slab_buffer) {
1695 r = -ENOMEM;
1696 goto bad;
1697 }
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001698
1699 while (c->need_reserved_buffers) {
1700 struct dm_buffer *b = alloc_buffer(c, GFP_KERNEL);
1701
1702 if (!b) {
1703 r = -ENOMEM;
Mike Snitzer0e696d32018-01-04 12:14:57 -05001704 goto bad;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001705 }
1706 __free_buffer_wake(b);
1707 }
1708
Aliaksei Karaliou46898e92017-12-23 13:27:04 +03001709 c->shrinker.count_objects = dm_bufio_shrink_count;
1710 c->shrinker.scan_objects = dm_bufio_shrink_scan;
1711 c->shrinker.seeks = 1;
1712 c->shrinker.batch = 0;
1713 r = register_shrinker(&c->shrinker);
1714 if (r)
Mike Snitzer0e696d32018-01-04 12:14:57 -05001715 goto bad;
Aliaksei Karaliou46898e92017-12-23 13:27:04 +03001716
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001717 mutex_lock(&dm_bufio_clients_lock);
1718 dm_bufio_client_count++;
1719 list_add(&c->client_list, &dm_bufio_all_clients);
1720 __cache_size_refresh();
1721 mutex_unlock(&dm_bufio_clients_lock);
1722
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001723 return c;
1724
Mike Snitzer0e696d32018-01-04 12:14:57 -05001725bad:
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001726 while (!list_empty(&c->reserved_buffers)) {
1727 struct dm_buffer *b = list_entry(c->reserved_buffers.next,
1728 struct dm_buffer, lru_list);
1729 list_del(&b->lru_list);
1730 free_buffer(b);
1731 }
Mikulas Patocka21bb1322018-03-26 20:29:42 +02001732 kmem_cache_destroy(c->slab_cache);
Mikulas Patocka359dbf12018-03-26 20:29:45 +02001733 kmem_cache_destroy(c->slab_buffer);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001734 dm_io_client_destroy(c->dm_io);
1735bad_dm_io:
Aliaksei Karalioubde14182017-12-23 13:27:03 +03001736 mutex_destroy(&c->lock);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001737 kfree(c);
1738bad_client:
1739 return ERR_PTR(r);
1740}
1741EXPORT_SYMBOL_GPL(dm_bufio_client_create);
1742
1743/*
1744 * Free the buffering interface.
1745 * It is required that there are no references on any buffers.
1746 */
1747void dm_bufio_client_destroy(struct dm_bufio_client *c)
1748{
1749 unsigned i;
1750
1751 drop_buffers(c);
1752
1753 unregister_shrinker(&c->shrinker);
1754
1755 mutex_lock(&dm_bufio_clients_lock);
1756
1757 list_del(&c->client_list);
1758 dm_bufio_client_count--;
1759 __cache_size_refresh();
1760
1761 mutex_unlock(&dm_bufio_clients_lock);
1762
Joe Thornber4e420c42014-10-06 13:48:51 +01001763 BUG_ON(!RB_EMPTY_ROOT(&c->buffer_tree));
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001764 BUG_ON(c->need_reserved_buffers);
1765
1766 while (!list_empty(&c->reserved_buffers)) {
1767 struct dm_buffer *b = list_entry(c->reserved_buffers.next,
1768 struct dm_buffer, lru_list);
1769 list_del(&b->lru_list);
1770 free_buffer(b);
1771 }
1772
1773 for (i = 0; i < LIST_SIZE; i++)
1774 if (c->n_buffers[i])
1775 DMERR("leaked buffer count %d: %ld", i, c->n_buffers[i]);
1776
1777 for (i = 0; i < LIST_SIZE; i++)
1778 BUG_ON(c->n_buffers[i]);
1779
Mikulas Patocka21bb1322018-03-26 20:29:42 +02001780 kmem_cache_destroy(c->slab_cache);
Mikulas Patocka359dbf12018-03-26 20:29:45 +02001781 kmem_cache_destroy(c->slab_buffer);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001782 dm_io_client_destroy(c->dm_io);
Aliaksei Karalioubde14182017-12-23 13:27:03 +03001783 mutex_destroy(&c->lock);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001784 kfree(c);
1785}
1786EXPORT_SYMBOL_GPL(dm_bufio_client_destroy);
1787
Mikulas Patocka400a0be2017-01-04 20:23:52 +01001788void dm_bufio_set_sector_offset(struct dm_bufio_client *c, sector_t start)
1789{
1790 c->start = start;
1791}
1792EXPORT_SYMBOL_GPL(dm_bufio_set_sector_offset);
1793
Joe Thornber33096a72014-10-09 11:10:25 +01001794static unsigned get_max_age_hz(void)
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001795{
Mark Rutland6aa7de02017-10-23 14:07:29 -07001796 unsigned max_age = READ_ONCE(dm_bufio_max_age);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001797
Joe Thornber33096a72014-10-09 11:10:25 +01001798 if (max_age > UINT_MAX / HZ)
1799 max_age = UINT_MAX / HZ;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001800
Joe Thornber33096a72014-10-09 11:10:25 +01001801 return max_age * HZ;
1802}
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001803
Joe Thornber33096a72014-10-09 11:10:25 +01001804static bool older_than(struct dm_buffer *b, unsigned long age_hz)
1805{
Asaf Vertzf4953392015-01-06 15:44:15 +02001806 return time_after_eq(jiffies, b->last_accessed + age_hz);
Joe Thornber33096a72014-10-09 11:10:25 +01001807}
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001808
Joe Thornber33096a72014-10-09 11:10:25 +01001809static void __evict_old_buffers(struct dm_bufio_client *c, unsigned long age_hz)
1810{
1811 struct dm_buffer *b, *tmp;
Mikulas Patocka13840d32017-04-30 17:32:28 -04001812 unsigned long retain_target = get_retain_buffers(c);
1813 unsigned long count;
Mikulas Patocka390020a2017-04-30 17:34:53 -04001814 LIST_HEAD(write_list);
Joe Thornber33096a72014-10-09 11:10:25 +01001815
1816 dm_bufio_lock(c);
1817
Mikulas Patocka390020a2017-04-30 17:34:53 -04001818 __check_watermark(c, &write_list);
1819 if (unlikely(!list_empty(&write_list))) {
1820 dm_bufio_unlock(c);
1821 __flush_write_list(&write_list);
1822 dm_bufio_lock(c);
1823 }
1824
Joe Thornber33096a72014-10-09 11:10:25 +01001825 count = c->n_buffers[LIST_CLEAN] + c->n_buffers[LIST_DIRTY];
1826 list_for_each_entry_safe_reverse(b, tmp, &c->lru[LIST_CLEAN], lru_list) {
1827 if (count <= retain_target)
1828 break;
1829
1830 if (!older_than(b, age_hz))
1831 break;
1832
1833 if (__try_evict_buffer(b, 0))
1834 count--;
1835
Peter Zijlstra7cd32672016-09-13 10:45:20 +02001836 cond_resched();
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001837 }
Joe Thornber33096a72014-10-09 11:10:25 +01001838
1839 dm_bufio_unlock(c);
1840}
1841
1842static void cleanup_old_buffers(void)
1843{
1844 unsigned long max_age_hz = get_max_age_hz();
1845 struct dm_bufio_client *c;
1846
1847 mutex_lock(&dm_bufio_clients_lock);
1848
Mikulas Patocka390020a2017-04-30 17:34:53 -04001849 __cache_size_refresh();
1850
Joe Thornber33096a72014-10-09 11:10:25 +01001851 list_for_each_entry(c, &dm_bufio_all_clients, client_list)
1852 __evict_old_buffers(c, max_age_hz);
1853
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001854 mutex_unlock(&dm_bufio_clients_lock);
1855}
1856
1857static struct workqueue_struct *dm_bufio_wq;
1858static struct delayed_work dm_bufio_work;
1859
1860static void work_fn(struct work_struct *w)
1861{
1862 cleanup_old_buffers();
1863
1864 queue_delayed_work(dm_bufio_wq, &dm_bufio_work,
1865 DM_BUFIO_WORK_TIMER_SECS * HZ);
1866}
1867
1868/*----------------------------------------------------------------
1869 * Module setup
1870 *--------------------------------------------------------------*/
1871
1872/*
1873 * This is called only once for the whole dm_bufio module.
1874 * It initializes memory limit.
1875 */
1876static int __init dm_bufio_init(void)
1877{
1878 __u64 mem;
1879
Mikulas Patocka4cb57ab2013-12-05 17:33:29 -05001880 dm_bufio_allocated_kmem_cache = 0;
1881 dm_bufio_allocated_get_free_pages = 0;
1882 dm_bufio_allocated_vmalloc = 0;
1883 dm_bufio_current_allocated = 0;
1884
Arun KSca79b0c2018-12-28 00:34:29 -08001885 mem = (__u64)mult_frac(totalram_pages() - totalhigh_pages(),
Eric Biggers74d41082017-11-15 16:38:09 -08001886 DM_BUFIO_MEMORY_PERCENT, 100) << PAGE_SHIFT;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001887
1888 if (mem > ULONG_MAX)
1889 mem = ULONG_MAX;
1890
1891#ifdef CONFIG_MMU
Eric Biggers74d41082017-11-15 16:38:09 -08001892 if (mem > mult_frac(VMALLOC_TOTAL, DM_BUFIO_VMALLOC_PERCENT, 100))
1893 mem = mult_frac(VMALLOC_TOTAL, DM_BUFIO_VMALLOC_PERCENT, 100);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001894#endif
1895
1896 dm_bufio_default_cache_size = mem;
1897
1898 mutex_lock(&dm_bufio_clients_lock);
1899 __cache_size_refresh();
1900 mutex_unlock(&dm_bufio_clients_lock);
1901
Bhaktipriya Shridharedd1ea22016-08-30 22:19:11 +05301902 dm_bufio_wq = alloc_workqueue("dm_bufio_cache", WQ_MEM_RECLAIM, 0);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001903 if (!dm_bufio_wq)
1904 return -ENOMEM;
1905
1906 INIT_DELAYED_WORK(&dm_bufio_work, work_fn);
1907 queue_delayed_work(dm_bufio_wq, &dm_bufio_work,
1908 DM_BUFIO_WORK_TIMER_SECS * HZ);
1909
1910 return 0;
1911}
1912
1913/*
1914 * This is called once when unloading the dm_bufio module.
1915 */
1916static void __exit dm_bufio_exit(void)
1917{
1918 int bug = 0;
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001919
1920 cancel_delayed_work_sync(&dm_bufio_work);
1921 destroy_workqueue(dm_bufio_wq);
1922
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001923 if (dm_bufio_client_count) {
1924 DMCRIT("%s: dm_bufio_client_count leaked: %d",
1925 __func__, dm_bufio_client_count);
1926 bug = 1;
1927 }
1928
1929 if (dm_bufio_current_allocated) {
1930 DMCRIT("%s: dm_bufio_current_allocated leaked: %lu",
1931 __func__, dm_bufio_current_allocated);
1932 bug = 1;
1933 }
1934
1935 if (dm_bufio_allocated_get_free_pages) {
1936 DMCRIT("%s: dm_bufio_allocated_get_free_pages leaked: %lu",
1937 __func__, dm_bufio_allocated_get_free_pages);
1938 bug = 1;
1939 }
1940
1941 if (dm_bufio_allocated_vmalloc) {
1942 DMCRIT("%s: dm_bufio_vmalloc leaked: %lu",
1943 __func__, dm_bufio_allocated_vmalloc);
1944 bug = 1;
1945 }
1946
Anup Limbu86a49e22015-11-25 15:46:05 +05301947 BUG_ON(bug);
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001948}
1949
1950module_init(dm_bufio_init)
1951module_exit(dm_bufio_exit)
1952
1953module_param_named(max_cache_size_bytes, dm_bufio_cache_size, ulong, S_IRUGO | S_IWUSR);
1954MODULE_PARM_DESC(max_cache_size_bytes, "Size of metadata cache");
1955
1956module_param_named(max_age_seconds, dm_bufio_max_age, uint, S_IRUGO | S_IWUSR);
1957MODULE_PARM_DESC(max_age_seconds, "Max age of a buffer in seconds");
1958
Mikulas Patocka13840d32017-04-30 17:32:28 -04001959module_param_named(retain_bytes, dm_bufio_retain_bytes, ulong, S_IRUGO | S_IWUSR);
Joe Thornber33096a72014-10-09 11:10:25 +01001960MODULE_PARM_DESC(retain_bytes, "Try to keep at least this many bytes cached in memory");
1961
Mikulas Patocka95d402f2011-10-31 20:19:09 +00001962module_param_named(peak_allocated_bytes, dm_bufio_peak_allocated, ulong, S_IRUGO | S_IWUSR);
1963MODULE_PARM_DESC(peak_allocated_bytes, "Tracks the maximum allocated memory");
1964
1965module_param_named(allocated_kmem_cache_bytes, dm_bufio_allocated_kmem_cache, ulong, S_IRUGO);
1966MODULE_PARM_DESC(allocated_kmem_cache_bytes, "Memory allocated with kmem_cache_alloc");
1967
1968module_param_named(allocated_get_free_pages_bytes, dm_bufio_allocated_get_free_pages, ulong, S_IRUGO);
1969MODULE_PARM_DESC(allocated_get_free_pages_bytes, "Memory allocated with get_free_pages");
1970
1971module_param_named(allocated_vmalloc_bytes, dm_bufio_allocated_vmalloc, ulong, S_IRUGO);
1972MODULE_PARM_DESC(allocated_vmalloc_bytes, "Memory allocated with vmalloc");
1973
1974module_param_named(current_allocated_bytes, dm_bufio_current_allocated, ulong, S_IRUGO);
1975MODULE_PARM_DESC(current_allocated_bytes, "Memory currently used by the cache");
1976
1977MODULE_AUTHOR("Mikulas Patocka <dm-devel@redhat.com>");
1978MODULE_DESCRIPTION(DM_NAME " buffered I/O library");
1979MODULE_LICENSE("GPL");