From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6zp8-0003RX-Fx for qemu-devel@nongnu.org; Fri, 13 Apr 2018 10:37:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6zp5-0005ZE-CT for qemu-devel@nongnu.org; Fri, 13 Apr 2018 10:37:10 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:35588 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f6zp5-0005YP-5Y for qemu-devel@nongnu.org; Fri, 13 Apr 2018 10:37:07 -0400 References: <20180413143354.17614-1-rkagan@virtuozzo.com> From: Paolo Bonzini Message-ID: <2dff4f89-3597-cbd5-7bfb-d93bd4708928@redhat.com> Date: Fri, 13 Apr 2018 16:36:54 +0200 MIME-Version: 1.0 In-Reply-To: <20180413143354.17614-1-rkagan@virtuozzo.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] update-linux-headers: drop hyperv.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Roman Kagan , qemu-devel@nongnu.org Cc: Vitaly Kuznetsov On 13/04/2018 16:33, Roman Kagan wrote: > As of mainline linux commit 5a485803221777013944cbd1a7cd5c62efba3ffa > "x86/hyper-v: move hyperv.h out of uapi" by Vitaly Kuznetsov, no linux > uapi header includes it, so we no longer need to create a stub for it. > > Cc: Vitaly Kuznetsov > Signed-off-by: Roman Kagan > --- > scripts/update-linux-headers.sh | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh > index 5b1d8dcdf4..b65c03f0ae 100755 > --- a/scripts/update-linux-headers.sh > +++ b/scripts/update-linux-headers.sh > @@ -118,9 +118,6 @@ for arch in $ARCHLIST; do > cp "$tmpdir/include/asm/unistd-common.h" "$output/linux-headers/asm-arm/" > fi > if [ $arch = x86 ]; then > - cat <<-EOF >"$output/include/standard-headers/asm-x86/hyperv.h" > - /* this is a temporary placeholder until kvm_para.h stops including it */ > -EOF > cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-x86/" > cp "$tmpdir/include/asm/unistd_x32.h" "$output/linux-headers/asm-x86/" > cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-x86/" > @@ -144,9 +141,6 @@ else > cp "$linux/COPYING" "$output/linux-headers" > fi > > -cat <$output/linux-headers/asm-x86/hyperv.h > -#include "standard-headers/asm-x86/hyperv.h" > -EOF > cat <$output/linux-headers/linux/virtio_config.h > #include "standard-headers/linux/virtio_config.h" > EOF > Queued, thanks. Paolo