tcache            494 arch/mips/include/asm/cpu-features.h #define cpu_tcache_line_size()	cpu_data[0].tcache.linesz
tcache             79 arch/mips/include/asm/cpu-info.h 	struct cache_desc	tcache; /* Tertiary/split secondary cache */
tcache             43 arch/mips/kernel/cacheinfo.c 	if (c->tcache.waysize) {
tcache             94 arch/mips/kernel/cacheinfo.c 	if (c->tcache.waysize)
tcache             95 arch/mips/kernel/cacheinfo.c 		populate_cache(tcache, this_leaf, 3, CACHE_TYPE_UNIFIED);
tcache            267 arch/mips/mm/sc-rm7k.c 	c->tcache.linesz = tc_lsize;
tcache            268 arch/mips/mm/sc-rm7k.c 	c->tcache.ways = 1;
tcache             21 arch/x86/entry/vdso/vgetcpu.c long getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache)
tcache             67 arch/x86/um/vdso/um_vdso.c long getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache)
tcache            328 drivers/acpi/hmat/hmat.c 	struct target_cache *tcache;
tcache            346 drivers/acpi/hmat/hmat.c 	tcache = kzalloc(sizeof(*tcache), GFP_KERNEL);
tcache            347 drivers/acpi/hmat/hmat.c 	if (!tcache) {
tcache            352 drivers/acpi/hmat/hmat.c 	tcache->cache_attrs.size = cache->cache_size;
tcache            353 drivers/acpi/hmat/hmat.c 	tcache->cache_attrs.level = (attrs & ACPI_HMAT_CACHE_LEVEL) >> 4;
tcache            354 drivers/acpi/hmat/hmat.c 	tcache->cache_attrs.line_size = (attrs & ACPI_HMAT_CACHE_LINE_SIZE) >> 16;
tcache            358 drivers/acpi/hmat/hmat.c 		tcache->cache_attrs.indexing = NODE_CACHE_DIRECT_MAP;
tcache            361 drivers/acpi/hmat/hmat.c 		tcache->cache_attrs.indexing = NODE_CACHE_INDEXED;
tcache            365 drivers/acpi/hmat/hmat.c 		tcache->cache_attrs.indexing = NODE_CACHE_OTHER;
tcache            371 drivers/acpi/hmat/hmat.c 		tcache->cache_attrs.write_policy = NODE_CACHE_WRITE_BACK;
tcache            374 drivers/acpi/hmat/hmat.c 		tcache->cache_attrs.write_policy = NODE_CACHE_WRITE_THROUGH;
tcache            378 drivers/acpi/hmat/hmat.c 		tcache->cache_attrs.write_policy = NODE_CACHE_WRITE_OTHER;
tcache            381 drivers/acpi/hmat/hmat.c 	list_add_tail(&tcache->node, &target->caches);
tcache            604 drivers/acpi/hmat/hmat.c 	struct target_cache *tcache;
tcache            606 drivers/acpi/hmat/hmat.c 	list_for_each_entry(tcache, &target->caches, node)
tcache            607 drivers/acpi/hmat/hmat.c 		node_add_cache(mem_nid, &tcache->cache_attrs);
tcache            677 drivers/acpi/hmat/hmat.c 	struct target_cache *tcache, *cnext;
tcache            680 drivers/acpi/hmat/hmat.c 		list_for_each_entry_safe(tcache, cnext, &target->caches, node) {
tcache            681 drivers/acpi/hmat/hmat.c 			list_del(&tcache->node);
tcache            682 drivers/acpi/hmat/hmat.c 			kfree(tcache);