From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47669) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWNKA-000699-H6 for qemu-devel@nongnu.org; Thu, 18 Feb 2016 07:04:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWNK5-00048T-Gu for qemu-devel@nongnu.org; Thu, 18 Feb 2016 07:04:46 -0500 Received: from e06smtp14.uk.ibm.com ([195.75.94.110]:40940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWNK5-00048J-70 for qemu-devel@nongnu.org; Thu, 18 Feb 2016 07:04:41 -0500 Received: from localhost by e06smtp14.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 18 Feb 2016 12:04:37 -0000 Received: from b06cxnps4076.portsmouth.uk.ibm.com (d06relay13.portsmouth.uk.ibm.com [9.149.109.198]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 24ECE1B0804B for ; Thu, 18 Feb 2016 12:04:53 +0000 (GMT) Received: from d06av04.portsmouth.uk.ibm.com (d06av04.portsmouth.uk.ibm.com [9.149.37.216]) by b06cxnps4076.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u1IC4ZeY131474 for ; Thu, 18 Feb 2016 12:04:35 GMT Received: from d06av04.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id u1IC4ZQ3010010 for ; Thu, 18 Feb 2016 05:04:35 -0700 References: <1455512381-15271-1-git-send-email-aik@ozlabs.ru> From: Christian Borntraeger Message-ID: <56C5B353.8050500@de.ibm.com> Date: Thu, 18 Feb 2016 13:04:35 +0100 MIME-Version: 1.0 In-Reply-To: <1455512381-15271-1-git-send-email-aik@ozlabs.ru> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH qemu] update-linux-headers: Add userfaultfd.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy , qemu-devel@nongnu.org, Paolo Bonzini On 02/15/2016 05:59 AM, Alexey Kardashevskiy wrote: > userfailtfd.h is used by post-copy migration so include it to > the update-linux-headers.sh as we want it updated altogether with > other kernel headers. > > Signed-off-by: Alexey Kardashevskiy Acked-by: Christian Borntraeger Paolo, shall that go via the KVM tree ? > --- > scripts/update-linux-headers.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh > index ff5b0c7..6aa8407 100755 > --- a/scripts/update-linux-headers.sh > +++ b/scripts/update-linux-headers.sh > @@ -103,7 +103,7 @@ done > rm -rf "$output/linux-headers/linux" > mkdir -p "$output/linux-headers/linux" > for header in kvm.h kvm_para.h vfio.h vhost.h \ > - psci.h; do > + psci.h userfaultfd.h; do > cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" > done > rm -rf "$output/linux-headers/asm-generic" >