Lines Matching refs:list
9 #include <linux/list.h>
16 struct list_head list;
29 list_for_each_entry(ent, &error_injection_list, list) {
43 list_for_each_entry(ent, &error_injection_list, list) {
54 * bpf_error_injection, so we need to populate the list of the symbols that have
83 INIT_LIST_HEAD(&ent->list);
84 list_add_tail(&ent->list, &error_injection_list);
118 list_for_each_entry_safe(ent, n, &error_injection_list, list) {
120 list_del_init(&ent->list);
190 struct ei_entry *ent = list_entry(v, struct ei_entry, list);
224 file = debugfs_create_file("list", 0444, dir, NULL, &debugfs_ei_ops);