Commit 5c3ead8c authored by Sam Ravnborg's avatar Sam Ravnborg

kbuild: apply CodingStyle to modpost.c

Just some light CodingStyle updates - no functional changes.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent cb80514d
...@@ -21,8 +21,7 @@ int have_vmlinux = 0; ...@@ -21,8 +21,7 @@ int have_vmlinux = 0;
/* Is CONFIG_MODULE_SRCVERSION_ALL set? */ /* Is CONFIG_MODULE_SRCVERSION_ALL set? */
static int all_versions = 0; static int all_versions = 0;
void void fatal(const char *fmt, ...)
fatal(const char *fmt, ...)
{ {
va_list arglist; va_list arglist;
...@@ -35,8 +34,7 @@ fatal(const char *fmt, ...) ...@@ -35,8 +34,7 @@ fatal(const char *fmt, ...)
exit(1); exit(1);
} }
void void warn(const char *fmt, ...)
warn(const char *fmt, ...)
{ {
va_list arglist; va_list arglist;
...@@ -59,8 +57,7 @@ void *do_nofail(void *ptr, const char *expr) ...@@ -59,8 +57,7 @@ void *do_nofail(void *ptr, const char *expr)
static struct module *modules; static struct module *modules;
struct module * static struct module *find_module(char *modname)
find_module(char *modname)
{ {
struct module *mod; struct module *mod;
...@@ -70,8 +67,7 @@ find_module(char *modname) ...@@ -70,8 +67,7 @@ find_module(char *modname)
return mod; return mod;
} }
struct module * static struct module *new_module(char *modname)
new_module(char *modname)
{ {
struct module *mod; struct module *mod;
char *p, *s; char *p, *s;
...@@ -122,11 +118,12 @@ static inline unsigned int tdb_hash(const char *name) ...@@ -122,11 +118,12 @@ static inline unsigned int tdb_hash(const char *name)
return (1103515243 * value + 12345); return (1103515243 * value + 12345);
} }
/* Allocate a new symbols for use in the hash of exported symbols or /**
* the list of unresolved symbols per module */ * Allocate a new symbols for use in the hash of exported symbols or
* the list of unresolved symbols per module
struct symbol * **/
alloc_symbol(const char *name, unsigned int weak, struct symbol *next) static struct symbol *alloc_symbol(const char *name, unsigned int weak,
struct symbol *next)
{ {
struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1)); struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
...@@ -138,9 +135,8 @@ alloc_symbol(const char *name, unsigned int weak, struct symbol *next) ...@@ -138,9 +135,8 @@ alloc_symbol(const char *name, unsigned int weak, struct symbol *next)
} }
/* For the hash of exported symbols */ /* For the hash of exported symbols */
static void new_symbol(const char *name, struct module *module,
void unsigned int *crc)
new_symbol(const char *name, struct module *module, unsigned int *crc)
{ {
unsigned int hash; unsigned int hash;
struct symbol *new; struct symbol *new;
...@@ -154,8 +150,7 @@ new_symbol(const char *name, struct module *module, unsigned int *crc) ...@@ -154,8 +150,7 @@ new_symbol(const char *name, struct module *module, unsigned int *crc)
} }
} }
struct symbol * static struct symbol *find_symbol(const char *name)
find_symbol(const char *name)
{ {
struct symbol *s; struct symbol *s;
...@@ -170,10 +165,12 @@ find_symbol(const char *name) ...@@ -170,10 +165,12 @@ find_symbol(const char *name)
return NULL; return NULL;
} }
/* Add an exported symbol - it may have already been added without a /**
* CRC, in this case just update the CRC */ * Add an exported symbol - it may have already been added without a
void * CRC, in this case just update the CRC
add_exported_symbol(const char *name, struct module *module, unsigned int *crc) **/
static void add_exported_symbol(const char *name, struct module *module,
unsigned int *crc)
{ {
struct symbol *s = find_symbol(name); struct symbol *s = find_symbol(name);
...@@ -187,8 +184,7 @@ add_exported_symbol(const char *name, struct module *module, unsigned int *crc) ...@@ -187,8 +184,7 @@ add_exported_symbol(const char *name, struct module *module, unsigned int *crc)
} }
} }
void * void *grab_file(const char *filename, unsigned long *size)
grab_file(const char *filename, unsigned long *size)
{ {
struct stat st; struct stat st;
void *map; void *map;
...@@ -207,13 +203,12 @@ grab_file(const char *filename, unsigned long *size) ...@@ -207,13 +203,12 @@ grab_file(const char *filename, unsigned long *size)
return map; return map;
} }
/* /**
Return a copy of the next line in a mmap'ed file. * Return a copy of the next line in a mmap'ed file.
spaces in the beginning of the line is trimmed away. * spaces in the beginning of the line is trimmed away.
Return a pointer to a static buffer. * Return a pointer to a static buffer.
*/ **/
char* char* get_next_line(unsigned long *pos, void *file, unsigned long size)
get_next_line(unsigned long *pos, void *file, unsigned long size)
{ {
static char line[4096]; static char line[4096];
int skip = 1; int skip = 1;
...@@ -243,14 +238,12 @@ get_next_line(unsigned long *pos, void *file, unsigned long size) ...@@ -243,14 +238,12 @@ get_next_line(unsigned long *pos, void *file, unsigned long size)
return NULL; return NULL;
} }
void void release_file(void *file, unsigned long size)
release_file(void *file, unsigned long size)
{ {
munmap(file, size); munmap(file, size);
} }
void static void parse_elf(struct elf_info *info, const char *filename)
parse_elf(struct elf_info *info, const char *filename)
{ {
unsigned int i; unsigned int i;
Elf_Ehdr *hdr = info->hdr; Elf_Ehdr *hdr = info->hdr;
...@@ -318,8 +311,7 @@ parse_elf(struct elf_info *info, const char *filename) ...@@ -318,8 +311,7 @@ parse_elf(struct elf_info *info, const char *filename)
fatal("%s is truncated.\n", filename); fatal("%s is truncated.\n", filename);
} }
void static void parse_elf_finish(struct elf_info *info)
parse_elf_finish(struct elf_info *info)
{ {
release_file(info->hdr, info->size); release_file(info->hdr, info->size);
} }
...@@ -327,8 +319,7 @@ parse_elf_finish(struct elf_info *info) ...@@ -327,8 +319,7 @@ parse_elf_finish(struct elf_info *info)
#define CRC_PFX "__crc_" #define CRC_PFX "__crc_"
#define KSYMTAB_PFX "__ksymtab_" #define KSYMTAB_PFX "__ksymtab_"
void static void handle_modversions(struct module *mod, struct elf_info *info,
handle_modversions(struct module *mod, struct elf_info *info,
Elf_Sym *sym, const char *symname) Elf_Sym *sym, const char *symname)
{ {
unsigned int crc; unsigned int crc;
...@@ -397,8 +388,7 @@ handle_modversions(struct module *mod, struct elf_info *info, ...@@ -397,8 +388,7 @@ handle_modversions(struct module *mod, struct elf_info *info,
} }
} }
int static int is_vmlinux(const char *modname)
is_vmlinux(const char *modname)
{ {
const char *myname; const char *myname;
...@@ -410,7 +400,9 @@ is_vmlinux(const char *modname) ...@@ -410,7 +400,9 @@ is_vmlinux(const char *modname)
return strcmp(myname, "vmlinux") == 0; return strcmp(myname, "vmlinux") == 0;
} }
/* Parse tag=value strings from .modinfo section */ /**
* Parse tag=value strings from .modinfo section
**/
static char *next_string(char *string, unsigned long *secsize) static char *next_string(char *string, unsigned long *secsize)
{ {
/* Skip non-zero chars */ /* Skip non-zero chars */
...@@ -443,8 +435,7 @@ static char *get_modinfo(void *modinfo, unsigned long modinfo_len, ...@@ -443,8 +435,7 @@ static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
return NULL; return NULL;
} }
void static void read_symbols(char *modname)
read_symbols(char *modname)
{ {
const char *symname; const char *symname;
char *version; char *version;
...@@ -496,8 +487,8 @@ read_symbols(char *modname) ...@@ -496,8 +487,8 @@ read_symbols(char *modname)
* following helper, then compare to the file on disk and * following helper, then compare to the file on disk and
* only update the later if anything changed */ * only update the later if anything changed */
void __attribute__((format(printf, 2, 3))) void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
buf_printf(struct buffer *buf, const char *fmt, ...) const char *fmt, ...)
{ {
char tmp[SZ]; char tmp[SZ];
int len; int len;
...@@ -514,8 +505,7 @@ buf_printf(struct buffer *buf, const char *fmt, ...) ...@@ -514,8 +505,7 @@ buf_printf(struct buffer *buf, const char *fmt, ...)
va_end(ap); va_end(ap);
} }
void void buf_write(struct buffer *buf, const char *s, int len)
buf_write(struct buffer *buf, const char *s, int len)
{ {
if (buf->size - buf->pos < len) { if (buf->size - buf->pos < len) {
buf->size += len; buf->size += len;
...@@ -525,10 +515,10 @@ buf_write(struct buffer *buf, const char *s, int len) ...@@ -525,10 +515,10 @@ buf_write(struct buffer *buf, const char *s, int len)
buf->pos += len; buf->pos += len;
} }
/* Header for the generated file */ /**
* Header for the generated file
void **/
add_header(struct buffer *b, struct module *mod) static void add_header(struct buffer *b, struct module *mod)
{ {
buf_printf(b, "#include <linux/module.h>\n"); buf_printf(b, "#include <linux/module.h>\n");
buf_printf(b, "#include <linux/vermagic.h>\n"); buf_printf(b, "#include <linux/vermagic.h>\n");
...@@ -548,10 +538,10 @@ add_header(struct buffer *b, struct module *mod) ...@@ -548,10 +538,10 @@ add_header(struct buffer *b, struct module *mod)
buf_printf(b, "};\n"); buf_printf(b, "};\n");
} }
/* Record CRCs for unresolved symbols */ /**
* Record CRCs for unresolved symbols
void **/
add_versions(struct buffer *b, struct module *mod) static void add_versions(struct buffer *b, struct module *mod)
{ {
struct symbol *s, *exp; struct symbol *s, *exp;
...@@ -591,8 +581,8 @@ add_versions(struct buffer *b, struct module *mod) ...@@ -591,8 +581,8 @@ add_versions(struct buffer *b, struct module *mod)
buf_printf(b, "};\n"); buf_printf(b, "};\n");
} }
void static void add_depends(struct buffer *b, struct module *mod,
add_depends(struct buffer *b, struct module *mod, struct module *modules) struct module *modules)
{ {
struct symbol *s; struct symbol *s;
struct module *m; struct module *m;
...@@ -622,8 +612,7 @@ add_depends(struct buffer *b, struct module *mod, struct module *modules) ...@@ -622,8 +612,7 @@ add_depends(struct buffer *b, struct module *mod, struct module *modules)
buf_printf(b, "\";\n"); buf_printf(b, "\";\n");
} }
void static void add_srcversion(struct buffer *b, struct module *mod)
add_srcversion(struct buffer *b, struct module *mod)
{ {
if (mod->srcversion[0]) { if (mod->srcversion[0]) {
buf_printf(b, "\n"); buf_printf(b, "\n");
...@@ -632,8 +621,7 @@ add_srcversion(struct buffer *b, struct module *mod) ...@@ -632,8 +621,7 @@ add_srcversion(struct buffer *b, struct module *mod)
} }
} }
void static void write_if_changed(struct buffer *b, const char *fname)
write_if_changed(struct buffer *b, const char *fname)
{ {
char *tmp; char *tmp;
FILE *file; FILE *file;
...@@ -677,8 +665,7 @@ write_if_changed(struct buffer *b, const char *fname) ...@@ -677,8 +665,7 @@ write_if_changed(struct buffer *b, const char *fname)
fclose(file); fclose(file);
} }
void static void read_dump(const char *fname)
read_dump(const char *fname)
{ {
unsigned long size, pos = 0; unsigned long size, pos = 0;
void *file = grab_file(fname, &size); void *file = grab_file(fname, &size);
...@@ -719,8 +706,7 @@ fail: ...@@ -719,8 +706,7 @@ fail:
fatal("parse error in symbol dump file\n"); fatal("parse error in symbol dump file\n");
} }
void static void write_dump(const char *fname)
write_dump(const char *fname)
{ {
struct buffer buf = { }; struct buffer buf = { };
struct symbol *symbol; struct symbol *symbol;
...@@ -744,8 +730,7 @@ write_dump(const char *fname) ...@@ -744,8 +730,7 @@ write_dump(const char *fname)
write_if_changed(&buf, fname); write_if_changed(&buf, fname);
} }
int int main(int argc, char **argv)
main(int argc, char **argv)
{ {
struct module *mod; struct module *mod;
struct buffer buf = { }; struct buffer buf = { };
...@@ -800,4 +785,3 @@ main(int argc, char **argv) ...@@ -800,4 +785,3 @@ main(int argc, char **argv)
return 0; return 0;
} }
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