[PATCH V2 0/2] target/i386/kvm: Add Hyper-V direct tlb flush support

lantianyu1986@gmail.com posted 2 patches 4 years, 5 months ago
Test asan passed
Test checkpatch passed
Test FreeBSD passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Test docker-quick@centos7 passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20191015143610.31857-1-Tianyu.Lan@microsoft.com
Maintainers: Marcelo Tosatti <mtosatti@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <rth@twiddle.net>, Eduardo Habkost <ehabkost@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Cornelia Huck <cohuck@redhat.com>
There is a newer version of this series
docs/hyperv.txt                              | 12 +++++
include/standard-headers/asm-x86/bootparam.h |  2 +
include/standard-headers/asm-x86/kvm_para.h  |  1 +
include/standard-headers/linux/ethtool.h     | 24 ++++++++++
include/standard-headers/linux/pci_regs.h    | 19 +++++++-
include/standard-headers/linux/virtio_ids.h  |  2 +
include/standard-headers/linux/virtio_pmem.h |  6 +--
linux-headers/asm-arm/kvm.h                  | 16 ++++++-
linux-headers/asm-arm/unistd-common.h        |  2 +
linux-headers/asm-arm64/kvm.h                | 21 +++++++-
linux-headers/asm-generic/mman-common.h      | 18 ++++---
linux-headers/asm-generic/mman.h             | 10 ++--
linux-headers/asm-generic/unistd.h           | 10 +++-
linux-headers/asm-mips/mman.h                |  3 ++
linux-headers/asm-mips/unistd_n32.h          |  2 +
linux-headers/asm-mips/unistd_n64.h          |  2 +
linux-headers/asm-mips/unistd_o32.h          |  2 +
linux-headers/asm-powerpc/mman.h             |  6 +--
linux-headers/asm-powerpc/unistd_32.h        |  2 +
linux-headers/asm-powerpc/unistd_64.h        |  2 +
linux-headers/asm-s390/kvm.h                 |  6 +++
linux-headers/asm-s390/unistd_32.h           |  2 +
linux-headers/asm-s390/unistd_64.h           |  2 +
linux-headers/asm-x86/kvm.h                  | 28 ++++++++---
linux-headers/asm-x86/unistd.h               |  2 +-
linux-headers/asm-x86/unistd_32.h            |  2 +
linux-headers/asm-x86/unistd_64.h            |  2 +
linux-headers/asm-x86/unistd_x32.h           |  2 +
linux-headers/linux/kvm.h                    | 12 ++++-
linux-headers/linux/psp-sev.h                |  5 +-
linux-headers/linux/vfio.h                   | 71 ++++++++++++++++++++--------
target/i386/cpu.c                            |  2 +
target/i386/cpu.h                            |  1 +
target/i386/kvm.c                            | 23 +++++++++
34 files changed, 263 insertions(+), 59 deletions(-)
[PATCH V2 0/2] target/i386/kvm: Add Hyper-V direct tlb flush support
Posted by lantianyu1986@gmail.com 4 years, 5 months ago
From: Tianyu Lan <Tianyu.Lan@microsoft.com>

This patchset is to enable Hyper-V direct tlbflush
feature. The feature is to let L0 hypervisor to handle
tlb flush hypercall for L1 hypervisor.

Tianyu Lan (2):
  linux headers: update against Linux 5.4-rc2
  target/i386/kvm: Add Hyper-V direct tlb flush support

 docs/hyperv.txt                              | 12 +++++
 include/standard-headers/asm-x86/bootparam.h |  2 +
 include/standard-headers/asm-x86/kvm_para.h  |  1 +
 include/standard-headers/linux/ethtool.h     | 24 ++++++++++
 include/standard-headers/linux/pci_regs.h    | 19 +++++++-
 include/standard-headers/linux/virtio_ids.h  |  2 +
 include/standard-headers/linux/virtio_pmem.h |  6 +--
 linux-headers/asm-arm/kvm.h                  | 16 ++++++-
 linux-headers/asm-arm/unistd-common.h        |  2 +
 linux-headers/asm-arm64/kvm.h                | 21 +++++++-
 linux-headers/asm-generic/mman-common.h      | 18 ++++---
 linux-headers/asm-generic/mman.h             | 10 ++--
 linux-headers/asm-generic/unistd.h           | 10 +++-
 linux-headers/asm-mips/mman.h                |  3 ++
 linux-headers/asm-mips/unistd_n32.h          |  2 +
 linux-headers/asm-mips/unistd_n64.h          |  2 +
 linux-headers/asm-mips/unistd_o32.h          |  2 +
 linux-headers/asm-powerpc/mman.h             |  6 +--
 linux-headers/asm-powerpc/unistd_32.h        |  2 +
 linux-headers/asm-powerpc/unistd_64.h        |  2 +
 linux-headers/asm-s390/kvm.h                 |  6 +++
 linux-headers/asm-s390/unistd_32.h           |  2 +
 linux-headers/asm-s390/unistd_64.h           |  2 +
 linux-headers/asm-x86/kvm.h                  | 28 ++++++++---
 linux-headers/asm-x86/unistd.h               |  2 +-
 linux-headers/asm-x86/unistd_32.h            |  2 +
 linux-headers/asm-x86/unistd_64.h            |  2 +
 linux-headers/asm-x86/unistd_x32.h           |  2 +
 linux-headers/linux/kvm.h                    | 12 ++++-
 linux-headers/linux/psp-sev.h                |  5 +-
 linux-headers/linux/vfio.h                   | 71 ++++++++++++++++++++--------
 target/i386/cpu.c                            |  2 +
 target/i386/cpu.h                            |  1 +
 target/i386/kvm.c                            | 23 +++++++++
 34 files changed, 263 insertions(+), 59 deletions(-)

-- 
2.14.5