From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753566AbbCaMi2 (ORCPT ); Tue, 31 Mar 2015 08:38:28 -0400 Received: from terminus.zytor.com ([198.137.202.10]:57299 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753386AbbCaMiY (ORCPT ); Tue, 31 Mar 2015 08:38:24 -0400 Date: Tue, 31 Mar 2015 05:38:12 -0700 From: tip-bot for Tommi Kyntola Message-ID: Cc: mingo@kernel.org, tommi.kyntola@gmail.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, hpa@zytor.com, luto@amacapital.net Reply-To: tommi.kyntola@gmail.com, mingo@kernel.org, luto@amacapital.net, tglx@linutronix.de, hpa@zytor.com, linux-kernel@vger.kernel.org In-Reply-To: References: <1525002.3cJ7BySVpA@musta> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/vdso] x86/vdso: Fix the x86 vdso2c tool includes Git-Commit-ID: 0a4f59d6e09ef16fbb7d213cfa1bf472c7845fda X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 0a4f59d6e09ef16fbb7d213cfa1bf472c7845fda Gitweb: http://git.kernel.org/tip/0a4f59d6e09ef16fbb7d213cfa1bf472c7845fda Author: Tommi Kyntola AuthorDate: Fri, 27 Mar 2015 11:48:16 -0700 Committer: Ingo Molnar CommitDate: Tue, 31 Mar 2015 10:45:14 +0200 x86/vdso: Fix the x86 vdso2c tool includes 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 changes between v3.15 and v3.16. Signed-off-by: Tommi Kyntola Signed-off-by: Andy Lutomirski Link: http://lkml.kernel.org/r/1525002.3cJ7BySVpA@musta Link: http://lkml.kernel.org/r/efe1ec29eda830b1d0030882706f3dac99ce1f73.1427482099.git.luto@kernel.org Signed-off-by: Ingo Molnar --- 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 7b9be98..e07e52a 100644 --- a/arch/x86/vdso/Makefile +++ b/arch/x86/vdso/Makefile @@ -51,7 +51,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 $@