mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
module: fix comment style
Many comments in this module do not comply with the preferred multi-line comment style as reported by 'scripts/checkpatch.pl': WARNING: Block comments use * on subsequent lines WARNING: Block comments use a trailing */ on a separate line Fix those comments, along with (unreported for some reason?) the starts of the multi-line comments not being /* on their own line... Signed-off-by: Sergey Shtylyov <s.shtylyov@omprussia.ru> Signed-off-by: Jessica Yu <jeyu@kernel.org>
This commit is contained in:
parent
2541743e99
commit
24b9f0d220
1 changed files with 74 additions and 43 deletions
117
kernel/module.c
117
kernel/module.c
|
@ -1,9 +1,8 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2002 Richard Henderson
|
* Copyright (C) 2002 Richard Henderson
|
||||||
Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
|
* Copyright (C) 2001 Rusty Russell, 2002, 2010 Rusty Russell IBM.
|
||||||
|
*/
|
||||||
*/
|
|
||||||
|
|
||||||
#define INCLUDE_VERMAGIC
|
#define INCLUDE_VERMAGIC
|
||||||
|
|
||||||
|
@ -86,7 +85,8 @@
|
||||||
* 1) List of modules (also safely readable with preempt_disable),
|
* 1) List of modules (also safely readable with preempt_disable),
|
||||||
* 2) module_use links,
|
* 2) module_use links,
|
||||||
* 3) module_addr_min/module_addr_max.
|
* 3) module_addr_min/module_addr_max.
|
||||||
* (delete and add uses RCU list operations). */
|
* (delete and add uses RCU list operations).
|
||||||
|
*/
|
||||||
DEFINE_MUTEX(module_mutex);
|
DEFINE_MUTEX(module_mutex);
|
||||||
EXPORT_SYMBOL_GPL(module_mutex);
|
EXPORT_SYMBOL_GPL(module_mutex);
|
||||||
static LIST_HEAD(modules);
|
static LIST_HEAD(modules);
|
||||||
|
@ -586,8 +586,10 @@ static bool find_exported_symbol_in_section(const struct symsearch *syms,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Find an exported symbol and return it, along with, (optional) crc and
|
/*
|
||||||
* (optional) module which owns it. Needs preempt disabled or module_mutex. */
|
* Find an exported symbol and return it, along with, (optional) crc and
|
||||||
|
* (optional) module which owns it. Needs preempt disabled or module_mutex.
|
||||||
|
*/
|
||||||
static const struct kernel_symbol *find_symbol(const char *name,
|
static const struct kernel_symbol *find_symbol(const char *name,
|
||||||
struct module **owner,
|
struct module **owner,
|
||||||
const s32 **crc,
|
const s32 **crc,
|
||||||
|
@ -1644,8 +1646,10 @@ static void remove_sect_attrs(struct module *mod)
|
||||||
if (mod->sect_attrs) {
|
if (mod->sect_attrs) {
|
||||||
sysfs_remove_group(&mod->mkobj.kobj,
|
sysfs_remove_group(&mod->mkobj.kobj,
|
||||||
&mod->sect_attrs->grp);
|
&mod->sect_attrs->grp);
|
||||||
/* We are positive that no one is using any sect attrs
|
/*
|
||||||
* at this point. Deallocate immediately. */
|
* We are positive that no one is using any sect attrs
|
||||||
|
* at this point. Deallocate immediately.
|
||||||
|
*/
|
||||||
free_sect_attrs(mod->sect_attrs);
|
free_sect_attrs(mod->sect_attrs);
|
||||||
mod->sect_attrs = NULL;
|
mod->sect_attrs = NULL;
|
||||||
}
|
}
|
||||||
|
@ -2216,8 +2220,10 @@ static void free_module(struct module *mod)
|
||||||
|
|
||||||
mod_sysfs_teardown(mod);
|
mod_sysfs_teardown(mod);
|
||||||
|
|
||||||
/* We leave it in list to prevent duplicate loads, but make sure
|
/*
|
||||||
* that noone uses it while it's being deconstructed. */
|
* We leave it in list to prevent duplicate loads, but make sure
|
||||||
|
* that noone uses it while it's being deconstructed.
|
||||||
|
*/
|
||||||
mutex_lock(&module_mutex);
|
mutex_lock(&module_mutex);
|
||||||
mod->state = MODULE_STATE_UNFORMED;
|
mod->state = MODULE_STATE_UNFORMED;
|
||||||
mutex_unlock(&module_mutex);
|
mutex_unlock(&module_mutex);
|
||||||
|
@ -2334,8 +2340,10 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
|
||||||
if (!strncmp(name, "__gnu_lto", 9))
|
if (!strncmp(name, "__gnu_lto", 9))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* We compiled with -fno-common. These are not
|
/*
|
||||||
supposed to happen. */
|
* We compiled with -fno-common. These are not
|
||||||
|
* supposed to happen.
|
||||||
|
*/
|
||||||
pr_debug("Common symbol: %s\n", name);
|
pr_debug("Common symbol: %s\n", name);
|
||||||
pr_warn("%s: please compile with -fno-common\n",
|
pr_warn("%s: please compile with -fno-common\n",
|
||||||
mod->name);
|
mod->name);
|
||||||
|
@ -2438,16 +2446,20 @@ static long get_offset(struct module *mod, unsigned int *size,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
|
/*
|
||||||
might -- code, read-only data, read-write data, small data. Tally
|
* Lay out the SHF_ALLOC sections in a way not dissimilar to how ld
|
||||||
sizes, and place the offsets into sh_entsize fields: high bit means it
|
* might -- code, read-only data, read-write data, small data. Tally
|
||||||
belongs in init. */
|
* sizes, and place the offsets into sh_entsize fields: high bit means it
|
||||||
|
* belongs in init.
|
||||||
|
*/
|
||||||
static void layout_sections(struct module *mod, struct load_info *info)
|
static void layout_sections(struct module *mod, struct load_info *info)
|
||||||
{
|
{
|
||||||
static unsigned long const masks[][2] = {
|
static unsigned long const masks[][2] = {
|
||||||
/* NOTE: all executable code must be the first section
|
/*
|
||||||
|
* NOTE: all executable code must be the first section
|
||||||
* in this array; otherwise modify the text_size
|
* in this array; otherwise modify the text_size
|
||||||
* finder in the two loops below */
|
* finder in the two loops below
|
||||||
|
*/
|
||||||
{ SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
|
{ SHF_EXECINSTR | SHF_ALLOC, ARCH_SHF_SMALL },
|
||||||
{ SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
|
{ SHF_ALLOC, SHF_WRITE | ARCH_SHF_SMALL },
|
||||||
{ SHF_RO_AFTER_INIT | SHF_ALLOC, ARCH_SHF_SMALL },
|
{ SHF_RO_AFTER_INIT | SHF_ALLOC, ARCH_SHF_SMALL },
|
||||||
|
@ -3062,8 +3074,10 @@ static int rewrite_section_headers(struct load_info *info, int flags)
|
||||||
return -ENOEXEC;
|
return -ENOEXEC;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mark all sections sh_addr with their address in the
|
/*
|
||||||
temporary image. */
|
* Mark all sections sh_addr with their address in the
|
||||||
|
* temporary image.
|
||||||
|
*/
|
||||||
shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
|
shdr->sh_addr = (size_t)info->hdr + shdr->sh_offset;
|
||||||
|
|
||||||
#ifndef CONFIG_MODULE_UNLOAD
|
#ifndef CONFIG_MODULE_UNLOAD
|
||||||
|
@ -3494,9 +3508,11 @@ static struct module *layout_and_allocate(struct load_info *info, int flags)
|
||||||
if (ndx)
|
if (ndx)
|
||||||
info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
|
info->sechdrs[ndx].sh_flags |= SHF_RO_AFTER_INIT;
|
||||||
|
|
||||||
/* Determine total sizes, and put offsets in sh_entsize. For now
|
/*
|
||||||
this is done generically; there doesn't appear to be any
|
* Determine total sizes, and put offsets in sh_entsize. For now
|
||||||
special cases for the architectures. */
|
* this is done generically; there doesn't appear to be any
|
||||||
|
* special cases for the architectures.
|
||||||
|
*/
|
||||||
layout_sections(info->mod, info);
|
layout_sections(info->mod, info);
|
||||||
layout_symtab(info->mod, info);
|
layout_symtab(info->mod, info);
|
||||||
|
|
||||||
|
@ -3780,8 +3796,10 @@ static int complete_formation(struct module *mod, struct load_info *info)
|
||||||
module_enable_nx(mod);
|
module_enable_nx(mod);
|
||||||
module_enable_x(mod);
|
module_enable_x(mod);
|
||||||
|
|
||||||
/* Mark state as coming so strong_try_module_get() ignores us,
|
/*
|
||||||
* but kallsyms etc. can see us. */
|
* Mark state as coming so strong_try_module_get() ignores us,
|
||||||
|
* but kallsyms etc. can see us.
|
||||||
|
*/
|
||||||
mod->state = MODULE_STATE_COMING;
|
mod->state = MODULE_STATE_COMING;
|
||||||
mutex_unlock(&module_mutex);
|
mutex_unlock(&module_mutex);
|
||||||
|
|
||||||
|
@ -3828,8 +3846,10 @@ static int unknown_module_param_cb(char *param, char *val, const char *modname,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allocate and load the module: note that size of section 0 is always
|
/*
|
||||||
zero, and we rely on this for optional sections. */
|
* Allocate and load the module: note that size of section 0 is always
|
||||||
|
* zero, and we rely on this for optional sections.
|
||||||
|
*/
|
||||||
static int load_module(struct load_info *info, const char __user *uargs,
|
static int load_module(struct load_info *info, const char __user *uargs,
|
||||||
int flags)
|
int flags)
|
||||||
{
|
{
|
||||||
|
@ -3903,8 +3923,10 @@ static int load_module(struct load_info *info, const char __user *uargs,
|
||||||
|
|
||||||
init_param_lock(mod);
|
init_param_lock(mod);
|
||||||
|
|
||||||
/* Now we've got everything in the final locations, we can
|
/*
|
||||||
* find optional sections. */
|
* Now we've got everything in the final locations, we can
|
||||||
|
* find optional sections.
|
||||||
|
*/
|
||||||
err = find_module_sections(mod, info);
|
err = find_module_sections(mod, info);
|
||||||
if (err)
|
if (err)
|
||||||
goto free_unload;
|
goto free_unload;
|
||||||
|
@ -4118,8 +4140,10 @@ static const char *find_kallsyms_symbol(struct module *mod,
|
||||||
|
|
||||||
bestval = kallsyms_symbol_value(&kallsyms->symtab[best]);
|
bestval = kallsyms_symbol_value(&kallsyms->symtab[best]);
|
||||||
|
|
||||||
/* Scan for closest preceding symbol, and next symbol. (ELF
|
/*
|
||||||
starts real symbols at 1). */
|
* Scan for closest preceding symbol, and next symbol. (ELF
|
||||||
|
* starts real symbols at 1).
|
||||||
|
*/
|
||||||
for (i = 1; i < kallsyms->num_symtab; i++) {
|
for (i = 1; i < kallsyms->num_symtab; i++) {
|
||||||
const Elf_Sym *sym = &kallsyms->symtab[i];
|
const Elf_Sym *sym = &kallsyms->symtab[i];
|
||||||
unsigned long thisval = kallsyms_symbol_value(sym);
|
unsigned long thisval = kallsyms_symbol_value(sym);
|
||||||
|
@ -4127,8 +4151,10 @@ static const char *find_kallsyms_symbol(struct module *mod,
|
||||||
if (sym->st_shndx == SHN_UNDEF)
|
if (sym->st_shndx == SHN_UNDEF)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* We ignore unnamed symbols: they're uninformative
|
/*
|
||||||
* and inserted at a whim. */
|
* We ignore unnamed symbols: they're uninformative
|
||||||
|
* and inserted at a whim.
|
||||||
|
*/
|
||||||
if (*kallsyms_symbol_name(kallsyms, i) == '\0'
|
if (*kallsyms_symbol_name(kallsyms, i) == '\0'
|
||||||
|| is_arm_mapping_symbol(kallsyms_symbol_name(kallsyms, i)))
|
|| is_arm_mapping_symbol(kallsyms_symbol_name(kallsyms, i)))
|
||||||
continue;
|
continue;
|
||||||
|
@ -4158,8 +4184,10 @@ void * __weak dereference_module_function_descriptor(struct module *mod,
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For kallsyms to ask for address resolution. NULL means not found. Careful
|
/*
|
||||||
* not to lock to avoid deadlock on oopses, simply disable preemption. */
|
* For kallsyms to ask for address resolution. NULL means not found. Careful
|
||||||
|
* not to lock to avoid deadlock on oopses, simply disable preemption.
|
||||||
|
*/
|
||||||
const char *module_address_lookup(unsigned long addr,
|
const char *module_address_lookup(unsigned long addr,
|
||||||
unsigned long *size,
|
unsigned long *size,
|
||||||
unsigned long *offset,
|
unsigned long *offset,
|
||||||
|
@ -4417,11 +4445,12 @@ static int m_show(struct seq_file *m, void *p)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Format: modulename size refcount deps address
|
/*
|
||||||
|
* Format: modulename size refcount deps address
|
||||||
Where refcount is a number or -, and deps is a comma-separated list
|
*
|
||||||
of depends or -.
|
* Where refcount is a number or -, and deps is a comma-separated list
|
||||||
*/
|
* of depends or -.
|
||||||
|
*/
|
||||||
static const struct seq_operations modules_op = {
|
static const struct seq_operations modules_op = {
|
||||||
.start = m_start,
|
.start = m_start,
|
||||||
.next = m_next,
|
.next = m_next,
|
||||||
|
@ -4593,8 +4622,10 @@ void print_modules(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_MODVERSIONS
|
#ifdef CONFIG_MODVERSIONS
|
||||||
/* Generate the signature for all relevant module structures here.
|
/*
|
||||||
* If these change, we don't want to try to parse the module. */
|
* Generate the signature for all relevant module structures here.
|
||||||
|
* If these change, we don't want to try to parse the module.
|
||||||
|
*/
|
||||||
void module_layout(struct module *mod,
|
void module_layout(struct module *mod,
|
||||||
struct modversion_info *ver,
|
struct modversion_info *ver,
|
||||||
struct kernel_param *kp,
|
struct kernel_param *kp,
|
||||||
|
|
Loading…
Reference in a new issue