Lines Matching refs:cache_attrs
223 * @cache_attrs:Attributes for this cache level
228 struct node_cache_attrs cache_attrs;
238 to_cache_info(dev)->cache_attrs.name); \
247 static struct attribute *cache_attrs[] = {
294 * @cache_attrs: Attributes for the cache being added
296 void node_add_cache(unsigned int nid, struct node_cache_attrs *cache_attrs)
306 list_for_each_entry(info, &node->cache_attrs, node) {
307 if (info->cache_attrs.level == cache_attrs->level) {
310 cache_attrs->level);
329 if (dev_set_name(dev, "index%d", cache_attrs->level))
332 info->cache_attrs = *cache_attrs;
335 cache_attrs->level);
339 list_add_tail(&info->node, &node->cache_attrs);
352 list_for_each_entry_safe(info, next, &node->cache_attrs, node) {
361 INIT_LIST_HEAD(&node_devices[nid]->cache_attrs);