1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29#include <linux/kernel.h>
30#include <linux/module.h>
31
32#include <linux/hash.h>
33#include <linux/fs.h>
34#include <linux/mm.h>
35#include <linux/slab.h>
36#include <linux/sched.h>
37#include <linux/init.h>
38#include <linux/mbcache.h>
39
40
41#ifdef MB_CACHE_DEBUG
42# define mb_debug(f...) do { \
43 printk(KERN_DEBUG f); \
44 printk("\n"); \
45 } while (0)
46#define mb_assert(c) do { if (!(c)) \
47 printk(KERN_ERR "assertion " #c " failed\n"); \
48 } while(0)
49#else
50# define mb_debug(f...) do { } while(0)
51# define mb_assert(c) do { } while(0)
52#endif
53#define mb_error(f...) do { \
54 printk(KERN_ERR f); \
55 printk("\n"); \
56 } while(0)
57
58MODULE_AUTHOR("Andreas Gruenbacher <a.gruenbacher@computer.org>");
59MODULE_DESCRIPTION("Meta block cache (for extended attributes)");
60MODULE_LICENSE("GPL");
61
62EXPORT_SYMBOL(mb_cache_create);
63EXPORT_SYMBOL(mb_cache_shrink);
64EXPORT_SYMBOL(mb_cache_destroy);
65EXPORT_SYMBOL(mb_cache_entry_alloc);
66EXPORT_SYMBOL(mb_cache_entry_insert);
67EXPORT_SYMBOL(mb_cache_entry_release);
68EXPORT_SYMBOL(mb_cache_entry_takeout);
69EXPORT_SYMBOL(mb_cache_entry_free);
70EXPORT_SYMBOL(mb_cache_entry_dup);
71EXPORT_SYMBOL(mb_cache_entry_get);
72#if !defined(MB_CACHE_INDEXES_COUNT) || (MB_CACHE_INDEXES_COUNT > 0)
73EXPORT_SYMBOL(mb_cache_entry_find_first);
74EXPORT_SYMBOL(mb_cache_entry_find_next);
75#endif
76
77
78
79
80
81
82
83
84static LIST_HEAD(mb_cache_list);
85static LIST_HEAD(mb_cache_lru_list);
86static spinlock_t mb_cache_spinlock = SPIN_LOCK_UNLOCKED;
87static struct shrinker *mb_shrinker;
88
89static inline int
90mb_cache_indexes(struct mb_cache *cache)
91{
92#ifdef MB_CACHE_INDEXES_COUNT
93 return MB_CACHE_INDEXES_COUNT;
94#else
95 return cache->c_indexes_count;
96#endif
97}
98
99
100
101
102
103static int mb_cache_shrink_fn(int nr_to_scan, unsigned int gfp_mask);
104
105
106static inline int
107__mb_cache_entry_is_hashed(struct mb_cache_entry *ce)
108{
109 return !list_empty(&ce->e_block_list);
110}
111
112
113static inline void
114__mb_cache_entry_unhash(struct mb_cache_entry *ce)
115{
116 int n;
117
118 if (__mb_cache_entry_is_hashed(ce)) {
119 list_del_init(&ce->e_block_list);
120 for (n=0; n<mb_cache_indexes(ce->e_cache); n++)
121 list_del(&ce->e_indexes[n].o_list);
122 }
123}
124
125
126static inline void
127__mb_cache_entry_forget(struct mb_cache_entry *ce, int gfp_mask)
128{
129 struct mb_cache *cache = ce->e_cache;
130
131 mb_assert(atomic_read(&ce->e_used) == 0);
132 if (cache->c_op.free && cache->c_op.free(ce, gfp_mask)) {
133
134
135 spin_lock(&mb_cache_spinlock);
136 list_add(&ce->e_lru_list, &mb_cache_lru_list);
137 spin_unlock(&mb_cache_spinlock);
138 } else {
139 kmem_cache_free(cache->c_entry_cache, ce);
140 atomic_dec(&cache->c_entry_count);
141 }
142}
143
144
145static inline void
146__mb_cache_entry_release_unlock(struct mb_cache_entry *ce)
147{
148 if (atomic_dec_and_test(&ce->e_used)) {
149 if (!__mb_cache_entry_is_hashed(ce))
150 goto forget;
151 list_add_tail(&ce->e_lru_list, &mb_cache_lru_list);
152 }
153 spin_unlock(&mb_cache_spinlock);
154 return;
155forget:
156 spin_unlock(&mb_cache_spinlock);
157 __mb_cache_entry_forget(ce, GFP_KERNEL);
158}
159
160
161
162
163
164
165
166
167
168
169
170
171
172static int
173mb_cache_shrink_fn(int nr_to_scan, unsigned int gfp_mask)
174{
175 LIST_HEAD(free_list);
176 struct list_head *l, *ltmp;
177 int count = 0;
178
179 spin_lock(&mb_cache_spinlock);
180 list_for_each(l, &mb_cache_list) {
181 struct mb_cache *cache =
182 list_entry(l, struct mb_cache, c_cache_list);
183 mb_debug("cache %s (%d)", cache->c_name,
184 atomic_read(&cache->c_entry_count));
185 count += atomic_read(&cache->c_entry_count);
186 }
187 mb_debug("trying to free %d entries", nr_to_scan);
188 if (nr_to_scan == 0) {
189 spin_unlock(&mb_cache_spinlock);
190 goto out;
191 }
192 while (nr_to_scan-- && !list_empty(&mb_cache_lru_list)) {
193 struct mb_cache_entry *ce =
194 list_entry(mb_cache_lru_list.next,
195 struct mb_cache_entry, e_lru_list);
196 list_move_tail(&ce->e_lru_list, &free_list);
197 __mb_cache_entry_unhash(ce);
198 }
199 spin_unlock(&mb_cache_spinlock);
200 list_for_each_safe(l, ltmp, &free_list) {
201 __mb_cache_entry_forget(list_entry(l, struct mb_cache_entry,
202 e_lru_list), gfp_mask);
203 }
204out:
205 return count;
206}
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226struct mb_cache *
227mb_cache_create(const char *name, struct mb_cache_op *cache_op,
228 size_t entry_size, int indexes_count, int bucket_bits)
229{
230 int m=0, n, bucket_count = 1 << bucket_bits;
231 struct mb_cache *cache = NULL;
232
233 if(entry_size < sizeof(struct mb_cache_entry) +
234 indexes_count * sizeof(struct mb_cache_entry_index))
235 return NULL;
236
237 cache = kmalloc(sizeof(struct mb_cache) +
238 indexes_count * sizeof(struct list_head), GFP_KERNEL);
239 if (!cache)
240 goto fail;
241 cache->c_name = name;
242 cache->c_op.free = NULL;
243 if (cache_op)
244 cache->c_op.free = cache_op->free;
245 atomic_set(&cache->c_entry_count, 0);
246 cache->c_bucket_bits = bucket_bits;
247#ifdef MB_CACHE_INDEXES_COUNT
248 mb_assert(indexes_count == MB_CACHE_INDEXES_COUNT);
249#else
250 cache->c_indexes_count = indexes_count;
251#endif
252 cache->c_block_hash = kmalloc(bucket_count * sizeof(struct list_head),
253 GFP_KERNEL);
254 if (!cache->c_block_hash)
255 goto fail;
256 for (n=0; n<bucket_count; n++)
257 INIT_LIST_HEAD(&cache->c_block_hash[n]);
258 for (m=0; m<indexes_count; m++) {
259 cache->c_indexes_hash[m] = kmalloc(bucket_count *
260 sizeof(struct list_head),
261 GFP_KERNEL);
262 if (!cache->c_indexes_hash[m])
263 goto fail;
264 for (n=0; n<bucket_count; n++)
265 INIT_LIST_HEAD(&cache->c_indexes_hash[m][n]);
266 }
267 cache->c_entry_cache = kmem_cache_create(name, entry_size, 0,
268 SLAB_RECLAIM_ACCOUNT, NULL, NULL);
269 if (!cache->c_entry_cache)
270 goto fail;
271
272 spin_lock(&mb_cache_spinlock);
273 list_add(&cache->c_cache_list, &mb_cache_list);
274 spin_unlock(&mb_cache_spinlock);
275 return cache;
276
277fail:
278 if (cache) {
279 while (--m >= 0)
280 kfree(cache->c_indexes_hash[m]);
281 if (cache->c_block_hash)
282 kfree(cache->c_block_hash);
283 kfree(cache);
284 }
285 return NULL;
286}
287
288
289
290
291
292
293
294
295
296
297
298
299void
300mb_cache_shrink(struct mb_cache *cache, struct block_device *bdev)
301{
302 LIST_HEAD(free_list);
303 struct list_head *l, *ltmp;
304
305 spin_lock(&mb_cache_spinlock);
306 list_for_each_safe(l, ltmp, &mb_cache_lru_list) {
307 struct mb_cache_entry *ce =
308 list_entry(l, struct mb_cache_entry, e_lru_list);
309 if (ce->e_bdev == bdev) {
310 list_move_tail(&ce->e_lru_list, &free_list);
311 __mb_cache_entry_unhash(ce);
312 }
313 }
314 spin_unlock(&mb_cache_spinlock);
315 list_for_each_safe(l, ltmp, &free_list) {
316 __mb_cache_entry_forget(list_entry(l, struct mb_cache_entry,
317 e_lru_list), GFP_KERNEL);
318 }
319}
320
321
322
323
324
325
326
327
328
329void
330mb_cache_destroy(struct mb_cache *cache)
331{
332 LIST_HEAD(free_list);
333 struct list_head *l, *ltmp;
334 int n;
335
336 spin_lock(&mb_cache_spinlock);
337 list_for_each_safe(l, ltmp, &mb_cache_lru_list) {
338 struct mb_cache_entry *ce =
339 list_entry(l, struct mb_cache_entry, e_lru_list);
340 if (ce->e_cache == cache) {
341 list_move_tail(&ce->e_lru_list, &free_list);
342 __mb_cache_entry_unhash(ce);
343 }
344 }
345 list_del(&cache->c_cache_list);
346 spin_unlock(&mb_cache_spinlock);
347
348 list_for_each_safe(l, ltmp, &free_list) {
349 __mb_cache_entry_forget(list_entry(l, struct mb_cache_entry,
350 e_lru_list), GFP_KERNEL);
351 }
352
353 if (atomic_read(&cache->c_entry_count) > 0) {
354 mb_error("cache %s: %d orphaned entries",
355 cache->c_name,
356 atomic_read(&cache->c_entry_count));
357 }
358
359 kmem_cache_destroy(cache->c_entry_cache);
360
361 for (n=0; n < mb_cache_indexes(cache); n++)
362 kfree(cache->c_indexes_hash[n]);
363 kfree(cache->c_block_hash);
364 kfree(cache);
365}
366
367
368
369
370
371
372
373
374
375
376struct mb_cache_entry *
377mb_cache_entry_alloc(struct mb_cache *cache)
378{
379 struct mb_cache_entry *ce;
380
381 atomic_inc(&cache->c_entry_count);
382 ce = kmem_cache_alloc(cache->c_entry_cache, GFP_KERNEL);
383 if (ce) {
384 INIT_LIST_HEAD(&ce->e_lru_list);
385 INIT_LIST_HEAD(&ce->e_block_list);
386 ce->e_cache = cache;
387 atomic_set(&ce->e_used, 1);
388 }
389 return ce;
390}
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408int
409mb_cache_entry_insert(struct mb_cache_entry *ce, struct block_device *bdev,
410 sector_t block, unsigned int keys[])
411{
412 struct mb_cache *cache = ce->e_cache;
413 unsigned int bucket;
414 struct list_head *l;
415 int error = -EBUSY, n;
416
417 bucket = hash_long((unsigned long)bdev + (block & 0xffffffff),
418 cache->c_bucket_bits);
419 spin_lock(&mb_cache_spinlock);
420 list_for_each_prev(l, &cache->c_block_hash[bucket]) {
421 struct mb_cache_entry *ce =
422 list_entry(l, struct mb_cache_entry, e_block_list);
423 if (ce->e_bdev == bdev && ce->e_block == block)
424 goto out;
425 }
426 __mb_cache_entry_unhash(ce);
427 ce->e_bdev = bdev;
428 ce->e_block = block;
429 list_add(&ce->e_block_list, &cache->c_block_hash[bucket]);
430 for (n=0; n<mb_cache_indexes(cache); n++) {
431 ce->e_indexes[n].o_key = keys[n];
432 bucket = hash_long(keys[n], cache->c_bucket_bits);
433 list_add(&ce->e_indexes[n].o_list,
434 &cache->c_indexes_hash[n][bucket]);
435 }
436 error = 0;
437out:
438 spin_unlock(&mb_cache_spinlock);
439 return error;
440}
441
442
443
444
445
446
447
448
449
450void
451mb_cache_entry_release(struct mb_cache_entry *ce)
452{
453 spin_lock(&mb_cache_spinlock);
454 __mb_cache_entry_release_unlock(ce);
455}
456
457
458
459
460
461
462
463
464
465void
466mb_cache_entry_takeout(struct mb_cache_entry *ce)
467{
468 spin_lock(&mb_cache_spinlock);
469 mb_assert(list_empty(&ce->e_lru_list));
470 __mb_cache_entry_unhash(ce);
471 spin_unlock(&mb_cache_spinlock);
472}
473
474
475
476
477
478
479
480
481void
482mb_cache_entry_free(struct mb_cache_entry *ce)
483{
484 spin_lock(&mb_cache_spinlock);
485 mb_assert(list_empty(&ce->e_lru_list));
486 __mb_cache_entry_unhash(ce);
487 __mb_cache_entry_release_unlock(ce);
488}
489
490
491
492
493
494
495
496
497struct mb_cache_entry *
498mb_cache_entry_dup(struct mb_cache_entry *ce)
499{
500 atomic_inc(&ce->e_used);
501 return ce;
502}
503
504
505
506
507
508
509
510
511
512struct mb_cache_entry *
513mb_cache_entry_get(struct mb_cache *cache, struct block_device *bdev,
514 sector_t block)
515{
516 unsigned int bucket;
517 struct list_head *l;
518 struct mb_cache_entry *ce;
519
520 bucket = hash_long((unsigned long)bdev + (block & 0xffffffff),
521 cache->c_bucket_bits);
522 spin_lock(&mb_cache_spinlock);
523 list_for_each(l, &cache->c_block_hash[bucket]) {
524 ce = list_entry(l, struct mb_cache_entry, e_block_list);
525 if (ce->e_bdev == bdev && ce->e_block == block) {
526 if (!list_empty(&ce->e_lru_list))
527 list_del_init(&ce->e_lru_list);
528 atomic_inc(&ce->e_used);
529 goto cleanup;
530 }
531 }
532 ce = NULL;
533
534cleanup:
535 spin_unlock(&mb_cache_spinlock);
536 return ce;
537}
538
539#if !defined(MB_CACHE_INDEXES_COUNT) || (MB_CACHE_INDEXES_COUNT > 0)
540
541static struct mb_cache_entry *
542__mb_cache_entry_find(struct list_head *l, struct list_head *head,
543 int index, struct block_device *bdev, unsigned int key)
544{
545 while (l != head) {
546 struct mb_cache_entry *ce =
547 list_entry(l, struct mb_cache_entry,
548 e_indexes[index].o_list);
549 if (ce->e_bdev == bdev && ce->e_indexes[index].o_key == key) {
550 if (!list_empty(&ce->e_lru_list))
551 list_del_init(&ce->e_lru_list);
552 atomic_inc(&ce->e_used);
553 return ce;
554 }
555 l = l->next;
556 }
557 return NULL;
558}
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573struct mb_cache_entry *
574mb_cache_entry_find_first(struct mb_cache *cache, int index,
575 struct block_device *bdev, unsigned int key)
576{
577 unsigned int bucket = hash_long(key, cache->c_bucket_bits);
578 struct list_head *l;
579 struct mb_cache_entry *ce;
580
581 mb_assert(index < mb_cache_indexes(cache));
582 spin_lock(&mb_cache_spinlock);
583 l = cache->c_indexes_hash[index][bucket].next;
584 ce = __mb_cache_entry_find(l, &cache->c_indexes_hash[index][bucket],
585 index, bdev, key);
586 spin_unlock(&mb_cache_spinlock);
587 return ce;
588}
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610struct mb_cache_entry *
611mb_cache_entry_find_next(struct mb_cache_entry *prev, int index,
612 struct block_device *bdev, unsigned int key)
613{
614 struct mb_cache *cache = prev->e_cache;
615 unsigned int bucket = hash_long(key, cache->c_bucket_bits);
616 struct list_head *l;
617 struct mb_cache_entry *ce;
618
619 mb_assert(index < mb_cache_indexes(cache));
620 spin_lock(&mb_cache_spinlock);
621 l = prev->e_indexes[index].o_list.next;
622 ce = __mb_cache_entry_find(l, &cache->c_indexes_hash[index][bucket],
623 index, bdev, key);
624 __mb_cache_entry_release_unlock(prev);
625 return ce;
626}
627
628#endif
629
630static int __init init_mbcache(void)
631{
632 mb_shrinker = set_shrinker(DEFAULT_SEEKS, mb_cache_shrink_fn);
633 return 0;
634}
635
636static void __exit exit_mbcache(void)
637{
638 remove_shrinker(mb_shrinker);
639}
640
641module_init(init_mbcache)
642module_exit(exit_mbcache)
643
644