mirror of https://github.com/dynup/kpatch
fix review comment
This commit is contained in:
parent
ea819a18b0
commit
fca189152a
|
@ -721,17 +721,16 @@ static int kpatch_warn_only_change(struct section *sec)
|
|||
*/
|
||||
found = 0;
|
||||
list_for_each_entry(rela, &sec->rela->relas, list) {
|
||||
if (rela->offset >= offset + length) {
|
||||
if (rela->offset < offset + length)
|
||||
continue;
|
||||
if (rela->string)
|
||||
continue;
|
||||
if (!strncmp(rela->sym->name,
|
||||
"warn_slowpath_", 14)) {
|
||||
if (!strncmp(rela->sym->name, "warn_slowpath_", 14)) {
|
||||
found = 1;
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
if (!found)
|
||||
return 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue