From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60962) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T0vZz-0007en-6u for qemu-devel@nongnu.org; Mon, 13 Aug 2012 10:25:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T0vZt-0008Tk-8u for qemu-devel@nongnu.org; Mon, 13 Aug 2012 10:25:15 -0400 Received: from e36.co.us.ibm.com ([32.97.110.154]:36610) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T0vZt-0008Tb-2O for qemu-devel@nongnu.org; Mon, 13 Aug 2012 10:25:09 -0400 Received: from /spool/local by e36.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 13 Aug 2012 08:25:07 -0600 Received: from d03relay04.boulder.ibm.com (d03relay04.boulder.ibm.com [9.17.195.106]) by d03dlp03.boulder.ibm.com (Postfix) with ESMTP id B672919D8048 for ; Mon, 13 Aug 2012 14:24:58 +0000 (WET) Received: from d03av04.boulder.ibm.com (d03av04.boulder.ibm.com [9.17.195.170]) by d03relay04.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q7DEOAO4072976 for ; Mon, 13 Aug 2012 08:24:11 -0600 Received: from d03av04.boulder.ibm.com (loopback [127.0.0.1]) by d03av04.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q7DEO9gK019899 for ; Mon, 13 Aug 2012 08:24:09 -0600 From: Anthony Liguori In-Reply-To: References: <1343230147-25557-1-git-send-email-peter.maydell@linaro.org> Date: Mon, 13 Aug 2012 09:24:00 -0500 Message-ID: <87ipcm50qn.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] update-linux-headers.sh: Pull in asm-generic/kvm_para.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-devel@nongnu.org Cc: Marcelo Tosatti , Jan Kiszka , Avi Kivity , Rusty Russell , patches@linaro.org Peter Maydell writes: > Ping^2 ? In a previous thread, we all agreed that all changes to linux headers would come in through uq/master to ensure that we didn't have a repeat scenario of depending on a header that didn't make it to Avi's tree unchanged. Avi/Marcelo, can you guys pick this up through uq/master? Regards, Anthony Liguori > > On 8 August 2012 13:34, Peter Maydell wrote: >> Ping? >> >> patchwork url: http://patchwork.ozlabs.org/patch/173202/ >> >> -- PMM >> >> On 25 July 2012 16:29, Peter Maydell wrote: >>> Add asm-generic/kvm_para.h to the set of non-architecture specific >>> KVM kernel headers we copy into QEMU. This header may be included >>> by an architecture's kvm_para.h header. >>> >>> Signed-off-by: Peter Maydell >>> --- >>> scripts/update-linux-headers.sh | 5 +++++ >>> 1 files changed, 5 insertions(+), 0 deletions(-) >>> >>> diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh >>> index 9d2a4bc..a639c5b 100755 >>> --- a/scripts/update-linux-headers.sh >>> +++ b/scripts/update-linux-headers.sh >>> @@ -46,6 +46,11 @@ mkdir -p "$output/linux-headers/linux" >>> for header in kvm.h kvm_para.h vhost.h virtio_config.h virtio_ring.h; do >>> cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" >>> done >>> +rm -rf "$output/linux-headers/asm-generic" >>> +mkdir -p "$output/linux-headers/asm-generic" >>> +for header in kvm_para.h; do >>> + cp "$tmpdir/include/asm-generic/$header" "$output/linux-headers/asm-generic" >>> +done >>> if [ -L "$linux/source" ]; then >>> cp "$linux/source/COPYING" "$output/linux-headers" >>> else >>> -- >>> 1.7.5.4