Home
last modified time | relevance | path

Searched refs:cpu_cache (Results 1 – 7 of 7) sorted by relevance

/linux-4.4.14/arch/arm/include/asm/
Dcacheflush.h126 extern struct cpu_cache_fns cpu_cache;
128 #define __cpuc_flush_icache_all cpu_cache.flush_icache_all
129 #define __cpuc_flush_kern_all cpu_cache.flush_kern_all
130 #define __cpuc_flush_kern_louis cpu_cache.flush_kern_louis
131 #define __cpuc_flush_user_all cpu_cache.flush_user_all
132 #define __cpuc_flush_user_range cpu_cache.flush_user_range
133 #define __cpuc_coherent_kern_range cpu_cache.coherent_kern_range
134 #define __cpuc_coherent_user_range cpu_cache.coherent_user_range
135 #define __cpuc_flush_dcache_area cpu_cache.flush_kern_dcache_area
143 #define dmac_flush_range cpu_cache.dma_flush_range
/linux-4.4.14/arch/arm/mm/
Ddma.h27 #define dmac_map_area cpu_cache.dma_map_area
28 #define dmac_unmap_area cpu_cache.dma_unmap_area
Dproc-syms.c34 EXPORT_SYMBOL(cpu_cache);
/linux-4.4.14/arch/powerpc/kernel/
Dcacheinfo.c456 struct cache *cpu_cache = NULL; in cache_chain_instantiate() local
465 cpu_cache = cache_lookup_or_instantiate(cpu_node, 1); in cache_chain_instantiate()
466 if (!cpu_cache) in cache_chain_instantiate()
469 do_subsidiary_caches(cpu_cache); in cache_chain_instantiate()
471 cache_cpu_set(cpu_cache, cpu_id); in cache_chain_instantiate()
475 return cpu_cache; in cache_chain_instantiate()
/linux-4.4.14/include/linux/
Dslab_def.h11 struct array_cache __percpu *cpu_cache; member
/linux-4.4.14/mm/
Dslab.c475 return this_cpu_ptr(cachep->cpu_cache); in cpu_cache_get()
1119 nc = per_cpu_ptr(cachep->cpu_cache, cpu); in cpuup_canceled()
1997 struct array_cache __percpu *cpu_cache; in alloc_kmem_cache_cpus() local
2000 cpu_cache = __alloc_percpu(size, sizeof(void *)); in alloc_kmem_cache_cpus()
2002 if (!cpu_cache) in alloc_kmem_cache_cpus()
2006 init_arraycache(per_cpu_ptr(cpu_cache, cpu), in alloc_kmem_cache_cpus()
2010 return cpu_cache; in alloc_kmem_cache_cpus()
2018 cachep->cpu_cache = alloc_kmem_cache_cpus(cachep, 1, 1); in setup_cpu_cache()
2019 if (!cachep->cpu_cache) in setup_cpu_cache()
2424 free_percpu(cachep->cpu_cache); in __kmem_cache_shutdown()
[all …]
/linux-4.4.14/arch/arm/kernel/
Dsetup.c124 struct cpu_cache_fns cpu_cache __read_mostly;
631 cpu_cache = *list->cache; in setup_processor()