uptodate.c 18.0 KB
Newer Older
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/* -*- mode: c; c-basic-offset: 8; -*-
 * vim: noexpandtab sw=8 ts=8 sts=0:
 *
 * uptodate.c
 *
 * Tracking the up-to-date-ness of a local buffer_head with respect to
 * the cluster.
 *
 * Copyright (C) 2002, 2004, 2005 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 *
 * Standard buffer head caching flags (uptodate, etc) are insufficient
 * in a clustered environment - a buffer may be marked up to date on
 * our local node but could have been modified by another cluster
 * member. As a result an additional (and performant) caching scheme
 * is required. A further requirement is that we consume as little
 * memory as possible - we never pin buffer_head structures in order
 * to cache them.
 *
 * We track the existence of up to date buffers on the inodes which
 * are associated with them. Because we don't want to pin
 * buffer_heads, this is only a (strong) hint and several other checks
 * are made in the I/O path to ensure that we don't use a stale or
 * invalid buffer without going to disk:
 *	- buffer_jbd is used liberally - if a bh is in the journal on
 *	  this node then it *must* be up to date.
 *	- the standard buffer_uptodate() macro is used to detect buffers
 *	  which may be invalid (even if we have an up to date tracking
 * 	  item for them)
 *
 * For a full understanding of how this code works together, one
 * should read the callers in dlmglue.c, the I/O functions in
 * buffer_head_io.c and ocfs2_journal_access in journal.c
 */

#include <linux/fs.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/highmem.h>
#include <linux/buffer_head.h>
#include <linux/rbtree.h>
J
Joel Becker 已提交
56 57 58 59 60
#ifndef CONFIG_OCFS2_COMPAT_JBD
# include <linux/jbd2.h>
#else
# include <linux/jbd.h>
#endif
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

#define MLOG_MASK_PREFIX ML_UPTODATE

#include <cluster/masklog.h>

#include "ocfs2.h"

#include "inode.h"
#include "uptodate.h"

struct ocfs2_meta_cache_item {
	struct rb_node	c_node;
	sector_t	c_block;
};

76
static struct kmem_cache *ocfs2_uptodate_cachep = NULL;
77

78
u64 ocfs2_metadata_cache_owner(struct ocfs2_caching_info *ci)
79 80 81 82 83 84
{
	BUG_ON(!ci || !ci->ci_ops);

	return ci->ci_ops->co_owner(ci);
}

85 86 87 88 89 90 91
struct super_block *ocfs2_metadata_cache_get_super(struct ocfs2_caching_info *ci)
{
	BUG_ON(!ci || !ci->ci_ops);

	return ci->ci_ops->co_get_super(ci);
}

92 93 94 95 96 97 98 99 100 101 102 103 104 105
static void ocfs2_metadata_cache_lock(struct ocfs2_caching_info *ci)
{
	BUG_ON(!ci || !ci->ci_ops);

	ci->ci_ops->co_cache_lock(ci);
}

static void ocfs2_metadata_cache_unlock(struct ocfs2_caching_info *ci)
{
	BUG_ON(!ci || !ci->ci_ops);

	ci->ci_ops->co_cache_unlock(ci);
}

106
void ocfs2_metadata_cache_io_lock(struct ocfs2_caching_info *ci)
107 108 109 110 111 112
{
	BUG_ON(!ci || !ci->ci_ops);

	ci->ci_ops->co_io_lock(ci);
}

113
void ocfs2_metadata_cache_io_unlock(struct ocfs2_caching_info *ci)
114 115 116 117 118 119 120
{
	BUG_ON(!ci || !ci->ci_ops);

	ci->ci_ops->co_io_unlock(ci);
}


121 122 123 124 125 126
static void ocfs2_metadata_cache_reset(struct ocfs2_caching_info *ci,
				       int clear)
{
	ci->ci_flags |= OCFS2_CACHE_FL_INLINE;
	ci->ci_num_cached = 0;

127 128
	if (clear) {
		ci->ci_created_trans = 0;
129
		ci->ci_last_trans = 0;
130
	}
131 132
}

133
void ocfs2_metadata_cache_init(struct ocfs2_caching_info *ci,
134
			       const struct ocfs2_caching_operations *ops)
135
{
136 137 138
	BUG_ON(!ops);

	ci->ci_ops = ops;
139 140 141 142 143 144 145
	ocfs2_metadata_cache_reset(ci, 1);
}

void ocfs2_metadata_cache_exit(struct ocfs2_caching_info *ci)
{
	ocfs2_metadata_cache_purge(ci);
	ocfs2_metadata_cache_reset(ci, 1);
146 147
}

148

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
/* No lock taken here as 'root' is not expected to be visible to other
 * processes. */
static unsigned int ocfs2_purge_copied_metadata_tree(struct rb_root *root)
{
	unsigned int purged = 0;
	struct rb_node *node;
	struct ocfs2_meta_cache_item *item;

	while ((node = rb_last(root)) != NULL) {
		item = rb_entry(node, struct ocfs2_meta_cache_item, c_node);

		mlog(0, "Purge item %llu\n",
		     (unsigned long long) item->c_block);

		rb_erase(&item->c_node, root);
		kmem_cache_free(ocfs2_uptodate_cachep, item);

		purged++;
	}
	return purged;
}

/* Called from locking and called from ocfs2_clear_inode. Dump the
 * cache for a given inode.
 *
 * This function is a few more lines longer than necessary due to some
 * accounting done here, but I think it's worth tracking down those
 * bugs sooner -- Mark */
177
void ocfs2_metadata_cache_purge(struct ocfs2_caching_info *ci)
178 179 180 181
{
	unsigned int tree, to_purge, purged;
	struct rb_root root = RB_ROOT;

182 183 184
	BUG_ON(!ci || !ci->ci_ops);

	ocfs2_metadata_cache_lock(ci);
185
	tree = !(ci->ci_flags & OCFS2_CACHE_FL_INLINE);
186 187
	to_purge = ci->ci_num_cached;

188 189 190
	mlog(0, "Purge %u %s items from Owner %llu\n", to_purge,
	     tree ? "array" : "tree",
	     (unsigned long long)ocfs2_metadata_cache_owner(ci));
191 192 193 194 195 196 197

	/* If we're a tree, save off the root so that we can safely
	 * initialize the cache. We do the work to free tree members
	 * without the spinlock. */
	if (tree)
		root = ci->ci_cache.ci_tree;

198
	ocfs2_metadata_cache_reset(ci, 0);
199
	ocfs2_metadata_cache_unlock(ci);
200 201 202 203 204 205

	purged = ocfs2_purge_copied_metadata_tree(&root);
	/* If possible, track the number wiped so that we can more
	 * easily detect counting errors. Unfortunately, this is only
	 * meaningful for trees. */
	if (tree && purged != to_purge)
206 207 208
		mlog(ML_ERROR, "Owner %llu, count = %u, purged = %u\n",
		     (unsigned long long)ocfs2_metadata_cache_owner(ci),
		     to_purge, purged);
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
}

/* Returns the index in the cache array, -1 if not found.
 * Requires ip_lock. */
static int ocfs2_search_cache_array(struct ocfs2_caching_info *ci,
				    sector_t item)
{
	int i;

	for (i = 0; i < ci->ci_num_cached; i++) {
		if (item == ci->ci_cache.ci_array[i])
			return i;
	}

	return -1;
}

/* Returns the cache item if found, otherwise NULL.
 * Requires ip_lock. */
static struct ocfs2_meta_cache_item *
ocfs2_search_cache_tree(struct ocfs2_caching_info *ci,
			sector_t block)
{
	struct rb_node * n = ci->ci_cache.ci_tree.rb_node;
	struct ocfs2_meta_cache_item *item = NULL;

	while (n) {
		item = rb_entry(n, struct ocfs2_meta_cache_item, c_node);

		if (block < item->c_block)
			n = n->rb_left;
		else if (block > item->c_block)
			n = n->rb_right;
		else
			return item;
	}

	return NULL;
}

249
static int ocfs2_buffer_cached(struct ocfs2_caching_info *ci,
250 251 252 253 254
			       struct buffer_head *bh)
{
	int index = -1;
	struct ocfs2_meta_cache_item *item = NULL;

255
	ocfs2_metadata_cache_lock(ci);
256

257 258
	mlog(0, "Owner %llu, query block %llu (inline = %u)\n",
	     (unsigned long long)ocfs2_metadata_cache_owner(ci),
259
	     (unsigned long long) bh->b_blocknr,
260
	     !!(ci->ci_flags & OCFS2_CACHE_FL_INLINE));
261

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);
266

267
	ocfs2_metadata_cache_unlock(ci);
268 269 270 271 272 273 274

	mlog(0, "index = %d, item = %p\n", index, item);

	return (index != -1) || (item != NULL);
}

/* Warning: even if it returns true, this does *not* guarantee that
275 276 277 278
 * the block is stored in our inode metadata cache. 
 * 
 * This can be called under lock_buffer()
 */
279
int ocfs2_buffer_uptodate(struct ocfs2_caching_info *ci,
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
			  struct buffer_head *bh)
{
	/* Doesn't matter if the bh is in our cache or not -- if it's
	 * not marked uptodate then we know it can't have correct
	 * data. */
	if (!buffer_uptodate(bh))
		return 0;

	/* OCFS2 does not allow multiple nodes to be changing the same
	 * block at the same time. */
	if (buffer_jbd(bh))
		return 1;

	/* Ok, locally the buffer is marked as up to date, now search
	 * our cache to see if we can trust that. */
295
	return ocfs2_buffer_cached(ci, bh);
296 297
}

298
/*
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.
301
 */
302
int ocfs2_buffer_read_ahead(struct ocfs2_caching_info *ci,
303 304
			    struct buffer_head *bh)
{
305
	return buffer_locked(bh) && ocfs2_buffer_cached(ci, bh);
306 307
}

308 309 310 311
/* Requires ip_lock */
static void ocfs2_append_cache_array(struct ocfs2_caching_info *ci,
				     sector_t block)
{
312
	BUG_ON(ci->ci_num_cached >= OCFS2_CACHE_INFO_MAX_ARRAY);
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356

	mlog(0, "block %llu takes position %u\n", (unsigned long long) block,
	     ci->ci_num_cached);

	ci->ci_cache.ci_array[ci->ci_num_cached] = block;
	ci->ci_num_cached++;
}

/* By now the caller should have checked that the item does *not*
 * exist in the tree.
 * Requires ip_lock. */
static void __ocfs2_insert_cache_tree(struct ocfs2_caching_info *ci,
				      struct ocfs2_meta_cache_item *new)
{
	sector_t block = new->c_block;
	struct rb_node *parent = NULL;
	struct rb_node **p = &ci->ci_cache.ci_tree.rb_node;
	struct ocfs2_meta_cache_item *tmp;

	mlog(0, "Insert block %llu num = %u\n", (unsigned long long) block,
	     ci->ci_num_cached);

	while(*p) {
		parent = *p;

		tmp = rb_entry(parent, struct ocfs2_meta_cache_item, c_node);

		if (block < tmp->c_block)
			p = &(*p)->rb_left;
		else if (block > tmp->c_block)
			p = &(*p)->rb_right;
		else {
			/* This should never happen! */
			mlog(ML_ERROR, "Duplicate block %llu cached!\n",
			     (unsigned long long) block);
			BUG();
		}
	}

	rb_link_node(&new->c_node, parent, p);
	rb_insert_color(&new->c_node, &ci->ci_cache.ci_tree);
	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)
359
{
360 361
	return (ci->ci_flags & OCFS2_CACHE_FL_INLINE) &&
		(ci->ci_num_cached < OCFS2_CACHE_INFO_MAX_ARRAY);
362 363
}

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 367 368
 * when to free in case of error.
 *
 * The co_cache_lock() must be held. */
369
static void ocfs2_expand_cache(struct ocfs2_caching_info *ci,
370 371 372 373
			       struct ocfs2_meta_cache_item **tree)
{
	int i;

374
	mlog_bug_on_msg(ci->ci_num_cached != OCFS2_CACHE_INFO_MAX_ARRAY,
375 376 377
			"Owner %llu, num cached = %u, should be %u\n",
			(unsigned long long)ocfs2_metadata_cache_owner(ci),
			ci->ci_num_cached, OCFS2_CACHE_INFO_MAX_ARRAY);
378
	mlog_bug_on_msg(!(ci->ci_flags & OCFS2_CACHE_FL_INLINE),
379 380
			"Owner %llu not marked as inline anymore!\n",
			(unsigned long long)ocfs2_metadata_cache_owner(ci));
381 382 383

	/* Be careful to initialize the tree members *first* because
	 * once the ci_tree is used, the array is junk... */
384
	for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++)
385 386
		tree[i]->c_block = ci->ci_cache.ci_array[i];

387
	ci->ci_flags &= ~OCFS2_CACHE_FL_INLINE;
388 389 390 391
	ci->ci_cache.ci_tree = RB_ROOT;
	/* this will be set again by __ocfs2_insert_cache_tree */
	ci->ci_num_cached = 0;

392
	for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++) {
393 394 395 396
		__ocfs2_insert_cache_tree(ci, tree[i]);
		tree[i] = NULL;
	}

397
	mlog(0, "Expanded %llu to a tree cache: flags 0x%x, num = %u\n",
398 399
	     (unsigned long long)ocfs2_metadata_cache_owner(ci),
	     ci->ci_flags, ci->ci_num_cached);
400 401 402 403
}

/* Slow path function - memory allocation is necessary. See the
 * comment above ocfs2_set_buffer_uptodate for more information. */
404
static void __ocfs2_set_buffer_uptodate(struct ocfs2_caching_info *ci,
405 406 407 408 409
					sector_t block,
					int expand_tree)
{
	int i;
	struct ocfs2_meta_cache_item *new = NULL;
410
	struct ocfs2_meta_cache_item *tree[OCFS2_CACHE_INFO_MAX_ARRAY] =
411 412
		{ NULL, };

413 414
	mlog(0, "Owner %llu, block %llu, expand = %d\n",
	     (unsigned long long)ocfs2_metadata_cache_owner(ci),
415
	     (unsigned long long)block, expand_tree);
416

417
	new = kmem_cache_alloc(ocfs2_uptodate_cachep, GFP_NOFS);
418 419 420 421 422 423 424 425 426
	if (!new) {
		mlog_errno(-ENOMEM);
		return;
	}
	new->c_block = block;

	if (expand_tree) {
		/* Do *not* allocate an array here - the removal code
		 * 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 431 432 433 434 435 436 437 438
			if (!tree[i]) {
				mlog_errno(-ENOMEM);
				goto out_free;
			}

			/* These are initialized in ocfs2_expand_cache! */
		}
	}

439
	ocfs2_metadata_cache_lock(ci);
440
	if (ocfs2_insert_can_use_array(ci)) {
441 442 443 444
		mlog(0, "Someone cleared the tree underneath us\n");
		/* Ok, items were removed from the cache in between
		 * locks. Detect this and revert back to the fast path */
		ocfs2_append_cache_array(ci, block);
445
		ocfs2_metadata_cache_unlock(ci);
446 447 448 449
		goto out_free;
	}

	if (expand_tree)
450
		ocfs2_expand_cache(ci, tree);
451 452

	__ocfs2_insert_cache_tree(ci, new);
453
	ocfs2_metadata_cache_unlock(ci);
454 455 456 457 458 459 460 461 462

	new = NULL;
out_free:
	if (new)
		kmem_cache_free(ocfs2_uptodate_cachep, new);

	/* If these were used, then ocfs2_expand_cache re-set them to
	 * NULL for us. */
	if (tree[0]) {
463
		for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++)
464 465 466 467 468 469
			if (tree[i])
				kmem_cache_free(ocfs2_uptodate_cachep,
						tree[i]);
	}
}

470
/* Item insertion is guarded by co_io_lock(), so the insertion path takes
471 472 473 474 475 476 477 478 479 480 481 482
 * advantage of this by not rechecking for a duplicate insert during
 * the slow case. Additionally, if the cache needs to be bumped up to
 * a tree, the code will not recheck after acquiring the lock --
 * multiple paths cannot be expanding to a tree at the same time.
 *
 * The slow path takes into account that items can be removed
 * (including the whole tree wiped and reset) when this process it out
 * allocating memory. In those cases, it reverts back to the fast
 * path.
 *
 * Note that this function may actually fail to insert the block if
 * memory cannot be allocated. This is not fatal however (but may
483 484 485 486 487
 * result in a performance penalty)
 *
 * Readahead buffers can be passed in here before the I/O request is
 * completed.
 */
488
void ocfs2_set_buffer_uptodate(struct ocfs2_caching_info *ci,
489 490 491 492 493 494
			       struct buffer_head *bh)
{
	int expand;

	/* The block may very well exist in our cache already, so avoid
	 * doing any more work in that case. */
495
	if (ocfs2_buffer_cached(ci, bh))
496 497
		return;

498 499
	mlog(0, "Owner %llu, inserting block %llu\n",
	     (unsigned long long)ocfs2_metadata_cache_owner(ci),
500
	     (unsigned long long)bh->b_blocknr);
501 502

	/* No need to recheck under spinlock - insertion is guarded by
503 504
	 * co_io_lock() */
	ocfs2_metadata_cache_lock(ci);
505
	if (ocfs2_insert_can_use_array(ci)) {
506 507 508
		/* Fast case - it's an array and there's a free
		 * spot. */
		ocfs2_append_cache_array(ci, bh->b_blocknr);
509
		ocfs2_metadata_cache_unlock(ci);
510 511 512 513
		return;
	}

	expand = 0;
514
	if (ci->ci_flags & OCFS2_CACHE_FL_INLINE) {
515 516 517
		/* We need to bump things up to a tree. */
		expand = 1;
	}
518
	ocfs2_metadata_cache_unlock(ci);
519

520
	__ocfs2_set_buffer_uptodate(ci, bh->b_blocknr, expand);
521 522 523 524
}

/* Called against a newly allocated buffer. Most likely nobody should
 * 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 528 529
				   struct buffer_head *bh)
{
	/* This should definitely *not* exist in our cache */
530
	BUG_ON(ocfs2_buffer_cached(ci, bh));
531 532 533

	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);
537 538 539 540 541 542 543 544 545
}

/* Requires ip_lock. */
static void ocfs2_remove_metadata_array(struct ocfs2_caching_info *ci,
					int index)
{
	sector_t *array = ci->ci_cache.ci_array;
	int bytes;

546
	BUG_ON(index < 0 || index >= OCFS2_CACHE_INFO_MAX_ARRAY);
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
	BUG_ON(index >= ci->ci_num_cached);
	BUG_ON(!ci->ci_num_cached);

	mlog(0, "remove index %d (num_cached = %u\n", index,
	     ci->ci_num_cached);

	ci->ci_num_cached--;

	/* don't need to copy if the array is now empty, or if we
	 * removed at the tail */
	if (ci->ci_num_cached && index < ci->ci_num_cached) {
		bytes = sizeof(sector_t) * (ci->ci_num_cached - index);
		memmove(&array[index], &array[index + 1], bytes);
	}
}

/* Requires ip_lock. */
static void ocfs2_remove_metadata_tree(struct ocfs2_caching_info *ci,
				       struct ocfs2_meta_cache_item *item)
{
	mlog(0, "remove block %llu from tree\n",
	     (unsigned long long) item->c_block);

	rb_erase(&item->c_node, &ci->ci_cache.ci_tree);
	ci->ci_num_cached--;
}

574
static void ocfs2_remove_block_from_cache(struct ocfs2_caching_info *ci,
575
					  sector_t block)
576 577 578 579
{
	int index;
	struct ocfs2_meta_cache_item *item = NULL;

580 581 582
	ocfs2_metadata_cache_lock(ci);
	mlog(0, "Owner %llu, remove %llu, items = %u, array = %u\n",
	     (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);
585

586
	if (ci->ci_flags & OCFS2_CACHE_FL_INLINE) {
587 588 589 590 591 592 593 594
		index = ocfs2_search_cache_array(ci, block);
		if (index != -1)
			ocfs2_remove_metadata_array(ci, index);
	} else {
		item = ocfs2_search_cache_tree(ci, block);
		if (item)
			ocfs2_remove_metadata_tree(ci, item);
	}
595
	ocfs2_metadata_cache_unlock(ci);
596 597 598 599 600

	if (item)
		kmem_cache_free(ocfs2_uptodate_cachep, item);
}

601 602 603 604 605
/*
 * Called when we remove a chunk of metadata from an inode. We don't
 * bother reverting things to an inlined array in the case of a remove
 * which moves us back under the limit.
 */
606
void ocfs2_remove_from_cache(struct ocfs2_caching_info *ci,
607 608 609 610
			     struct buffer_head *bh)
{
	sector_t block = bh->b_blocknr;

611
	ocfs2_remove_block_from_cache(ci, block);
612 613 614
}

/* Called when we remove xattr clusters from an inode. */
615
void ocfs2_remove_xattr_clusters_from_cache(struct ocfs2_caching_info *ci,
616 617 618
					    sector_t block,
					    u32 c_len)
{
619 620
	struct super_block *sb = ocfs2_metadata_cache_get_super(ci);
	unsigned int i, b_len = ocfs2_clusters_to_blocks(sb, 1) * c_len;
621 622

	for (i = 0; i < b_len; i++, block++)
623
		ocfs2_remove_block_from_cache(ci, block);
624 625
}

626 627 628 629
int __init init_ocfs2_uptodate_cache(void)
{
	ocfs2_uptodate_cachep = kmem_cache_create("ocfs2_uptodate",
				  sizeof(struct ocfs2_meta_cache_item),
630
				  0, SLAB_HWCACHE_ALIGN, NULL);
631 632 633 634
	if (!ocfs2_uptodate_cachep)
		return -ENOMEM;

	mlog(0, "%u inlined cache items per inode.\n",
635
	     OCFS2_CACHE_INFO_MAX_ARRAY);
636 637 638 639

	return 0;
}

640
void exit_ocfs2_uptodate_cache(void)
641 642 643 644
{
	if (ocfs2_uptodate_cachep)
		kmem_cache_destroy(ocfs2_uptodate_cachep);
}