Re: [PATCH] x86,vdso: fix the x86 vdso2c tool includes

2015-02-16 Thread Andy Lutomirski
On Mon, Feb 16, 2015 at 8:50 AM, Tommi Kyntola wrote: > > It happened in our custom build system. The kernel there doesn't have a > dependency to the kernel headers and that's pretty much it. > It's a tiny thing and I already patched our stuff, but I thought I'd let you > know. Breaching the

Re: [PATCH] x86,vdso: fix the x86 vdso2c tool includes

2015-02-16 Thread Andy Lutomirski
On Mon, Feb 16, 2015 at 6:15 AM, Tommi Kyntola wrote: > > The build-time tool arch/x86/vdso/vdso2c.c includes , > but cannot find it, unless the build host happens to provide it. > It should be reading the uapi linux/elf.h > > This build regression came along with the vdso2c between > 3.15 and

[PATCH] x86,vdso: fix the x86 vdso2c tool includes

2015-02-16 Thread Tommi Kyntola
The build-time tool arch/x86/vdso/vdso2c.c includes , but cannot find it, unless the build host happens to provide it. It should be reading the uapi linux/elf.h This build regression came along with the vdso2c between 3.15 and 3.16. Signed-off-by: Tommi Kyntola --- arch/x86/vdso/Makefile | 2

Re: [PATCH] x86,vdso: fix the x86 vdso2c tool includes

2015-02-16 Thread Andy Lutomirski
On Mon, Feb 16, 2015 at 6:15 AM, Tommi Kyntola tommi.kynt...@gmail.com wrote: The build-time tool arch/x86/vdso/vdso2c.c includes linux/elf.h, but cannot find it, unless the build host happens to provide it. It should be reading the uapi linux/elf.h This build regression came along with the

Re: [PATCH] x86,vdso: fix the x86 vdso2c tool includes

2015-02-16 Thread Andy Lutomirski
On Mon, Feb 16, 2015 at 8:50 AM, Tommi Kyntola tommi.kynt...@gmail.com wrote: It happened in our custom build system. The kernel there doesn't have a dependency to the kernel headers and that's pretty much it. It's a tiny thing and I already patched our stuff, but I thought I'd let you know.

[PATCH] x86,vdso: fix the x86 vdso2c tool includes

2015-02-16 Thread Tommi Kyntola
The build-time tool arch/x86/vdso/vdso2c.c includes linux/elf.h, but cannot find it, unless the build host happens to provide it. It should be reading the uapi linux/elf.h This build regression came along with the vdso2c between 3.15 and 3.16. Signed-off-by: Tommi Kyntola