fix review comment

This commit is contained in:
Josh Poimboeuf 2014-10-08 11:16:09 -05:00
parent ea819a18b0
commit fca189152a
1 changed files with 8 additions and 9 deletions

View File

@ -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;