Lines Matching refs:cache
481 struct fscache_cache *cache; in fscache_put_operation() local
518 cache = object->cache; in fscache_put_operation()
519 spin_lock(&cache->op_gc_list_lock); in fscache_put_operation()
520 list_add_tail(&op->pend_link, &cache->op_gc_list); in fscache_put_operation()
521 spin_unlock(&cache->op_gc_list_lock); in fscache_put_operation()
522 schedule_work(&cache->op_gc); in fscache_put_operation()
547 struct fscache_cache *cache = in fscache_operation_gc() local
554 spin_lock(&cache->op_gc_list_lock); in fscache_operation_gc()
555 if (list_empty(&cache->op_gc_list)) { in fscache_operation_gc()
556 spin_unlock(&cache->op_gc_list_lock); in fscache_operation_gc()
560 op = list_entry(cache->op_gc_list.next, in fscache_operation_gc()
563 spin_unlock(&cache->op_gc_list_lock); in fscache_operation_gc()
585 if (!list_empty(&cache->op_gc_list)) in fscache_operation_gc()
586 schedule_work(&cache->op_gc); in fscache_operation_gc()