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;
|
found = 0;
|
||||||
list_for_each_entry(rela, &sec->rela->relas, list) {
|
list_for_each_entry(rela, &sec->rela->relas, list) {
|
||||||
if (rela->offset >= offset + length) {
|
if (rela->offset < offset + length)
|
||||||
|
continue;
|
||||||
if (rela->string)
|
if (rela->string)
|
||||||
continue;
|
continue;
|
||||||
if (!strncmp(rela->sym->name,
|
if (!strncmp(rela->sym->name, "warn_slowpath_", 14)) {
|
||||||
"warn_slowpath_", 14)) {
|
|
||||||
found = 1;
|
found = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (!found)
|
if (!found)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue