From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755451AbbBPOPw (ORCPT ); Mon, 16 Feb 2015 09:15:52 -0500 Received: from mail-wi0-f175.google.com ([209.85.212.175]:52111 "EHLO mail-wi0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752636AbbBPOPv (ORCPT ); Mon, 16 Feb 2015 09:15:51 -0500 From: Tommi Kyntola To: linux-kernel@vger.kernel.org Cc: Andy Lutomirski Subject: [PATCH] x86,vdso: fix the x86 vdso2c tool includes Date: Mon, 16 Feb 2015 16:15:47 +0200 Message-ID: <1525002.3cJ7BySVpA@musta> User-Agent: KMail/4.14.3 (Linux/3.19.0-k-00001-gab1a81c; KDE/4.14.3; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile index 5a4affe..745e9fe 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.1.0