mbox

[PULL,v2,0/8] loongarch-to-apply queue

Message ID 20241102074737.1394884-1-gaosong@loongson.cn (mailing list archive)
State New
Headers show

Pull-request

https://gitlab.com/gaosong/qemu.git tags/pull-loongarch-20241102

Message

gaosong Nov. 2, 2024, 7:47 a.m. UTC
The following changes since commit 92ec7805190313c9e628f8fc4eb4f932c15247bd:

  Merge tag 'pull-riscv-to-apply-20241031-1' of https://github.com/alistair23/qemu into staging (2024-10-31 16:34:25 +0000)

are available in the Git repository at:

  https://gitlab.com/gaosong/qemu.git tags/pull-loongarch-20241102

for you to fetch changes up to 47b54e15bbe78722c62dfafc3e04deded820c05e:

  target/loongarch: Add steal time support on migration (2024-11-02 15:45:45 +0800)

----------------------------------------------------------------
pull-loongarch-20241102

V2: Fix no 'asm/unistd_64.h' build error.
    Add a new patch (hw/loongarch/boot: Use warn_report when no kernel filename).
----------------------------------------------------------------
Bibo Mao (7):
      target/loongarch: Add loongson binary translation feature
      target/loongarch: Implement lbt registers save/restore function
      target/loongarch/kvm: Implement LoongArch PMU extension
      linux-headers: Add unistd_64.h
      linux-headers: loongarch: Add kvm_para.h
      linux-headers: Update to Linux v6.12-rc5
      target/loongarch: Add steal time support on migration

Song Gao (1):
      hw/loongarch/boot: Use warn_report when no kernel filename

 hw/loongarch/boot.c                                |   5 +-
 include/standard-headers/drm/drm_fourcc.h          |  43 +++
 include/standard-headers/linux/const.h             |  17 ++
 include/standard-headers/linux/ethtool.h           | 226 ++++++++++++++
 include/standard-headers/linux/fuse.h              |  22 +-
 include/standard-headers/linux/input-event-codes.h |   2 +
 include/standard-headers/linux/pci_regs.h          |  41 ++-
 include/standard-headers/linux/virtio_balloon.h    |  16 +-
 include/standard-headers/linux/virtio_gpu.h        |   1 +
 linux-headers/asm-arm64/mman.h                     |   9 +
 linux-headers/asm-arm64/unistd.h                   |  25 +-
 linux-headers/asm-arm64/unistd_64.h                | 324 ++++++++++++++++++++
 linux-headers/asm-generic/unistd.h                 |   6 +-
 linux-headers/asm-loongarch/kvm.h                  |  24 ++
 linux-headers/asm-loongarch/kvm_para.h             |  21 ++
 linux-headers/asm-loongarch/unistd.h               |   4 +-
 linux-headers/asm-loongarch/unistd_64.h            | 320 ++++++++++++++++++++
 linux-headers/asm-riscv/kvm.h                      |   7 +
 linux-headers/asm-riscv/unistd.h                   |  41 +--
 linux-headers/asm-riscv/unistd_32.h                | 315 ++++++++++++++++++++
 linux-headers/asm-riscv/unistd_64.h                | 325 +++++++++++++++++++++
 linux-headers/asm-x86/kvm.h                        |   2 +
 linux-headers/asm-x86/unistd_64.h                  |   1 +
 linux-headers/asm-x86/unistd_x32.h                 |   1 +
 linux-headers/linux/bits.h                         |   3 +
 linux-headers/linux/const.h                        |  17 ++
 linux-headers/linux/iommufd.h                      | 143 +++++++--
 linux-headers/linux/kvm.h                          |  23 +-
 linux-headers/linux/mman.h                         |   1 +
 linux-headers/linux/psp-sev.h                      |  28 ++
 scripts/update-linux-headers.sh                    |   7 +
 target/loongarch/cpu.c                             |  43 +++
 target/loongarch/cpu.h                             |  23 ++
 target/loongarch/kvm/kvm.c                         | 225 +++++++++++++-
 target/loongarch/loongarch-qmp-cmds.c              |   2 +-
 target/loongarch/machine.c                         |  30 +-
 36 files changed, 2243 insertions(+), 100 deletions(-)
 create mode 100644 linux-headers/asm-arm64/unistd_64.h
 create mode 100644 linux-headers/asm-loongarch/kvm_para.h
 create mode 100644 linux-headers/asm-loongarch/unistd_64.h
 create mode 100644 linux-headers/asm-riscv/unistd_32.h
 create mode 100644 linux-headers/asm-riscv/unistd_64.h

Comments

Peter Maydell Nov. 4, 2024, 5:37 p.m. UTC | #1
On Sat, 2 Nov 2024 at 08:06, Song Gao <gaosong@loongson.cn> wrote:
>
> The following changes since commit 92ec7805190313c9e628f8fc4eb4f932c15247bd:
>
>   Merge tag 'pull-riscv-to-apply-20241031-1' of https://github.com/alistair23/qemu into staging (2024-10-31 16:34:25 +0000)
>
> are available in the Git repository at:
>
>   https://gitlab.com/gaosong/qemu.git tags/pull-loongarch-20241102
>
> for you to fetch changes up to 47b54e15bbe78722c62dfafc3e04deded820c05e:
>
>   target/loongarch: Add steal time support on migration (2024-11-02 15:45:45 +0800)
>
> ----------------------------------------------------------------
> pull-loongarch-20241102
>
> V2: Fix no 'asm/unistd_64.h' build error.
>     Add a new patch (hw/loongarch/boot: Use warn_report when no kernel filename).
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/9.2
for any user-visible changes.

-- PMM