We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2665ca commit c6826adCopy full SHA for c6826ad
scripts/mod/modpost.c
@@ -2496,12 +2496,6 @@ int main(int argc, char **argv)
2496
if (files_source)
2497
read_symbols_from_files(files_source);
2498
2499
- for (mod = modules; mod; mod = mod->next) {
2500
- if (mod->skip)
2501
- continue;
2502
- check_exports(mod);
2503
- }
2504
-
2505
err = 0;
2506
2507
for (mod = modules; mod; mod = mod->next) {
@@ -2513,6 +2507,7 @@ int main(int argc, char **argv)
2513
buf.pos = 0;
2514
2508
2515
2509
err |= check_modname_len(mod);
2510
+ check_exports(mod);
2516
2511
add_header(&buf, mod);
2517
2512
add_intree_flag(&buf, !external_module);
2518
add_retpoline(&buf);
0 commit comments