[PR #37] [CLOSED] test #65

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

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/37
Author: @zhangckid
Created: 3/7/2016
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • e40cf29 block: Consider all block layer options in append_open_options
  • bffc769 block: Exclude nested options only for children in append_open_options()
  • d4917a2 bug fix
  • 5998577 Add new block driver interface to add/delete a BDS's child
  • 24ab6de quorum: implement bdrv_add_child() and bdrv_del_child()
  • cffc1a3 qmp: add monitor command to add/remove a child
  • d414d1c unblock backup operations in backing file
  • 65bac24 Store parent BDS in BdrvChild
  • 97fadda allow writing to the backing file
  • 924f82b Backup: clear all bitmap when doing block checkpoint

📊 Changes

47 files changed (+3606 additions, -206 deletions)

View changed files

📝 block.c (+270 -14)
📝 block/Makefile.objs (+2 -1)
📝 block/backup.c (+14 -0)
📝 block/quorum.c (+200 -2)
block/replication.c (+549 -0)
📝 blockdev.c (+54 -0)
📝 blockjob.c (+11 -0)
📝 configure (+11 -0)
docs/block-replication.txt (+251 -0)
📝 docs/qmp-events.txt (+17 -0)
📝 hmp-commands.hx (+15 -0)
📝 hmp.c (+15 -0)
📝 hmp.h (+1 -0)
📝 include/block/block.h (+18 -0)
📝 include/block/block_int.h (+21 -0)
📝 include/block/blockjob.h (+12 -0)
📝 include/exec/ram_addr.h (+1 -0)
include/migration/colo.h (+44 -0)
include/migration/failover.h (+33 -0)
📝 include/migration/migration.h (+12 -1)

...and 27 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/37 **Author:** [@zhangckid](https://github.com/zhangckid) **Created:** 3/7/2016 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`e40cf29`](https://github.com/qemu/qemu/commit/e40cf29b4bf51bb343f93ad12bfc7b0c44d7feec) block: Consider all block layer options in append_open_options - [`bffc769`](https://github.com/qemu/qemu/commit/bffc7696fd9e6377e60a7491ae56a7cd03725b58) block: Exclude nested options only for children in append_open_options() - [`d4917a2`](https://github.com/qemu/qemu/commit/d4917a2cd010d27fc3f01df68416b4806a0e8119) bug fix - [`5998577`](https://github.com/qemu/qemu/commit/59985777e368183b7eda2135f6fce21e68ac61d7) Add new block driver interface to add/delete a BDS's child - [`24ab6de`](https://github.com/qemu/qemu/commit/24ab6de8de22f71ba44237b63ec927b241be6656) quorum: implement bdrv_add_child() and bdrv_del_child() - [`cffc1a3`](https://github.com/qemu/qemu/commit/cffc1a3ce50ba924d83a8d26c38e34b411ca4aa5) qmp: add monitor command to add/remove a child - [`d414d1c`](https://github.com/qemu/qemu/commit/d414d1c25244c19c7b838fd5c230066d5835a1b0) unblock backup operations in backing file - [`65bac24`](https://github.com/qemu/qemu/commit/65bac24c779a9e0c30b9d9a2465808ecf0d9b8c6) Store parent BDS in BdrvChild - [`97fadda`](https://github.com/qemu/qemu/commit/97fadda93dd28fbff0c046b08e583b536c05c769) allow writing to the backing file - [`924f82b`](https://github.com/qemu/qemu/commit/924f82b53d485b0e980cdc78ea9b564d8b8dfc5a) Backup: clear all bitmap when doing block checkpoint ### 📊 Changes **47 files changed** (+3606 additions, -206 deletions) <details> <summary>View changed files</summary> 📝 `block.c` (+270 -14) 📝 `block/Makefile.objs` (+2 -1) 📝 `block/backup.c` (+14 -0) 📝 `block/quorum.c` (+200 -2) ➕ `block/replication.c` (+549 -0) 📝 `blockdev.c` (+54 -0) 📝 `blockjob.c` (+11 -0) 📝 `configure` (+11 -0) ➕ `docs/block-replication.txt` (+251 -0) 📝 `docs/qmp-events.txt` (+17 -0) 📝 `hmp-commands.hx` (+15 -0) 📝 `hmp.c` (+15 -0) 📝 `hmp.h` (+1 -0) 📝 `include/block/block.h` (+18 -0) 📝 `include/block/block_int.h` (+21 -0) 📝 `include/block/blockjob.h` (+12 -0) 📝 `include/exec/ram_addr.h` (+1 -0) ➕ `include/migration/colo.h` (+44 -0) ➕ `include/migration/failover.h` (+33 -0) 📝 `include/migration/migration.h` (+12 -1) _...and 27 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:37 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#65