Searched refs:cache_list (Results 1 – 8 of 8) sorted by relevance
/Linux-v4.19/drivers/gpu/drm/i915/ |
D | i915_gem_batch_pool.c | 36 for (n = 0; n < ARRAY_SIZE(pool->cache_list); n++) in i915_gem_batch_pool_init() 37 INIT_LIST_HEAD(&pool->cache_list[n]); in i915_gem_batch_pool_init() 52 for (n = 0; n < ARRAY_SIZE(pool->cache_list); n++) { in i915_gem_batch_pool_fini() 56 &pool->cache_list[n], in i915_gem_batch_pool_fini() 60 INIT_LIST_HEAD(&pool->cache_list[n]); in i915_gem_batch_pool_fini() 92 if (n >= ARRAY_SIZE(pool->cache_list)) in i915_gem_batch_pool_get() 93 n = ARRAY_SIZE(pool->cache_list) - 1; in i915_gem_batch_pool_get() 94 list = &pool->cache_list[n]; in i915_gem_batch_pool_get()
|
D | i915_gem_batch_pool.h | 16 struct list_head cache_list[4]; member
|
D | i915_debugfs.c | 369 for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) { in print_batch_pool_stats() 371 &engine->batch_pool.cache_list[j], in print_batch_pool_stats() 622 for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) { in i915_gem_batch_pool_info() 627 &engine->batch_pool.cache_list[j], in i915_gem_batch_pool_info() 634 &engine->batch_pool.cache_list[j], in i915_gem_batch_pool_info()
|
/Linux-v4.19/fs/fat/ |
D | cache.c | 19 struct list_head cache_list; member 43 INIT_LIST_HEAD(&cache->cache_list); in init_once() 69 BUG_ON(!list_empty(&cache->cache_list)); in fat_cache_free() 76 if (MSDOS_I(inode)->cache_lru.next != &cache->cache_list) in fat_cache_update_lru() 77 list_move(&cache->cache_list, &MSDOS_I(inode)->cache_lru); in fat_cache_update_lru() 90 list_for_each_entry(p, &MSDOS_I(inode)->cache_lru, cache_list) { in fat_cache_lookup() 122 list_for_each_entry(p, &MSDOS_I(inode)->cache_lru, cache_list) { in fat_cache_merge() 170 cache = list_entry(p, struct fat_cache, cache_list); in fat_cache_add() 193 struct fat_cache, cache_list); in __fat_cache_inval_inode() 194 list_del_init(&cache->cache_list); in __fat_cache_inval_inode()
|
/Linux-v4.19/net/sunrpc/ |
D | cache.c | 47 INIT_HLIST_NODE(&h->cache_list); in cache_init() 67 hlist_for_each_entry(tmp, head, cache_list) { in sunrpc_cache_lookup() 93 hlist_for_each_entry(tmp, head, cache_list) { in sunrpc_cache_lookup() 96 hlist_del_init(&tmp->cache_list); in sunrpc_cache_lookup() 108 hlist_add_head(&new->cache_list, head); in sunrpc_cache_lookup() 181 hlist_add_head(&tmp->cache_list, &detail->hash_table[hash]); in sunrpc_cache_update() 334 static LIST_HEAD(cache_list); 352 list_add(&cd->others, &cache_list); in sunrpc_init_cache_detail() 370 if (list_empty(&cache_list)) { in sunrpc_destroy_cache_detail() 396 next = cache_list.next; in cache_clean() [all …]
|
/Linux-v4.19/arch/powerpc/kernel/ |
D | cacheinfo.c | 131 static LIST_HEAD(cache_list); 150 list_add(&cache->list, &cache_list); in cache_init() 168 list_for_each_entry(iter, &cache_list, list) in release_cache_debugcheck() 310 list_for_each_entry(iter, &cache_list, list) in cache_find_first_sibling() 323 list_for_each_entry(iter, &cache_list, list) { in cache_lookup_by_node() 749 struct cache *cache_list) in cacheinfo_sysfs_populate() argument 759 cache = cache_list; in cacheinfo_sysfs_populate()
|
/Linux-v4.19/drivers/gpu/drm/vc4/ |
D | vc4_bo.c | 557 struct list_head *cache_list; in vc4_free_object() local 588 cache_list = vc4_get_cache_list_for_size(dev, gem_bo->size); in vc4_free_object() 589 if (!cache_list) { in vc4_free_object() 607 list_add(&bo->size_head, cache_list); in vc4_free_object()
|
/Linux-v4.19/include/linux/sunrpc/ |
D | cache.h | 49 struct hlist_node cache_list; member
|