2 * Copyright (C) 2009-2011 Red Hat, Inc.
4 * Author: Mikulas Patocka <mpatocka@redhat.com>
6 * This file is released under the GPL.
11 #include <linux/device-mapper.h>
12 #include <linux/dm-io.h>
13 #include <linux/slab.h>
14 #include <linux/vmalloc.h>
15 #include <linux/shrinker.h>
16 #include <linux/module.h>
18 #define DM_MSG_PREFIX "bufio"
21 * Memory management policy:
22 * Limit the number of buffers to DM_BUFIO_MEMORY_PERCENT of main memory
23 * or DM_BUFIO_VMALLOC_PERCENT of vmalloc memory (whichever is lower).
24 * Always allocate at least DM_BUFIO_MIN_BUFFERS buffers.
25 * Start background writeback when there are DM_BUFIO_WRITEBACK_PERCENT
28 #define DM_BUFIO_MIN_BUFFERS 8
30 #define DM_BUFIO_MEMORY_PERCENT 2
31 #define DM_BUFIO_VMALLOC_PERCENT 25
32 #define DM_BUFIO_WRITEBACK_PERCENT 75
35 * Check buffer ages in this interval (seconds)
37 #define DM_BUFIO_WORK_TIMER_SECS 10
40 * Free buffers when they are older than this (seconds)
42 #define DM_BUFIO_DEFAULT_AGE_SECS 60
45 * The number of bvec entries that are embedded directly in the buffer.
46 * If the chunk size is larger, dm-io is used to do the io.
48 #define DM_BUFIO_INLINE_VECS 16
53 #define DM_BUFIO_HASH_BITS 20
54 #define DM_BUFIO_HASH(block) \
55 ((((block) >> DM_BUFIO_HASH_BITS) ^ (block)) & \
56 ((1 << DM_BUFIO_HASH_BITS) - 1))
59 * Don't try to use kmem_cache_alloc for blocks larger than this.
60 * For explanation, see alloc_buffer_data below.
62 #define DM_BUFIO_BLOCK_SIZE_SLAB_LIMIT (PAGE_SIZE >> 1)
63 #define DM_BUFIO_BLOCK_SIZE_GFP_LIMIT (PAGE_SIZE << (MAX_ORDER - 1))
66 * dm_buffer->list_mode
74 * All buffers are linked to cache_hash with their hash_list field.
76 * Clean buffers that are not being written (B_WRITING not set)
77 * are linked to lru[LIST_CLEAN] with their lru_list field.
79 * Dirty and clean buffers that are being written are linked to
80 * lru[LIST_DIRTY] with their lru_list field. When the write
81 * finishes, the buffer cannot be relinked immediately (because we
82 * are in an interrupt context and relinking requires process
83 * context), so some clean-not-writing buffers can be held on
84 * dirty_lru too. They are later added to lru in the process
87 struct dm_bufio_client
{
90 struct list_head lru
[LIST_SIZE
];
91 unsigned long n_buffers
[LIST_SIZE
];
93 struct block_device
*bdev
;
95 unsigned char sectors_per_block_bits
;
96 unsigned char pages_per_block_bits
;
97 unsigned char blocks_per_page_bits
;
99 void (*alloc_callback
)(struct dm_buffer
*);
100 void (*write_callback
)(struct dm_buffer
*);
102 struct dm_io_client
*dm_io
;
104 struct list_head reserved_buffers
;
105 unsigned need_reserved_buffers
;
107 struct hlist_head
*cache_hash
;
108 wait_queue_head_t free_buffer_wait
;
110 int async_write_error
;
112 struct list_head client_list
;
113 struct shrinker shrinker
;
124 * Describes how the block was allocated:
125 * kmem_cache_alloc(), __get_free_pages() or vmalloc().
126 * See the comment at alloc_buffer_data.
130 DATA_MODE_GET_FREE_PAGES
= 1,
131 DATA_MODE_VMALLOC
= 2,
136 struct hlist_node hash_list
;
137 struct list_head lru_list
;
140 enum data_mode data_mode
;
141 unsigned char list_mode
; /* LIST_* */
146 unsigned long last_accessed
;
147 struct dm_bufio_client
*c
;
149 struct bio_vec bio_vec
[DM_BUFIO_INLINE_VECS
];
152 /*----------------------------------------------------------------*/
154 static struct kmem_cache
*dm_bufio_caches
[PAGE_SHIFT
- SECTOR_SHIFT
];
155 static char *dm_bufio_cache_names
[PAGE_SHIFT
- SECTOR_SHIFT
];
157 static inline int dm_bufio_cache_index(struct dm_bufio_client
*c
)
159 unsigned ret
= c
->blocks_per_page_bits
- 1;
161 BUG_ON(ret
>= ARRAY_SIZE(dm_bufio_caches
));
166 #define DM_BUFIO_CACHE(c) (dm_bufio_caches[dm_bufio_cache_index(c)])
167 #define DM_BUFIO_CACHE_NAME(c) (dm_bufio_cache_names[dm_bufio_cache_index(c)])
169 #define dm_bufio_in_request() (!!current->bio_list)
171 static void dm_bufio_lock(struct dm_bufio_client
*c
)
173 mutex_lock_nested(&c
->lock
, dm_bufio_in_request());
176 static int dm_bufio_trylock(struct dm_bufio_client
*c
)
178 return mutex_trylock(&c
->lock
);
181 static void dm_bufio_unlock(struct dm_bufio_client
*c
)
183 mutex_unlock(&c
->lock
);
187 * FIXME Move to sched.h?
189 #ifdef CONFIG_PREEMPT_VOLUNTARY
190 # define dm_bufio_cond_resched() \
192 if (unlikely(need_resched())) \
196 # define dm_bufio_cond_resched() do { } while (0)
199 /*----------------------------------------------------------------*/
202 * Default cache size: available memory divided by the ratio.
204 static unsigned long dm_bufio_default_cache_size
;
207 * Total cache size set by the user.
209 static unsigned long dm_bufio_cache_size
;
212 * A copy of dm_bufio_cache_size because dm_bufio_cache_size can change
213 * at any time. If it disagrees, the user has changed cache size.
215 static unsigned long dm_bufio_cache_size_latch
;
217 static DEFINE_SPINLOCK(param_spinlock
);
220 * Buffers are freed after this timeout
222 static unsigned dm_bufio_max_age
= DM_BUFIO_DEFAULT_AGE_SECS
;
224 static unsigned long dm_bufio_peak_allocated
;
225 static unsigned long dm_bufio_allocated_kmem_cache
;
226 static unsigned long dm_bufio_allocated_get_free_pages
;
227 static unsigned long dm_bufio_allocated_vmalloc
;
228 static unsigned long dm_bufio_current_allocated
;
230 /*----------------------------------------------------------------*/
233 * Per-client cache: dm_bufio_cache_size / dm_bufio_client_count
235 static unsigned long dm_bufio_cache_size_per_client
;
238 * The current number of clients.
240 static int dm_bufio_client_count
;
243 * The list of all clients.
245 static LIST_HEAD(dm_bufio_all_clients
);
248 * This mutex protects dm_bufio_cache_size_latch,
249 * dm_bufio_cache_size_per_client and dm_bufio_client_count
251 static DEFINE_MUTEX(dm_bufio_clients_lock
);
253 /*----------------------------------------------------------------*/
255 static void adjust_total_allocated(enum data_mode data_mode
, long diff
)
257 static unsigned long * const class_ptr
[DATA_MODE_LIMIT
] = {
258 &dm_bufio_allocated_kmem_cache
,
259 &dm_bufio_allocated_get_free_pages
,
260 &dm_bufio_allocated_vmalloc
,
263 spin_lock(¶m_spinlock
);
265 *class_ptr
[data_mode
] += diff
;
267 dm_bufio_current_allocated
+= diff
;
269 if (dm_bufio_current_allocated
> dm_bufio_peak_allocated
)
270 dm_bufio_peak_allocated
= dm_bufio_current_allocated
;
272 spin_unlock(¶m_spinlock
);
276 * Change the number of clients and recalculate per-client limit.
278 static void __cache_size_refresh(void)
280 BUG_ON(!mutex_is_locked(&dm_bufio_clients_lock
));
281 BUG_ON(dm_bufio_client_count
< 0);
283 dm_bufio_cache_size_latch
= dm_bufio_cache_size
;
288 * Use default if set to 0 and report the actual cache size used.
290 if (!dm_bufio_cache_size_latch
) {
291 (void)cmpxchg(&dm_bufio_cache_size
, 0,
292 dm_bufio_default_cache_size
);
293 dm_bufio_cache_size_latch
= dm_bufio_default_cache_size
;
296 dm_bufio_cache_size_per_client
= dm_bufio_cache_size_latch
/
297 (dm_bufio_client_count
? : 1);
301 * Allocating buffer data.
303 * Small buffers are allocated with kmem_cache, to use space optimally.
305 * For large buffers, we choose between get_free_pages and vmalloc.
306 * Each has advantages and disadvantages.
308 * __get_free_pages can randomly fail if the memory is fragmented.
309 * __vmalloc won't randomly fail, but vmalloc space is limited (it may be
310 * as low as 128M) so using it for caching is not appropriate.
312 * If the allocation may fail we use __get_free_pages. Memory fragmentation
313 * won't have a fatal effect here, but it just causes flushes of some other
314 * buffers and more I/O will be performed. Don't use __get_free_pages if it
315 * always fails (i.e. order >= MAX_ORDER).
317 * If the allocation shouldn't fail we use __vmalloc. This is only for the
318 * initial reserve allocation, so there's no risk of wasting all vmalloc
321 static void *alloc_buffer_data(struct dm_bufio_client
*c
, gfp_t gfp_mask
,
322 enum data_mode
*data_mode
)
324 if (c
->block_size
<= DM_BUFIO_BLOCK_SIZE_SLAB_LIMIT
) {
325 *data_mode
= DATA_MODE_SLAB
;
326 return kmem_cache_alloc(DM_BUFIO_CACHE(c
), gfp_mask
);
329 if (c
->block_size
<= DM_BUFIO_BLOCK_SIZE_GFP_LIMIT
&&
330 gfp_mask
& __GFP_NORETRY
) {
331 *data_mode
= DATA_MODE_GET_FREE_PAGES
;
332 return (void *)__get_free_pages(gfp_mask
,
333 c
->pages_per_block_bits
);
336 *data_mode
= DATA_MODE_VMALLOC
;
337 return __vmalloc(c
->block_size
, gfp_mask
, PAGE_KERNEL
);
341 * Free buffer's data.
343 static void free_buffer_data(struct dm_bufio_client
*c
,
344 void *data
, enum data_mode data_mode
)
348 kmem_cache_free(DM_BUFIO_CACHE(c
), data
);
351 case DATA_MODE_GET_FREE_PAGES
:
352 free_pages((unsigned long)data
, c
->pages_per_block_bits
);
355 case DATA_MODE_VMALLOC
:
360 DMCRIT("dm_bufio_free_buffer_data: bad data mode: %d",
367 * Allocate buffer and its data.
369 static struct dm_buffer
*alloc_buffer(struct dm_bufio_client
*c
, gfp_t gfp_mask
)
371 struct dm_buffer
*b
= kmalloc(sizeof(struct dm_buffer
) + c
->aux_size
,
379 b
->data
= alloc_buffer_data(c
, gfp_mask
, &b
->data_mode
);
385 adjust_total_allocated(b
->data_mode
, (long)c
->block_size
);
391 * Free buffer and its data.
393 static void free_buffer(struct dm_buffer
*b
)
395 struct dm_bufio_client
*c
= b
->c
;
397 adjust_total_allocated(b
->data_mode
, -(long)c
->block_size
);
399 free_buffer_data(c
, b
->data
, b
->data_mode
);
404 * Link buffer to the hash list and clean or dirty queue.
406 static void __link_buffer(struct dm_buffer
*b
, sector_t block
, int dirty
)
408 struct dm_bufio_client
*c
= b
->c
;
410 c
->n_buffers
[dirty
]++;
412 b
->list_mode
= dirty
;
413 list_add(&b
->lru_list
, &c
->lru
[dirty
]);
414 hlist_add_head(&b
->hash_list
, &c
->cache_hash
[DM_BUFIO_HASH(block
)]);
415 b
->last_accessed
= jiffies
;
419 * Unlink buffer from the hash list and dirty or clean queue.
421 static void __unlink_buffer(struct dm_buffer
*b
)
423 struct dm_bufio_client
*c
= b
->c
;
425 BUG_ON(!c
->n_buffers
[b
->list_mode
]);
427 c
->n_buffers
[b
->list_mode
]--;
428 hlist_del(&b
->hash_list
);
429 list_del(&b
->lru_list
);
433 * Place the buffer to the head of dirty or clean LRU queue.
435 static void __relink_lru(struct dm_buffer
*b
, int dirty
)
437 struct dm_bufio_client
*c
= b
->c
;
439 BUG_ON(!c
->n_buffers
[b
->list_mode
]);
441 c
->n_buffers
[b
->list_mode
]--;
442 c
->n_buffers
[dirty
]++;
443 b
->list_mode
= dirty
;
444 list_del(&b
->lru_list
);
445 list_add(&b
->lru_list
, &c
->lru
[dirty
]);
448 /*----------------------------------------------------------------
449 * Submit I/O on the buffer.
451 * Bio interface is faster but it has some problems:
452 * the vector list is limited (increasing this limit increases
453 * memory-consumption per buffer, so it is not viable);
455 * the memory must be direct-mapped, not vmalloced;
457 * the I/O driver can reject requests spuriously if it thinks that
458 * the requests are too big for the device or if they cross a
459 * controller-defined memory boundary.
461 * If the buffer is small enough (up to DM_BUFIO_INLINE_VECS pages) and
462 * it is not vmalloced, try using the bio interface.
464 * If the buffer is big, if it is vmalloced or if the underlying device
465 * rejects the bio because it is too large, use dm-io layer to do the I/O.
466 * The dm-io layer splits the I/O into multiple requests, avoiding the above
468 *--------------------------------------------------------------*/
471 * dm-io completion routine. It just calls b->bio.bi_end_io, pretending
472 * that the request was handled directly with bio interface.
474 static void dmio_complete(unsigned long error
, void *context
)
476 struct dm_buffer
*b
= context
;
478 b
->bio
.bi_end_io(&b
->bio
, error
? -EIO
: 0);
481 static void use_dmio(struct dm_buffer
*b
, int rw
, sector_t block
,
482 bio_end_io_t
*end_io
)
485 struct dm_io_request io_req
= {
487 .notify
.fn
= dmio_complete
,
489 .client
= b
->c
->dm_io
,
491 struct dm_io_region region
= {
493 .sector
= block
<< b
->c
->sectors_per_block_bits
,
494 .count
= b
->c
->block_size
>> SECTOR_SHIFT
,
497 if (b
->data_mode
!= DATA_MODE_VMALLOC
) {
498 io_req
.mem
.type
= DM_IO_KMEM
;
499 io_req
.mem
.ptr
.addr
= b
->data
;
501 io_req
.mem
.type
= DM_IO_VMA
;
502 io_req
.mem
.ptr
.vma
= b
->data
;
505 b
->bio
.bi_end_io
= end_io
;
507 r
= dm_io(&io_req
, 1, ®ion
, NULL
);
512 static void use_inline_bio(struct dm_buffer
*b
, int rw
, sector_t block
,
513 bio_end_io_t
*end_io
)
519 b
->bio
.bi_io_vec
= b
->bio_vec
;
520 b
->bio
.bi_max_vecs
= DM_BUFIO_INLINE_VECS
;
521 b
->bio
.bi_sector
= block
<< b
->c
->sectors_per_block_bits
;
522 b
->bio
.bi_bdev
= b
->c
->bdev
;
523 b
->bio
.bi_end_io
= end_io
;
526 * We assume that if len >= PAGE_SIZE ptr is page-aligned.
527 * If len < PAGE_SIZE the buffer doesn't cross page boundary.
530 len
= b
->c
->block_size
;
532 if (len
>= PAGE_SIZE
)
533 BUG_ON((unsigned long)ptr
& (PAGE_SIZE
- 1));
535 BUG_ON((unsigned long)ptr
& (len
- 1));
538 if (!bio_add_page(&b
->bio
, virt_to_page(ptr
),
539 len
< PAGE_SIZE
? len
: PAGE_SIZE
,
540 virt_to_phys(ptr
) & (PAGE_SIZE
- 1))) {
541 BUG_ON(b
->c
->block_size
<= PAGE_SIZE
);
542 use_dmio(b
, rw
, block
, end_io
);
550 submit_bio(rw
, &b
->bio
);
553 static void submit_io(struct dm_buffer
*b
, int rw
, sector_t block
,
554 bio_end_io_t
*end_io
)
556 if (rw
== WRITE
&& b
->c
->write_callback
)
557 b
->c
->write_callback(b
);
559 if (b
->c
->block_size
<= DM_BUFIO_INLINE_VECS
* PAGE_SIZE
&&
560 b
->data_mode
!= DATA_MODE_VMALLOC
)
561 use_inline_bio(b
, rw
, block
, end_io
);
563 use_dmio(b
, rw
, block
, end_io
);
566 /*----------------------------------------------------------------
567 * Writing dirty buffers
568 *--------------------------------------------------------------*/
571 * The endio routine for write.
573 * Set the error, clear B_WRITING bit and wake anyone who was waiting on
576 static void write_endio(struct bio
*bio
, int error
)
578 struct dm_buffer
*b
= container_of(bio
, struct dm_buffer
, bio
);
580 b
->write_error
= error
;
581 if (unlikely(error
)) {
582 struct dm_bufio_client
*c
= b
->c
;
583 (void)cmpxchg(&c
->async_write_error
, 0, error
);
586 BUG_ON(!test_bit(B_WRITING
, &b
->state
));
588 smp_mb__before_clear_bit();
589 clear_bit(B_WRITING
, &b
->state
);
590 smp_mb__after_clear_bit();
592 wake_up_bit(&b
->state
, B_WRITING
);
596 * This function is called when wait_on_bit is actually waiting.
598 static int do_io_schedule(void *word
)
606 * Initiate a write on a dirty buffer, but don't wait for it.
608 * - If the buffer is not dirty, exit.
609 * - If there some previous write going on, wait for it to finish (we can't
610 * have two writes on the same buffer simultaneously).
611 * - Submit our write and don't wait on it. We set B_WRITING indicating
612 * that there is a write in progress.
614 static void __write_dirty_buffer(struct dm_buffer
*b
)
616 if (!test_bit(B_DIRTY
, &b
->state
))
619 clear_bit(B_DIRTY
, &b
->state
);
620 wait_on_bit_lock(&b
->state
, B_WRITING
,
621 do_io_schedule
, TASK_UNINTERRUPTIBLE
);
623 submit_io(b
, WRITE
, b
->block
, write_endio
);
627 * Wait until any activity on the buffer finishes. Possibly write the
628 * buffer if it is dirty. When this function finishes, there is no I/O
629 * running on the buffer and the buffer is not dirty.
631 static void __make_buffer_clean(struct dm_buffer
*b
)
633 BUG_ON(b
->hold_count
);
635 if (!b
->state
) /* fast case */
638 wait_on_bit(&b
->state
, B_READING
, do_io_schedule
, TASK_UNINTERRUPTIBLE
);
639 __write_dirty_buffer(b
);
640 wait_on_bit(&b
->state
, B_WRITING
, do_io_schedule
, TASK_UNINTERRUPTIBLE
);
644 * Find some buffer that is not held by anybody, clean it, unlink it and
647 static struct dm_buffer
*__get_unclaimed_buffer(struct dm_bufio_client
*c
)
651 list_for_each_entry_reverse(b
, &c
->lru
[LIST_CLEAN
], lru_list
) {
652 BUG_ON(test_bit(B_WRITING
, &b
->state
));
653 BUG_ON(test_bit(B_DIRTY
, &b
->state
));
655 if (!b
->hold_count
) {
656 __make_buffer_clean(b
);
660 dm_bufio_cond_resched();
663 list_for_each_entry_reverse(b
, &c
->lru
[LIST_DIRTY
], lru_list
) {
664 BUG_ON(test_bit(B_READING
, &b
->state
));
666 if (!b
->hold_count
) {
667 __make_buffer_clean(b
);
671 dm_bufio_cond_resched();
678 * Wait until some other threads free some buffer or release hold count on
681 * This function is entered with c->lock held, drops it and regains it
684 static void __wait_for_free_buffer(struct dm_bufio_client
*c
)
686 DECLARE_WAITQUEUE(wait
, current
);
688 add_wait_queue(&c
->free_buffer_wait
, &wait
);
689 set_task_state(current
, TASK_UNINTERRUPTIBLE
);
694 set_task_state(current
, TASK_RUNNING
);
695 remove_wait_queue(&c
->free_buffer_wait
, &wait
);
708 * Allocate a new buffer. If the allocation is not possible, wait until
709 * some other thread frees a buffer.
711 * May drop the lock and regain it.
713 static struct dm_buffer
*__alloc_buffer_wait_no_callback(struct dm_bufio_client
*c
, enum new_flag nf
)
718 * dm-bufio is resistant to allocation failures (it just keeps
719 * one buffer reserved in cases all the allocations fail).
720 * So set flags to not try too hard:
721 * GFP_NOIO: don't recurse into the I/O layer
722 * __GFP_NORETRY: don't retry and rather return failure
723 * __GFP_NOMEMALLOC: don't use emergency reserves
724 * __GFP_NOWARN: don't print a warning in case of failure
726 * For debugging, if we set the cache size to 1, no new buffers will
730 if (dm_bufio_cache_size_latch
!= 1) {
731 b
= alloc_buffer(c
, GFP_NOIO
| __GFP_NORETRY
| __GFP_NOMEMALLOC
| __GFP_NOWARN
);
736 if (nf
== NF_PREFETCH
)
739 if (!list_empty(&c
->reserved_buffers
)) {
740 b
= list_entry(c
->reserved_buffers
.next
,
741 struct dm_buffer
, lru_list
);
742 list_del(&b
->lru_list
);
743 c
->need_reserved_buffers
++;
748 b
= __get_unclaimed_buffer(c
);
752 __wait_for_free_buffer(c
);
756 static struct dm_buffer
*__alloc_buffer_wait(struct dm_bufio_client
*c
, enum new_flag nf
)
758 struct dm_buffer
*b
= __alloc_buffer_wait_no_callback(c
, nf
);
763 if (c
->alloc_callback
)
764 c
->alloc_callback(b
);
770 * Free a buffer and wake other threads waiting for free buffers.
772 static void __free_buffer_wake(struct dm_buffer
*b
)
774 struct dm_bufio_client
*c
= b
->c
;
776 if (!c
->need_reserved_buffers
)
779 list_add(&b
->lru_list
, &c
->reserved_buffers
);
780 c
->need_reserved_buffers
--;
783 wake_up(&c
->free_buffer_wait
);
786 static void __write_dirty_buffers_async(struct dm_bufio_client
*c
, int no_wait
)
788 struct dm_buffer
*b
, *tmp
;
790 list_for_each_entry_safe_reverse(b
, tmp
, &c
->lru
[LIST_DIRTY
], lru_list
) {
791 BUG_ON(test_bit(B_READING
, &b
->state
));
793 if (!test_bit(B_DIRTY
, &b
->state
) &&
794 !test_bit(B_WRITING
, &b
->state
)) {
795 __relink_lru(b
, LIST_CLEAN
);
799 if (no_wait
&& test_bit(B_WRITING
, &b
->state
))
802 __write_dirty_buffer(b
);
803 dm_bufio_cond_resched();
808 * Get writeback threshold and buffer limit for a given client.
810 static void __get_memory_limit(struct dm_bufio_client
*c
,
811 unsigned long *threshold_buffers
,
812 unsigned long *limit_buffers
)
814 unsigned long buffers
;
816 if (dm_bufio_cache_size
!= dm_bufio_cache_size_latch
) {
817 mutex_lock(&dm_bufio_clients_lock
);
818 __cache_size_refresh();
819 mutex_unlock(&dm_bufio_clients_lock
);
822 buffers
= dm_bufio_cache_size_per_client
>>
823 (c
->sectors_per_block_bits
+ SECTOR_SHIFT
);
825 if (buffers
< DM_BUFIO_MIN_BUFFERS
)
826 buffers
= DM_BUFIO_MIN_BUFFERS
;
828 *limit_buffers
= buffers
;
829 *threshold_buffers
= buffers
* DM_BUFIO_WRITEBACK_PERCENT
/ 100;
833 * Check if we're over watermark.
834 * If we are over threshold_buffers, start freeing buffers.
835 * If we're over "limit_buffers", block until we get under the limit.
837 static void __check_watermark(struct dm_bufio_client
*c
)
839 unsigned long threshold_buffers
, limit_buffers
;
841 __get_memory_limit(c
, &threshold_buffers
, &limit_buffers
);
843 while (c
->n_buffers
[LIST_CLEAN
] + c
->n_buffers
[LIST_DIRTY
] >
846 struct dm_buffer
*b
= __get_unclaimed_buffer(c
);
851 __free_buffer_wake(b
);
852 dm_bufio_cond_resched();
855 if (c
->n_buffers
[LIST_DIRTY
] > threshold_buffers
)
856 __write_dirty_buffers_async(c
, 1);
860 * Find a buffer in the hash.
862 static struct dm_buffer
*__find(struct dm_bufio_client
*c
, sector_t block
)
865 struct hlist_node
*hn
;
867 hlist_for_each_entry(b
, hn
, &c
->cache_hash
[DM_BUFIO_HASH(block
)],
869 dm_bufio_cond_resched();
870 if (b
->block
== block
)
877 /*----------------------------------------------------------------
879 *--------------------------------------------------------------*/
881 static struct dm_buffer
*__bufio_new(struct dm_bufio_client
*c
, sector_t block
,
882 enum new_flag nf
, int *need_submit
)
884 struct dm_buffer
*b
, *new_b
= NULL
;
888 b
= __find(c
, block
);
895 new_b
= __alloc_buffer_wait(c
, nf
);
900 * We've had a period where the mutex was unlocked, so need to
901 * recheck the hash table.
903 b
= __find(c
, block
);
905 __free_buffer_wake(new_b
);
909 __check_watermark(c
);
915 __link_buffer(b
, block
, LIST_CLEAN
);
917 if (nf
== NF_FRESH
) {
922 b
->state
= 1 << B_READING
;
928 if (nf
== NF_PREFETCH
)
931 * Note: it is essential that we don't wait for the buffer to be
932 * read if dm_bufio_get function is used. Both dm_bufio_get and
933 * dm_bufio_prefetch can be used in the driver request routine.
934 * If the user called both dm_bufio_prefetch and dm_bufio_get on
935 * the same buffer, it would deadlock if we waited.
937 if (nf
== NF_GET
&& unlikely(test_bit(B_READING
, &b
->state
)))
941 __relink_lru(b
, test_bit(B_DIRTY
, &b
->state
) ||
942 test_bit(B_WRITING
, &b
->state
));
947 * The endio routine for reading: set the error, clear the bit and wake up
948 * anyone waiting on the buffer.
950 static void read_endio(struct bio
*bio
, int error
)
952 struct dm_buffer
*b
= container_of(bio
, struct dm_buffer
, bio
);
954 b
->read_error
= error
;
956 BUG_ON(!test_bit(B_READING
, &b
->state
));
958 smp_mb__before_clear_bit();
959 clear_bit(B_READING
, &b
->state
);
960 smp_mb__after_clear_bit();
962 wake_up_bit(&b
->state
, B_READING
);
966 * A common routine for dm_bufio_new and dm_bufio_read. Operation of these
967 * functions is similar except that dm_bufio_new doesn't read the
968 * buffer from the disk (assuming that the caller overwrites all the data
969 * and uses dm_bufio_mark_buffer_dirty to write new data back).
971 static void *new_read(struct dm_bufio_client
*c
, sector_t block
,
972 enum new_flag nf
, struct dm_buffer
**bp
)
978 b
= __bufio_new(c
, block
, nf
, &need_submit
);
985 submit_io(b
, READ
, b
->block
, read_endio
);
987 wait_on_bit(&b
->state
, B_READING
, do_io_schedule
, TASK_UNINTERRUPTIBLE
);
990 int error
= b
->read_error
;
994 return ERR_PTR(error
);
1002 void *dm_bufio_get(struct dm_bufio_client
*c
, sector_t block
,
1003 struct dm_buffer
**bp
)
1005 return new_read(c
, block
, NF_GET
, bp
);
1007 EXPORT_SYMBOL_GPL(dm_bufio_get
);
1009 void *dm_bufio_read(struct dm_bufio_client
*c
, sector_t block
,
1010 struct dm_buffer
**bp
)
1012 BUG_ON(dm_bufio_in_request());
1014 return new_read(c
, block
, NF_READ
, bp
);
1016 EXPORT_SYMBOL_GPL(dm_bufio_read
);
1018 void *dm_bufio_new(struct dm_bufio_client
*c
, sector_t block
,
1019 struct dm_buffer
**bp
)
1021 BUG_ON(dm_bufio_in_request());
1023 return new_read(c
, block
, NF_FRESH
, bp
);
1025 EXPORT_SYMBOL_GPL(dm_bufio_new
);
1027 void dm_bufio_prefetch(struct dm_bufio_client
*c
,
1028 sector_t block
, unsigned n_blocks
)
1030 struct blk_plug plug
;
1032 blk_start_plug(&plug
);
1035 for (; n_blocks
--; block
++) {
1037 struct dm_buffer
*b
;
1038 b
= __bufio_new(c
, block
, NF_PREFETCH
, &need_submit
);
1039 if (unlikely(b
!= NULL
)) {
1043 submit_io(b
, READ
, b
->block
, read_endio
);
1044 dm_bufio_release(b
);
1046 dm_bufio_cond_resched();
1058 blk_finish_plug(&plug
);
1060 EXPORT_SYMBOL_GPL(dm_bufio_prefetch
);
1062 void dm_bufio_release(struct dm_buffer
*b
)
1064 struct dm_bufio_client
*c
= b
->c
;
1068 BUG_ON(!b
->hold_count
);
1071 if (!b
->hold_count
) {
1072 wake_up(&c
->free_buffer_wait
);
1075 * If there were errors on the buffer, and the buffer is not
1076 * to be written, free the buffer. There is no point in caching
1079 if ((b
->read_error
|| b
->write_error
) &&
1080 !test_bit(B_READING
, &b
->state
) &&
1081 !test_bit(B_WRITING
, &b
->state
) &&
1082 !test_bit(B_DIRTY
, &b
->state
)) {
1084 __free_buffer_wake(b
);
1090 EXPORT_SYMBOL_GPL(dm_bufio_release
);
1092 void dm_bufio_mark_buffer_dirty(struct dm_buffer
*b
)
1094 struct dm_bufio_client
*c
= b
->c
;
1098 BUG_ON(test_bit(B_READING
, &b
->state
));
1100 if (!test_and_set_bit(B_DIRTY
, &b
->state
))
1101 __relink_lru(b
, LIST_DIRTY
);
1105 EXPORT_SYMBOL_GPL(dm_bufio_mark_buffer_dirty
);
1107 void dm_bufio_write_dirty_buffers_async(struct dm_bufio_client
*c
)
1109 BUG_ON(dm_bufio_in_request());
1112 __write_dirty_buffers_async(c
, 0);
1115 EXPORT_SYMBOL_GPL(dm_bufio_write_dirty_buffers_async
);
1118 * For performance, it is essential that the buffers are written asynchronously
1119 * and simultaneously (so that the block layer can merge the writes) and then
1122 * Finally, we flush hardware disk cache.
1124 int dm_bufio_write_dirty_buffers(struct dm_bufio_client
*c
)
1127 unsigned long buffers_processed
= 0;
1128 struct dm_buffer
*b
, *tmp
;
1131 __write_dirty_buffers_async(c
, 0);
1134 list_for_each_entry_safe_reverse(b
, tmp
, &c
->lru
[LIST_DIRTY
], lru_list
) {
1135 int dropped_lock
= 0;
1137 if (buffers_processed
< c
->n_buffers
[LIST_DIRTY
])
1138 buffers_processed
++;
1140 BUG_ON(test_bit(B_READING
, &b
->state
));
1142 if (test_bit(B_WRITING
, &b
->state
)) {
1143 if (buffers_processed
< c
->n_buffers
[LIST_DIRTY
]) {
1147 wait_on_bit(&b
->state
, B_WRITING
,
1149 TASK_UNINTERRUPTIBLE
);
1153 wait_on_bit(&b
->state
, B_WRITING
,
1155 TASK_UNINTERRUPTIBLE
);
1158 if (!test_bit(B_DIRTY
, &b
->state
) &&
1159 !test_bit(B_WRITING
, &b
->state
))
1160 __relink_lru(b
, LIST_CLEAN
);
1162 dm_bufio_cond_resched();
1165 * If we dropped the lock, the list is no longer consistent,
1166 * so we must restart the search.
1168 * In the most common case, the buffer just processed is
1169 * relinked to the clean list, so we won't loop scanning the
1170 * same buffer again and again.
1172 * This may livelock if there is another thread simultaneously
1173 * dirtying buffers, so we count the number of buffers walked
1174 * and if it exceeds the total number of buffers, it means that
1175 * someone is doing some writes simultaneously with us. In
1176 * this case, stop, dropping the lock.
1181 wake_up(&c
->free_buffer_wait
);
1184 a
= xchg(&c
->async_write_error
, 0);
1185 f
= dm_bufio_issue_flush(c
);
1191 EXPORT_SYMBOL_GPL(dm_bufio_write_dirty_buffers
);
1194 * Use dm-io to send and empty barrier flush the device.
1196 int dm_bufio_issue_flush(struct dm_bufio_client
*c
)
1198 struct dm_io_request io_req
= {
1200 .mem
.type
= DM_IO_KMEM
,
1201 .mem
.ptr
.addr
= NULL
,
1204 struct dm_io_region io_reg
= {
1210 BUG_ON(dm_bufio_in_request());
1212 return dm_io(&io_req
, 1, &io_reg
, NULL
);
1214 EXPORT_SYMBOL_GPL(dm_bufio_issue_flush
);
1217 * We first delete any other buffer that may be at that new location.
1219 * Then, we write the buffer to the original location if it was dirty.
1221 * Then, if we are the only one who is holding the buffer, relink the buffer
1222 * in the hash queue for the new location.
1224 * If there was someone else holding the buffer, we write it to the new
1225 * location but not relink it, because that other user needs to have the buffer
1226 * at the same place.
1228 void dm_bufio_release_move(struct dm_buffer
*b
, sector_t new_block
)
1230 struct dm_bufio_client
*c
= b
->c
;
1231 struct dm_buffer
*new;
1233 BUG_ON(dm_bufio_in_request());
1238 new = __find(c
, new_block
);
1240 if (new->hold_count
) {
1241 __wait_for_free_buffer(c
);
1246 * FIXME: Is there any point waiting for a write that's going
1247 * to be overwritten in a bit?
1249 __make_buffer_clean(new);
1250 __unlink_buffer(new);
1251 __free_buffer_wake(new);
1254 BUG_ON(!b
->hold_count
);
1255 BUG_ON(test_bit(B_READING
, &b
->state
));
1257 __write_dirty_buffer(b
);
1258 if (b
->hold_count
== 1) {
1259 wait_on_bit(&b
->state
, B_WRITING
,
1260 do_io_schedule
, TASK_UNINTERRUPTIBLE
);
1261 set_bit(B_DIRTY
, &b
->state
);
1263 __link_buffer(b
, new_block
, LIST_DIRTY
);
1266 wait_on_bit_lock(&b
->state
, B_WRITING
,
1267 do_io_schedule
, TASK_UNINTERRUPTIBLE
);
1269 * Relink buffer to "new_block" so that write_callback
1270 * sees "new_block" as a block number.
1271 * After the write, link the buffer back to old_block.
1272 * All this must be done in bufio lock, so that block number
1273 * change isn't visible to other threads.
1275 old_block
= b
->block
;
1277 __link_buffer(b
, new_block
, b
->list_mode
);
1278 submit_io(b
, WRITE
, new_block
, write_endio
);
1279 wait_on_bit(&b
->state
, B_WRITING
,
1280 do_io_schedule
, TASK_UNINTERRUPTIBLE
);
1282 __link_buffer(b
, old_block
, b
->list_mode
);
1286 dm_bufio_release(b
);
1288 EXPORT_SYMBOL_GPL(dm_bufio_release_move
);
1290 unsigned dm_bufio_get_block_size(struct dm_bufio_client
*c
)
1292 return c
->block_size
;
1294 EXPORT_SYMBOL_GPL(dm_bufio_get_block_size
);
1296 sector_t
dm_bufio_get_device_size(struct dm_bufio_client
*c
)
1298 return i_size_read(c
->bdev
->bd_inode
) >>
1299 (SECTOR_SHIFT
+ c
->sectors_per_block_bits
);
1301 EXPORT_SYMBOL_GPL(dm_bufio_get_device_size
);
1303 sector_t
dm_bufio_get_block_number(struct dm_buffer
*b
)
1307 EXPORT_SYMBOL_GPL(dm_bufio_get_block_number
);
1309 void *dm_bufio_get_block_data(struct dm_buffer
*b
)
1313 EXPORT_SYMBOL_GPL(dm_bufio_get_block_data
);
1315 void *dm_bufio_get_aux_data(struct dm_buffer
*b
)
1319 EXPORT_SYMBOL_GPL(dm_bufio_get_aux_data
);
1321 struct dm_bufio_client
*dm_bufio_get_client(struct dm_buffer
*b
)
1325 EXPORT_SYMBOL_GPL(dm_bufio_get_client
);
1327 static void drop_buffers(struct dm_bufio_client
*c
)
1329 struct dm_buffer
*b
;
1332 BUG_ON(dm_bufio_in_request());
1335 * An optimization so that the buffers are not written one-by-one.
1337 dm_bufio_write_dirty_buffers_async(c
);
1341 while ((b
= __get_unclaimed_buffer(c
)))
1342 __free_buffer_wake(b
);
1344 for (i
= 0; i
< LIST_SIZE
; i
++)
1345 list_for_each_entry(b
, &c
->lru
[i
], lru_list
)
1346 DMERR("leaked buffer %llx, hold count %u, list %d",
1347 (unsigned long long)b
->block
, b
->hold_count
, i
);
1349 for (i
= 0; i
< LIST_SIZE
; i
++)
1350 BUG_ON(!list_empty(&c
->lru
[i
]));
1356 * Test if the buffer is unused and too old, and commit it.
1357 * At if noio is set, we must not do any I/O because we hold
1358 * dm_bufio_clients_lock and we would risk deadlock if the I/O gets rerouted to
1359 * different bufio client.
1361 static int __cleanup_old_buffer(struct dm_buffer
*b
, gfp_t gfp
,
1362 unsigned long max_jiffies
)
1364 if (jiffies
- b
->last_accessed
< max_jiffies
)
1367 if (!(gfp
& __GFP_IO
)) {
1368 if (test_bit(B_READING
, &b
->state
) ||
1369 test_bit(B_WRITING
, &b
->state
) ||
1370 test_bit(B_DIRTY
, &b
->state
))
1377 __make_buffer_clean(b
);
1379 __free_buffer_wake(b
);
1384 static void __scan(struct dm_bufio_client
*c
, unsigned long nr_to_scan
,
1385 struct shrink_control
*sc
)
1388 struct dm_buffer
*b
, *tmp
;
1390 for (l
= 0; l
< LIST_SIZE
; l
++) {
1391 list_for_each_entry_safe_reverse(b
, tmp
, &c
->lru
[l
], lru_list
)
1392 if (!__cleanup_old_buffer(b
, sc
->gfp_mask
, 0) &&
1395 dm_bufio_cond_resched();
1399 static int shrink(struct shrinker
*shrinker
, struct shrink_control
*sc
)
1401 struct dm_bufio_client
*c
=
1402 container_of(shrinker
, struct dm_bufio_client
, shrinker
);
1404 unsigned long nr_to_scan
= sc
->nr_to_scan
;
1406 if (sc
->gfp_mask
& __GFP_IO
)
1408 else if (!dm_bufio_trylock(c
))
1409 return !nr_to_scan
? 0 : -1;
1412 __scan(c
, nr_to_scan
, sc
);
1414 r
= c
->n_buffers
[LIST_CLEAN
] + c
->n_buffers
[LIST_DIRTY
];
1424 * Create the buffering interface
1426 struct dm_bufio_client
*dm_bufio_client_create(struct block_device
*bdev
, unsigned block_size
,
1427 unsigned reserved_buffers
, unsigned aux_size
,
1428 void (*alloc_callback
)(struct dm_buffer
*),
1429 void (*write_callback
)(struct dm_buffer
*))
1432 struct dm_bufio_client
*c
;
1435 BUG_ON(block_size
< 1 << SECTOR_SHIFT
||
1436 (block_size
& (block_size
- 1)));
1438 c
= kmalloc(sizeof(*c
), GFP_KERNEL
);
1443 c
->cache_hash
= vmalloc(sizeof(struct hlist_head
) << DM_BUFIO_HASH_BITS
);
1444 if (!c
->cache_hash
) {
1450 c
->block_size
= block_size
;
1451 c
->sectors_per_block_bits
= ffs(block_size
) - 1 - SECTOR_SHIFT
;
1452 c
->pages_per_block_bits
= (ffs(block_size
) - 1 >= PAGE_SHIFT
) ?
1453 ffs(block_size
) - 1 - PAGE_SHIFT
: 0;
1454 c
->blocks_per_page_bits
= (ffs(block_size
) - 1 < PAGE_SHIFT
?
1455 PAGE_SHIFT
- (ffs(block_size
) - 1) : 0);
1457 c
->aux_size
= aux_size
;
1458 c
->alloc_callback
= alloc_callback
;
1459 c
->write_callback
= write_callback
;
1461 for (i
= 0; i
< LIST_SIZE
; i
++) {
1462 INIT_LIST_HEAD(&c
->lru
[i
]);
1463 c
->n_buffers
[i
] = 0;
1466 for (i
= 0; i
< 1 << DM_BUFIO_HASH_BITS
; i
++)
1467 INIT_HLIST_HEAD(&c
->cache_hash
[i
]);
1469 mutex_init(&c
->lock
);
1470 INIT_LIST_HEAD(&c
->reserved_buffers
);
1471 c
->need_reserved_buffers
= reserved_buffers
;
1473 init_waitqueue_head(&c
->free_buffer_wait
);
1474 c
->async_write_error
= 0;
1476 c
->dm_io
= dm_io_client_create();
1477 if (IS_ERR(c
->dm_io
)) {
1478 r
= PTR_ERR(c
->dm_io
);
1482 mutex_lock(&dm_bufio_clients_lock
);
1483 if (c
->blocks_per_page_bits
) {
1484 if (!DM_BUFIO_CACHE_NAME(c
)) {
1485 DM_BUFIO_CACHE_NAME(c
) = kasprintf(GFP_KERNEL
, "dm_bufio_cache-%u", c
->block_size
);
1486 if (!DM_BUFIO_CACHE_NAME(c
)) {
1488 mutex_unlock(&dm_bufio_clients_lock
);
1493 if (!DM_BUFIO_CACHE(c
)) {
1494 DM_BUFIO_CACHE(c
) = kmem_cache_create(DM_BUFIO_CACHE_NAME(c
),
1496 c
->block_size
, 0, NULL
);
1497 if (!DM_BUFIO_CACHE(c
)) {
1499 mutex_unlock(&dm_bufio_clients_lock
);
1504 mutex_unlock(&dm_bufio_clients_lock
);
1506 while (c
->need_reserved_buffers
) {
1507 struct dm_buffer
*b
= alloc_buffer(c
, GFP_KERNEL
);
1513 __free_buffer_wake(b
);
1516 mutex_lock(&dm_bufio_clients_lock
);
1517 dm_bufio_client_count
++;
1518 list_add(&c
->client_list
, &dm_bufio_all_clients
);
1519 __cache_size_refresh();
1520 mutex_unlock(&dm_bufio_clients_lock
);
1522 c
->shrinker
.shrink
= shrink
;
1523 c
->shrinker
.seeks
= 1;
1524 c
->shrinker
.batch
= 0;
1525 register_shrinker(&c
->shrinker
);
1531 while (!list_empty(&c
->reserved_buffers
)) {
1532 struct dm_buffer
*b
= list_entry(c
->reserved_buffers
.next
,
1533 struct dm_buffer
, lru_list
);
1534 list_del(&b
->lru_list
);
1537 dm_io_client_destroy(c
->dm_io
);
1539 vfree(c
->cache_hash
);
1545 EXPORT_SYMBOL_GPL(dm_bufio_client_create
);
1548 * Free the buffering interface.
1549 * It is required that there are no references on any buffers.
1551 void dm_bufio_client_destroy(struct dm_bufio_client
*c
)
1557 unregister_shrinker(&c
->shrinker
);
1559 mutex_lock(&dm_bufio_clients_lock
);
1561 list_del(&c
->client_list
);
1562 dm_bufio_client_count
--;
1563 __cache_size_refresh();
1565 mutex_unlock(&dm_bufio_clients_lock
);
1567 for (i
= 0; i
< 1 << DM_BUFIO_HASH_BITS
; i
++)
1568 BUG_ON(!hlist_empty(&c
->cache_hash
[i
]));
1570 BUG_ON(c
->need_reserved_buffers
);
1572 while (!list_empty(&c
->reserved_buffers
)) {
1573 struct dm_buffer
*b
= list_entry(c
->reserved_buffers
.next
,
1574 struct dm_buffer
, lru_list
);
1575 list_del(&b
->lru_list
);
1579 for (i
= 0; i
< LIST_SIZE
; i
++)
1580 if (c
->n_buffers
[i
])
1581 DMERR("leaked buffer count %d: %ld", i
, c
->n_buffers
[i
]);
1583 for (i
= 0; i
< LIST_SIZE
; i
++)
1584 BUG_ON(c
->n_buffers
[i
]);
1586 dm_io_client_destroy(c
->dm_io
);
1587 vfree(c
->cache_hash
);
1590 EXPORT_SYMBOL_GPL(dm_bufio_client_destroy
);
1592 static void cleanup_old_buffers(void)
1594 unsigned long max_age
= dm_bufio_max_age
;
1595 struct dm_bufio_client
*c
;
1599 if (max_age
> ULONG_MAX
/ HZ
)
1600 max_age
= ULONG_MAX
/ HZ
;
1602 mutex_lock(&dm_bufio_clients_lock
);
1603 list_for_each_entry(c
, &dm_bufio_all_clients
, client_list
) {
1604 if (!dm_bufio_trylock(c
))
1607 while (!list_empty(&c
->lru
[LIST_CLEAN
])) {
1608 struct dm_buffer
*b
;
1609 b
= list_entry(c
->lru
[LIST_CLEAN
].prev
,
1610 struct dm_buffer
, lru_list
);
1611 if (__cleanup_old_buffer(b
, 0, max_age
* HZ
))
1613 dm_bufio_cond_resched();
1617 dm_bufio_cond_resched();
1619 mutex_unlock(&dm_bufio_clients_lock
);
1622 static struct workqueue_struct
*dm_bufio_wq
;
1623 static struct delayed_work dm_bufio_work
;
1625 static void work_fn(struct work_struct
*w
)
1627 cleanup_old_buffers();
1629 queue_delayed_work(dm_bufio_wq
, &dm_bufio_work
,
1630 DM_BUFIO_WORK_TIMER_SECS
* HZ
);
1633 /*----------------------------------------------------------------
1635 *--------------------------------------------------------------*/
1638 * This is called only once for the whole dm_bufio module.
1639 * It initializes memory limit.
1641 static int __init
dm_bufio_init(void)
1645 memset(&dm_bufio_caches
, 0, sizeof dm_bufio_caches
);
1646 memset(&dm_bufio_cache_names
, 0, sizeof dm_bufio_cache_names
);
1648 mem
= (__u64
)((totalram_pages
- totalhigh_pages
) *
1649 DM_BUFIO_MEMORY_PERCENT
/ 100) << PAGE_SHIFT
;
1651 if (mem
> ULONG_MAX
)
1656 * Get the size of vmalloc space the same way as VMALLOC_TOTAL
1657 * in fs/proc/internal.h
1659 if (mem
> (VMALLOC_END
- VMALLOC_START
) * DM_BUFIO_VMALLOC_PERCENT
/ 100)
1660 mem
= (VMALLOC_END
- VMALLOC_START
) * DM_BUFIO_VMALLOC_PERCENT
/ 100;
1663 dm_bufio_default_cache_size
= mem
;
1665 mutex_lock(&dm_bufio_clients_lock
);
1666 __cache_size_refresh();
1667 mutex_unlock(&dm_bufio_clients_lock
);
1669 dm_bufio_wq
= create_singlethread_workqueue("dm_bufio_cache");
1673 INIT_DELAYED_WORK(&dm_bufio_work
, work_fn
);
1674 queue_delayed_work(dm_bufio_wq
, &dm_bufio_work
,
1675 DM_BUFIO_WORK_TIMER_SECS
* HZ
);
1681 * This is called once when unloading the dm_bufio module.
1683 static void __exit
dm_bufio_exit(void)
1688 cancel_delayed_work_sync(&dm_bufio_work
);
1689 destroy_workqueue(dm_bufio_wq
);
1691 for (i
= 0; i
< ARRAY_SIZE(dm_bufio_caches
); i
++) {
1692 struct kmem_cache
*kc
= dm_bufio_caches
[i
];
1695 kmem_cache_destroy(kc
);
1698 for (i
= 0; i
< ARRAY_SIZE(dm_bufio_cache_names
); i
++)
1699 kfree(dm_bufio_cache_names
[i
]);
1701 if (dm_bufio_client_count
) {
1702 DMCRIT("%s: dm_bufio_client_count leaked: %d",
1703 __func__
, dm_bufio_client_count
);
1707 if (dm_bufio_current_allocated
) {
1708 DMCRIT("%s: dm_bufio_current_allocated leaked: %lu",
1709 __func__
, dm_bufio_current_allocated
);
1713 if (dm_bufio_allocated_get_free_pages
) {
1714 DMCRIT("%s: dm_bufio_allocated_get_free_pages leaked: %lu",
1715 __func__
, dm_bufio_allocated_get_free_pages
);
1719 if (dm_bufio_allocated_vmalloc
) {
1720 DMCRIT("%s: dm_bufio_vmalloc leaked: %lu",
1721 __func__
, dm_bufio_allocated_vmalloc
);
1729 module_init(dm_bufio_init
)
1730 module_exit(dm_bufio_exit
)
1732 module_param_named(max_cache_size_bytes
, dm_bufio_cache_size
, ulong
, S_IRUGO
| S_IWUSR
);
1733 MODULE_PARM_DESC(max_cache_size_bytes
, "Size of metadata cache");
1735 module_param_named(max_age_seconds
, dm_bufio_max_age
, uint
, S_IRUGO
| S_IWUSR
);
1736 MODULE_PARM_DESC(max_age_seconds
, "Max age of a buffer in seconds");
1738 module_param_named(peak_allocated_bytes
, dm_bufio_peak_allocated
, ulong
, S_IRUGO
| S_IWUSR
);
1739 MODULE_PARM_DESC(peak_allocated_bytes
, "Tracks the maximum allocated memory");
1741 module_param_named(allocated_kmem_cache_bytes
, dm_bufio_allocated_kmem_cache
, ulong
, S_IRUGO
);
1742 MODULE_PARM_DESC(allocated_kmem_cache_bytes
, "Memory allocated with kmem_cache_alloc");
1744 module_param_named(allocated_get_free_pages_bytes
, dm_bufio_allocated_get_free_pages
, ulong
, S_IRUGO
);
1745 MODULE_PARM_DESC(allocated_get_free_pages_bytes
, "Memory allocated with get_free_pages");
1747 module_param_named(allocated_vmalloc_bytes
, dm_bufio_allocated_vmalloc
, ulong
, S_IRUGO
);
1748 MODULE_PARM_DESC(allocated_vmalloc_bytes
, "Memory allocated with vmalloc");
1750 module_param_named(current_allocated_bytes
, dm_bufio_current_allocated
, ulong
, S_IRUGO
);
1751 MODULE_PARM_DESC(current_allocated_bytes
, "Memory currently used by the cache");
1753 MODULE_AUTHOR("Mikulas Patocka <dm-devel@redhat.com>");
1754 MODULE_DESCRIPTION(DM_NAME
" buffered I/O library");
1755 MODULE_LICENSE("GPL");