>>> On 02.09.18 at 19:12, <yamada.masahiro@xxxxxxxxxxxxx> wrote: > 2018-08-29 0:00 GMT+09:00 Jan Beulich <JBeulich@xxxxxxxx>: >> --- 4.19-rc1/scripts/kallsyms.c >> +++ 4.19-rc1-kallsyms-reduce-size/scripts/kallsyms.c >> @@ -182,6 +182,8 @@ static int symbol_in_range(struct sym_en >> for (i = 0; i < entries; ++i) { >> ar = &ranges[i]; >> >> + if (!ar->end) >> + continue; >> if (s->addr >= ar->start && s->addr <= ar->end) >> return 1; >> } > > > What is this hunk doing? > > At least, I cannot understand it from the patch description. Hmm, I agree, it looks like it is addressing an unrelated issue. I'll re-submit with it dropped. The patch here dates back many years, so I suppose I noticed this other issue at the same time, but then forgot to split out the extra change. Jan