Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/kernel/
H A Dmodule.c1685 static void free_notes_attrs(struct module_notes_attrs *notes_attrs, in free_notes_attrs() argument
1688 if (notes_attrs->dir) { in free_notes_attrs()
1690 sysfs_remove_bin_file(notes_attrs->dir, in free_notes_attrs()
1691 &notes_attrs->attrs[i]); in free_notes_attrs()
1692 kobject_put(notes_attrs->dir); in free_notes_attrs()
1694 kfree(notes_attrs); in free_notes_attrs()
1700 struct module_notes_attrs *notes_attrs; in add_notes_attrs() local
1717 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes), in add_notes_attrs()
1719 if (notes_attrs == NULL) in add_notes_attrs()
1722 notes_attrs->notes = notes; in add_notes_attrs()
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dmodule.h464 struct module_notes_attrs *notes_attrs; member