mirror of
https://github.com/dynup/kpatch
synced 2024-12-24 06:02:05 +00:00
Revert "create-diff-object: Ignore unused CSWTCH static local symbols"
This reverts commit ce7ed7007b
.
This commit is contained in:
parent
46732a74d3
commit
98f892b273
@ -1141,20 +1141,8 @@ void kpatch_correlate_static_local_variables(struct kpatch_elf *base,
|
||||
}
|
||||
}
|
||||
|
||||
if (!sec) {
|
||||
/*
|
||||
* CSWTCH is a read-only static local array used by gcc
|
||||
* for some switch statements. If two functions use
|
||||
* the same CSWTCH data, there can be two separate
|
||||
* CSWTCH symbols referring to the same bundled
|
||||
* .rodata.CSWTCH.xxxx section and one of them will be
|
||||
* unused.
|
||||
*/
|
||||
if (!strncmp(sym->name, "CSWTCH.", 7))
|
||||
continue;
|
||||
|
||||
if (!sec)
|
||||
ERROR("static local variable %s not used", sym->name);
|
||||
}
|
||||
|
||||
if (!basesym) {
|
||||
log_normal("WARNING: unable to correlate static local variable %s used by %s, assuming variable is new\n",
|
||||
|
Loading…
Reference in New Issue
Block a user