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 b6233d0 commit d44270fCopy full SHA for d44270f
scripts/kallsyms.c
@@ -200,6 +200,7 @@ static int read_symbol(FILE *in, struct sym_entry *s)
200
_text = s->addr;
201
202
check_symbol_range(sym, s->addr, text_ranges, ARRAY_SIZE(text_ranges));
203
+ check_symbol_range(sym, s->addr, &percpu_range, 1);
204
205
/* include the type field in the symbol name, so that it gets
206
* compressed together */
@@ -215,9 +216,6 @@ static int read_symbol(FILE *in, struct sym_entry *s)
215
216
217
s->percpu_absolute = 0;
218
- /* Record if we've found __per_cpu_start/end. */
219
- check_symbol_range(sym, s->addr, &percpu_range, 1);
220
-
221
return 0;
222
}
223
0 commit comments