Lines Matching refs:ce

546 	struct mb_cache_entry *ce = NULL;  in ext4_xattr_release_block()  local
550 ce = mb_cache_entry_get(ext4_mb_cache, bh->b_bdev, bh->b_blocknr); in ext4_xattr_release_block()
559 if (ce) in ext4_xattr_release_block()
560 mb_cache_entry_free(ce); in ext4_xattr_release_block()
568 if (ce) in ext4_xattr_release_block()
569 mb_cache_entry_release(ce); in ext4_xattr_release_block()
782 struct mb_cache_entry *ce = NULL; in ext4_xattr_block_set() local
791 ce = mb_cache_entry_get(ext4_mb_cache, bs->bh->b_bdev, in ext4_xattr_block_set()
800 if (ce) { in ext4_xattr_block_set()
801 mb_cache_entry_free(ce); in ext4_xattr_block_set()
802 ce = NULL; in ext4_xattr_block_set()
827 if (ce) { in ext4_xattr_block_set()
828 mb_cache_entry_release(ce); in ext4_xattr_block_set()
829 ce = NULL; in ext4_xattr_block_set()
867 new_bh = ext4_xattr_cache_find(inode, header(s->base), &ce); in ext4_xattr_block_set()
895 mb_cache_entry_release(ce); in ext4_xattr_block_set()
896 ce = NULL; in ext4_xattr_block_set()
959 if (ce) in ext4_xattr_block_set()
960 mb_cache_entry_release(ce); in ext4_xattr_block_set()
1535 struct mb_cache_entry *ce; in ext4_xattr_cache_insert() local
1538 ce = mb_cache_entry_alloc(ext4_mb_cache, GFP_NOFS); in ext4_xattr_cache_insert()
1539 if (!ce) { in ext4_xattr_cache_insert()
1543 error = mb_cache_entry_insert(ce, bh->b_bdev, bh->b_blocknr, hash); in ext4_xattr_cache_insert()
1545 mb_cache_entry_free(ce); in ext4_xattr_cache_insert()
1552 mb_cache_entry_release(ce); in ext4_xattr_cache_insert()
1609 struct mb_cache_entry *ce; in ext4_xattr_cache_find() local
1616 ce = mb_cache_entry_find_first(ext4_mb_cache, inode->i_sb->s_bdev, in ext4_xattr_cache_find()
1618 while (ce) { in ext4_xattr_cache_find()
1621 if (IS_ERR(ce)) { in ext4_xattr_cache_find()
1622 if (PTR_ERR(ce) == -EAGAIN) in ext4_xattr_cache_find()
1626 bh = sb_bread(inode->i_sb, ce->e_block); in ext4_xattr_cache_find()
1629 (unsigned long) ce->e_block); in ext4_xattr_cache_find()
1633 (unsigned long) ce->e_block, in ext4_xattr_cache_find()
1637 *pce = ce; in ext4_xattr_cache_find()
1641 ce = mb_cache_entry_find_next(ce, inode->i_sb->s_bdev, hash); in ext4_xattr_cache_find()