[PR #54] [CLOSED] Orbit wp4 colo mar16 #95

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

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/54
Author: @dugubai
Created: 7/21/2017
Status: Closed

Base: masterHead: orbit-wp4-colo-mar16


📝 Commits (10+)

  • 3a30452 Add new block driver interface to add/delete a BDS's child
  • d9cedea quorum: implement bdrv_add_child() and bdrv_del_child()
  • fc918cf qmp: add monitor command to add/remove a child
  • eda4f6d unblock backup operations in backing file
  • e4d95c7 Store parent BDS in BdrvChild
  • 3118c77 Backup: clear all bitmap when doing block checkpoint
  • 17fcfa2 Allow creating backup jobs when opening BDS
  • 6b85a7f docs: block replication's description
  • 4505dcb Add new block driver interfaces to control block replication
  • 22e38ae quorum: implement block driver interfaces for block replication

📊 Changes

59 files changed (+6914 additions, -270 deletions)

View changed files

README.md (+38 -0)
📝 block.c (+199 -4)
📝 block/Makefile.objs (+2 -1)
📝 block/backup.c (+14 -0)
📝 block/quorum.c (+203 -6)
block/replication.c (+545 -0)
📝 blockdev.c (+55 -0)
📝 blockjob.c (+11 -0)
📝 configure (+11 -0)
docs/block-replication.txt (+227 -0)
📝 docs/qmp-events.txt (+30 -0)
📝 hmp-commands-info.hx (+14 -0)
📝 hmp-commands.hx (+33 -0)
📝 hmp.c (+154 -0)
📝 hmp.h (+2 -0)
📝 hw/net/rtl8139.c (+0 -1)
📝 include/block/block.h (+18 -0)
📝 include/block/block_int.h (+20 -0)
📝 include/block/blockjob.h (+12 -0)
📝 include/exec/ram_addr.h (+7 -2)

...and 39 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/54 **Author:** [@dugubai](https://github.com/dugubai) **Created:** 7/21/2017 **Status:** ❌ Closed **Base:** `master` ← **Head:** `orbit-wp4-colo-mar16` --- ### 📝 Commits (10+) - [`3a30452`](https://github.com/qemu/qemu/commit/3a304528d6b245ebdc6b712b1f864ba96869eed6) Add new block driver interface to add/delete a BDS's child - [`d9cedea`](https://github.com/qemu/qemu/commit/d9cedea174c695a0b473badadc95ce50522b17ea) quorum: implement bdrv_add_child() and bdrv_del_child() - [`fc918cf`](https://github.com/qemu/qemu/commit/fc918cff8114fefed1186eb6ff78396bd9b0e7a5) qmp: add monitor command to add/remove a child - [`eda4f6d`](https://github.com/qemu/qemu/commit/eda4f6db97b717ce09c2af3ca30a53abe51e0be6) unblock backup operations in backing file - [`e4d95c7`](https://github.com/qemu/qemu/commit/e4d95c7d617b008fe5bb4b2083de77f7997706e7) Store parent BDS in BdrvChild - [`3118c77`](https://github.com/qemu/qemu/commit/3118c775b031431cd2f39bd0e3e3ecdb4062ef93) Backup: clear all bitmap when doing block checkpoint - [`17fcfa2`](https://github.com/qemu/qemu/commit/17fcfa2179c477b48158916c1e28e7b0b55cdc76) Allow creating backup jobs when opening BDS - [`6b85a7f`](https://github.com/qemu/qemu/commit/6b85a7fa58d0c2388a2ae76032aaf5b725389225) docs: block replication's description - [`4505dcb`](https://github.com/qemu/qemu/commit/4505dcbbec931dbed24b3da3f4408347dcf439f8) Add new block driver interfaces to control block replication - [`22e38ae`](https://github.com/qemu/qemu/commit/22e38ae9ddc12bed937ec996aa1b023b116b6126) quorum: implement block driver interfaces for block replication ### 📊 Changes **59 files changed** (+6914 additions, -270 deletions) <details> <summary>View changed files</summary> ➕ `README.md` (+38 -0) 📝 `block.c` (+199 -4) 📝 `block/Makefile.objs` (+2 -1) 📝 `block/backup.c` (+14 -0) 📝 `block/quorum.c` (+203 -6) ➕ `block/replication.c` (+545 -0) 📝 `blockdev.c` (+55 -0) 📝 `blockjob.c` (+11 -0) 📝 `configure` (+11 -0) ➕ `docs/block-replication.txt` (+227 -0) 📝 `docs/qmp-events.txt` (+30 -0) 📝 `hmp-commands-info.hx` (+14 -0) 📝 `hmp-commands.hx` (+33 -0) 📝 `hmp.c` (+154 -0) 📝 `hmp.h` (+2 -0) 📝 `hw/net/rtl8139.c` (+0 -1) 📝 `include/block/block.h` (+18 -0) 📝 `include/block/block_int.h` (+20 -0) 📝 `include/block/blockjob.h` (+12 -0) 📝 `include/exec/ram_addr.h` (+7 -2) _...and 39 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:45 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#95