Lines Matching refs:info
263 struct node_cache_info *info = to_cache_info(dev);
264 kfree(info);
298 struct node_cache_info *info;
306 list_for_each_entry(info, &node->cache_attrs, node) {
307 if (info->cache_attrs.level == cache_attrs->level) {
320 info = kzalloc(sizeof(*info), GFP_KERNEL);
321 if (!info)
324 dev = &info->dev;
332 info->cache_attrs = *cache_attrs;
339 list_add_tail(&info->node, &node->cache_attrs);
347 struct node_cache_info *info, *next;
352 list_for_each_entry_safe(info, next, &node->cache_attrs, node) {
353 list_del(&info->node);
354 device_unregister(&info->dev);