Re: [PATCH] objtool: avoid ../ headers includes and name clashes

2020-10-05 Thread Josh Poimboeuf
On Sun, Oct 04, 2020 at 03:05:42PM +0200, Vasily Gorbik wrote: > Doesn't this make it instantly obvious where are these files come from? > > #include > #include Indeed, this is a lot better! If I'm not mistaken, this conflicts with your other series. Would you mind rebasing this on top of t

[PATCH] objtool: avoid ../ headers includes and name clashes

2020-10-04 Thread Vasily Gorbik
Currently objtool headers are being included either by their base name or included via ../ from a parent directory. In case of a base name usage: #include "warn.h" #include "arch_elf.h" it does not make it apparent from which directory the file comes from. To make it slightly better, and actual