|
|
|
@ -75,12 +75,13 @@ struct ocfs2_meta_cache_item {
|
|
|
|
|
|
|
|
|
|
static struct kmem_cache *ocfs2_uptodate_cachep = NULL;
|
|
|
|
|
|
|
|
|
|
void ocfs2_metadata_cache_init(struct inode *inode)
|
|
|
|
|
void ocfs2_metadata_cache_init(struct ocfs2_caching_info *ci,
|
|
|
|
|
spinlock_t *cache_lock,
|
|
|
|
|
struct mutex *io_mutex)
|
|
|
|
|
{
|
|
|
|
|
struct ocfs2_inode_info *oi = OCFS2_I(inode);
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
|
|
|
|
|
oi->ip_flags |= OCFS2_INODE_CACHE_INLINE;
|
|
|
|
|
ci->ci_lock = cache_lock;
|
|
|
|
|
ci->ci_io_mutex = io_mutex;
|
|
|
|
|
ci->ci_flags |= OCFS2_CACHE_FL_INLINE;
|
|
|
|
|
ci->ci_num_cached = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -119,8 +120,8 @@ void ocfs2_metadata_cache_purge(struct inode *inode)
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
struct rb_root root = RB_ROOT;
|
|
|
|
|
|
|
|
|
|
spin_lock(&oi->ip_lock);
|
|
|
|
|
tree = !(oi->ip_flags & OCFS2_INODE_CACHE_INLINE);
|
|
|
|
|
spin_lock(ci->ci_lock);
|
|
|
|
|
tree = !(ci->ci_flags & OCFS2_CACHE_FL_INLINE);
|
|
|
|
|
to_purge = ci->ci_num_cached;
|
|
|
|
|
|
|
|
|
|
mlog(0, "Purge %u %s items from Inode %llu\n", to_purge,
|
|
|
|
@ -132,8 +133,8 @@ void ocfs2_metadata_cache_purge(struct inode *inode)
|
|
|
|
|
if (tree)
|
|
|
|
|
root = ci->ci_cache.ci_tree;
|
|
|
|
|
|
|
|
|
|
ocfs2_metadata_cache_init(inode);
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
ocfs2_metadata_cache_init(ci, ci->ci_lock, ci->ci_io_mutex);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
purged = ocfs2_purge_copied_metadata_tree(&root);
|
|
|
|
|
/* If possible, track the number wiped so that we can more
|
|
|
|
@ -187,22 +188,23 @@ static int ocfs2_buffer_cached(struct ocfs2_inode_info *oi,
|
|
|
|
|
{
|
|
|
|
|
int index = -1;
|
|
|
|
|
struct ocfs2_meta_cache_item *item = NULL;
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
|
|
|
|
|
spin_lock(&oi->ip_lock);
|
|
|
|
|
spin_lock(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
mlog(0, "Inode %llu, query block %llu (inline = %u)\n",
|
|
|
|
|
(unsigned long long)oi->ip_blkno,
|
|
|
|
|
(unsigned long long) bh->b_blocknr,
|
|
|
|
|
!!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE));
|
|
|
|
|
!!(ci->ci_flags & OCFS2_CACHE_FL_INLINE));
|
|
|
|
|
|
|
|
|
|
if (oi->ip_flags & OCFS2_INODE_CACHE_INLINE)
|
|
|
|
|
if (ci->ci_flags & OCFS2_CACHE_FL_INLINE)
|
|
|
|
|
index = ocfs2_search_cache_array(&oi->ip_metadata_cache,
|
|
|
|
|
bh->b_blocknr);
|
|
|
|
|
else
|
|
|
|
|
item = ocfs2_search_cache_tree(&oi->ip_metadata_cache,
|
|
|
|
|
bh->b_blocknr);
|
|
|
|
|
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
mlog(0, "index = %d, item = %p\n", index, item);
|
|
|
|
|
|
|
|
|
@ -235,7 +237,7 @@ int ocfs2_buffer_uptodate(struct inode *inode,
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Determine whether a buffer is currently out on a read-ahead request.
|
|
|
|
|
* ip_io_sem should be held to serialize submitters with the logic here.
|
|
|
|
|
* ci_io_sem should be held to serialize submitters with the logic here.
|
|
|
|
|
*/
|
|
|
|
|
int ocfs2_buffer_read_ahead(struct inode *inode,
|
|
|
|
|
struct buffer_head *bh)
|
|
|
|
@ -247,7 +249,7 @@ int ocfs2_buffer_read_ahead(struct inode *inode,
|
|
|
|
|
static void ocfs2_append_cache_array(struct ocfs2_caching_info *ci,
|
|
|
|
|
sector_t block)
|
|
|
|
|
{
|
|
|
|
|
BUG_ON(ci->ci_num_cached >= OCFS2_INODE_MAX_CACHE_ARRAY);
|
|
|
|
|
BUG_ON(ci->ci_num_cached >= OCFS2_CACHE_INFO_MAX_ARRAY);
|
|
|
|
|
|
|
|
|
|
mlog(0, "block %llu takes position %u\n", (unsigned long long) block,
|
|
|
|
|
ci->ci_num_cached);
|
|
|
|
@ -295,13 +297,13 @@ static void __ocfs2_insert_cache_tree(struct ocfs2_caching_info *ci,
|
|
|
|
|
static inline int ocfs2_insert_can_use_array(struct ocfs2_inode_info *oi,
|
|
|
|
|
struct ocfs2_caching_info *ci)
|
|
|
|
|
{
|
|
|
|
|
assert_spin_locked(&oi->ip_lock);
|
|
|
|
|
assert_spin_locked(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
return (oi->ip_flags & OCFS2_INODE_CACHE_INLINE) &&
|
|
|
|
|
(ci->ci_num_cached < OCFS2_INODE_MAX_CACHE_ARRAY);
|
|
|
|
|
return (ci->ci_flags & OCFS2_CACHE_FL_INLINE) &&
|
|
|
|
|
(ci->ci_num_cached < OCFS2_CACHE_INFO_MAX_ARRAY);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* tree should be exactly OCFS2_INODE_MAX_CACHE_ARRAY wide. NULL the
|
|
|
|
|
/* tree should be exactly OCFS2_CACHE_INFO_MAX_ARRAY wide. NULL the
|
|
|
|
|
* pointers in tree after we use them - this allows caller to detect
|
|
|
|
|
* when to free in case of error. */
|
|
|
|
|
static void ocfs2_expand_cache(struct ocfs2_inode_info *oi,
|
|
|
|
@ -310,32 +312,32 @@ static void ocfs2_expand_cache(struct ocfs2_inode_info *oi,
|
|
|
|
|
int i;
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
|
|
|
|
|
mlog_bug_on_msg(ci->ci_num_cached != OCFS2_INODE_MAX_CACHE_ARRAY,
|
|
|
|
|
mlog_bug_on_msg(ci->ci_num_cached != OCFS2_CACHE_INFO_MAX_ARRAY,
|
|
|
|
|
"Inode %llu, num cached = %u, should be %u\n",
|
|
|
|
|
(unsigned long long)oi->ip_blkno, ci->ci_num_cached,
|
|
|
|
|
OCFS2_INODE_MAX_CACHE_ARRAY);
|
|
|
|
|
mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
|
|
|
|
|
OCFS2_CACHE_INFO_MAX_ARRAY);
|
|
|
|
|
mlog_bug_on_msg(!(ci->ci_flags & OCFS2_CACHE_FL_INLINE),
|
|
|
|
|
"Inode %llu not marked as inline anymore!\n",
|
|
|
|
|
(unsigned long long)oi->ip_blkno);
|
|
|
|
|
assert_spin_locked(&oi->ip_lock);
|
|
|
|
|
assert_spin_locked(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
/* Be careful to initialize the tree members *first* because
|
|
|
|
|
* once the ci_tree is used, the array is junk... */
|
|
|
|
|
for(i = 0; i < OCFS2_INODE_MAX_CACHE_ARRAY; i++)
|
|
|
|
|
for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++)
|
|
|
|
|
tree[i]->c_block = ci->ci_cache.ci_array[i];
|
|
|
|
|
|
|
|
|
|
oi->ip_flags &= ~OCFS2_INODE_CACHE_INLINE;
|
|
|
|
|
ci->ci_flags &= ~OCFS2_CACHE_FL_INLINE;
|
|
|
|
|
ci->ci_cache.ci_tree = RB_ROOT;
|
|
|
|
|
/* this will be set again by __ocfs2_insert_cache_tree */
|
|
|
|
|
ci->ci_num_cached = 0;
|
|
|
|
|
|
|
|
|
|
for(i = 0; i < OCFS2_INODE_MAX_CACHE_ARRAY; i++) {
|
|
|
|
|
for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++) {
|
|
|
|
|
__ocfs2_insert_cache_tree(ci, tree[i]);
|
|
|
|
|
tree[i] = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mlog(0, "Expanded %llu to a tree cache: flags 0x%x, num = %u\n",
|
|
|
|
|
(unsigned long long)oi->ip_blkno, oi->ip_flags, ci->ci_num_cached);
|
|
|
|
|
(unsigned long long)oi->ip_blkno, ci->ci_flags, ci->ci_num_cached);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Slow path function - memory allocation is necessary. See the
|
|
|
|
@ -347,7 +349,7 @@ static void __ocfs2_set_buffer_uptodate(struct ocfs2_inode_info *oi,
|
|
|
|
|
int i;
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
struct ocfs2_meta_cache_item *new = NULL;
|
|
|
|
|
struct ocfs2_meta_cache_item *tree[OCFS2_INODE_MAX_CACHE_ARRAY] =
|
|
|
|
|
struct ocfs2_meta_cache_item *tree[OCFS2_CACHE_INFO_MAX_ARRAY] =
|
|
|
|
|
{ NULL, };
|
|
|
|
|
|
|
|
|
|
mlog(0, "Inode %llu, block %llu, expand = %d\n",
|
|
|
|
@ -364,7 +366,7 @@ static void __ocfs2_set_buffer_uptodate(struct ocfs2_inode_info *oi,
|
|
|
|
|
if (expand_tree) {
|
|
|
|
|
/* Do *not* allocate an array here - the removal code
|
|
|
|
|
* has no way of tracking that. */
|
|
|
|
|
for(i = 0; i < OCFS2_INODE_MAX_CACHE_ARRAY; i++) {
|
|
|
|
|
for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++) {
|
|
|
|
|
tree[i] = kmem_cache_alloc(ocfs2_uptodate_cachep,
|
|
|
|
|
GFP_NOFS);
|
|
|
|
|
if (!tree[i]) {
|
|
|
|
@ -376,13 +378,13 @@ static void __ocfs2_set_buffer_uptodate(struct ocfs2_inode_info *oi,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
spin_lock(&oi->ip_lock);
|
|
|
|
|
spin_lock(ci->ci_lock);
|
|
|
|
|
if (ocfs2_insert_can_use_array(oi, ci)) {
|
|
|
|
|
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);
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
goto out_free;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -390,7 +392,7 @@ static void __ocfs2_set_buffer_uptodate(struct ocfs2_inode_info *oi,
|
|
|
|
|
ocfs2_expand_cache(oi, tree);
|
|
|
|
|
|
|
|
|
|
__ocfs2_insert_cache_tree(ci, new);
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
new = NULL;
|
|
|
|
|
out_free:
|
|
|
|
@ -400,14 +402,14 @@ out_free:
|
|
|
|
|
/* If these were used, then ocfs2_expand_cache re-set them to
|
|
|
|
|
* NULL for us. */
|
|
|
|
|
if (tree[0]) {
|
|
|
|
|
for(i = 0; i < OCFS2_INODE_MAX_CACHE_ARRAY; i++)
|
|
|
|
|
for (i = 0; i < OCFS2_CACHE_INFO_MAX_ARRAY; i++)
|
|
|
|
|
if (tree[i])
|
|
|
|
|
kmem_cache_free(ocfs2_uptodate_cachep,
|
|
|
|
|
tree[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Item insertion is guarded by ip_io_mutex, so the insertion path takes
|
|
|
|
|
/* Item insertion is guarded by ci_io_mutex, so the insertion path takes
|
|
|
|
|
* 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 --
|
|
|
|
@ -442,42 +444,43 @@ void ocfs2_set_buffer_uptodate(struct inode *inode,
|
|
|
|
|
(unsigned long long)bh->b_blocknr);
|
|
|
|
|
|
|
|
|
|
/* No need to recheck under spinlock - insertion is guarded by
|
|
|
|
|
* ip_io_mutex */
|
|
|
|
|
spin_lock(&oi->ip_lock);
|
|
|
|
|
* ci_io_mutex */
|
|
|
|
|
spin_lock(ci->ci_lock);
|
|
|
|
|
if (ocfs2_insert_can_use_array(oi, ci)) {
|
|
|
|
|
/* Fast case - it's an array and there's a free
|
|
|
|
|
* spot. */
|
|
|
|
|
ocfs2_append_cache_array(ci, bh->b_blocknr);
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expand = 0;
|
|
|
|
|
if (oi->ip_flags & OCFS2_INODE_CACHE_INLINE) {
|
|
|
|
|
if (ci->ci_flags & OCFS2_CACHE_FL_INLINE) {
|
|
|
|
|
/* We need to bump things up to a tree. */
|
|
|
|
|
expand = 1;
|
|
|
|
|
}
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
__ocfs2_set_buffer_uptodate(oi, bh->b_blocknr, expand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called against a newly allocated buffer. Most likely nobody should
|
|
|
|
|
* be able to read this sort of metadata while it's still being
|
|
|
|
|
* allocated, but this is careful to take ip_io_mutex anyway. */
|
|
|
|
|
* allocated, but this is careful to take ci_io_mutex anyway. */
|
|
|
|
|
void ocfs2_set_new_buffer_uptodate(struct inode *inode,
|
|
|
|
|
struct buffer_head *bh)
|
|
|
|
|
{
|
|
|
|
|
struct ocfs2_inode_info *oi = OCFS2_I(inode);
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
|
|
|
|
|
/* This should definitely *not* exist in our cache */
|
|
|
|
|
BUG_ON(ocfs2_buffer_cached(oi, bh));
|
|
|
|
|
|
|
|
|
|
set_buffer_uptodate(bh);
|
|
|
|
|
|
|
|
|
|
mutex_lock(&oi->ip_io_mutex);
|
|
|
|
|
mutex_lock(ci->ci_io_mutex);
|
|
|
|
|
ocfs2_set_buffer_uptodate(inode, bh);
|
|
|
|
|
mutex_unlock(&oi->ip_io_mutex);
|
|
|
|
|
mutex_unlock(ci->ci_io_mutex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Requires ip_lock. */
|
|
|
|
@ -487,7 +490,7 @@ static void ocfs2_remove_metadata_array(struct ocfs2_caching_info *ci,
|
|
|
|
|
sector_t *array = ci->ci_cache.ci_array;
|
|
|
|
|
int bytes;
|
|
|
|
|
|
|
|
|
|
BUG_ON(index < 0 || index >= OCFS2_INODE_MAX_CACHE_ARRAY);
|
|
|
|
|
BUG_ON(index < 0 || index >= OCFS2_CACHE_INFO_MAX_ARRAY);
|
|
|
|
|
BUG_ON(index >= ci->ci_num_cached);
|
|
|
|
|
BUG_ON(!ci->ci_num_cached);
|
|
|
|
|
|
|
|
|
@ -523,13 +526,13 @@ static void ocfs2_remove_block_from_cache(struct inode *inode,
|
|
|
|
|
struct ocfs2_inode_info *oi = OCFS2_I(inode);
|
|
|
|
|
struct ocfs2_caching_info *ci = &oi->ip_metadata_cache;
|
|
|
|
|
|
|
|
|
|
spin_lock(&oi->ip_lock);
|
|
|
|
|
spin_lock(ci->ci_lock);
|
|
|
|
|
mlog(0, "Inode %llu, remove %llu, items = %u, array = %u\n",
|
|
|
|
|
(unsigned long long)oi->ip_blkno,
|
|
|
|
|
(unsigned long long) block, ci->ci_num_cached,
|
|
|
|
|
oi->ip_flags & OCFS2_INODE_CACHE_INLINE);
|
|
|
|
|
ci->ci_flags & OCFS2_CACHE_FL_INLINE);
|
|
|
|
|
|
|
|
|
|
if (oi->ip_flags & OCFS2_INODE_CACHE_INLINE) {
|
|
|
|
|
if (ci->ci_flags & OCFS2_CACHE_FL_INLINE) {
|
|
|
|
|
index = ocfs2_search_cache_array(ci, block);
|
|
|
|
|
if (index != -1)
|
|
|
|
|
ocfs2_remove_metadata_array(ci, index);
|
|
|
|
@ -538,7 +541,7 @@ static void ocfs2_remove_block_from_cache(struct inode *inode,
|
|
|
|
|
if (item)
|
|
|
|
|
ocfs2_remove_metadata_tree(ci, item);
|
|
|
|
|
}
|
|
|
|
|
spin_unlock(&oi->ip_lock);
|
|
|
|
|
spin_unlock(ci->ci_lock);
|
|
|
|
|
|
|
|
|
|
if (item)
|
|
|
|
|
kmem_cache_free(ocfs2_uptodate_cachep, item);
|
|
|
|
@ -577,7 +580,7 @@ int __init init_ocfs2_uptodate_cache(void)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
mlog(0, "%u inlined cache items per inode.\n",
|
|
|
|
|
OCFS2_INODE_MAX_CACHE_ARRAY);
|
|
|
|
|
OCFS2_CACHE_INFO_MAX_ARRAY);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|