From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cantor2.suse.de ([195.135.220.15]:43666 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750701AbbASFHY (ORCPT ); Mon, 19 Jan 2015 00:07:24 -0500 Message-ID: <54BC9109.50803@suse.com> Date: Mon, 19 Jan 2015 06:07:21 +0100 From: Juergen Gross MIME-Version: 1.0 Subject: Re: [Patch V2 0/4] xen: auto-generate symbols for xen hypercalls References: <1418809838-14123-1-git-send-email-jgross@suse.com> In-Reply-To: <1418809838-14123-1-git-send-email-jgross@suse.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org, x86@kernel.org, xen-devel@lists.xensource.com, konrad.wilk@oracle.com, david.vrabel@citrix.com, boris.ostrovsky@oracle.com, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, mmarek@suse.cz, linux-kbuild@vger.kernel.org Hi, anything missing to take these patches? Juergen On 12/17/2014 10:50 AM, Juergen Gross wrote: > The Xen hypercalls are defined in include/xen/interface/xen.h. There > are some places where for each hypercall a table element is created. > Instead of manually add each hypercall element to these tables use > an auto generated header built during the make process of the kernel. > > Changes in V2: > - add "autogenerated" comment to generated header file as suggested by > David Vrabel (patch 1) > - some minor adjustments to patch 4 as suggested by David Vrabel > > Juergen Gross (4): > xen: build infrastructure for generating hypercall depending symbols > xen: synchronize include/xen/interface/xen.h with xen > xen: use generated hypervisor symbols in arch/x86/xen/trace.c > xen: use generated hypercall symbols in arch/x86/xen/xen-head.S > > arch/x86/syscalls/Makefile | 9 +++++++ > arch/x86/xen/trace.c | 50 +++-------------------------------- > arch/x86/xen/xen-head.S | 63 +++++++-------------------------------------- > include/xen/interface/xen.h | 6 ++++- > scripts/xen-hypercalls.sh | 12 +++++++++ > 5 files changed, 40 insertions(+), 100 deletions(-) > create mode 100644 scripts/xen-hypercalls.sh >