Lines Matching refs:list
9 #include <linux/list.h>
17 struct list_head list;
30 list_for_each_entry(ent, &error_injection_list, list) {
46 list_for_each_entry(ent, &error_injection_list, list) {
61 * bpf_error_injection, so we need to populate the list of the symbols that have
90 INIT_LIST_HEAD(&ent->list);
91 list_add_tail(&ent->list, &error_injection_list);
125 list_for_each_entry_safe(ent, n, &error_injection_list, list) {
127 list_del_init(&ent->list);
199 struct ei_entry *ent = list_entry(v, struct ei_entry, list);
221 file = debugfs_create_file("list", 0444, dir, NULL, &ei_fops);