Lines Matching refs:info
259 struct node_cache_info *info = to_cache_info(dev);
260 kfree(info);
294 struct node_cache_info *info;
302 list_for_each_entry(info, &node->cache_attrs, node) {
303 if (info->cache_attrs.level == cache_attrs->level) {
316 info = kzalloc(sizeof(*info), GFP_KERNEL);
317 if (!info)
320 dev = &info->dev;
328 info->cache_attrs = *cache_attrs;
335 list_add_tail(&info->node, &node->cache_attrs);
343 struct node_cache_info *info, *next;
348 list_for_each_entry_safe(info, next, &node->cache_attrs, node) {
349 list_del(&info->node);
350 device_unregister(&info->dev);