From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752376AbbC0SsZ (ORCPT ); Fri, 27 Mar 2015 14:48:25 -0400 Received: from mail.kernel.org ([198.145.29.136]:49857 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752036AbbC0SsY (ORCPT ); Fri, 27 Mar 2015 14:48:24 -0400 From: Andy Lutomirski To: Ingo Molnar , X86 ML Cc: linux-kernel@vger.kernel.org, Tommi Kyntola , Andy Lutomirski Subject: [GIT PULL 1/4] x86,vdso: fix the x86 vdso2c tool includes Date: Fri, 27 Mar 2015 11:48:16 -0700 Message-Id: X-Mailer: git-send-email 2.3.0 In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: 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. Link: http://lkml.kernel.org/r/1525002.3cJ7BySVpA@musta Signed-off-by: Tommi Kyntola Signed-off-by: Andy Lutomirski --- arch/x86/vdso/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile index 09297c8e1fcd..611bffbd0119 100644 --- a/arch/x86/vdso/Makefile +++ b/arch/x86/vdso/Makefile @@ -50,7 +50,7 @@ VDSO_LDFLAGS_vdso.lds = -m64 -Wl,-soname=linux-vdso.so.1 \ $(obj)/vdso64.so.dbg: $(src)/vdso.lds $(vobjs) FORCE $(call if_changed,vdso) -HOST_EXTRACFLAGS += -I$(srctree)/tools/include +HOST_EXTRACFLAGS += -I$(srctree)/tools/include -I$(srctree)/include/uapi hostprogs-y += vdso2c quiet_cmd_vdso2c = VDSO2C $@ -- 2.3.0