From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752794AbcGGOqS (ORCPT ); Thu, 7 Jul 2016 10:46:18 -0400 Received: from terminus.zytor.com ([198.137.202.10]:50442 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750976AbcGGOqD (ORCPT ); Thu, 7 Jul 2016 10:46:03 -0400 Date: Thu, 7 Jul 2016 07:45:42 -0700 From: tip-bot for James Hogan Message-ID: Cc: james.hogan@imgtec.com, mingo@kernel.org, tglx@linutronix.de, corbet@lwn.net, fengguang.wu@intel.com, linux-kernel@vger.kernel.org, arnd@arndb.de, mmarek@suse.com, hpa@zytor.com Reply-To: tglx@linutronix.de, james.hogan@imgtec.com, mingo@kernel.org, corbet@lwn.net, hpa@zytor.com, linux-kernel@vger.kernel.org, arnd@arndb.de, fengguang.wu@intel.com, mmarek@suse.com In-Reply-To: <1466808144-23209-2-git-send-email-james.hogan@imgtec.com> References: <1466808144-23209-2-git-send-email-james.hogan@imgtec.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/build] kbuild, x86: Track generated headers with generated-y Git-Commit-ID: 54b880caf15034644b564e378abf67b7f9eaf4dc 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: 54b880caf15034644b564e378abf67b7f9eaf4dc Gitweb: http://git.kernel.org/tip/54b880caf15034644b564e378abf67b7f9eaf4dc Author: James Hogan AuthorDate: Fri, 24 Jun 2016 23:42:23 +0100 Committer: Thomas Gleixner CommitDate: Thu, 7 Jul 2016 15:58:44 +0200 kbuild, x86: Track generated headers with generated-y Track generated header files which aren't already in genhdr-y, alongside generic-y wrappers in the */include/generated/[uapi/]asm/ directories. Currently only x86 generates extra headers in these directories, for the purposes of enumerating system calls for different ABIs, and xen hypercalls. This will allow the asm-generic wrapper handling code to remove stale wrappers when files are removed from generic-y, without also removing these headers which are generated separately. Reported-by: kbuild test robot Signed-off-by: James Hogan Acked-by: Arnd Bergmann Cc: Jonathan Corbet Cc: linux-kbuild@vger.kernel.org Cc: linux-doc@vger.kernel.org Cc: Michal Marek Link: http://lkml.kernel.org/r/1466808144-23209-2-git-send-email-james.hogan@imgtec.com Signed-off-by: Thomas Gleixner --- Documentation/kbuild/makefiles.txt | 14 ++++++++++++++ arch/x86/include/asm/Kbuild | 6 ++++++ 2 files changed, 20 insertions(+) diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 13f888a..385a5ef 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt @@ -47,6 +47,7 @@ This document describes the Linux kernel Makefiles. --- 7.2 genhdr-y --- 7.3 destination-y --- 7.4 generic-y + --- 7.5 generated-y === 8 Kbuild Variables === 9 Makefile language @@ -1319,6 +1320,19 @@ See subsequent chapter for the syntax of the Kbuild file. Example: termios.h #include + --- 7.5 generated-y + + If an architecture generates other header files alongside generic-y + wrappers, and not included in genhdr-y, then generated-y specifies + them. + + This prevents them being treated as stale asm-generic wrappers and + removed. + + Example: + #arch/x86/include/asm/Kbuild + generated-y += syscalls_32.h + === 8 Kbuild Variables The top Makefile exports the following variables: diff --git a/arch/x86/include/asm/Kbuild b/arch/x86/include/asm/Kbuild index aeac434..2cfed17 100644 --- a/arch/x86/include/asm/Kbuild +++ b/arch/x86/include/asm/Kbuild @@ -1,5 +1,11 @@ +generated-y += syscalls_32.h +generated-y += syscalls_64.h +generated-y += unistd_32_ia32.h +generated-y += unistd_64_x32.h +generated-y += xen-hypercalls.h + genhdr-y += unistd_32.h genhdr-y += unistd_64.h genhdr-y += unistd_x32.h