From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afssI-0006Em-B4 for qemu-devel@nongnu.org; Tue, 15 Mar 2016 13:35:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1afssH-0003m5-FB for qemu-devel@nongnu.org; Tue, 15 Mar 2016 13:35:18 -0400 Received: from mail-wm0-x236.google.com ([2a00:1450:400c:c09::236]:34832) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afssH-0003lx-2x for qemu-devel@nongnu.org; Tue, 15 Mar 2016 13:35:17 -0400 Received: by mail-wm0-x236.google.com with SMTP id l68so159973607wml.0 for ; Tue, 15 Mar 2016 10:35:16 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 15 Mar 2016 18:35:04 +0100 Message-Id: <1458063310-128525-3-git-send-email-pbonzini@redhat.com> In-Reply-To: <1458063310-128525-1-git-send-email-pbonzini@redhat.com> References: <1458063310-128525-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 2/8] update-linux-headers: Add userfaultfd.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy From: Alexey Kardashevskiy 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 Message-Id: <1455512381-15271-1-git-send-email-aik@ozlabs.ru> Acked-by: Christian Borntraeger Signed-off-by: Paolo Bonzini --- 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" -- 1.8.3.1