From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pve-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id D1D421FF15E for <inbox@lore.proxmox.com>; Tue, 6 May 2025 11:00:31 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 897234A31; Tue, 6 May 2025 11:00:45 +0200 (CEST) Message-ID: <f50fdcdc-4c3b-46cc-a170-7c7afe2bc161@proxmox.com> Date: Tue, 6 May 2025 11:00:07 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> References: <20250422115141.808427-1-alexandre.derumier@groupe-cyllene.com> <mailman.22.1745322744.394.pve-devel@lists.proxmox.com> Content-Language: en-US From: Fiona Ebner <f.ebner@proxmox.com> In-Reply-To: <mailman.22.1745322744.394.pve-devel@lists.proxmox.com> X-SPAM-LEVEL: Spam detection results: 0 AWL -0.037 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [block-commit.sh] Subject: Re: [pve-devel] [PATCH pve-qemu 1/1] add block-commit-replaces option patch X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> List-Post: <mailto:pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com> Hi, Am 22.04.25 um 13:51 schrieb Alexandre Derumier via pve-devel: > This is needed for external snapshot live commit, > when the top blocknode is not the fmt-node. > (in our case, the throttle-group node is the topnode) > > Signed-off-by: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com> I looked into this again and maybe we can avoid this patch. I think all you need is to specify the 'top-node' when issuing the commit command. Without specifying "top-node": > [I] root@pve8a1 ~# cat block-commit.sh > #!/bin/bash > rm -f /tmp/backing.qcow2 > rm -f /tmp/top.qcow2 > qemu-img create /tmp/backing.qcow2 -f qcow2 64M > qemu-img create /tmp/top.qcow2 -f qcow2 64M > qemu-system-x86_64 --qmp stdio \ > --nodefaults \ > --object throttle-group,id=thrgr0 \ > --blockdev qcow2,node-name=backing0,file.driver=file,file.filename=/tmp/backing.qcow2 \ > --blockdev throttle,node-name=drive-scsi0,throttle-group=thrgr0,file.driver=qcow2,file.node-name=node0,file.file.driver=file,file.file.filename=/tmp/top.qcow2,file.backing=backing0 \ > --device 'virtio-scsi-pci,id=virtioscsi0,bus=pci.0,addr=0x2' \ > --device 'scsi-hd,bus=virtioscsi0.0,channel=0,scsi-id=0,lun=0,drive=drive-scsi0,id=scsi0' \ > <<EOF > {"execute": "qmp_capabilities"} > {"execute": "query-block"} > {"execute": "block-commit", "arguments": { "device": "drive-scsi0", "base-node": "backing0", "job-id": "commit0" } } > {"execute": "block-job-complete", "arguments": {"device": "commit0" } } > {"execute": "query-block"} > {"execute": "quit"} > EOF The result will be: > { > "return": [ > { > "io-status": "ok", > "device": "", > "locked": false, > "removable": false, > "inserted": { > "iops_rd": 0, > "detect_zeroes": "off", > "image": { > "virtual-size": 67108864, > "filename": "/tmp/backing.qcow2", > "cluster-size": 65536, > "format": "qcow2", > "actual-size": 200704, > "format-specific": { > "type": "qcow2", > "data": { > "compat": "1.1", > "compression-type": "zlib", > "lazy-refcounts": false, > "refcount-bits": 16, > "corrupt": false, > "extended-l2": false > } > }, > "dirty-flag": false > }, > "iops_wr": 0, > "ro": false, > "node-name": "backing0", > "backing_file_depth": 0, > "drv": "qcow2", > "iops": 0, > "bps_wr": 0, > "write_threshold": 0, > "encrypted": false, > "bps": 0, > "bps_rd": 0, > "cache": { > "no-flush": false, > "direct": false, > "writeback": true > }, > "file": "/tmp/backing.qcow2" > }, > "qdev": "scsi0", > "type": "unknown" > } > ] > } So no throttle group, bad. But setting "top-node" being the throttle node like here: > #!/bin/bash > rm -f /tmp/backing.qcow2 > rm -f /tmp/top.qcow2 > qemu-img create /tmp/backing.qcow2 -f qcow2 64M > qemu-img create /tmp/top.qcow2 -f qcow2 64M > qemu-system-x86_64 --qmp stdio \ > --nodefaults \ > --object throttle-group,id=thrgr0 \ > --blockdev qcow2,node-name=backing0,file.driver=file,file.filename=/tmp/backing.qcow2 \ > --blockdev throttle,node-name=drive-scsi0,throttle-group=thrgr0,file.driver=qcow2,file.node-name=node0,file.file.driver=file,file.file.filename=/tmp/top.qcow2,file.backing=backing0 \ > --device 'virtio-scsi-pci,id=virtioscsi0,bus=pci.0,addr=0x2' \ > --device 'scsi-hd,bus=virtioscsi0.0,channel=0,scsi-id=0,lun=0,drive=drive-scsi0,id=scsi0' \ > <<EOF > {"execute": "qmp_capabilities"} > {"execute": "query-block"} > {"execute": "block-commit", "arguments": { "device": "drive-scsi0", "top-node": "node0", "base-node": "backing0", "job-id": "commit0" } } > {"execute": "block-job-complete", "arguments": {"device": "commit0" } } > {"execute": "query-block"} > {"execute": "quit"} > EOF The result will be: > { > "return": [ > { > "io-status": "ok", > "device": "", > "locked": false, > "removable": false, > "inserted": { > "iops_rd": 0, > "detect_zeroes": "off", > "image": { > "backing-image": { > "virtual-size": 67108864, > "filename": "/tmp/backing.qcow2", > "cluster-size": 65536, > "format": "qcow2", > "actual-size": 200704, > "format-specific": { > "type": "qcow2", > "data": { > "compat": "1.1", > "compression-type": "zlib", > "lazy-refcounts": false, > "refcount-bits": 16, > "corrupt": false, > "extended-l2": false > } > }, > "dirty-flag": false > }, > "virtual-size": 67108864, > "filename": "json:{\"throttle-group\": \"thrgr0\", \"driver\": \"throttle\", \"file\": {\"driver\": \"qcow2\", \"file\": {\"driver\": \"file\", \"filename\": \"/tmp/backing.qcow2\"}}}", > "cluster-size": 65536, > "format": "throttle", > "actual-size": 200704, > "dirty-flag": false > }, > "iops_wr": 0, > "ro": false, > "node-name": "drive-scsi0", > "backing_file_depth": 1, > "drv": "throttle", > "iops": 0, > "bps_wr": 0, > "write_threshold": 0, > "encrypted": false, > "bps": 0, > "bps_rd": 0, > "cache": { > "no-flush": false, > "direct": false, > "writeback": true > }, > "file": "json:{\"throttle-group\": \"thrgr0\", \"driver\": \"throttle\", \"file\": {\"driver\": \"qcow2\", \"file\": {\"driver\": \"file\", \"filename\": \"/tmp/backing.qcow2\"}}}" > }, > "qdev": "scsi0", > "type": "unknown" > } > ] > } I hope this is what you want? Probably QEMU does not consider throttle groups when automatically determining the top-node, so we need to specify it explicitly. Best Regards, Fiona _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel