[PR #67] [CLOSED] Stable 2.11 #122

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

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/67
Author: @kedi1982
Created: 3/1/2018
Status: Closed

Base: masterHead: stable-2.11


📝 Commits (10+)

  • 817a9fc target/i386: Fix handling of VEX prefixes
  • fd89d93 block/iscsi: dont leave allocmap in an invalid state on UNMAP failure
  • ea311a9 target/sh4: fix TCG leak during gusa sequence
  • 5ba945f qemu-options: Remove stray colons from output of --help
  • c184e17 qemu-pr-helper: miscellaneous fixes
  • b9da3c1 block/nbd: fix segmentation fault when .desc is not null-terminated
  • 057364d block: Make bdrv_drain_invoke() recursive
  • 2b0c34c block: Call .drain_begin only once in bdrv_drain_all_begin()
  • 7f53a81 block: Open backing image in force share mode for size probe
  • d6f1448 vfio: Fix vfio-kvm group registration

📊 Changes

94 files changed (+2069 additions, -772 deletions)

View changed files

📝 VERSION (+1 -1)
📝 block.c (+2 -1)
📝 block/io.c (+10 -3)
📝 block/iscsi.c (+4 -4)
📝 block/nbd.c (+1 -0)
📝 hw/display/vga.c (+3 -0)
📝 hw/intc/arm_gic.c (+3 -2)
📝 hw/intc/arm_gicv3_dist.c (+13 -0)
📝 hw/intc/arm_gicv3_its_common.c (+3 -5)
📝 hw/intc/arm_gicv3_redist.c (+13 -0)
📝 hw/pci-bridge/gen_pcie_root_port.c (+6 -1)
📝 hw/ppc/Makefile.objs (+1 -1)
📝 hw/ppc/spapr.c (+103 -27)
hw/ppc/spapr_caps.c (+443 -0)
📝 hw/ppc/spapr_cpu_core.c (+7 -0)
📝 hw/ppc/spapr_hcall.c (+59 -0)
📝 hw/ppc/spapr_pci.c (+42 -19)
📝 hw/s390x/event-facility.c (+2 -2)
📝 hw/s390x/s390-stattrib-kvm.c (+2 -2)
📝 hw/scsi/scsi-bus.c (+8 -1)

...and 74 more files

📄 Description

No description provided


🔄 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/67 **Author:** [@kedi1982](https://github.com/kedi1982) **Created:** 3/1/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `stable-2.11` --- ### 📝 Commits (10+) - [`817a9fc`](https://github.com/qemu/qemu/commit/817a9fcba8043faa467929e7b0193df6bdc92211) target/i386: Fix handling of VEX prefixes - [`fd89d93`](https://github.com/qemu/qemu/commit/fd89d93e85df641d8110a2774591b9c9b63dad9b) block/iscsi: dont leave allocmap in an invalid state on UNMAP failure - [`ea311a9`](https://github.com/qemu/qemu/commit/ea311a995999f82f1647f4fd4967d4e8b3fbd806) target/sh4: fix TCG leak during gusa sequence - [`5ba945f`](https://github.com/qemu/qemu/commit/5ba945f1cbdf1f6d0b0ea6f6a722b1ddc1eef0b7) qemu-options: Remove stray colons from output of --help - [`c184e17`](https://github.com/qemu/qemu/commit/c184e17c757a0b8ea7b4a582653957610645d13e) qemu-pr-helper: miscellaneous fixes - [`b9da3c1`](https://github.com/qemu/qemu/commit/b9da3c1de7829a982685029222482cc5914638f4) block/nbd: fix segmentation fault when .desc is not null-terminated - [`057364d`](https://github.com/qemu/qemu/commit/057364da7741285284fc2f6fd9ad8921bda6438b) block: Make bdrv_drain_invoke() recursive - [`2b0c34c`](https://github.com/qemu/qemu/commit/2b0c34cf61dbf9fa2d3ab78f0c43609cb781c5a9) block: Call .drain_begin only once in bdrv_drain_all_begin() - [`7f53a81`](https://github.com/qemu/qemu/commit/7f53a8107386d2943ff83c3224775a3eea82b767) block: Open backing image in force share mode for size probe - [`d6f1448`](https://github.com/qemu/qemu/commit/d6f1448277ac228dcc60346204d88363c94a1e3c) vfio: Fix vfio-kvm group registration ### 📊 Changes **94 files changed** (+2069 additions, -772 deletions) <details> <summary>View changed files</summary> 📝 `VERSION` (+1 -1) 📝 `block.c` (+2 -1) 📝 `block/io.c` (+10 -3) 📝 `block/iscsi.c` (+4 -4) 📝 `block/nbd.c` (+1 -0) 📝 `hw/display/vga.c` (+3 -0) 📝 `hw/intc/arm_gic.c` (+3 -2) 📝 `hw/intc/arm_gicv3_dist.c` (+13 -0) 📝 `hw/intc/arm_gicv3_its_common.c` (+3 -5) 📝 `hw/intc/arm_gicv3_redist.c` (+13 -0) 📝 `hw/pci-bridge/gen_pcie_root_port.c` (+6 -1) 📝 `hw/ppc/Makefile.objs` (+1 -1) 📝 `hw/ppc/spapr.c` (+103 -27) ➕ `hw/ppc/spapr_caps.c` (+443 -0) 📝 `hw/ppc/spapr_cpu_core.c` (+7 -0) 📝 `hw/ppc/spapr_hcall.c` (+59 -0) 📝 `hw/ppc/spapr_pci.c` (+42 -19) 📝 `hw/s390x/event-facility.c` (+2 -2) 📝 `hw/s390x/s390-stattrib-kvm.c` (+2 -2) 📝 `hw/scsi/scsi-bus.c` (+8 -1) _...and 74 more files_ </details> ### 📄 Description _No description provided_ --- <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:29:52 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#122