[PR #284] [CLOSED] Vfio 10.1 #377

Open
opened 2026-01-31 21:31:01 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/284
Author: @legoater
Created: 5/21/2025
Status: Closed

Base: masterHead: vfio-10.1


📝 Commits (10+)

  • bfb8794 hw/vfio/ap: notification handler for AP config changed event
  • 3735d15 hw/vfio/ap: store object indicating AP config changed in a queue
  • b82a869 hw/vfio/ap: Storing event information for an AP configuration change event
  • a578ded s390: implementing CHSC SEI for AP config change
  • efd3676 vfio: add more VFIOIOMMUClass docs
  • 29c0ed2 vfio/igd: OpRegion not found fix error typo
  • 05d7d4a vfio: return mr from vfio_get_xlat_addr
  • 11aa064 vfio/iommufd: Add comment emphasizing no movement of hiod->realize() call
  • 8f6ba39 MAINTAINERS: Add reviewer for CPR
  • f74743c migration: cpr helpers

📊 Changes

29 files changed (+949 additions, -188 deletions)

View changed files

📝 MAINTAINERS (+11 -0)
📝 hw/pci/msix.c (+1 -1)
📝 hw/pci/pci.c (+13 -0)
hw/s390x/ap-stub.c (+21 -0)
📝 hw/s390x/meson.build (+1 -0)
📝 hw/vfio/ap.c (+82 -0)
📝 hw/vfio/container.c (+82 -18)
hw/vfio/cpr-legacy.c (+282 -0)
📝 hw/vfio/cpr.c (+34 -4)
📝 hw/vfio/igd.c (+1 -1)
📝 hw/vfio/iommufd.c (+5 -1)
📝 hw/vfio/listener.c (+62 -25)
📝 hw/vfio/meson.build (+1 -0)
📝 hw/vfio/pci.c (+124 -78)
hw/vfio/vfio-cpr.h (+0 -15)
📝 hw/virtio/vhost-vdpa.c (+7 -2)
📝 include/hw/pci/msix.h (+1 -0)
📝 include/hw/s390x/ap-bridge.h (+22 -0)
📝 include/hw/vfio/vfio-container-base.h (+81 -3)
📝 include/hw/vfio/vfio-container.h (+2 -0)

...and 9 more files

📄 Description

coderabbit.ai test


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/284 **Author:** [@legoater](https://github.com/legoater) **Created:** 5/21/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `vfio-10.1` --- ### 📝 Commits (10+) - [`bfb8794`](https://github.com/qemu/qemu/commit/bfb8794442b5ed8661da48cc5d9e333a06b3d64f) hw/vfio/ap: notification handler for AP config changed event - [`3735d15`](https://github.com/qemu/qemu/commit/3735d150cb12758acf1bbf4bc7d78122855e54ec) hw/vfio/ap: store object indicating AP config changed in a queue - [`b82a869`](https://github.com/qemu/qemu/commit/b82a86919702add8bfd274ed74c1e4fef6702e08) hw/vfio/ap: Storing event information for an AP configuration change event - [`a578ded`](https://github.com/qemu/qemu/commit/a578dedeaa32cdd3e1e1b0b8a23703ea7e1b3125) s390: implementing CHSC SEI for AP config change - [`efd3676`](https://github.com/qemu/qemu/commit/efd36760aa42ced24169d6da1e75e64e9e5d32f7) vfio: add more VFIOIOMMUClass docs - [`29c0ed2`](https://github.com/qemu/qemu/commit/29c0ed2f425414313dc6ad5c2c2edaf47a5bbc15) vfio/igd: OpRegion not found fix error typo - [`05d7d4a`](https://github.com/qemu/qemu/commit/05d7d4a306cd9f8f6d145391c1c3c4b342c44e57) vfio: return mr from vfio_get_xlat_addr - [`11aa064`](https://github.com/qemu/qemu/commit/11aa064e55f7739c93235e4736db4bb480e286ab) vfio/iommufd: Add comment emphasizing no movement of hiod->realize() call - [`8f6ba39`](https://github.com/qemu/qemu/commit/8f6ba392f21a184185c55b193973e7fdb08079e7) MAINTAINERS: Add reviewer for CPR - [`f74743c`](https://github.com/qemu/qemu/commit/f74743c1e53acb76da4ef43214c5b80e6b1fc766) migration: cpr helpers ### 📊 Changes **29 files changed** (+949 additions, -188 deletions) <details> <summary>View changed files</summary> 📝 `MAINTAINERS` (+11 -0) 📝 `hw/pci/msix.c` (+1 -1) 📝 `hw/pci/pci.c` (+13 -0) ➕ `hw/s390x/ap-stub.c` (+21 -0) 📝 `hw/s390x/meson.build` (+1 -0) 📝 `hw/vfio/ap.c` (+82 -0) 📝 `hw/vfio/container.c` (+82 -18) ➕ `hw/vfio/cpr-legacy.c` (+282 -0) 📝 `hw/vfio/cpr.c` (+34 -4) 📝 `hw/vfio/igd.c` (+1 -1) 📝 `hw/vfio/iommufd.c` (+5 -1) 📝 `hw/vfio/listener.c` (+62 -25) 📝 `hw/vfio/meson.build` (+1 -0) 📝 `hw/vfio/pci.c` (+124 -78) ➖ `hw/vfio/vfio-cpr.h` (+0 -15) 📝 `hw/virtio/vhost-vdpa.c` (+7 -2) 📝 `include/hw/pci/msix.h` (+1 -0) 📝 `include/hw/s390x/ap-bridge.h` (+22 -0) 📝 `include/hw/vfio/vfio-container-base.h` (+81 -3) 📝 `include/hw/vfio/vfio-container.h` (+2 -0) _...and 9 more files_ </details> ### 📄 Description coderabbit.ai test --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:31:01 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#377