Lines Matching refs:ce
476 struct mb_cache_entry *ce = NULL; in ext3_xattr_release_block() local
479 ce = mb_cache_entry_get(ext3_xattr_cache, bh->b_bdev, bh->b_blocknr); in ext3_xattr_release_block()
488 if (ce) in ext3_xattr_release_block()
489 mb_cache_entry_free(ce); in ext3_xattr_release_block()
501 if (ce) in ext3_xattr_release_block()
502 mb_cache_entry_release(ce); in ext3_xattr_release_block()
681 struct mb_cache_entry *ce = NULL; in ext3_xattr_block_set() local
689 ce = mb_cache_entry_get(ext3_xattr_cache, bs->bh->b_bdev, in ext3_xattr_block_set()
697 if (ce) { in ext3_xattr_block_set()
698 mb_cache_entry_free(ce); in ext3_xattr_block_set()
699 ce = NULL; in ext3_xattr_block_set()
724 if (ce) { in ext3_xattr_block_set()
725 mb_cache_entry_release(ce); in ext3_xattr_block_set()
726 ce = NULL; in ext3_xattr_block_set()
764 new_bh = ext3_xattr_cache_find(inode, header(s->base), &ce); in ext3_xattr_block_set()
789 mb_cache_entry_release(ce); in ext3_xattr_block_set()
790 ce = NULL; in ext3_xattr_block_set()
846 if (ce) in ext3_xattr_block_set()
847 mb_cache_entry_release(ce); in ext3_xattr_block_set()
1136 struct mb_cache_entry *ce; in ext3_xattr_cache_insert() local
1139 ce = mb_cache_entry_alloc(ext3_xattr_cache, GFP_NOFS); in ext3_xattr_cache_insert()
1140 if (!ce) { in ext3_xattr_cache_insert()
1144 error = mb_cache_entry_insert(ce, bh->b_bdev, bh->b_blocknr, hash); in ext3_xattr_cache_insert()
1146 mb_cache_entry_free(ce); in ext3_xattr_cache_insert()
1153 mb_cache_entry_release(ce); in ext3_xattr_cache_insert()
1210 struct mb_cache_entry *ce; in ext3_xattr_cache_find() local
1216 ce = mb_cache_entry_find_first(ext3_xattr_cache, inode->i_sb->s_bdev, in ext3_xattr_cache_find()
1218 while (ce) { in ext3_xattr_cache_find()
1221 if (IS_ERR(ce)) { in ext3_xattr_cache_find()
1222 if (PTR_ERR(ce) == -EAGAIN) in ext3_xattr_cache_find()
1226 bh = sb_bread(inode->i_sb, ce->e_block); in ext3_xattr_cache_find()
1230 inode->i_ino, (unsigned long) ce->e_block); in ext3_xattr_cache_find()
1234 (unsigned long) ce->e_block, in ext3_xattr_cache_find()
1238 *pce = ce; in ext3_xattr_cache_find()
1242 ce = mb_cache_entry_find_next(ce, inode->i_sb->s_bdev, hash); in ext3_xattr_cache_find()