Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
[linux-2.6/mini2440.git] / fs / ocfs2 / uptodate.c
blobb6284f235d2ff9e54e15834014ebc8f3e059851d
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * uptodate.c
6 * Tracking the up-to-date-ness of a local buffer_head with respect to
7 * the cluster.
9 * Copyright (C) 2002, 2004, 2005 Oracle. All rights reserved.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public
13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public
22 * License along with this program; if not, write to the
23 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 * Boston, MA 021110-1307, USA.
26 * Standard buffer head caching flags (uptodate, etc) are insufficient
27 * in a clustered environment - a buffer may be marked up to date on
28 * our local node but could have been modified by another cluster
29 * member. As a result an additional (and performant) caching scheme
30 * is required. A further requirement is that we consume as little
31 * memory as possible - we never pin buffer_head structures in order
32 * to cache them.
34 * We track the existence of up to date buffers on the inodes which
35 * are associated with them. Because we don't want to pin
36 * buffer_heads, this is only a (strong) hint and several other checks
37 * are made in the I/O path to ensure that we don't use a stale or
38 * invalid buffer without going to disk:
39 * - buffer_jbd is used liberally - if a bh is in the journal on
40 * this node then it *must* be up to date.
41 * - the standard buffer_uptodate() macro is used to detect buffers
42 * which may be invalid (even if we have an up to date tracking
43 * item for them)
45 * For a full understanding of how this code works together, one
46 * should read the callers in dlmglue.c, the I/O functions in
47 * buffer_head_io.c and ocfs2_journal_access in journal.c
50 #include <linux/fs.h>
51 #include <linux/types.h>
52 #include <linux/slab.h>
53 #include <linux/highmem.h>
54 #include <linux/buffer_head.h>
55 #include <linux/rbtree.h>
56 #ifndef CONFIG_OCFS2_COMPAT_JBD
57 # include <linux/jbd2.h>
58 #else
59 # include <linux/jbd.h>
60 #endif
62 #define MLOG_MASK_PREFIX ML_UPTODATE
64 #include <cluster/masklog.h>
66 #include "ocfs2.h"
68 #include "inode.h"
69 #include "uptodate.h"
71 struct ocfs2_meta_cache_item {
72 struct rb_node c_node;
73 sector_t c_block;
76 static struct kmem_cache *ocfs2_uptodate_cachep = NULL;
78 u64 ocfs2_metadata_cache_owner(struct ocfs2_caching_info *ci)
80 BUG_ON(!ci || !ci->ci_ops);
82 return ci->ci_ops->co_owner(ci);
85 struct super_block *ocfs2_metadata_cache_get_super(struct ocfs2_caching_info *ci)
87 BUG_ON(!ci || !ci->ci_ops);
89 return ci->ci_ops->co_get_super(ci);
92 static void ocfs2_metadata_cache_lock(struct ocfs2_caching_info *ci)
94 BUG_ON(!ci || !ci->ci_ops);
96 ci->ci_ops->co_cache_lock(ci);
99 static void ocfs2_metadata_cache_unlock(struct ocfs2_caching_info *ci)
101 BUG_ON(!ci || !ci->ci_ops);
103 ci->ci_ops->co_cache_unlock(ci);
106 void ocfs2_metadata_cache_io_lock(struct ocfs2_caching_info *ci)
108 BUG_ON(!ci || !ci->ci_ops);
110 ci->ci_ops->co_io_lock(ci);
113 void ocfs2_metadata_cache_io_unlock(struct ocfs2_caching_info *ci)
115 BUG_ON(!ci || !ci->ci_ops);
117 ci->ci_ops->co_io_unlock(ci);
121 static void ocfs2_metadata_cache_reset(struct ocfs2_caching_info *ci,
122 int clear)
124 ci->ci_flags |= OCFS2_CACHE_FL_INLINE;
125 ci->ci_num_cached = 0;
127 if (clear) {
128 ci->ci_created_trans = 0;
129 ci->ci_last_trans = 0;
133 void ocfs2_metadata_cache_init(struct ocfs2_caching_info *ci,
134 const struct ocfs2_caching_operations *ops)
136 BUG_ON(!ops);
138 ci->ci_ops = ops;
139 ocfs2_metadata_cache_reset(ci, 1);
142 void ocfs2_metadata_cache_exit(struct ocfs2_caching_info *ci)
144 ocfs2_metadata_cache_purge(ci);
145 ocfs2_metadata_cache_reset(ci, 1);
149 /* No lock taken here as 'root' is not expected to be visible to other
150 * processes. */
151 static unsigned int ocfs2_purge_copied_metadata_tree(struct rb_root *root)
153 unsigned int purged = 0;
154 struct rb_node *node;
155 struct ocfs2_meta_cache_item *item;
157 while ((node = rb_last(root)) != NULL) {
158 item = rb_entry(node, struct ocfs2_meta_cache_item, c_node);
160 mlog(0, "Purge item %llu\n",
161 (unsigned long long) item->c_block);
163 rb_erase(&item->c_node, root);
164 kmem_cache_free(ocfs2_uptodate_cachep, item);
166 purged++;
168 return purged;
171 /* Called from locking and called from ocfs2_clear_inode. Dump the
172 * cache for a given inode.
174 * This function is a few more lines longer than necessary due to some
175 * accounting done here, but I think it's worth tracking down those
176 * bugs sooner -- Mark */
177 void ocfs2_metadata_cache_purge(struct ocfs2_caching_info *ci)
179 unsigned int tree, to_purge, purged;
180 struct rb_root root = RB_ROOT;
182 BUG_ON(!ci || !ci->ci_ops);
184 ocfs2_metadata_cache_lock(ci);
185 tree = !(ci->ci_flags & OCFS2_CACHE_FL_INLINE);
186 to_purge = ci->ci_num_cached;
188 mlog(0, "Purge %u %s items from Owner %llu\n", to_purge,
189 tree ? "array" : "tree",
190 (unsigned long long)ocfs2_metadata_cache_owner(ci));
192 /* If we're a tree, save off the root so that we can safely
193 * initialize the cache. We do the work to free tree members
194 * without the spinlock. */
195 if (tree)
196 root = ci->ci_cache.ci_tree;
198 ocfs2_metadata_cache_reset(ci, 0);
199 ocfs2_metadata_cache_unlock(ci);
201 purged = ocfs2_purge_copied_metadata_tree(&root);
202 /* If possible, track the number wiped so that we can more
203 * easily detect counting errors. Unfortunately, this is only
204 * meaningful for trees. */
205 if (tree && purged != to_purge)
206 mlog(ML_ERROR, "Owner %llu, count = %u, purged = %u\n",
207 (unsigned long long)ocfs2_metadata_cache_owner(ci),
208 to_purge, purged);
211 /* Returns the index in the cache array, -1 if not found.
212 * Requires ip_lock. */
213 static int ocfs2_search_cache_array(struct ocfs2_caching_info *ci,
214 sector_t item)
216 int i;
218 for (i = 0; i < ci->ci_num_cached; i++) {
219 if (item == ci->ci_cache.ci_array[i])
220 return i;
223 return -1;
226 /* Returns the cache item if found, otherwise NULL.
227 * Requires ip_lock. */
228 static struct ocfs2_meta_cache_item *
229 ocfs2_search_cache_tree(struct ocfs2_caching_info *ci,
230 sector_t block)
232 struct rb_node * n = ci->ci_cache.ci_tree.rb_node;
233 struct ocfs2_meta_cache_item *item = NULL;
235 while (n) {
236 item = rb_entry(n, struct ocfs2_meta_cache_item, c_node);
238 if (block < item->c_block)
239 n = n->rb_left;
240 else if (block > item->c_block)
241 n = n->rb_right;
242 else
243 return item;
246 return NULL;
249 static int ocfs2_buffer_cached(struct ocfs2_caching_info *ci,
250 struct buffer_head *bh)
252 int index = -1;
253 struct ocfs2_meta_cache_item *item = NULL;
255 ocfs2_metadata_cache_lock(ci);
257 mlog(0, "Owner %llu, query block %llu (inline = %u)\n",
258 (unsigned long long)ocfs2_metadata_cache_owner(ci),
259 (unsigned long long) bh->b_blocknr,
260 !!(ci->ci_flags & OCFS2_CACHE_FL_INLINE));
262 if (ci->ci_flags & OCFS2_CACHE_FL_INLINE)
263 index = ocfs2_search_cache_array(ci, bh->b_blocknr);
264 else
265 item = ocfs2_search_cache_tree(ci, bh->b_blocknr);
267 ocfs2_metadata_cache_unlock(ci);
269 mlog(0, "index = %d, item = %p\n", index, item);
271 return (index != -1) || (item != NULL);
274 /* Warning: even if it returns true, this does *not* guarantee that
275 * the block is stored in our inode metadata cache.
277 * This can be called under lock_buffer()
279 int ocfs2_buffer_uptodate(struct ocfs2_caching_info *ci,
280 struct buffer_head *bh)
282 /* Doesn't matter if the bh is in our cache or not -- if it's
283 * not marked uptodate then we know it can't have correct
284 * data. */
285 if (!buffer_uptodate(bh))
286 return 0;
288 /* OCFS2 does not allow multiple nodes to be changing the same
289 * block at the same time. */
290 if (buffer_jbd(bh))
291 return 1;
293 /* Ok, locally the buffer is marked as up to date, now search
294 * our cache to see if we can trust that. */
295 return ocfs2_buffer_cached(ci, bh);
299 * Determine whether a buffer is currently out on a read-ahead request.
300 * ci_io_sem should be held to serialize submitters with the logic here.
302 int ocfs2_buffer_read_ahead(struct ocfs2_caching_info *ci,
303 struct buffer_head *bh)
305 return buffer_locked(bh) && ocfs2_buffer_cached(ci, bh);
308 /* Requires ip_lock */
309 static void ocfs2_append_cache_array(struct ocfs2_caching_info *ci,
310 sector_t block)
312 BUG_ON(ci->ci_num_cached >= OCFS2_CACHE_INFO_MAX_ARRAY);
314 mlog(0, "block %llu takes position %u\n", (unsigned long long) block,
315 ci->ci_num_cached);
317 ci->ci_cache.ci_array[ci->ci_num_cached] = block;
318 ci->ci_num_cached++;
321 /* By now the caller should have checked that the item does *not*
322 * exist in the tree.
323 * Requires ip_lock. */
324 static void __ocfs2_insert_cache_tree(struct ocfs2_caching_info *ci,
325 struct ocfs2_meta_cache_item *new)
327 sector_t block = new->c_block;
328 struct rb_node *parent = NULL;
329 struct rb_node **p = &ci->ci_cache.ci_tree.rb_node;
330 struct ocfs2_meta_cache_item *tmp;
332 mlog(0, "Insert block %llu num = %u\n", (unsigned long long) block,
333 ci->ci_num_cached);
335 while(*p) {
336 parent = *p;
338 tmp = rb_entry(parent, struct ocfs2_meta_cache_item, c_node);
340 if (block < tmp->c_block)
341 p = &(*p)->rb_left;
342 else if (block > tmp->c_block)
343 p = &(*p)->rb_right;
344 else {
345 /* This should never happen! */
346 mlog(ML_ERROR, "Duplicate block %llu cached!\n",
347 (unsigned long long) block);
348 BUG();
352 rb_link_node(&new->c_node, parent, p);
353 rb_insert_color(&new->c_node, &ci->ci_cache.ci_tree);
354 ci->ci_num_cached++;
357 /* co_cache_lock() must be held */
358 static inline int ocfs2_insert_can_use_array(struct ocfs2_caching_info *ci)
360 return (ci->ci_flags & OCFS2_CACHE_FL_INLINE) &&
361 (ci->ci_num_cached < OCFS2_CACHE_INFO_MAX_ARRAY);
364 /* tree should be exactly OCFS2_CACHE_INFO_MAX_ARRAY wide. NULL the
365 * pointers in tree after we use them - this allows caller to detect
366 * when to free in case of error.
368 * The co_cache_lock() must be held. */
369 static void ocfs2_expand_cache(struct ocfs2_caching_info *ci,
370 struct ocfs2_meta_cache_item **tree)
372 int i;
374 mlog_bug_on_msg(ci->ci_num_cached != OCFS2_CACHE_INFO_MAX_ARRAY,
375 "Owner %llu, num cached = %u, should be %u\n",
376 (unsigned long long)ocfs2_metadata_cache_owner(ci),
377 ci->ci_num_cached, OCFS2_CACHE_INFO_MAX_ARRAY);
378 mlog_bug_on_msg(!(ci->ci_flags & OCFS2_CACHE_FL_INLINE),
379 "Owner %llu not marked as inline anymore!\n",
380 (unsigned long long)ocfs2_metadata_cache_owner(ci));
382 /* Be careful to initialize the tree members *first* because
383 * once the ci_tree is used, the array is junk... */
384 for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++)
385 tree[i]->c_block = ci->ci_cache.ci_array[i];
387 ci->ci_flags &= ~OCFS2_CACHE_FL_INLINE;
388 ci->ci_cache.ci_tree = RB_ROOT;
389 /* this will be set again by __ocfs2_insert_cache_tree */
390 ci->ci_num_cached = 0;
392 for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++) {
393 __ocfs2_insert_cache_tree(ci, tree[i]);
394 tree[i] = NULL;
397 mlog(0, "Expanded %llu to a tree cache: flags 0x%x, num = %u\n",
398 (unsigned long long)ocfs2_metadata_cache_owner(ci),
399 ci->ci_flags, ci->ci_num_cached);
402 /* Slow path function - memory allocation is necessary. See the
403 * comment above ocfs2_set_buffer_uptodate for more information. */
404 static void __ocfs2_set_buffer_uptodate(struct ocfs2_caching_info *ci,
405 sector_t block,
406 int expand_tree)
408 int i;
409 struct ocfs2_meta_cache_item *new = NULL;
410 struct ocfs2_meta_cache_item *tree[OCFS2_CACHE_INFO_MAX_ARRAY] =
411 { NULL, };
413 mlog(0, "Owner %llu, block %llu, expand = %d\n",
414 (unsigned long long)ocfs2_metadata_cache_owner(ci),
415 (unsigned long long)block, expand_tree);
417 new = kmem_cache_alloc(ocfs2_uptodate_cachep, GFP_NOFS);
418 if (!new) {
419 mlog_errno(-ENOMEM);
420 return;
422 new->c_block = block;
424 if (expand_tree) {
425 /* Do *not* allocate an array here - the removal code
426 * has no way of tracking that. */
427 for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++) {
428 tree[i] = kmem_cache_alloc(ocfs2_uptodate_cachep,
429 GFP_NOFS);
430 if (!tree[i]) {
431 mlog_errno(-ENOMEM);
432 goto out_free;
435 /* These are initialized in ocfs2_expand_cache! */
439 ocfs2_metadata_cache_lock(ci);
440 if (ocfs2_insert_can_use_array(ci)) {
441 mlog(0, "Someone cleared the tree underneath us\n");
442 /* Ok, items were removed from the cache in between
443 * locks. Detect this and revert back to the fast path */
444 ocfs2_append_cache_array(ci, block);
445 ocfs2_metadata_cache_unlock(ci);
446 goto out_free;
449 if (expand_tree)
450 ocfs2_expand_cache(ci, tree);
452 __ocfs2_insert_cache_tree(ci, new);
453 ocfs2_metadata_cache_unlock(ci);
455 new = NULL;
456 out_free:
457 if (new)
458 kmem_cache_free(ocfs2_uptodate_cachep, new);
460 /* If these were used, then ocfs2_expand_cache re-set them to
461 * NULL for us. */
462 if (tree[0]) {
463 for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++)
464 if (tree[i])
465 kmem_cache_free(ocfs2_uptodate_cachep,
466 tree[i]);
470 /* Item insertion is guarded by co_io_lock(), so the insertion path takes
471 * advantage of this by not rechecking for a duplicate insert during
472 * the slow case. Additionally, if the cache needs to be bumped up to
473 * a tree, the code will not recheck after acquiring the lock --
474 * multiple paths cannot be expanding to a tree at the same time.
476 * The slow path takes into account that items can be removed
477 * (including the whole tree wiped and reset) when this process it out
478 * allocating memory. In those cases, it reverts back to the fast
479 * path.
481 * Note that this function may actually fail to insert the block if
482 * memory cannot be allocated. This is not fatal however (but may
483 * result in a performance penalty)
485 * Readahead buffers can be passed in here before the I/O request is
486 * completed.
488 void ocfs2_set_buffer_uptodate(struct ocfs2_caching_info *ci,
489 struct buffer_head *bh)
491 int expand;
493 /* The block may very well exist in our cache already, so avoid
494 * doing any more work in that case. */
495 if (ocfs2_buffer_cached(ci, bh))
496 return;
498 mlog(0, "Owner %llu, inserting block %llu\n",
499 (unsigned long long)ocfs2_metadata_cache_owner(ci),
500 (unsigned long long)bh->b_blocknr);
502 /* No need to recheck under spinlock - insertion is guarded by
503 * co_io_lock() */
504 ocfs2_metadata_cache_lock(ci);
505 if (ocfs2_insert_can_use_array(ci)) {
506 /* Fast case - it's an array and there's a free
507 * spot. */
508 ocfs2_append_cache_array(ci, bh->b_blocknr);
509 ocfs2_metadata_cache_unlock(ci);
510 return;
513 expand = 0;
514 if (ci->ci_flags & OCFS2_CACHE_FL_INLINE) {
515 /* We need to bump things up to a tree. */
516 expand = 1;
518 ocfs2_metadata_cache_unlock(ci);
520 __ocfs2_set_buffer_uptodate(ci, bh->b_blocknr, expand);
523 /* Called against a newly allocated buffer. Most likely nobody should
524 * be able to read this sort of metadata while it's still being
525 * allocated, but this is careful to take co_io_lock() anyway. */
526 void ocfs2_set_new_buffer_uptodate(struct ocfs2_caching_info *ci,
527 struct buffer_head *bh)
529 /* This should definitely *not* exist in our cache */
530 BUG_ON(ocfs2_buffer_cached(ci, bh));
532 set_buffer_uptodate(bh);
534 ocfs2_metadata_cache_io_lock(ci);
535 ocfs2_set_buffer_uptodate(ci, bh);
536 ocfs2_metadata_cache_io_unlock(ci);
539 /* Requires ip_lock. */
540 static void ocfs2_remove_metadata_array(struct ocfs2_caching_info *ci,
541 int index)
543 sector_t *array = ci->ci_cache.ci_array;
544 int bytes;
546 BUG_ON(index < 0 || index >= OCFS2_CACHE_INFO_MAX_ARRAY);
547 BUG_ON(index >= ci->ci_num_cached);
548 BUG_ON(!ci->ci_num_cached);
550 mlog(0, "remove index %d (num_cached = %u\n", index,
551 ci->ci_num_cached);
553 ci->ci_num_cached--;
555 /* don't need to copy if the array is now empty, or if we
556 * removed at the tail */
557 if (ci->ci_num_cached && index < ci->ci_num_cached) {
558 bytes = sizeof(sector_t) * (ci->ci_num_cached - index);
559 memmove(&array[index], &array[index + 1], bytes);
563 /* Requires ip_lock. */
564 static void ocfs2_remove_metadata_tree(struct ocfs2_caching_info *ci,
565 struct ocfs2_meta_cache_item *item)
567 mlog(0, "remove block %llu from tree\n",
568 (unsigned long long) item->c_block);
570 rb_erase(&item->c_node, &ci->ci_cache.ci_tree);
571 ci->ci_num_cached--;
574 static void ocfs2_remove_block_from_cache(struct ocfs2_caching_info *ci,
575 sector_t block)
577 int index;
578 struct ocfs2_meta_cache_item *item = NULL;
580 ocfs2_metadata_cache_lock(ci);
581 mlog(0, "Owner %llu, remove %llu, items = %u, array = %u\n",
582 (unsigned long long)ocfs2_metadata_cache_owner(ci),
583 (unsigned long long) block, ci->ci_num_cached,
584 ci->ci_flags & OCFS2_CACHE_FL_INLINE);
586 if (ci->ci_flags & OCFS2_CACHE_FL_INLINE) {
587 index = ocfs2_search_cache_array(ci, block);
588 if (index != -1)
589 ocfs2_remove_metadata_array(ci, index);
590 } else {
591 item = ocfs2_search_cache_tree(ci, block);
592 if (item)
593 ocfs2_remove_metadata_tree(ci, item);
595 ocfs2_metadata_cache_unlock(ci);
597 if (item)
598 kmem_cache_free(ocfs2_uptodate_cachep, item);
602 * Called when we remove a chunk of metadata from an inode. We don't
603 * bother reverting things to an inlined array in the case of a remove
604 * which moves us back under the limit.
606 void ocfs2_remove_from_cache(struct ocfs2_caching_info *ci,
607 struct buffer_head *bh)
609 sector_t block = bh->b_blocknr;
611 ocfs2_remove_block_from_cache(ci, block);
614 /* Called when we remove xattr clusters from an inode. */
615 void ocfs2_remove_xattr_clusters_from_cache(struct ocfs2_caching_info *ci,
616 sector_t block,
617 u32 c_len)
619 struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
620 unsigned int i, b_len = ocfs2_clusters_to_blocks(sb, 1) * c_len;
622 for (i = 0; i < b_len; i++, block++)
623 ocfs2_remove_block_from_cache(ci, block);
626 int __init init_ocfs2_uptodate_cache(void)
628 ocfs2_uptodate_cachep = kmem_cache_create("ocfs2_uptodate",
629 sizeof(struct ocfs2_meta_cache_item),
630 0, SLAB_HWCACHE_ALIGN, NULL);
631 if (!ocfs2_uptodate_cachep)
632 return -ENOMEM;
634 mlog(0, "%u inlined cache items per inode.\n",
635 OCFS2_CACHE_INFO_MAX_ARRAY);
637 return 0;
640 void exit_ocfs2_uptodate_cache(void)
642 if (ocfs2_uptodate_cachep)
643 kmem_cache_destroy(ocfs2_uptodate_cachep);