From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935311AbdGTItl (ORCPT ); Thu, 20 Jul 2017 04:49:41 -0400 Received: from terminus.zytor.com ([65.50.211.136]:52431 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934375AbdGTItV (ORCPT ); Thu, 20 Jul 2017 04:49:21 -0400 Date: Thu, 20 Jul 2017 01:47:06 -0700 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: mingo@kernel.org, wangnan0@huawei.com, dsahern@gmail.com, namhyung@kernel.org, acme@redhat.com, tglx@linutronix.de, jolsa@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, adrian.hunter@intel.com Reply-To: mingo@kernel.org, dsahern@gmail.com, wangnan0@huawei.com, namhyung@kernel.org, acme@redhat.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, hpa@zytor.com, jolsa@kernel.org, adrian.hunter@intel.com To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] tools include uapi x86: Grab a copy of unistd.h Git-Commit-ID: 047726d1f9ae6b1f3a2144577ffc3a1a92ffedf4 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: 047726d1f9ae6b1f3a2144577ffc3a1a92ffedf4 Gitweb: http://git.kernel.org/tip/047726d1f9ae6b1f3a2144577ffc3a1a92ffedf4 Author: Arnaldo Carvalho de Melo AuthorDate: Tue, 18 Jul 2017 17:09:21 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 18 Jul 2017 23:14:07 -0300 tools include uapi x86: Grab a copy of unistd.h In older distros we were not including our copies of unistd_{32,64}.h, as we were relying on the system's asm/unistd.h, and a log time ago the files to be included were asm-{x86_64,i386}/unistd.h. Fix it by also carrying a copy of asm/unistd.h, that will be the same as in modern distros and will allow us to provide missing __NR_setns, for instance, in older distros. Cc: Adrian Hunter Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Wang Nan Link: http://lkml.kernel.org/n/tip-iwmgm0c4m1ynstktzmkjh8di@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- {arch => tools/arch}/x86/include/uapi/asm/unistd.h | 0 tools/perf/check-headers.sh | 1 + 2 files changed, 1 insertion(+) diff --git a/arch/x86/include/uapi/asm/unistd.h b/tools/arch/x86/include/uapi/asm/unistd.h similarity index 100% copy from arch/x86/include/uapi/asm/unistd.h copy to tools/arch/x86/include/uapi/asm/unistd.h diff --git a/tools/perf/check-headers.sh b/tools/perf/check-headers.sh index 83fe220..47abd33 100755 --- a/tools/perf/check-headers.sh +++ b/tools/perf/check-headers.sh @@ -16,6 +16,7 @@ arch/x86/include/uapi/asm/perf_regs.h arch/x86/include/uapi/asm/kvm.h arch/x86/include/uapi/asm/kvm_perf.h arch/x86/include/uapi/asm/svm.h +arch/x86/include/uapi/asm/unistd.h arch/x86/include/uapi/asm/vmx.h arch/powerpc/include/uapi/asm/kvm.h arch/s390/include/uapi/asm/kvm.h