Commit a58730c4 authored by Rusty Russell's avatar Rusty Russell

module: make module_sect_attrs private to kernel/module.c

No-one else is using these afaics.
Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent e4c576b9
...@@ -229,23 +229,6 @@ enum module_state ...@@ -229,23 +229,6 @@ enum module_state
MODULE_STATE_GOING, MODULE_STATE_GOING,
}; };
/* Similar stuff for section attributes. */
struct module_sect_attr
{
struct module_attribute mattr;
char *name;
unsigned long address;
};
struct module_sect_attrs
{
struct attribute_group grp;
int nsections;
struct module_sect_attr attrs[0];
};
struct module_param_attrs;
struct module struct module
{ {
enum module_state state; enum module_state state;
......
...@@ -991,6 +991,20 @@ static unsigned long resolve_symbol(Elf_Shdr *sechdrs, ...@@ -991,6 +991,20 @@ static unsigned long resolve_symbol(Elf_Shdr *sechdrs,
* J. Corbet <corbet@lwn.net> * J. Corbet <corbet@lwn.net>
*/ */
#if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS) #if defined(CONFIG_KALLSYMS) && defined(CONFIG_SYSFS)
struct module_sect_attr
{
struct module_attribute mattr;
char *name;
unsigned long address;
};
struct module_sect_attrs
{
struct attribute_group grp;
unsigned int nsections;
struct module_sect_attr attrs[0];
};
static ssize_t module_sect_show(struct module_attribute *mattr, static ssize_t module_sect_show(struct module_attribute *mattr,
struct module *mod, char *buf) struct module *mod, char *buf)
{ {
...@@ -1001,7 +1015,7 @@ static ssize_t module_sect_show(struct module_attribute *mattr, ...@@ -1001,7 +1015,7 @@ static ssize_t module_sect_show(struct module_attribute *mattr,
static void free_sect_attrs(struct module_sect_attrs *sect_attrs) static void free_sect_attrs(struct module_sect_attrs *sect_attrs)
{ {
int section; unsigned int section;
for (section = 0; section < sect_attrs->nsections; section++) for (section = 0; section < sect_attrs->nsections; section++)
kfree(sect_attrs->attrs[section].name); kfree(sect_attrs->attrs[section].name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment