Searched refs:sect_attrs (Results 1 - 3 of 3) sorted by relevance

/linux-master/kernel/module/
H A Dsysfs.c63 static void free_sect_attrs(struct module_sect_attrs *sect_attrs) argument
67 for (section = 0; section < sect_attrs->nsections; section++)
68 kfree(sect_attrs->attrs[section].battr.attr.name);
69 kfree(sect_attrs);
75 struct module_sect_attrs *sect_attrs; local
83 size[0] = ALIGN(struct_size(sect_attrs, attrs, nloaded),
84 sizeof(sect_attrs->grp.bin_attrs[0]));
85 size[1] = (nloaded + 1) * sizeof(sect_attrs->grp.bin_attrs[0]);
86 sect_attrs = kzalloc(size[0] + size[1], GFP_KERNEL);
87 if (!sect_attrs)
[all...]
/linux-master/scripts/gdb/linux/
H A Dsymbols.py94 sect_attrs = module['sect_attrs'].dereference()
98 attrs = sect_attrs['attrs']
101 for n in range(int(sect_attrs['nsections']))}
/linux-master/include/linux/
H A Dmodule.h480 struct module_sect_attrs *sect_attrs; member in struct:module

Completed in 144 milliseconds