modpost: rename handle_modversions() to handle_symbol()
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 14 Nov 2019 17:42:23 +0000 (02:42 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Sat, 23 Nov 2019 03:44:24 +0000 (12:44 +0900)
This function handles not only modversions, but also unresolved
symbols, export symbols, etc.

Rename it to a more proper function name.

While I was here, I also added the 'const' qualifier to *sym.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/mod/modpost.c

index d9418c58a8c0ade00da7f517b1fb2d89595499d3..6735ae3da4c228200aa26ae73153d40551b29e34 100644 (file)
@@ -683,8 +683,8 @@ static int ignore_undef_symbol(struct elf_info *info, const char *symname)
        return 0;
 }
 
-static void handle_modversions(struct module *mod, struct elf_info *info,
-                              Elf_Sym *sym, const char *symname)
+static void handle_symbol(struct module *mod, struct elf_info *info,
+                         const Elf_Sym *sym, const char *symname)
 {
        unsigned int crc;
        enum export export;
@@ -2051,7 +2051,7 @@ static void read_symbols(const char *modname)
        for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
                symname = remove_dot(info.strtab + sym->st_name);
 
-               handle_modversions(mod, &info, sym, symname);
+               handle_symbol(mod, &info, sym, symname);
                handle_moddevtable(mod, &info, sym, symname);
        }