2 * Copyright (C) 2009-2011 Red Hat, Inc.
6 * This file is released under the GPL.
9 #include <linux/dm-bufio.h>
11 #include <linux/device-mapper.h>
12 #include <linux/dm-io.h>
13 #include <linux/slab.h>
14 #include <linux/sched/mm.h>
15 #include <linux/jiffies.h>
16 #include <linux/vmalloc.h>
17 #include <linux/shrinker.h>
18 #include <linux/module.h>
19 #include <linux/rbtree.h>
20 #include <linux/stacktrace.h>
21 #include <linux/jump_label.h>
23 #define DM_MSG_PREFIX "bufio"
26 * Memory management policy:
27 * Limit the number of buffers to DM_BUFIO_MEMORY_PERCENT of main memory
28 * or DM_BUFIO_VMALLOC_PERCENT of vmalloc memory (whichever is lower).
29 * Always allocate at least DM_BUFIO_MIN_BUFFERS buffers.
30 * Start background writeback when there are DM_BUFIO_WRITEBACK_PERCENT
33 #define DM_BUFIO_MIN_BUFFERS 8
35 #define DM_BUFIO_MEMORY_PERCENT 2
36 #define DM_BUFIO_VMALLOC_PERCENT 25
37 #define DM_BUFIO_WRITEBACK_RATIO 3
38 #define DM_BUFIO_LOW_WATERMARK_RATIO 16
41 * Check buffer ages in this interval (seconds)
43 #define DM_BUFIO_WORK_TIMER_SECS 30
46 * Free buffers when they are older than this (seconds)
48 #define DM_BUFIO_DEFAULT_AGE_SECS 300
51 * The nr of bytes of cached data to keep around.
53 #define DM_BUFIO_DEFAULT_RETAIN_BYTES (256 * 1024)
56 * Align buffer writes to this boundary.
57 * Tests show that SSDs have the highest IOPS when using 4k writes.
59 #define DM_BUFIO_WRITE_ALIGN 4096
62 * dm_buffer->list_mode
70 * All buffers are linked to buffer_tree with their node field.
72 * Clean buffers that are not being written (B_WRITING not set)
73 * are linked to lru[LIST_CLEAN] with their lru_list field.
75 * Dirty and clean buffers that are being written are linked to
76 * lru[LIST_DIRTY] with their lru_list field. When the write
77 * finishes, the buffer cannot be relinked immediately (because we
78 * are in an interrupt context and relinking requires process
79 * context), so some clean-not-writing buffers can be held on
80 * dirty_lru too. They are later added to lru in the process
83 struct dm_bufio_client {
88 struct list_head lru[LIST_SIZE];
89 unsigned long n_buffers[LIST_SIZE];
91 struct block_device *bdev;
93 s8 sectors_per_block_bits;
94 void (*alloc_callback)(struct dm_buffer *);
95 void (*write_callback)(struct dm_buffer *);
96 struct kmem_cache *slab_buffer;
97 struct kmem_cache *slab_cache;
98 struct dm_io_client *dm_io;
100 struct list_head reserved_buffers;
101 unsigned need_reserved_buffers;
103 unsigned minimum_buffers;
105 struct rb_root buffer_tree;
106 wait_queue_head_t free_buffer_wait;
110 int async_write_error;
112 struct list_head client_list;
114 struct shrinker shrinker;
115 struct work_struct shrink_work;
116 atomic_long_t need_shrink;
127 * Describes how the block was allocated:
128 * kmem_cache_alloc(), __get_free_pages() or vmalloc().
129 * See the comment at alloc_buffer_data.
133 DATA_MODE_GET_FREE_PAGES = 1,
134 DATA_MODE_VMALLOC = 2,
140 struct list_head lru_list;
141 struct list_head global_list;
144 unsigned char data_mode; /* DATA_MODE_* */
145 unsigned char list_mode; /* LIST_* */
146 blk_status_t read_error;
147 blk_status_t write_error;
151 unsigned long last_accessed;
152 unsigned dirty_start;
154 unsigned write_start;
156 struct dm_bufio_client *c;
157 struct list_head write_list;
158 void (*end_io)(struct dm_buffer *, blk_status_t);
159 #ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
161 unsigned int stack_len;
162 unsigned long stack_entries[MAX_STACK];
166 static DEFINE_STATIC_KEY_FALSE(no_sleep_enabled);
168 /*----------------------------------------------------------------*/
170 #define dm_bufio_in_request() (!!current->bio_list)
172 static void dm_bufio_lock(struct dm_bufio_client *c)
174 if (static_branch_unlikely(&no_sleep_enabled) && c->no_sleep)
175 spin_lock_bh(&c->spinlock);
177 mutex_lock_nested(&c->lock, dm_bufio_in_request());
180 static int dm_bufio_trylock(struct dm_bufio_client *c)
182 if (static_branch_unlikely(&no_sleep_enabled) && c->no_sleep)
183 return spin_trylock_bh(&c->spinlock);
185 return mutex_trylock(&c->lock);
188 static void dm_bufio_unlock(struct dm_bufio_client *c)
190 if (static_branch_unlikely(&no_sleep_enabled) && c->no_sleep)
191 spin_unlock_bh(&c->spinlock);
193 mutex_unlock(&c->lock);
196 /*----------------------------------------------------------------*/
199 * Default cache size: available memory divided by the ratio.
201 static unsigned long dm_bufio_default_cache_size;
204 * Total cache size set by the user.
206 static unsigned long dm_bufio_cache_size;
209 * A copy of dm_bufio_cache_size because dm_bufio_cache_size can change
210 * at any time. If it disagrees, the user has changed cache size.
212 static unsigned long dm_bufio_cache_size_latch;
214 static DEFINE_SPINLOCK(global_spinlock);
216 static LIST_HEAD(global_queue);
218 static unsigned long global_num = 0;
221 * Buffers are freed after this timeout
223 static unsigned dm_bufio_max_age = DM_BUFIO_DEFAULT_AGE_SECS;
224 static unsigned long dm_bufio_retain_bytes = DM_BUFIO_DEFAULT_RETAIN_BYTES;
226 static unsigned long dm_bufio_peak_allocated;
227 static unsigned long dm_bufio_allocated_kmem_cache;
228 static unsigned long dm_bufio_allocated_get_free_pages;
229 static unsigned long dm_bufio_allocated_vmalloc;
230 static unsigned long dm_bufio_current_allocated;
232 /*----------------------------------------------------------------*/
235 * The current number of clients.
237 static int dm_bufio_client_count;
240 * The list of all clients.
242 static LIST_HEAD(dm_bufio_all_clients);
245 * This mutex protects dm_bufio_cache_size_latch and dm_bufio_client_count
247 static DEFINE_MUTEX(dm_bufio_clients_lock);
249 static struct workqueue_struct *dm_bufio_wq;
250 static struct delayed_work dm_bufio_cleanup_old_work;
251 static struct work_struct dm_bufio_replacement_work;
254 #ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
255 static void buffer_record_stack(struct dm_buffer *b)
257 b->stack_len = stack_trace_save(b->stack_entries, MAX_STACK, 2);
261 /*----------------------------------------------------------------
262 * A red/black tree acts as an index for all the buffers.
263 *--------------------------------------------------------------*/
264 static struct dm_buffer *__find(struct dm_bufio_client *c, sector_t block)
266 struct rb_node *n = c->buffer_tree.rb_node;
270 b = container_of(n, struct dm_buffer, node);
272 if (b->block == block)
275 n = block < b->block ? n->rb_left : n->rb_right;
281 static struct dm_buffer *__find_next(struct dm_bufio_client *c, sector_t block)
283 struct rb_node *n = c->buffer_tree.rb_node;
285 struct dm_buffer *best = NULL;
288 b = container_of(n, struct dm_buffer, node);
290 if (b->block == block)
293 if (block <= b->block) {
304 static void __insert(struct dm_bufio_client *c, struct dm_buffer *b)
306 struct rb_node **new = &c->buffer_tree.rb_node, *parent = NULL;
307 struct dm_buffer *found;
310 found = container_of(*new, struct dm_buffer, node);
312 if (found->block == b->block) {
318 new = b->block < found->block ?
319 &found->node.rb_left : &found->node.rb_right;
322 rb_link_node(&b->node, parent, new);
323 rb_insert_color(&b->node, &c->buffer_tree);
326 static void __remove(struct dm_bufio_client *c, struct dm_buffer *b)
328 rb_erase(&b->node, &c->buffer_tree);
331 /*----------------------------------------------------------------*/
333 static void adjust_total_allocated(struct dm_buffer *b, bool unlink)
335 unsigned char data_mode;
338 static unsigned long * const class_ptr[DATA_MODE_LIMIT] = {
339 &dm_bufio_allocated_kmem_cache,
340 &dm_bufio_allocated_get_free_pages,
341 &dm_bufio_allocated_vmalloc,
344 data_mode = b->data_mode;
345 diff = (long)b->c->block_size;
349 spin_lock(&global_spinlock);
351 *class_ptr[data_mode] += diff;
353 dm_bufio_current_allocated += diff;
355 if (dm_bufio_current_allocated > dm_bufio_peak_allocated)
356 dm_bufio_peak_allocated = dm_bufio_current_allocated;
361 list_add(&b->global_list, &global_queue);
363 if (dm_bufio_current_allocated > dm_bufio_cache_size)
364 queue_work(dm_bufio_wq, &dm_bufio_replacement_work);
366 list_del(&b->global_list);
370 spin_unlock(&global_spinlock);
374 * Change the number of clients and recalculate per-client limit.
376 static void __cache_size_refresh(void)
378 BUG_ON(!mutex_is_locked(&dm_bufio_clients_lock));
379 BUG_ON(dm_bufio_client_count < 0);
381 dm_bufio_cache_size_latch = READ_ONCE(dm_bufio_cache_size);
384 * Use default if set to 0 and report the actual cache size used.
386 if (!dm_bufio_cache_size_latch) {
387 (void)cmpxchg(&dm_bufio_cache_size, 0,
388 dm_bufio_default_cache_size);
389 dm_bufio_cache_size_latch = dm_bufio_default_cache_size;
394 * Allocating buffer data.
396 * Small buffers are allocated with kmem_cache, to use space optimally.
398 * For large buffers, we choose between get_free_pages and vmalloc.
399 * Each has advantages and disadvantages.
401 * __get_free_pages can randomly fail if the memory is fragmented.
402 * __vmalloc won't randomly fail, but vmalloc space is limited (it may be
403 * as low as 128M) so using it for caching is not appropriate.
405 * If the allocation may fail we use __get_free_pages. Memory fragmentation
406 * won't have a fatal effect here, but it just causes flushes of some other
407 * buffers and more I/O will be performed. Don't use __get_free_pages if it
408 * always fails (i.e. order >= MAX_ORDER).
410 * If the allocation shouldn't fail we use __vmalloc. This is only for the
411 * initial reserve allocation, so there's no risk of wasting all vmalloc
414 static void *alloc_buffer_data(struct dm_bufio_client *c, gfp_t gfp_mask,
415 unsigned char *data_mode)
417 if (unlikely(c->slab_cache != NULL)) {
418 *data_mode = DATA_MODE_SLAB;
419 return kmem_cache_alloc(c->slab_cache, gfp_mask);
422 if (c->block_size <= KMALLOC_MAX_SIZE &&
423 gfp_mask & __GFP_NORETRY) {
424 *data_mode = DATA_MODE_GET_FREE_PAGES;
425 return (void *)__get_free_pages(gfp_mask,
426 c->sectors_per_block_bits - (PAGE_SHIFT - SECTOR_SHIFT));
429 *data_mode = DATA_MODE_VMALLOC;
432 * __vmalloc allocates the data pages and auxiliary structures with
433 * gfp_flags that were specified, but pagetables are always allocated
434 * with GFP_KERNEL, no matter what was specified as gfp_mask.
436 * Consequently, we must set per-process flag PF_MEMALLOC_NOIO so that
437 * all allocations done by this process (including pagetables) are done
438 * as if GFP_NOIO was specified.
440 if (gfp_mask & __GFP_NORETRY) {
441 unsigned noio_flag = memalloc_noio_save();
442 void *ptr = __vmalloc(c->block_size, gfp_mask);
444 memalloc_noio_restore(noio_flag);
448 return __vmalloc(c->block_size, gfp_mask);
452 * Free buffer's data.
454 static void free_buffer_data(struct dm_bufio_client *c,
455 void *data, unsigned char data_mode)
459 kmem_cache_free(c->slab_cache, data);
462 case DATA_MODE_GET_FREE_PAGES:
463 free_pages((unsigned long)data,
464 c->sectors_per_block_bits - (PAGE_SHIFT - SECTOR_SHIFT));
467 case DATA_MODE_VMALLOC:
472 DMCRIT("dm_bufio_free_buffer_data: bad data mode: %d",
479 * Allocate buffer and its data.
481 static struct dm_buffer *alloc_buffer(struct dm_bufio_client *c, gfp_t gfp_mask)
483 struct dm_buffer *b = kmem_cache_alloc(c->slab_buffer, gfp_mask);
490 b->data = alloc_buffer_data(c, gfp_mask, &b->data_mode);
492 kmem_cache_free(c->slab_buffer, b);
496 #ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
503 * Free buffer and its data.
505 static void free_buffer(struct dm_buffer *b)
507 struct dm_bufio_client *c = b->c;
509 free_buffer_data(c, b->data, b->data_mode);
510 kmem_cache_free(c->slab_buffer, b);
514 * Link buffer to the buffer tree and clean or dirty queue.
516 static void __link_buffer(struct dm_buffer *b, sector_t block, int dirty)
518 struct dm_bufio_client *c = b->c;
520 c->n_buffers[dirty]++;
522 b->list_mode = dirty;
523 list_add(&b->lru_list, &c->lru[dirty]);
525 b->last_accessed = jiffies;
527 adjust_total_allocated(b, false);
531 * Unlink buffer from the buffer tree and dirty or clean queue.
533 static void __unlink_buffer(struct dm_buffer *b)
535 struct dm_bufio_client *c = b->c;
537 BUG_ON(!c->n_buffers[b->list_mode]);
539 c->n_buffers[b->list_mode]--;
541 list_del(&b->lru_list);
543 adjust_total_allocated(b, true);
547 * Place the buffer to the head of dirty or clean LRU queue.
549 static void __relink_lru(struct dm_buffer *b, int dirty)
551 struct dm_bufio_client *c = b->c;
555 BUG_ON(!c->n_buffers[b->list_mode]);
557 c->n_buffers[b->list_mode]--;
558 c->n_buffers[dirty]++;
559 b->list_mode = dirty;
560 list_move(&b->lru_list, &c->lru[dirty]);
561 b->last_accessed = jiffies;
564 /*----------------------------------------------------------------
565 * Submit I/O on the buffer.
567 * Bio interface is faster but it has some problems:
568 * the vector list is limited (increasing this limit increases
569 * memory-consumption per buffer, so it is not viable);
571 * the memory must be direct-mapped, not vmalloced;
573 * If the buffer is small enough (up to DM_BUFIO_INLINE_VECS pages) and
574 * it is not vmalloced, try using the bio interface.
576 * If the buffer is big, if it is vmalloced or if the underlying device
577 * rejects the bio because it is too large, use dm-io layer to do the I/O.
578 * The dm-io layer splits the I/O into multiple requests, avoiding the above
580 *--------------------------------------------------------------*/
583 * dm-io completion routine. It just calls b->bio.bi_end_io, pretending
584 * that the request was handled directly with bio interface.
586 static void dmio_complete(unsigned long error, void *context)
588 struct dm_buffer *b = context;
590 b->end_io(b, unlikely(error != 0) ? BLK_STS_IOERR : 0);
593 static void use_dmio(struct dm_buffer *b, enum req_op op, sector_t sector,
594 unsigned n_sectors, unsigned offset)
597 struct dm_io_request io_req = {
599 .notify.fn = dmio_complete,
601 .client = b->c->dm_io,
603 struct dm_io_region region = {
609 if (b->data_mode != DATA_MODE_VMALLOC) {
610 io_req.mem.type = DM_IO_KMEM;
611 io_req.mem.ptr.addr = (char *)b->data + offset;
613 io_req.mem.type = DM_IO_VMA;
614 io_req.mem.ptr.vma = (char *)b->data + offset;
617 r = dm_io(&io_req, 1, ®ion, NULL);
619 b->end_io(b, errno_to_blk_status(r));
622 static void bio_complete(struct bio *bio)
624 struct dm_buffer *b = bio->bi_private;
625 blk_status_t status = bio->bi_status;
628 b->end_io(b, status);
631 static void use_bio(struct dm_buffer *b, enum req_op op, sector_t sector,
632 unsigned n_sectors, unsigned offset)
636 unsigned vec_size, len;
638 vec_size = b->c->block_size >> PAGE_SHIFT;
639 if (unlikely(b->c->sectors_per_block_bits < PAGE_SHIFT - SECTOR_SHIFT))
642 bio = bio_kmalloc(vec_size, GFP_NOWAIT | __GFP_NORETRY | __GFP_NOWARN);
645 use_dmio(b, op, sector, n_sectors, offset);
648 bio_init(bio, b->c->bdev, bio->bi_inline_vecs, vec_size, op);
649 bio->bi_iter.bi_sector = sector;
650 bio->bi_end_io = bio_complete;
653 ptr = (char *)b->data + offset;
654 len = n_sectors << SECTOR_SHIFT;
657 unsigned this_step = min((unsigned)(PAGE_SIZE - offset_in_page(ptr)), len);
658 if (!bio_add_page(bio, virt_to_page(ptr), this_step,
659 offset_in_page(ptr))) {
671 static inline sector_t block_to_sector(struct dm_bufio_client *c, sector_t block)
675 if (likely(c->sectors_per_block_bits >= 0))
676 sector = block << c->sectors_per_block_bits;
678 sector = block * (c->block_size >> SECTOR_SHIFT);
684 static void submit_io(struct dm_buffer *b, enum req_op op,
685 void (*end_io)(struct dm_buffer *, blk_status_t))
689 unsigned offset, end;
693 sector = block_to_sector(b->c, b->block);
695 if (op != REQ_OP_WRITE) {
696 n_sectors = b->c->block_size >> SECTOR_SHIFT;
699 if (b->c->write_callback)
700 b->c->write_callback(b);
701 offset = b->write_start;
703 offset &= -DM_BUFIO_WRITE_ALIGN;
704 end += DM_BUFIO_WRITE_ALIGN - 1;
705 end &= -DM_BUFIO_WRITE_ALIGN;
706 if (unlikely(end > b->c->block_size))
707 end = b->c->block_size;
709 sector += offset >> SECTOR_SHIFT;
710 n_sectors = (end - offset) >> SECTOR_SHIFT;
713 if (b->data_mode != DATA_MODE_VMALLOC)
714 use_bio(b, op, sector, n_sectors, offset);
716 use_dmio(b, op, sector, n_sectors, offset);
719 /*----------------------------------------------------------------
720 * Writing dirty buffers
721 *--------------------------------------------------------------*/
724 * The endio routine for write.
726 * Set the error, clear B_WRITING bit and wake anyone who was waiting on
729 static void write_endio(struct dm_buffer *b, blk_status_t status)
731 b->write_error = status;
732 if (unlikely(status)) {
733 struct dm_bufio_client *c = b->c;
735 (void)cmpxchg(&c->async_write_error, 0,
736 blk_status_to_errno(status));
739 BUG_ON(!test_bit(B_WRITING, &b->state));
741 smp_mb__before_atomic();
742 clear_bit(B_WRITING, &b->state);
743 smp_mb__after_atomic();
745 wake_up_bit(&b->state, B_WRITING);
749 * Initiate a write on a dirty buffer, but don't wait for it.
751 * - If the buffer is not dirty, exit.
752 * - If there some previous write going on, wait for it to finish (we can't
753 * have two writes on the same buffer simultaneously).
754 * - Submit our write and don't wait on it. We set B_WRITING indicating
755 * that there is a write in progress.
757 static void __write_dirty_buffer(struct dm_buffer *b,
758 struct list_head *write_list)
760 if (!test_bit(B_DIRTY, &b->state))
763 clear_bit(B_DIRTY, &b->state);
764 wait_on_bit_lock_io(&b->state, B_WRITING, TASK_UNINTERRUPTIBLE);
766 b->write_start = b->dirty_start;
767 b->write_end = b->dirty_end;
770 submit_io(b, REQ_OP_WRITE, write_endio);
772 list_add_tail(&b->write_list, write_list);
775 static void __flush_write_list(struct list_head *write_list)
777 struct blk_plug plug;
778 blk_start_plug(&plug);
779 while (!list_empty(write_list)) {
780 struct dm_buffer *b =
781 list_entry(write_list->next, struct dm_buffer, write_list);
782 list_del(&b->write_list);
783 submit_io(b, REQ_OP_WRITE, write_endio);
786 blk_finish_plug(&plug);
790 * Wait until any activity on the buffer finishes. Possibly write the
791 * buffer if it is dirty. When this function finishes, there is no I/O
792 * running on the buffer and the buffer is not dirty.
794 static void __make_buffer_clean(struct dm_buffer *b)
796 BUG_ON(b->hold_count);
798 if (!b->state) /* fast case */
801 wait_on_bit_io(&b->state, B_READING, TASK_UNINTERRUPTIBLE);
802 __write_dirty_buffer(b, NULL);
803 wait_on_bit_io(&b->state, B_WRITING, TASK_UNINTERRUPTIBLE);
807 * Find some buffer that is not held by anybody, clean it, unlink it and
810 static struct dm_buffer *__get_unclaimed_buffer(struct dm_bufio_client *c)
814 list_for_each_entry_reverse(b, &c->lru[LIST_CLEAN], lru_list) {
815 BUG_ON(test_bit(B_WRITING, &b->state));
816 BUG_ON(test_bit(B_DIRTY, &b->state));
818 if (static_branch_unlikely(&no_sleep_enabled) && c->no_sleep &&
819 unlikely(test_bit(B_READING, &b->state)))
822 if (!b->hold_count) {
823 __make_buffer_clean(b);
830 if (static_branch_unlikely(&no_sleep_enabled) && c->no_sleep)
833 list_for_each_entry_reverse(b, &c->lru[LIST_DIRTY], lru_list) {
834 BUG_ON(test_bit(B_READING, &b->state));
836 if (!b->hold_count) {
837 __make_buffer_clean(b);
848 * Wait until some other threads free some buffer or release hold count on
851 * This function is entered with c->lock held, drops it and regains it
854 static void __wait_for_free_buffer(struct dm_bufio_client *c)
856 DECLARE_WAITQUEUE(wait, current);
858 add_wait_queue(&c->free_buffer_wait, &wait);
859 set_current_state(TASK_UNINTERRUPTIBLE);
864 remove_wait_queue(&c->free_buffer_wait, &wait);
877 * Allocate a new buffer. If the allocation is not possible, wait until
878 * some other thread frees a buffer.
880 * May drop the lock and regain it.
882 static struct dm_buffer *__alloc_buffer_wait_no_callback(struct dm_bufio_client *c, enum new_flag nf)
885 bool tried_noio_alloc = false;
888 * dm-bufio is resistant to allocation failures (it just keeps
889 * one buffer reserved in cases all the allocations fail).
890 * So set flags to not try too hard:
891 * GFP_NOWAIT: don't wait; if we need to sleep we'll release our
892 * mutex and wait ourselves.
893 * __GFP_NORETRY: don't retry and rather return failure
894 * __GFP_NOMEMALLOC: don't use emergency reserves
895 * __GFP_NOWARN: don't print a warning in case of failure
897 * For debugging, if we set the cache size to 1, no new buffers will
901 if (dm_bufio_cache_size_latch != 1) {
902 b = alloc_buffer(c, GFP_NOWAIT | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN);
907 if (nf == NF_PREFETCH)
910 if (dm_bufio_cache_size_latch != 1 && !tried_noio_alloc) {
912 b = alloc_buffer(c, GFP_NOIO | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN);
916 tried_noio_alloc = true;
919 if (!list_empty(&c->reserved_buffers)) {
920 b = list_entry(c->reserved_buffers.next,
921 struct dm_buffer, lru_list);
922 list_del(&b->lru_list);
923 c->need_reserved_buffers++;
928 b = __get_unclaimed_buffer(c);
932 __wait_for_free_buffer(c);
936 static struct dm_buffer *__alloc_buffer_wait(struct dm_bufio_client *c, enum new_flag nf)
938 struct dm_buffer *b = __alloc_buffer_wait_no_callback(c, nf);
943 if (c->alloc_callback)
944 c->alloc_callback(b);
950 * Free a buffer and wake other threads waiting for free buffers.
952 static void __free_buffer_wake(struct dm_buffer *b)
954 struct dm_bufio_client *c = b->c;
956 if (!c->need_reserved_buffers)
959 list_add(&b->lru_list, &c->reserved_buffers);
960 c->need_reserved_buffers--;
963 wake_up(&c->free_buffer_wait);
966 static void __write_dirty_buffers_async(struct dm_bufio_client *c, int no_wait,
967 struct list_head *write_list)
969 struct dm_buffer *b, *tmp;
971 list_for_each_entry_safe_reverse(b, tmp, &c->lru[LIST_DIRTY], lru_list) {
972 BUG_ON(test_bit(B_READING, &b->state));
974 if (!test_bit(B_DIRTY, &b->state) &&
975 !test_bit(B_WRITING, &b->state)) {
976 __relink_lru(b, LIST_CLEAN);
980 if (no_wait && test_bit(B_WRITING, &b->state))
983 __write_dirty_buffer(b, write_list);
989 * Check if we're over watermark.
990 * If we are over threshold_buffers, start freeing buffers.
991 * If we're over "limit_buffers", block until we get under the limit.
993 static void __check_watermark(struct dm_bufio_client *c,
994 struct list_head *write_list)
996 if (c->n_buffers[LIST_DIRTY] > c->n_buffers[LIST_CLEAN] * DM_BUFIO_WRITEBACK_RATIO)
997 __write_dirty_buffers_async(c, 1, write_list);
1000 /*----------------------------------------------------------------
1002 *--------------------------------------------------------------*/
1004 static struct dm_buffer *__bufio_new(struct dm_bufio_client *c, sector_t block,
1005 enum new_flag nf, int *need_submit,
1006 struct list_head *write_list)
1008 struct dm_buffer *b, *new_b = NULL;
1012 b = __find(c, block);
1019 new_b = __alloc_buffer_wait(c, nf);
1024 * We've had a period where the mutex was unlocked, so need to
1025 * recheck the buffer tree.
1027 b = __find(c, block);
1029 __free_buffer_wake(new_b);
1033 __check_watermark(c, write_list);
1039 __link_buffer(b, block, LIST_CLEAN);
1041 if (nf == NF_FRESH) {
1046 b->state = 1 << B_READING;
1052 if (nf == NF_PREFETCH)
1055 * Note: it is essential that we don't wait for the buffer to be
1056 * read if dm_bufio_get function is used. Both dm_bufio_get and
1057 * dm_bufio_prefetch can be used in the driver request routine.
1058 * If the user called both dm_bufio_prefetch and dm_bufio_get on
1059 * the same buffer, it would deadlock if we waited.
1061 if (nf == NF_GET && unlikely(test_bit(B_READING, &b->state)))
1065 __relink_lru(b, test_bit(B_DIRTY, &b->state) ||
1066 test_bit(B_WRITING, &b->state));
1071 * The endio routine for reading: set the error, clear the bit and wake up
1072 * anyone waiting on the buffer.
1074 static void read_endio(struct dm_buffer *b, blk_status_t status)
1076 b->read_error = status;
1078 BUG_ON(!test_bit(B_READING, &b->state));
1080 smp_mb__before_atomic();
1081 clear_bit(B_READING, &b->state);
1082 smp_mb__after_atomic();
1084 wake_up_bit(&b->state, B_READING);
1088 * A common routine for dm_bufio_new and dm_bufio_read. Operation of these
1089 * functions is similar except that dm_bufio_new doesn't read the
1090 * buffer from the disk (assuming that the caller overwrites all the data
1091 * and uses dm_bufio_mark_buffer_dirty to write new data back).
1093 static void *new_read(struct dm_bufio_client *c, sector_t block,
1094 enum new_flag nf, struct dm_buffer **bp)
1097 struct dm_buffer *b;
1099 LIST_HEAD(write_list);
1102 b = __bufio_new(c, block, nf, &need_submit, &write_list);
1103 #ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
1104 if (b && b->hold_count == 1)
1105 buffer_record_stack(b);
1109 __flush_write_list(&write_list);
1115 submit_io(b, REQ_OP_READ, read_endio);
1117 wait_on_bit_io(&b->state, B_READING, TASK_UNINTERRUPTIBLE);
1119 if (b->read_error) {
1120 int error = blk_status_to_errno(b->read_error);
1122 dm_bufio_release(b);
1124 return ERR_PTR(error);
1132 void *dm_bufio_get(struct dm_bufio_client *c, sector_t block,
1133 struct dm_buffer **bp)
1135 return new_read(c, block, NF_GET, bp);
1137 EXPORT_SYMBOL_GPL(dm_bufio_get);
1139 void *dm_bufio_read(struct dm_bufio_client *c, sector_t block,
1140 struct dm_buffer **bp)
1142 BUG_ON(dm_bufio_in_request());
1144 return new_read(c, block, NF_READ, bp);
1146 EXPORT_SYMBOL_GPL(dm_bufio_read);
1148 void *dm_bufio_new(struct dm_bufio_client *c, sector_t block,
1149 struct dm_buffer **bp)
1151 BUG_ON(dm_bufio_in_request());
1153 return new_read(c, block, NF_FRESH, bp);
1155 EXPORT_SYMBOL_GPL(dm_bufio_new);
1157 void dm_bufio_prefetch(struct dm_bufio_client *c,
1158 sector_t block, unsigned n_blocks)
1160 struct blk_plug plug;
1162 LIST_HEAD(write_list);
1164 BUG_ON(dm_bufio_in_request());
1166 blk_start_plug(&plug);
1169 for (; n_blocks--; block++) {
1171 struct dm_buffer *b;
1172 b = __bufio_new(c, block, NF_PREFETCH, &need_submit,
1174 if (unlikely(!list_empty(&write_list))) {
1176 blk_finish_plug(&plug);
1177 __flush_write_list(&write_list);
1178 blk_start_plug(&plug);
1181 if (unlikely(b != NULL)) {
1185 submit_io(b, REQ_OP_READ, read_endio);
1186 dm_bufio_release(b);
1199 blk_finish_plug(&plug);
1201 EXPORT_SYMBOL_GPL(dm_bufio_prefetch);
1203 void dm_bufio_release(struct dm_buffer *b)
1205 struct dm_bufio_client *c = b->c;
1209 BUG_ON(!b->hold_count);
1212 if (!b->hold_count) {
1213 wake_up(&c->free_buffer_wait);
1216 * If there were errors on the buffer, and the buffer is not
1217 * to be written, free the buffer. There is no point in caching
1220 if ((b->read_error || b->write_error) &&
1221 !test_bit(B_READING, &b->state) &&
1222 !test_bit(B_WRITING, &b->state) &&
1223 !test_bit(B_DIRTY, &b->state)) {
1225 __free_buffer_wake(b);
1231 EXPORT_SYMBOL_GPL(dm_bufio_release);
1233 void dm_bufio_mark_partial_buffer_dirty(struct dm_buffer *b,
1234 unsigned start, unsigned end)
1236 struct dm_bufio_client *c = b->c;
1238 BUG_ON(start >= end);
1239 BUG_ON(end > b->c->block_size);
1243 BUG_ON(test_bit(B_READING, &b->state));
1245 if (!test_and_set_bit(B_DIRTY, &b->state)) {
1246 b->dirty_start = start;
1248 __relink_lru(b, LIST_DIRTY);
1250 if (start < b->dirty_start)
1251 b->dirty_start = start;
1252 if (end > b->dirty_end)
1258 EXPORT_SYMBOL_GPL(dm_bufio_mark_partial_buffer_dirty);
1260 void dm_bufio_mark_buffer_dirty(struct dm_buffer *b)
1262 dm_bufio_mark_partial_buffer_dirty(b, 0, b->c->block_size);
1264 EXPORT_SYMBOL_GPL(dm_bufio_mark_buffer_dirty);
1266 void dm_bufio_write_dirty_buffers_async(struct dm_bufio_client *c)
1268 LIST_HEAD(write_list);
1270 BUG_ON(dm_bufio_in_request());
1273 __write_dirty_buffers_async(c, 0, &write_list);
1275 __flush_write_list(&write_list);
1277 EXPORT_SYMBOL_GPL(dm_bufio_write_dirty_buffers_async);
1280 * For performance, it is essential that the buffers are written asynchronously
1281 * and simultaneously (so that the block layer can merge the writes) and then
1284 * Finally, we flush hardware disk cache.
1286 int dm_bufio_write_dirty_buffers(struct dm_bufio_client *c)
1289 unsigned long buffers_processed = 0;
1290 struct dm_buffer *b, *tmp;
1292 LIST_HEAD(write_list);
1295 __write_dirty_buffers_async(c, 0, &write_list);
1297 __flush_write_list(&write_list);
1301 list_for_each_entry_safe_reverse(b, tmp, &c->lru[LIST_DIRTY], lru_list) {
1302 int dropped_lock = 0;
1304 if (buffers_processed < c->n_buffers[LIST_DIRTY])
1305 buffers_processed++;
1307 BUG_ON(test_bit(B_READING, &b->state));
1309 if (test_bit(B_WRITING, &b->state)) {
1310 if (buffers_processed < c->n_buffers[LIST_DIRTY]) {
1314 wait_on_bit_io(&b->state, B_WRITING,
1315 TASK_UNINTERRUPTIBLE);
1319 wait_on_bit_io(&b->state, B_WRITING,
1320 TASK_UNINTERRUPTIBLE);
1323 if (!test_bit(B_DIRTY, &b->state) &&
1324 !test_bit(B_WRITING, &b->state))
1325 __relink_lru(b, LIST_CLEAN);
1330 * If we dropped the lock, the list is no longer consistent,
1331 * so we must restart the search.
1333 * In the most common case, the buffer just processed is
1334 * relinked to the clean list, so we won't loop scanning the
1335 * same buffer again and again.
1337 * This may livelock if there is another thread simultaneously
1338 * dirtying buffers, so we count the number of buffers walked
1339 * and if it exceeds the total number of buffers, it means that
1340 * someone is doing some writes simultaneously with us. In
1341 * this case, stop, dropping the lock.
1346 wake_up(&c->free_buffer_wait);
1349 a = xchg(&c->async_write_error, 0);
1350 f = dm_bufio_issue_flush(c);
1356 EXPORT_SYMBOL_GPL(dm_bufio_write_dirty_buffers);
1359 * Use dm-io to send an empty barrier to flush the device.
1361 int dm_bufio_issue_flush(struct dm_bufio_client *c)
1363 struct dm_io_request io_req = {
1364 .bi_opf = REQ_OP_WRITE | REQ_PREFLUSH | REQ_SYNC,
1365 .mem.type = DM_IO_KMEM,
1366 .mem.ptr.addr = NULL,
1369 struct dm_io_region io_reg = {
1375 BUG_ON(dm_bufio_in_request());
1377 return dm_io(&io_req, 1, &io_reg, NULL);
1379 EXPORT_SYMBOL_GPL(dm_bufio_issue_flush);
1382 * Use dm-io to send a discard request to flush the device.
1384 int dm_bufio_issue_discard(struct dm_bufio_client *c, sector_t block, sector_t count)
1386 struct dm_io_request io_req = {
1387 .bi_opf = REQ_OP_DISCARD | REQ_SYNC,
1388 .mem.type = DM_IO_KMEM,
1389 .mem.ptr.addr = NULL,
1392 struct dm_io_region io_reg = {
1394 .sector = block_to_sector(c, block),
1395 .count = block_to_sector(c, count),
1398 BUG_ON(dm_bufio_in_request());
1400 return dm_io(&io_req, 1, &io_reg, NULL);
1402 EXPORT_SYMBOL_GPL(dm_bufio_issue_discard);
1405 * We first delete any other buffer that may be at that new location.
1407 * Then, we write the buffer to the original location if it was dirty.
1409 * Then, if we are the only one who is holding the buffer, relink the buffer
1410 * in the buffer tree for the new location.
1412 * If there was someone else holding the buffer, we write it to the new
1413 * location but not relink it, because that other user needs to have the buffer
1414 * at the same place.
1416 void dm_bufio_release_move(struct dm_buffer *b, sector_t new_block)
1418 struct dm_bufio_client *c = b->c;
1419 struct dm_buffer *new;
1421 BUG_ON(dm_bufio_in_request());
1426 new = __find(c, new_block);
1428 if (new->hold_count) {
1429 __wait_for_free_buffer(c);
1434 * FIXME: Is there any point waiting for a write that's going
1435 * to be overwritten in a bit?
1437 __make_buffer_clean(new);
1438 __unlink_buffer(new);
1439 __free_buffer_wake(new);
1442 BUG_ON(!b->hold_count);
1443 BUG_ON(test_bit(B_READING, &b->state));
1445 __write_dirty_buffer(b, NULL);
1446 if (b->hold_count == 1) {
1447 wait_on_bit_io(&b->state, B_WRITING,
1448 TASK_UNINTERRUPTIBLE);
1449 set_bit(B_DIRTY, &b->state);
1451 b->dirty_end = c->block_size;
1453 __link_buffer(b, new_block, LIST_DIRTY);
1456 wait_on_bit_lock_io(&b->state, B_WRITING,
1457 TASK_UNINTERRUPTIBLE);
1459 * Relink buffer to "new_block" so that write_callback
1460 * sees "new_block" as a block number.
1461 * After the write, link the buffer back to old_block.
1462 * All this must be done in bufio lock, so that block number
1463 * change isn't visible to other threads.
1465 old_block = b->block;
1467 __link_buffer(b, new_block, b->list_mode);
1468 submit_io(b, REQ_OP_WRITE, write_endio);
1469 wait_on_bit_io(&b->state, B_WRITING,
1470 TASK_UNINTERRUPTIBLE);
1472 __link_buffer(b, old_block, b->list_mode);
1476 dm_bufio_release(b);
1478 EXPORT_SYMBOL_GPL(dm_bufio_release_move);
1480 static void forget_buffer_locked(struct dm_buffer *b)
1482 if (likely(!b->hold_count) && likely(!b->state)) {
1484 __free_buffer_wake(b);
1489 * Free the given buffer.
1491 * This is just a hint, if the buffer is in use or dirty, this function
1494 void dm_bufio_forget(struct dm_bufio_client *c, sector_t block)
1496 struct dm_buffer *b;
1500 b = __find(c, block);
1502 forget_buffer_locked(b);
1506 EXPORT_SYMBOL_GPL(dm_bufio_forget);
1508 void dm_bufio_forget_buffers(struct dm_bufio_client *c, sector_t block, sector_t n_blocks)
1510 struct dm_buffer *b;
1511 sector_t end_block = block + n_blocks;
1513 while (block < end_block) {
1516 b = __find_next(c, block);
1518 block = b->block + 1;
1519 forget_buffer_locked(b);
1529 EXPORT_SYMBOL_GPL(dm_bufio_forget_buffers);
1531 void dm_bufio_set_minimum_buffers(struct dm_bufio_client *c, unsigned n)
1533 c->minimum_buffers = n;
1535 EXPORT_SYMBOL_GPL(dm_bufio_set_minimum_buffers);
1537 unsigned dm_bufio_get_block_size(struct dm_bufio_client *c)
1539 return c->block_size;
1541 EXPORT_SYMBOL_GPL(dm_bufio_get_block_size);
1543 sector_t dm_bufio_get_device_size(struct dm_bufio_client *c)
1545 sector_t s = bdev_nr_sectors(c->bdev);
1550 if (likely(c->sectors_per_block_bits >= 0))
1551 s >>= c->sectors_per_block_bits;
1553 sector_div(s, c->block_size >> SECTOR_SHIFT);
1556 EXPORT_SYMBOL_GPL(dm_bufio_get_device_size);
1558 struct dm_io_client *dm_bufio_get_dm_io_client(struct dm_bufio_client *c)
1562 EXPORT_SYMBOL_GPL(dm_bufio_get_dm_io_client);
1564 sector_t dm_bufio_get_block_number(struct dm_buffer *b)
1568 EXPORT_SYMBOL_GPL(dm_bufio_get_block_number);
1570 void *dm_bufio_get_block_data(struct dm_buffer *b)
1574 EXPORT_SYMBOL_GPL(dm_bufio_get_block_data);
1576 void *dm_bufio_get_aux_data(struct dm_buffer *b)
1580 EXPORT_SYMBOL_GPL(dm_bufio_get_aux_data);
1582 struct dm_bufio_client *dm_bufio_get_client(struct dm_buffer *b)
1586 EXPORT_SYMBOL_GPL(dm_bufio_get_client);
1588 static void drop_buffers(struct dm_bufio_client *c)
1590 struct dm_buffer *b;
1592 bool warned = false;
1594 BUG_ON(dm_bufio_in_request());
1597 * An optimization so that the buffers are not written one-by-one.
1599 dm_bufio_write_dirty_buffers_async(c);
1603 while ((b = __get_unclaimed_buffer(c)))
1604 __free_buffer_wake(b);
1606 for (i = 0; i < LIST_SIZE; i++)
1607 list_for_each_entry(b, &c->lru[i], lru_list) {
1610 DMERR("leaked buffer %llx, hold count %u, list %d",
1611 (unsigned long long)b->block, b->hold_count, i);
1612 #ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
1613 stack_trace_print(b->stack_entries, b->stack_len, 1);
1614 /* mark unclaimed to avoid BUG_ON below */
1619 #ifdef CONFIG_DM_DEBUG_BLOCK_STACK_TRACING
1620 while ((b = __get_unclaimed_buffer(c)))
1621 __free_buffer_wake(b);
1624 for (i = 0; i < LIST_SIZE; i++)
1625 BUG_ON(!list_empty(&c->lru[i]));
1631 * We may not be able to evict this buffer if IO pending or the client
1632 * is still using it. Caller is expected to know buffer is too old.
1634 * And if GFP_NOFS is used, we must not do any I/O because we hold
1635 * dm_bufio_clients_lock and we would risk deadlock if the I/O gets
1636 * rerouted to different bufio client.
1638 static bool __try_evict_buffer(struct dm_buffer *b, gfp_t gfp)
1640 if (!(gfp & __GFP_FS) ||
1641 (static_branch_unlikely(&no_sleep_enabled) && b->c->no_sleep)) {
1642 if (test_bit(B_READING, &b->state) ||
1643 test_bit(B_WRITING, &b->state) ||
1644 test_bit(B_DIRTY, &b->state))
1651 __make_buffer_clean(b);
1653 __free_buffer_wake(b);
1658 static unsigned long get_retain_buffers(struct dm_bufio_client *c)
1660 unsigned long retain_bytes = READ_ONCE(dm_bufio_retain_bytes);
1661 if (likely(c->sectors_per_block_bits >= 0))
1662 retain_bytes >>= c->sectors_per_block_bits + SECTOR_SHIFT;
1664 retain_bytes /= c->block_size;
1665 return retain_bytes;
1668 static void __scan(struct dm_bufio_client *c)
1671 struct dm_buffer *b, *tmp;
1672 unsigned long freed = 0;
1673 unsigned long count = c->n_buffers[LIST_CLEAN] +
1674 c->n_buffers[LIST_DIRTY];
1675 unsigned long retain_target = get_retain_buffers(c);
1677 for (l = 0; l < LIST_SIZE; l++) {
1678 list_for_each_entry_safe_reverse(b, tmp, &c->lru[l], lru_list) {
1679 if (count - freed <= retain_target)
1680 atomic_long_set(&c->need_shrink, 0);
1681 if (!atomic_long_read(&c->need_shrink))
1683 if (__try_evict_buffer(b, GFP_KERNEL)) {
1684 atomic_long_dec(&c->need_shrink);
1692 static void shrink_work(struct work_struct *w)
1694 struct dm_bufio_client *c = container_of(w, struct dm_bufio_client, shrink_work);
1701 static unsigned long dm_bufio_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
1703 struct dm_bufio_client *c;
1705 c = container_of(shrink, struct dm_bufio_client, shrinker);
1706 atomic_long_add(sc->nr_to_scan, &c->need_shrink);
1707 queue_work(dm_bufio_wq, &c->shrink_work);
1709 return sc->nr_to_scan;
1712 static unsigned long dm_bufio_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
1714 struct dm_bufio_client *c = container_of(shrink, struct dm_bufio_client, shrinker);
1715 unsigned long count = READ_ONCE(c->n_buffers[LIST_CLEAN]) +
1716 READ_ONCE(c->n_buffers[LIST_DIRTY]);
1717 unsigned long retain_target = get_retain_buffers(c);
1718 unsigned long queued_for_cleanup = atomic_long_read(&c->need_shrink);
1720 if (unlikely(count < retain_target))
1723 count -= retain_target;
1725 if (unlikely(count < queued_for_cleanup))
1728 count -= queued_for_cleanup;
1734 * Create the buffering interface
1736 struct dm_bufio_client *dm_bufio_client_create(struct block_device *bdev, unsigned block_size,
1737 unsigned reserved_buffers, unsigned aux_size,
1738 void (*alloc_callback)(struct dm_buffer *),
1739 void (*write_callback)(struct dm_buffer *),
1743 struct dm_bufio_client *c;
1747 if (!block_size || block_size & ((1 << SECTOR_SHIFT) - 1)) {
1748 DMERR("%s: block size not specified or is not multiple of 512b", __func__);
1753 c = kzalloc(sizeof(*c), GFP_KERNEL);
1758 c->buffer_tree = RB_ROOT;
1761 c->block_size = block_size;
1762 if (is_power_of_2(block_size))
1763 c->sectors_per_block_bits = __ffs(block_size) - SECTOR_SHIFT;
1765 c->sectors_per_block_bits = -1;
1767 c->alloc_callback = alloc_callback;
1768 c->write_callback = write_callback;
1770 if (flags & DM_BUFIO_CLIENT_NO_SLEEP) {
1772 static_branch_inc(&no_sleep_enabled);
1775 for (i = 0; i < LIST_SIZE; i++) {
1776 INIT_LIST_HEAD(&c->lru[i]);
1777 c->n_buffers[i] = 0;
1780 mutex_init(&c->lock);
1781 spin_lock_init(&c->spinlock);
1782 INIT_LIST_HEAD(&c->reserved_buffers);
1783 c->need_reserved_buffers = reserved_buffers;
1785 dm_bufio_set_minimum_buffers(c, DM_BUFIO_MIN_BUFFERS);
1787 init_waitqueue_head(&c->free_buffer_wait);
1788 c->async_write_error = 0;
1790 c->dm_io = dm_io_client_create();
1791 if (IS_ERR(c->dm_io)) {
1792 r = PTR_ERR(c->dm_io);
1796 if (block_size <= KMALLOC_MAX_SIZE &&
1797 (block_size < PAGE_SIZE || !is_power_of_2(block_size))) {
1798 unsigned align = min(1U << __ffs(block_size), (unsigned)PAGE_SIZE);
1799 snprintf(slab_name, sizeof slab_name, "dm_bufio_cache-%u", block_size);
1800 c->slab_cache = kmem_cache_create(slab_name, block_size, align,
1801 SLAB_RECLAIM_ACCOUNT, NULL);
1802 if (!c->slab_cache) {
1808 snprintf(slab_name, sizeof slab_name, "dm_bufio_buffer-%u", aux_size);
1810 snprintf(slab_name, sizeof slab_name, "dm_bufio_buffer");
1811 c->slab_buffer = kmem_cache_create(slab_name, sizeof(struct dm_buffer) + aux_size,
1812 0, SLAB_RECLAIM_ACCOUNT, NULL);
1813 if (!c->slab_buffer) {
1818 while (c->need_reserved_buffers) {
1819 struct dm_buffer *b = alloc_buffer(c, GFP_KERNEL);
1825 __free_buffer_wake(b);
1828 INIT_WORK(&c->shrink_work, shrink_work);
1829 atomic_long_set(&c->need_shrink, 0);
1831 c->shrinker.count_objects = dm_bufio_shrink_count;
1832 c->shrinker.scan_objects = dm_bufio_shrink_scan;
1833 c->shrinker.seeks = 1;
1834 c->shrinker.batch = 0;
1835 r = register_shrinker(&c->shrinker, "md-%s:(%u:%u)", slab_name,
1836 MAJOR(bdev->bd_dev), MINOR(bdev->bd_dev));
1840 mutex_lock(&dm_bufio_clients_lock);
1841 dm_bufio_client_count++;
1842 list_add(&c->client_list, &dm_bufio_all_clients);
1843 __cache_size_refresh();
1844 mutex_unlock(&dm_bufio_clients_lock);
1849 while (!list_empty(&c->reserved_buffers)) {
1850 struct dm_buffer *b = list_entry(c->reserved_buffers.next,
1851 struct dm_buffer, lru_list);
1852 list_del(&b->lru_list);
1855 kmem_cache_destroy(c->slab_cache);
1856 kmem_cache_destroy(c->slab_buffer);
1857 dm_io_client_destroy(c->dm_io);
1859 mutex_destroy(&c->lock);
1864 EXPORT_SYMBOL_GPL(dm_bufio_client_create);
1867 * Free the buffering interface.
1868 * It is required that there are no references on any buffers.
1870 void dm_bufio_client_destroy(struct dm_bufio_client *c)
1876 unregister_shrinker(&c->shrinker);
1877 flush_work(&c->shrink_work);
1879 mutex_lock(&dm_bufio_clients_lock);
1881 list_del(&c->client_list);
1882 dm_bufio_client_count--;
1883 __cache_size_refresh();
1885 mutex_unlock(&dm_bufio_clients_lock);
1887 BUG_ON(!RB_EMPTY_ROOT(&c->buffer_tree));
1888 BUG_ON(c->need_reserved_buffers);
1890 while (!list_empty(&c->reserved_buffers)) {
1891 struct dm_buffer *b = list_entry(c->reserved_buffers.next,
1892 struct dm_buffer, lru_list);
1893 list_del(&b->lru_list);
1897 for (i = 0; i < LIST_SIZE; i++)
1898 if (c->n_buffers[i])
1899 DMERR("leaked buffer count %d: %ld", i, c->n_buffers[i]);
1901 for (i = 0; i < LIST_SIZE; i++)
1902 BUG_ON(c->n_buffers[i]);
1904 kmem_cache_destroy(c->slab_cache);
1905 kmem_cache_destroy(c->slab_buffer);
1906 dm_io_client_destroy(c->dm_io);
1907 mutex_destroy(&c->lock);
1909 static_branch_dec(&no_sleep_enabled);
1912 EXPORT_SYMBOL_GPL(dm_bufio_client_destroy);
1914 void dm_bufio_set_sector_offset(struct dm_bufio_client *c, sector_t start)
1918 EXPORT_SYMBOL_GPL(dm_bufio_set_sector_offset);
1920 static unsigned get_max_age_hz(void)
1922 unsigned max_age = READ_ONCE(dm_bufio_max_age);
1924 if (max_age > UINT_MAX / HZ)
1925 max_age = UINT_MAX / HZ;
1927 return max_age * HZ;
1930 static bool older_than(struct dm_buffer *b, unsigned long age_hz)
1932 return time_after_eq(jiffies, b->last_accessed + age_hz);
1935 static void __evict_old_buffers(struct dm_bufio_client *c, unsigned long age_hz)
1937 struct dm_buffer *b, *tmp;
1938 unsigned long retain_target = get_retain_buffers(c);
1939 unsigned long count;
1940 LIST_HEAD(write_list);
1944 __check_watermark(c, &write_list);
1945 if (unlikely(!list_empty(&write_list))) {
1947 __flush_write_list(&write_list);
1951 count = c->n_buffers[LIST_CLEAN] + c->n_buffers[LIST_DIRTY];
1952 list_for_each_entry_safe_reverse(b, tmp, &c->lru[LIST_CLEAN], lru_list) {
1953 if (count <= retain_target)
1956 if (!older_than(b, age_hz))
1959 if (__try_evict_buffer(b, 0))
1968 static void do_global_cleanup(struct work_struct *w)
1970 struct dm_bufio_client *locked_client = NULL;
1971 struct dm_bufio_client *current_client;
1972 struct dm_buffer *b;
1973 unsigned spinlock_hold_count;
1974 unsigned long threshold = dm_bufio_cache_size -
1975 dm_bufio_cache_size / DM_BUFIO_LOW_WATERMARK_RATIO;
1976 unsigned long loops = global_num * 2;
1978 mutex_lock(&dm_bufio_clients_lock);
1983 spin_lock(&global_spinlock);
1984 if (unlikely(dm_bufio_current_allocated <= threshold))
1987 spinlock_hold_count = 0;
1991 if (unlikely(list_empty(&global_queue)))
1993 b = list_entry(global_queue.prev, struct dm_buffer, global_list);
1997 list_move(&b->global_list, &global_queue);
1998 if (likely(++spinlock_hold_count < 16))
2000 spin_unlock(&global_spinlock);
2004 current_client = b->c;
2005 if (unlikely(current_client != locked_client)) {
2007 dm_bufio_unlock(locked_client);
2009 if (!dm_bufio_trylock(current_client)) {
2010 spin_unlock(&global_spinlock);
2011 dm_bufio_lock(current_client);
2012 locked_client = current_client;
2016 locked_client = current_client;
2019 spin_unlock(&global_spinlock);
2021 if (unlikely(!__try_evict_buffer(b, GFP_KERNEL))) {
2022 spin_lock(&global_spinlock);
2023 list_move(&b->global_list, &global_queue);
2024 spin_unlock(&global_spinlock);
2028 spin_unlock(&global_spinlock);
2031 dm_bufio_unlock(locked_client);
2033 mutex_unlock(&dm_bufio_clients_lock);
2036 static void cleanup_old_buffers(void)
2038 unsigned long max_age_hz = get_max_age_hz();
2039 struct dm_bufio_client *c;
2041 mutex_lock(&dm_bufio_clients_lock);
2043 __cache_size_refresh();
2045 list_for_each_entry(c, &dm_bufio_all_clients, client_list)
2046 __evict_old_buffers(c, max_age_hz);
2048 mutex_unlock(&dm_bufio_clients_lock);
2051 static void work_fn(struct work_struct *w)
2053 cleanup_old_buffers();
2055 queue_delayed_work(dm_bufio_wq, &dm_bufio_cleanup_old_work,
2056 DM_BUFIO_WORK_TIMER_SECS * HZ);
2059 /*----------------------------------------------------------------
2061 *--------------------------------------------------------------*/
2064 * This is called only once for the whole dm_bufio module.
2065 * It initializes memory limit.
2067 static int __init dm_bufio_init(void)
2071 dm_bufio_allocated_kmem_cache = 0;
2072 dm_bufio_allocated_get_free_pages = 0;
2073 dm_bufio_allocated_vmalloc = 0;
2074 dm_bufio_current_allocated = 0;
2076 mem = (__u64)mult_frac(totalram_pages() - totalhigh_pages(),
2077 DM_BUFIO_MEMORY_PERCENT, 100) << PAGE_SHIFT;
2079 if (mem > ULONG_MAX)
2083 if (mem > mult_frac(VMALLOC_TOTAL, DM_BUFIO_VMALLOC_PERCENT, 100))
2084 mem = mult_frac(VMALLOC_TOTAL, DM_BUFIO_VMALLOC_PERCENT, 100);
2087 dm_bufio_default_cache_size = mem;
2089 mutex_lock(&dm_bufio_clients_lock);
2090 __cache_size_refresh();
2091 mutex_unlock(&dm_bufio_clients_lock);
2093 dm_bufio_wq = alloc_workqueue("dm_bufio_cache", WQ_MEM_RECLAIM, 0);
2097 INIT_DELAYED_WORK(&dm_bufio_cleanup_old_work, work_fn);
2098 INIT_WORK(&dm_bufio_replacement_work, do_global_cleanup);
2099 queue_delayed_work(dm_bufio_wq, &dm_bufio_cleanup_old_work,
2100 DM_BUFIO_WORK_TIMER_SECS * HZ);
2106 * This is called once when unloading the dm_bufio module.
2108 static void __exit dm_bufio_exit(void)
2112 cancel_delayed_work_sync(&dm_bufio_cleanup_old_work);
2113 destroy_workqueue(dm_bufio_wq);
2115 if (dm_bufio_client_count) {
2116 DMCRIT("%s: dm_bufio_client_count leaked: %d",
2117 __func__, dm_bufio_client_count);
2121 if (dm_bufio_current_allocated) {
2122 DMCRIT("%s: dm_bufio_current_allocated leaked: %lu",
2123 __func__, dm_bufio_current_allocated);
2127 if (dm_bufio_allocated_get_free_pages) {
2128 DMCRIT("%s: dm_bufio_allocated_get_free_pages leaked: %lu",
2129 __func__, dm_bufio_allocated_get_free_pages);
2133 if (dm_bufio_allocated_vmalloc) {
2134 DMCRIT("%s: dm_bufio_vmalloc leaked: %lu",
2135 __func__, dm_bufio_allocated_vmalloc);
2142 module_init(dm_bufio_init)
2143 module_exit(dm_bufio_exit)
2145 module_param_named(max_cache_size_bytes, dm_bufio_cache_size, ulong, S_IRUGO | S_IWUSR);
2146 MODULE_PARM_DESC(max_cache_size_bytes, "Size of metadata cache");
2148 module_param_named(max_age_seconds, dm_bufio_max_age, uint, S_IRUGO | S_IWUSR);
2149 MODULE_PARM_DESC(max_age_seconds, "Max age of a buffer in seconds");
2151 module_param_named(retain_bytes, dm_bufio_retain_bytes, ulong, S_IRUGO | S_IWUSR);
2152 MODULE_PARM_DESC(retain_bytes, "Try to keep at least this many bytes cached in memory");
2154 module_param_named(peak_allocated_bytes, dm_bufio_peak_allocated, ulong, S_IRUGO | S_IWUSR);
2155 MODULE_PARM_DESC(peak_allocated_bytes, "Tracks the maximum allocated memory");
2157 module_param_named(allocated_kmem_cache_bytes, dm_bufio_allocated_kmem_cache, ulong, S_IRUGO);
2158 MODULE_PARM_DESC(allocated_kmem_cache_bytes, "Memory allocated with kmem_cache_alloc");
2160 module_param_named(allocated_get_free_pages_bytes, dm_bufio_allocated_get_free_pages, ulong, S_IRUGO);
2161 MODULE_PARM_DESC(allocated_get_free_pages_bytes, "Memory allocated with get_free_pages");
2163 module_param_named(allocated_vmalloc_bytes, dm_bufio_allocated_vmalloc, ulong, S_IRUGO);
2164 MODULE_PARM_DESC(allocated_vmalloc_bytes, "Memory allocated with vmalloc");
2166 module_param_named(current_allocated_bytes, dm_bufio_current_allocated, ulong, S_IRUGO);
2167 MODULE_PARM_DESC(current_allocated_bytes, "Memory currently used by the cache");
2170 MODULE_DESCRIPTION(DM_NAME " buffered I/O library");
2171 MODULE_LICENSE("GPL");