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 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