RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1283987 - Aborted (core dumped) for "qemu-kvm: block.c:3332: bdrv_aligned_pwritev: Assertion `!qiov || bytes == qiov->size' failed." after 'lvextend' the guest primary image and 'cont' the installing guest for the 2nd time
Summary: Aborted (core dumped) for "qemu-kvm: block.c:3332: bdrv_aligned_pwritev: Asse...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: qemu-kvm-rhev
Version: 7.2
Hardware: All
OS: Unspecified
high
high
Target Milestone: rc
: ---
Assignee: Fam Zheng
QA Contact: Virtualization Bugs
URL:
Whiteboard:
Depends On: 1277922
Blocks: RHEV3.6PPC 1279052
TreeView+ depends on / blocked
 
Reported: 2015-11-20 13:16 UTC by Jan Kurik
Modified: 2016-02-21 11:11 UTC (History)
27 users (show)

Fixed In Version: qemu-kvm-rhev-2.3.0-31.el7_2.4
Doc Type: Bug Fix
Doc Text:
Clone Of: 1277922
Environment:
Last Closed: 2015-12-16 22:49:57 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2015:2663 0 normal SHIPPED_LIVE qemu-kvm-rhev bug fix update 2015-12-17 03:49:49 UTC

Description Jan Kurik 2015-11-20 13:16:42 UTC
This bug has been copied from bug #1277922 and has been proposed
to be backported to 7.2 z-stream (EUS).

Comment 16 Yanhui Ma 2015-12-03 02:22:46 UTC
reproduce the issue on x86_64:
host info:
qemu-kvm-rhev-2.3.0-30.el7.x86_64
3.10.0-293.el7.x86_64

steps:
1.Create pv,vg and a 1GB lv on host:
qemu-img create -f raw sdb1 50G
losetup /dev/loop0 /home/sdb1
pvcreate /dev/loop0
vgcreate vg /dev/loop0
lvcreate -n lv1 -L 1G vg

2.Create image on the lv with a large virtual size on the host:
qemu-img create -f qcow2 /dev/vg/lv1 80G

3.install a guest on the lv:
/usr/libexec/qemu-kvm -name lvtest -machine pc,accel=kvm,usb=off \
-m 6G -realtime mlock=off -smp 8,sockets=1,cores=4,threads=2 \
-uuid 95346a10-1828-403a-a610-ac5a52a29411 -no-user-config -nodefaults \
-monitor stdio -rtc base=utc,clock=host -no-shutdown \
-boot strict=on -device nec-usb-xhci,id=xhci \
-device virtio-scsi-pci,id=scsi0 \
-drive id=drive_image1,if=none,cache=none,snapshot=off,aio=native,format=qcow2,file=/dev/vg/lv1 \
-device virtio-blk-pci,id=image1,drive=drive_image1,bus=pci.0,bootindex=1 \
-drive file=/home/RHEL-7.2-20151030.0-Server-x86_64-dvd1.iso,if=none,id=drive-scsi0-0-0-0,readonly=on,format=raw,cache=none \
-device scsi-cd,bus=scsi0.0,channel=0,scsi-id=0,lun=0,drive=drive-scsi0-0-0-0,id=scsi0-0-0-0,bootindex=2 \
-netdev tap,id=hostnet0 \
-device virtio-net-pci,netdev=hostnet0,id=net0,mac=52:54:00:c4:e7:11,bus=pci.0,addr=0x9 \
-chardev pty,id=charserial0 \
-device usb-kbd,id=input0 \
-device usb-mouse,id=input1 \
-device usb-tablet,id=input2 \
-vnc 0:1 \
-device VGA,id=video0,bus=pci.0 \
-msg timestamp=on
char device redirected to /dev/pts/4 (label charserial0)
QEMU 2.3.0 monitor - type 'help' for more information
(qemu) info status 
VM status: running
(qemu) 
(qemu) info status 
VM status: paused (io-error)
(qemu) cont 
(qemu) info status 
VM status: running

4.Check guest running status in hmp with cmd 'info status' as that in step3, when it's in 'paused (io-error)' status, extend the lv on host with following cmd and then 'cont' the guest in hmp:
# lvextend -L +512M /dev/vg/lv1
5.Repeat step4 for another time to let the guest installation finish with enough disk space

results:
core dumped or the guest installation could not be finished after a long time

(qemu) info status 
VM status: paused (io-error)
(qemu) cont 
(qemu) ./qemubug1277922: line 19: 31721 Segmentation fault (core dumped) 

===================================================
verify the issue on x86_64:
host info:
qemu-kvm-rhev-2.3.0-31.el7_2.4.x86_64
3.10.0-327.4.1.el7.x86_64

steps:

steps are the same as above

results:
no core dumped, when extend lv to 4GB, the guest can be installed successfully.

Comment 19 errata-xmlrpc 2015-12-16 22:49:57 UTC
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.

https://rhn.redhat.com/errata/RHBA-2015-2663.html


Note You need to log in before you can comment on or make changes to this bug.