5 #include <linux/blkdev.h>
6 #include <linux/errno.h>
7 #include <linux/blkdev.h>
8 #include <linux/kernel.h>
9 #include <linux/llist.h>
10 #include <linux/ratelimit.h>
11 #include <linux/vmalloc.h>
12 #include <linux/workqueue.h>
16 #define PAGE_SECTORS (PAGE_SIZE / 512)
20 #ifdef CONFIG_BCACHE_DEBUG
22 #define EBUG_ON(cond) BUG_ON(cond)
23 #define atomic_dec_bug(v) BUG_ON(atomic_dec_return(v) < 0)
24 #define atomic_inc_bug(v, i) BUG_ON(atomic_inc_return(v) <= i)
28 #define EBUG_ON(cond) do { if (cond); } while (0)
29 #define atomic_dec_bug(v) atomic_dec(v)
30 #define atomic_inc_bug(v, i) atomic_inc(v)
34 #define DECLARE_HEAP(type, name) \
40 #define init_heap(heap, _size, gfp) \
44 (heap)->size = (_size); \
45 _bytes = (heap)->size * sizeof(*(heap)->data); \
46 (heap)->data = NULL; \
47 if (_bytes < KMALLOC_MAX_SIZE) \
48 (heap)->data = kmalloc(_bytes, (gfp)); \
49 if ((!(heap)->data) && ((gfp) & GFP_KERNEL)) \
50 (heap)->data = vmalloc(_bytes); \
54 #define free_heap(heap) \
56 kvfree((heap)->data); \
57 (heap)->data = NULL; \
60 #define heap_swap(h, i, j) swap((h)->data[i], (h)->data[j])
62 #define heap_sift(h, i, cmp) \
66 for (; _j * 2 + 1 < (h)->used; _j = _r) { \
68 if (_r + 1 < (h)->used && \
69 cmp((h)->data[_r], (h)->data[_r + 1])) \
72 if (cmp((h)->data[_r], (h)->data[_j])) \
74 heap_swap(h, _r, _j); \
78 #define heap_sift_down(h, i, cmp) \
81 size_t p = (i - 1) / 2; \
82 if (cmp((h)->data[i], (h)->data[p])) \
89 #define heap_add(h, d, cmp) \
91 bool _r = !heap_full(h); \
93 size_t _i = (h)->used++; \
96 heap_sift_down(h, _i, cmp); \
97 heap_sift(h, _i, cmp); \
102 #define heap_pop(h, d, cmp) \
104 bool _r = (h)->used; \
106 (d) = (h)->data[0]; \
108 heap_swap(h, 0, (h)->used); \
109 heap_sift(h, 0, cmp); \
114 #define heap_peek(h) ((h)->used ? (h)->data[0] : NULL)
116 #define heap_full(h) ((h)->used == (h)->size)
118 #define DECLARE_FIFO(type, name) \
120 size_t front, back, size, mask; \
124 #define fifo_for_each(c, fifo, iter) \
125 for (iter = (fifo)->front; \
126 c = (fifo)->data[iter], iter != (fifo)->back; \
127 iter = (iter + 1) & (fifo)->mask)
129 #define __init_fifo(fifo, gfp) \
131 size_t _allocated_size, _bytes; \
132 BUG_ON(!(fifo)->size); \
134 _allocated_size = roundup_pow_of_two((fifo)->size + 1); \
135 _bytes = _allocated_size * sizeof(*(fifo)->data); \
137 (fifo)->mask = _allocated_size - 1; \
138 (fifo)->front = (fifo)->back = 0; \
139 (fifo)->data = NULL; \
141 if (_bytes < KMALLOC_MAX_SIZE) \
142 (fifo)->data = kmalloc(_bytes, (gfp)); \
143 if ((!(fifo)->data) && ((gfp) & GFP_KERNEL)) \
144 (fifo)->data = vmalloc(_bytes); \
148 #define init_fifo_exact(fifo, _size, gfp) \
150 (fifo)->size = (_size); \
151 __init_fifo(fifo, gfp); \
154 #define init_fifo(fifo, _size, gfp) \
156 (fifo)->size = (_size); \
157 if ((fifo)->size > 4) \
158 (fifo)->size = roundup_pow_of_two((fifo)->size) - 1; \
159 __init_fifo(fifo, gfp); \
162 #define free_fifo(fifo) \
164 kvfree((fifo)->data); \
165 (fifo)->data = NULL; \
168 #define fifo_used(fifo) (((fifo)->back - (fifo)->front) & (fifo)->mask)
169 #define fifo_free(fifo) ((fifo)->size - fifo_used(fifo))
171 #define fifo_empty(fifo) (!fifo_used(fifo))
172 #define fifo_full(fifo) (!fifo_free(fifo))
174 #define fifo_front(fifo) ((fifo)->data[(fifo)->front])
175 #define fifo_back(fifo) \
176 ((fifo)->data[((fifo)->back - 1) & (fifo)->mask])
178 #define fifo_idx(fifo, p) (((p) - &fifo_front(fifo)) & (fifo)->mask)
180 #define fifo_push_back(fifo, i) \
182 bool _r = !fifo_full((fifo)); \
184 (fifo)->data[(fifo)->back++] = (i); \
185 (fifo)->back &= (fifo)->mask; \
190 #define fifo_pop_front(fifo, i) \
192 bool _r = !fifo_empty((fifo)); \
194 (i) = (fifo)->data[(fifo)->front++]; \
195 (fifo)->front &= (fifo)->mask; \
200 #define fifo_push_front(fifo, i) \
202 bool _r = !fifo_full((fifo)); \
205 (fifo)->front &= (fifo)->mask; \
206 (fifo)->data[(fifo)->front] = (i); \
211 #define fifo_pop_back(fifo, i) \
213 bool _r = !fifo_empty((fifo)); \
216 (fifo)->back &= (fifo)->mask; \
217 (i) = (fifo)->data[(fifo)->back] \
222 #define fifo_push(fifo, i) fifo_push_back(fifo, (i))
223 #define fifo_pop(fifo, i) fifo_pop_front(fifo, (i))
225 #define fifo_swap(l, r) \
227 swap((l)->front, (r)->front); \
228 swap((l)->back, (r)->back); \
229 swap((l)->size, (r)->size); \
230 swap((l)->mask, (r)->mask); \
231 swap((l)->data, (r)->data); \
234 #define fifo_move(dest, src) \
236 typeof(*((dest)->data)) _t; \
237 while (!fifo_full(dest) && \
239 fifo_push(dest, _t); \
243 * Simple array based allocator - preallocates a number of elements and you can
244 * never allocate more than that, also has no locking.
246 * Handy because if you know you only need a fixed number of elements you don't
247 * have to worry about memory allocation failure, and sometimes a mempool isn't
250 * We treat the free elements as entries in a singly linked list, and the
251 * freelist as a stack - allocating and freeing push and pop off the freelist.
254 #define DECLARE_ARRAY_ALLOCATOR(type, name, size) \
260 #define array_alloc(array) \
262 typeof((array)->freelist) _ret = (array)->freelist; \
265 (array)->freelist = *((typeof((array)->freelist) *) _ret);\
270 #define array_free(array, ptr) \
272 typeof((array)->freelist) _ptr = ptr; \
274 *((typeof((array)->freelist) *) _ptr) = (array)->freelist; \
275 (array)->freelist = _ptr; \
278 #define array_allocator_init(array) \
280 typeof((array)->freelist) _i; \
282 BUILD_BUG_ON(sizeof((array)->data[0]) < sizeof(void *)); \
283 (array)->freelist = NULL; \
285 for (_i = (array)->data; \
286 _i < (array)->data + ARRAY_SIZE((array)->data); \
288 array_free(array, _i); \
291 #define array_freelist_empty(array) ((array)->freelist == NULL)
293 #define ANYSINT_MAX(t) \
294 ((((t) 1 << (sizeof(t) * 8 - 2)) - (t) 1) * (t) 2 + (t) 1)
296 int bch_strtoint_h(const char *, int *);
297 int bch_strtouint_h(const char *, unsigned int *);
298 int bch_strtoll_h(const char *, long long *);
299 int bch_strtoull_h(const char *, unsigned long long *);
301 static inline int bch_strtol_h(const char *cp
, long *res
)
303 #if BITS_PER_LONG == 32
304 return bch_strtoint_h(cp
, (int *) res
);
306 return bch_strtoll_h(cp
, (long long *) res
);
310 static inline int bch_strtoul_h(const char *cp
, long *res
)
312 #if BITS_PER_LONG == 32
313 return bch_strtouint_h(cp
, (unsigned int *) res
);
315 return bch_strtoull_h(cp
, (unsigned long long *) res
);
319 #define strtoi_h(cp, res) \
320 (__builtin_types_compatible_p(typeof(*res), int) \
321 ? bch_strtoint_h(cp, (void *) res) \
322 : __builtin_types_compatible_p(typeof(*res), long) \
323 ? bch_strtol_h(cp, (void *) res) \
324 : __builtin_types_compatible_p(typeof(*res), long long) \
325 ? bch_strtoll_h(cp, (void *) res) \
326 : __builtin_types_compatible_p(typeof(*res), unsigned int) \
327 ? bch_strtouint_h(cp, (void *) res) \
328 : __builtin_types_compatible_p(typeof(*res), unsigned long) \
329 ? bch_strtoul_h(cp, (void *) res) \
330 : __builtin_types_compatible_p(typeof(*res), unsigned long long)\
331 ? bch_strtoull_h(cp, (void *) res) : -EINVAL)
333 #define strtoul_safe(cp, var) \
336 int _r = kstrtoul(cp, 10, &_v); \
342 #define strtoul_safe_clamp(cp, var, min, max) \
345 int _r = kstrtoul(cp, 10, &_v); \
347 var = clamp_t(typeof(var), _v, min, max); \
351 #define snprint(buf, size, var) \
352 snprintf(buf, size, \
353 __builtin_types_compatible_p(typeof(var), int) \
355 __builtin_types_compatible_p(typeof(var), unsigned) \
357 __builtin_types_compatible_p(typeof(var), long) \
359 __builtin_types_compatible_p(typeof(var), unsigned long)\
361 __builtin_types_compatible_p(typeof(var), int64_t) \
363 __builtin_types_compatible_p(typeof(var), uint64_t) \
365 __builtin_types_compatible_p(typeof(var), const char *) \
366 ? "%s\n" : "%i\n", var)
368 ssize_t
bch_hprint(char *buf
, int64_t v
);
370 bool bch_is_zero(const char *p
, size_t n
);
371 int bch_parse_uuid(const char *s
, char *uuid
);
373 ssize_t
bch_snprint_string_list(char *buf
, size_t size
, const char * const list
[],
376 ssize_t
bch_read_string_list(const char *buf
, const char * const list
[]);
381 * all fields are in nanoseconds, averages are ewmas stored left shifted
384 uint64_t max_duration
;
385 uint64_t average_duration
;
386 uint64_t average_frequency
;
390 void bch_time_stats_update(struct time_stats
*stats
, uint64_t time
);
392 static inline unsigned local_clock_us(void)
394 return local_clock() >> 10;
397 #define NSEC_PER_ns 1L
398 #define NSEC_PER_us NSEC_PER_USEC
399 #define NSEC_PER_ms NSEC_PER_MSEC
400 #define NSEC_PER_sec NSEC_PER_SEC
402 #define __print_time_stat(stats, name, stat, units) \
403 sysfs_print(name ## _ ## stat ## _ ## units, \
404 div_u64((stats)->stat >> 8, NSEC_PER_ ## units))
406 #define sysfs_print_time_stats(stats, name, \
410 __print_time_stat(stats, name, \
411 average_frequency, frequency_units); \
412 __print_time_stat(stats, name, \
413 average_duration, duration_units); \
414 sysfs_print(name ## _ ##max_duration ## _ ## duration_units, \
415 div_u64((stats)->max_duration, NSEC_PER_ ## duration_units));\
417 sysfs_print(name ## _last_ ## frequency_units, (stats)->last \
418 ? div_s64(local_clock() - (stats)->last, \
419 NSEC_PER_ ## frequency_units) \
423 #define sysfs_time_stats_attribute(name, \
426 read_attribute(name ## _average_frequency_ ## frequency_units); \
427 read_attribute(name ## _average_duration_ ## duration_units); \
428 read_attribute(name ## _max_duration_ ## duration_units); \
429 read_attribute(name ## _last_ ## frequency_units)
431 #define sysfs_time_stats_attribute_list(name, \
434 &sysfs_ ## name ## _average_frequency_ ## frequency_units, \
435 &sysfs_ ## name ## _average_duration_ ## duration_units, \
436 &sysfs_ ## name ## _max_duration_ ## duration_units, \
437 &sysfs_ ## name ## _last_ ## frequency_units,
439 #define ewma_add(ewma, val, weight, factor) \
441 (ewma) *= (weight) - 1; \
442 (ewma) += (val) << factor; \
443 (ewma) /= (weight); \
447 struct bch_ratelimit
{
448 /* Next time we want to do some work, in nanoseconds */
452 * Rate at which we want to do work, in units per nanosecond
453 * The units here correspond to the units passed to bch_next_delay()
458 static inline void bch_ratelimit_reset(struct bch_ratelimit
*d
)
460 d
->next
= local_clock();
463 uint64_t bch_next_delay(struct bch_ratelimit
*d
, uint64_t done
);
465 #define __DIV_SAFE(n, d, zero) \
467 typeof(n) _n = (n); \
468 typeof(d) _d = (d); \
469 _d ? _n / _d : zero; \
472 #define DIV_SAFE(n, d) __DIV_SAFE(n, d, 0)
474 #define container_of_or_null(ptr, type, member) \
476 typeof(ptr) _ptr = ptr; \
477 _ptr ? container_of(_ptr, type, member) : NULL; \
480 #define RB_INSERT(root, new, member, cmp) \
483 struct rb_node **n = &(root)->rb_node, *parent = NULL; \
489 this = container_of(*n, typeof(*(new)), member); \
490 res = cmp(new, this); \
498 rb_link_node(&(new)->member, parent, n); \
499 rb_insert_color(&(new)->member, root); \
505 #define RB_SEARCH(root, search, member, cmp) \
507 struct rb_node *n = (root)->rb_node; \
508 typeof(&(search)) this, ret = NULL; \
512 this = container_of(n, typeof(search), member); \
513 res = cmp(&(search), this); \
525 #define RB_GREATER(root, search, member, cmp) \
527 struct rb_node *n = (root)->rb_node; \
528 typeof(&(search)) this, ret = NULL; \
532 this = container_of(n, typeof(search), member); \
533 res = cmp(&(search), this); \
543 #define RB_FIRST(root, type, member) \
544 container_of_or_null(rb_first(root), type, member)
546 #define RB_LAST(root, type, member) \
547 container_of_or_null(rb_last(root), type, member)
549 #define RB_NEXT(ptr, member) \
550 container_of_or_null(rb_next(&(ptr)->member), typeof(*ptr), member)
552 #define RB_PREV(ptr, member) \
553 container_of_or_null(rb_prev(&(ptr)->member), typeof(*ptr), member)
555 /* Does linear interpolation between powers of two */
556 static inline unsigned fract_exp_two(unsigned x
, unsigned fract_bits
)
558 unsigned fract
= x
& ~(~0 << fract_bits
);
562 x
+= (x
* fract
) >> fract_bits
;
567 void bch_bio_map(struct bio
*bio
, void *base
);
569 static inline sector_t
bdev_sectors(struct block_device
*bdev
)
571 return bdev
->bd_inode
->i_size
>> 9;
574 #define closure_bio_submit(bio, cl) \
577 generic_make_request(bio); \
580 uint64_t bch_crc64_update(uint64_t, const void *, size_t);
581 uint64_t bch_crc64(const void *, size_t);
583 #endif /* _BCACHE_UTIL_H */