Home
last modified time | relevance | path

Searched refs:notes_attrs (Results 1 – 2 of 2) sorted by relevance

/kernel/linux/linux-5.10/kernel/
Dmodule.c1681 static void free_notes_attrs(struct module_notes_attrs *notes_attrs, in free_notes_attrs() argument
1684 if (notes_attrs->dir) { in free_notes_attrs()
1686 sysfs_remove_bin_file(notes_attrs->dir, in free_notes_attrs()
1687 &notes_attrs->attrs[i]); in free_notes_attrs()
1688 kobject_put(notes_attrs->dir); in free_notes_attrs()
1690 kfree(notes_attrs); in free_notes_attrs()
1696 struct module_notes_attrs *notes_attrs; in add_notes_attrs() local
1713 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes), in add_notes_attrs()
1715 if (notes_attrs == NULL) in add_notes_attrs()
1718 notes_attrs->notes = notes; in add_notes_attrs()
[all …]
/kernel/linux/linux-5.10/include/linux/
Dmodule.h460 struct module_notes_attrs *notes_attrs; member