Lines Matching refs:cache
253 struct nilfs_palloc_cache *cache = NILFS_MDT(inode)->mi_palloc_cache; in nilfs_palloc_get_desc_block() local
258 bhp, &cache->prev_desc, &cache->lock); in nilfs_palloc_get_desc_block()
272 struct nilfs_palloc_cache *cache = NILFS_MDT(inode)->mi_palloc_cache; in nilfs_palloc_get_bitmap_block() local
277 &cache->prev_bitmap, &cache->lock); in nilfs_palloc_get_bitmap_block()
290 struct nilfs_palloc_cache *cache = NILFS_MDT(inode)->mi_palloc_cache; in nilfs_palloc_get_entry_block() local
295 &cache->prev_entry, &cache->lock); in nilfs_palloc_get_entry_block()
761 struct nilfs_palloc_cache *cache) in nilfs_palloc_setup_cache() argument
763 NILFS_MDT(inode)->mi_palloc_cache = cache; in nilfs_palloc_setup_cache()
764 spin_lock_init(&cache->lock); in nilfs_palloc_setup_cache()
769 struct nilfs_palloc_cache *cache = NILFS_MDT(inode)->mi_palloc_cache; in nilfs_palloc_clear_cache() local
771 spin_lock(&cache->lock); in nilfs_palloc_clear_cache()
772 brelse(cache->prev_desc.bh); in nilfs_palloc_clear_cache()
773 brelse(cache->prev_bitmap.bh); in nilfs_palloc_clear_cache()
774 brelse(cache->prev_entry.bh); in nilfs_palloc_clear_cache()
775 cache->prev_desc.bh = NULL; in nilfs_palloc_clear_cache()
776 cache->prev_bitmap.bh = NULL; in nilfs_palloc_clear_cache()
777 cache->prev_entry.bh = NULL; in nilfs_palloc_clear_cache()
778 spin_unlock(&cache->lock); in nilfs_palloc_clear_cache()