Bug 796011
Summary: | Prompt error of trigger blkdebug: BLKDBG_CLUSTER_FREE event is not the same as expected | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 6 | Reporter: | Sibiao Luo <sluo> |
Component: | qemu-kvm | Assignee: | Kevin Wolf <kwolf> |
Status: | CLOSED ERRATA | QA Contact: | Virtualization Bugs <virt-bugs> |
Severity: | low | Docs Contact: | |
Priority: | low | ||
Version: | 6.3 | CC: | acathrow, areis, bcao, bsarathy, chayang, flang, juzhang, lnovich, michen, minovotn, mkenneth, qzhang, shuang, shu, virt-maint, wdai, wquan, xfu, xigao |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | x86_64 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | qemu-kvm-0.12.1.2-2.367.el6 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2013-11-21 05:44:03 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Sibiao Luo
2012-02-22 02:47:06 UTC
In short: Somewhere in the call path of the snapshot functions, someone returns -1 instead of the real error code. Need to debug which one it is. - Verify this issue: host info: kernel-2.6.32-382.el6.x86_64 qemu-kvm-0.12.1.2-2.375.el6.x86_64 Steps and Results: 1.configure blkdebug file and store it on the specific location. # cat /home/blkdebug.cfg [inject-error] event = "cluster_free" #errno = "5" errno = "28" immediately = "off" 2.create qcow2 image with small cluster size, e.g sluo_test.qcow2. # qemu-img create -f qcow2 -o cluster_size=512 sluo_test.qcow2 10G 3.create internal snapshot. # qemu-img snapshot -c sluo_snap sluo_test.qcow2 4.lists all the snapshots in the sluo_test.qcow2 image. # qemu-img snapshot -l sluo_test.qcow2 Snapshot list: ID TAG VM SIZE DATE VM CLOCK 1 sluo_snap 0 2013-06-24 17:41:53 00:00:00.000 5.trigger blkdebug: BLKDBG_CLUSTER_FREE event and prompt error. # qemu-img snapshot -d sluo_snap blkdebug:/home/blkdebug.cfg:/home/sluo_test.qcow2 qcow2_free_clusters failed: No space left on device Could not delete snapshot 'sluo_snap': -28 (No space left on device) 6.run perror $errno. # perror 28 OS error code 28: No space left on device The prompt error return from trigger blkdebug: BLKDBG_CLUSTER_FREE event(step5) is same as expected(step6). Base on above, this bug has been fixed correctly. Set this bug to VERIDIED status, please correct me if any mistake. Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. http://rhn.redhat.com/errata/RHSA-2013-1553.html |