From nobody Fri Nov 7 10:27:14 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 15476123908603.8287496634715126; Tue, 15 Jan 2019 20:19:50 -0800 (PST) Received: from localhost ([127.0.0.1]:35995 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gjcfv-0005q9-C3 for importer@patchew.org; Tue, 15 Jan 2019 23:19:35 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gjceT-000534-Pa for qemu-devel@nongnu.org; Tue, 15 Jan 2019 23:18:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gjceS-0002lM-8b for qemu-devel@nongnu.org; Tue, 15 Jan 2019 23:18:05 -0500 Received: from ozlabs.ru ([107.173.13.209]:59521) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gjceR-0002YT-SF; Tue, 15 Jan 2019 23:18:04 -0500 Received: from fstn1-p1.ozlabs.ibm.com (localhost [IPv6:::1]) by ozlabs.ru (Postfix) with ESMTP id D04C9AE8010A; Tue, 15 Jan 2019 23:17:15 -0500 (EST) From: Alexey Kardashevskiy To: qemu-devel@nongnu.org Date: Wed, 16 Jan 2019 15:17:11 +1100 Message-Id: <20190116041712.130183-2-aik@ozlabs.ru> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190116041712.130183-1-aik@ozlabs.ru> References: <20190116041712.130183-1-aik@ozlabs.ru> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 107.173.13.209 Subject: [Qemu-devel] [PATCH qemu 1/2] update-linux-headers.sh: Copy new headers X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Alexey Kardashevskiy , qemu-ppc@nongnu.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Since Linux'es ab66dcc76d "powerpc: generate uapi header and system call table files" there are 2 new files: unistd_32.h and unistd_64.h. These files content is moved from unistd.h so now we have to copy new files as well, just like we already do for other architectures; this does it for MIPS as well. Also, v5.0-rc2 moved vhost bits around in 4b86713236e4bd "vhost: split structs into a separate header file", add those too. Signed-off-by: Alexey Kardashevskiy Reviewed-by: Stefano Garzarella --- scripts/update-linux-headers.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers= .sh index 0a964fe..1cd8bd5 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -121,11 +121,20 @@ for arch in $ARCHLIST; do cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-x8= 6/" cp_portable "$tmpdir/include/asm/kvm_para.h" "$output/include/stan= dard-headers/asm-$arch" fi + if [ $arch =3D powerpc ]; then + cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-po= werpc/" + cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-po= werpc/" + fi + if [ $arch =3D mips ]; then + cp "$tmpdir/include/asm/unistd_o32.h" "$output/linux-headers/asm-m= ips/" + cp "$tmpdir/include/asm/unistd_n32.h" "$output/linux-headers/asm-m= ips/" + cp "$tmpdir/include/asm/unistd_n64.h" "$output/linux-headers/asm-m= ips/" + fi done =20 rm -rf "$output/linux-headers/linux" mkdir -p "$output/linux-headers/linux" -for header in kvm.h vfio.h vfio_ccw.h vhost.h \ +for header in kvm.h vfio.h vfio_ccw.h vhost.h vhost_types.h \ psci.h psp-sev.h userfaultfd.h; do cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" done --=20 2.17.1