From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNCjV-0006uU-5t for qemu-devel@nongnu.org; Mon, 28 May 2018 03:38:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNCjS-0006X1-2z for qemu-devel@nongnu.org; Mon, 28 May 2018 03:38:21 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:36668) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fNCjR-0006V5-TO for qemu-devel@nongnu.org; Mon, 28 May 2018 03:38:18 -0400 Received: by mail-wm0-f66.google.com with SMTP id v131-v6so10271002wma.1 for ; Mon, 28 May 2018 00:38:17 -0700 (PDT) References: <20180525132755.21839-1-peter.maydell@linaro.org> <20180525165802-mutt-send-email-mst@kernel.org> From: Paolo Bonzini Message-ID: <98a40d1d-77b7-561a-1b83-ec4d8972d0cc@redhat.com> Date: Mon, 28 May 2018 09:38:13 +0200 MIME-Version: 1.0 In-Reply-To: <20180525165802-mutt-send-email-mst@kernel.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 0/6] Update Linux headers to 4.17-rc6 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" , Peter Maydell Cc: Alex Williamson , qemu-devel@nongnu.org, Stefan Hajnoczi , patches@linaro.org On 25/05/2018 16:00, Michael S. Tsirkin wrote: > On Fri, May 25, 2018 at 02:27:49PM +0100, Peter Maydell wrote: >> This series updates our copy of the Linux kernel headers to 4.17-rc6. >> To do that we have to fix up some issues: >> * we had a hand-hacked definition of VIRTIO_GPU_CAPSET_VIRGL2 >> in our old header copy that needs to be moved to a header >> that isn't auto-updated >> * we need to turn __aligned_u64 into a portable type >> * KVM_HINTS_DEDICATED was renamed to KVM_HINTS_REALTIME >> * the kernel's licensing info is no longer solely in the COPYING file >> >> thanks >> -- PMM > > Reviewed-by: Michael S. Tsirkin Queued, thanks. Paolo > >> Alex Williamson (1): >> virtio-gpu-3d: Define VIRTIO_GPU_CAPSET_VIRGL2 elsewhere >> >> Peter Maydell (5): >> scripts/update-linux-headers: Handle __aligned_u64 >> scripts/update-linux-headers: Handle kernel license no longer being >> one file >> target/i386/kvm.c: Handle renaming of KVM_HINTS_DEDICATED >> Update Linux headers to 4.17-rc6 >> target/i386/kvm.c: Remove compatibility shim for KVM_HINTS_REALTIME >> >> include/hw/virtio/virtio-gpu.h | 6 + >> include/standard-headers/asm-x86/hyperv.h | 1 - >> include/standard-headers/asm-x86/kvm_para.h | 2 +- >> include/standard-headers/linux/ethtool.h | 36 +- >> include/standard-headers/linux/input.h | 4 +- >> include/standard-headers/linux/pci_regs.h | 7 +- >> .../standard-headers/linux/virtio_balloon.h | 15 + >> include/standard-headers/linux/virtio_gpu.h | 1 - >> .../standard-headers/rdma/vmw_pvrdma-abi.h | 49 +-- >> linux-headers/asm-arm/kvm.h | 15 + >> linux-headers/asm-arm64/kvm.h | 6 + >> linux-headers/asm-x86/hyperv.h | 1 - >> linux-headers/asm-x86/kvm.h | 19 +- >> linux-headers/linux/kvm.h | 30 +- >> linux-headers/linux/vfio.h | 27 ++ >> target/i386/kvm.c | 2 +- >> linux-headers/COPYING | 358 +----------------- >> .../LICENSES/exceptions/Linux-syscall-note | 25 ++ >> linux-headers/LICENSES/preferred/BSD-2-Clause | 32 ++ >> linux-headers/LICENSES/preferred/BSD-3-Clause | 36 ++ >> .../{COPYING => LICENSES/preferred/GPL-2.0} | 27 +- >> scripts/update-linux-headers.sh | 17 +- >> 22 files changed, 310 insertions(+), 406 deletions(-) >> delete mode 100644 include/standard-headers/asm-x86/hyperv.h >> delete mode 100644 linux-headers/asm-x86/hyperv.h >> create mode 100644 linux-headers/LICENSES/exceptions/Linux-syscall-note >> create mode 100644 linux-headers/LICENSES/preferred/BSD-2-Clause >> create mode 100644 linux-headers/LICENSES/preferred/BSD-3-Clause >> copy linux-headers/{COPYING => LICENSES/preferred/GPL-2.0} (96%) >> >> -- >> 2.17.0 >