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 2211634 - [aarch64] With virtio-iommu and vfio-pci, qemu coredump when host using kernel-64k package
Summary: [aarch64] With virtio-iommu and vfio-pci, qemu coredump when host using kerne...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 9
Classification: Red Hat
Component: qemu-kvm
Version: 9.3
Hardware: aarch64
OS: Linux
high
high
Target Milestone: rc
: ---
Assignee: Eric Auger
QA Contact: Yihuang Yu
URL:
Whiteboard:
Depends On: 2211609
Blocks:
TreeView+ depends on / blocked
 
Reported: 2023-06-01 09:29 UTC by Yihuang Yu
Modified: 2023-11-07 09:23 UTC (History)
13 users (show)

Fixed In Version: qemu-kvm-8.0.0-8.el9
Doc Type: If docs needed, set a value
Doc Text:
Clone Of: 2211609
Environment:
Last Closed: 2023-11-07 08:27:35 UTC
Type: ---
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Gitlab redhat/centos-stream/src qemu-kvm merge_requests 182 0 None opened Draft: VIRTIO-IOMMU/VFIO page size related fixes 2023-07-11 16:18:22 UTC
Red Hat Issue Tracker RHELPLAN-158779 0 None None None 2023-06-01 09:36:07 UTC
Red Hat Product Errata RHSA-2023:6368 0 None None None 2023-11-07 08:28:33 UTC

Comment 5 Eric Auger 2023-06-28 13:18:46 UTC
the problem today is that a global granule is used in the virtio-iommu device and in that case some virtio devices are attached to some domains prior to the VFIO device. the default 4kB page size starts to be used and gets frozen. Then we try to attach a VFIO device which doesn't support this granule (because the host is 64kB) and this fails according to the spirit of the current implementation. My gut feeling is the granule should be per domain instead. I initiated a discussion with Jean-Philippe Brucker.

Comment 7 Eric Auger 2023-07-04 12:58:50 UTC
Sent [PATCH 0/2] VIRTIO-IOMMU/VFIO page size related fixes
(https://lore.kernel.org/all/20230704111527.3424992-1-eric.auger@redhat.com/)

Comment 9 Yihuang Yu 2023-07-18 07:54:47 UTC
Test with host kernel 5.14.0-339.el9.aarch64+64k and qemu-kvm-8.0.0-8.el9, this problem is fixed.

MALLOC_PERTURB_=1  /usr/libexec/qemu-kvm \u-kvm \
    -name 'avocado-vt-vm1'  \
    -sandbox on  \
    -blockdev '{"node-name": "file_aavmf_code", "driver": "file", "filename": "/usr/share/edk2/aarch64/QEMU_EFI-silent-pflash.qcow2", "auto-read-only": true, "discard": "unmap"}' \
    -blockdev '{"node-name": "drive_aavmf_code", "driver": "qcow2", "read-only": true, "file": "file_aavmf_code"}' \
    -blockdev '{"node-name": "file_aavmf_vars", "driver": "file", "filename": "/root/avocado/data/avocado-vt/avocado-vt-vm1_rhel930-aarch64-64k-virtio-scsi_qcow2_filesystem_VARS.qcow2", "auto-read-only": true, "discard": "unmap"}' \
    -blockdev '{"node-name": "drive_aavmf_vars", "driver": "qcow2", "read-only": false, "file": "file_aavmf_vars"}' \
    -machine virt,gic-version=host,pflash0=drive_aavmf_code,pflash1=drive_aavmf_vars,memory-backend=mem-machine_mem \
    -device '{"id": "pcie-root-port-0", "driver": "pcie-root-port", "multifunction": true, "bus": "pcie.0", "addr": "0x1", "chassis": 1}' \
    -device '{"id": "pcie-pci-bridge-0", "driver": "pcie-pci-bridge", "addr": "0x0", "bus": "pcie-root-port-0"}'  \
    -device '{"id": "viommu", "driver": "virtio-iommu-pci", "bus": "pcie.0", "addr": "0x2"}' \
    -nodefaults \
    -device '{"id": "pcie-root-port-1", "port": 1, "driver": "pcie-root-port", "addr": "0x1.0x1", "bus": "pcie.0", "chassis": 2}' \
    -device '{"driver": "virtio-gpu-pci", "bus": "pcie-root-port-1", "addr": "0x0"}' \
    -m 11264 \
    -object '{"size": 11811160064, "id": "mem-machine_mem", "qom-type": "memory-backend-ram"}'  \
    -smp 112,maxcpus=112,cores=56,threads=1,clusters=1,sockets=2  \
    -cpu 'host' \
    -serial unix:'/var/tmp/serial-serial0',server=on,wait=off \
    -device '{"id": "pcie-root-port-2", "port": 2, "driver": "pcie-root-port", "addr": "0x1.0x2", "bus": "pcie.0", "chassis": 3}' \
    -device '{"driver": "qemu-xhci", "id": "usb1", "bus": "pcie-root-port-2", "addr": "0x0"}' \
    -device '{"driver": "usb-tablet", "id": "usb-tablet1", "bus": "usb1.0", "port": "1"}' \
    -device '{"id": "pcie-root-port-3", "port": 3, "driver": "pcie-root-port", "addr": "0x1.0x3", "bus": "pcie.0", "chassis": 4}' \
    -device '{"id": "virtio_scsi_pci0", "driver": "virtio-scsi-pci", "bus": "pcie-root-port-3", "addr": "0x0"}' \
    -blockdev '{"node-name": "file_image1", "driver": "file", "auto-read-only": true, "discard": "unmap", "aio": "threads", "filename": "/home/kvm_autotest_root/images/rhel930-aarch64-64k-virtio-scsi.qcow2", "cache": {"direct": true, "no-flush": false}}' \
    -blockdev '{"node-name": "drive_image1", "driver": "qcow2", "read-only": false, "cache": {"direct": true, "no-flush": false}, "file": "file_image1"}' \
    -device '{"driver": "scsi-hd", "id": "image1", "drive": "drive_image1", "write-cache": "on"}' \
    -device '{"id": "pcie-root-port-4", "port": 4, "driver": "pcie-root-port", "addr": "0x1.0x4", "bus": "pcie.0", "chassis": 5}' \
    -device '{"driver": "vfio-pci", "host": "0000:0b:00.0", "bus": "pcie-root-port-4", "addr": "0x0"}' \
    -vnc :0  \
    -rtc base=utc,clock=host \
    -enable-kvm \
    -monitor stdio

Guest:
Red Hat Enterprise Linux 9.3 Beta (Plow)
Kernel 5.14.0-337.el9.aarch64+64k on an aarch64

Activate the web console with: systemctl enable --now cockpit.socket

dhcp158-107 login:

[root@dhcp158-107 ~]# ip route
ip route
default via 10.19.159.254 dev eth0 proto dhcp src 10.19.158.107 metric 100
10.19.152.0/21 dev eth0 proto kernel scope link src 10.19.158.107 metric 100
[root@dhcp158-107 ~]# ping -c 10 10.19.159.254
ping -c 10 10.19.159.254
PING 10.19.159.254 (10.19.159.254) 56(84) bytes of data.
64 bytes from 10.19.159.254: icmp_seq=1 ttl=64 time=1.46 ms
64 bytes from 10.19.159.254: icmp_seq=2 ttl=64 time=1.32 ms
64 bytes from 10.19.159.254: icmp_seq=3 ttl=64 time=1.38 ms
64 bytes from 10.19.159.254: icmp_seq=4 ttl=64 time=1.16 ms
64 bytes from 10.19.159.254: icmp_seq=5 ttl=64 time=1.22 ms
64 bytes from 10.19.159.254: icmp_seq=6 ttl=64 time=1.01 ms
64 bytes from 10.19.159.254: icmp_seq=7 ttl=64 time=1.27 ms
64 bytes from 10.19.159.254: icmp_seq=8 ttl=64 time=1.27 ms
64 bytes from 10.19.159.254: icmp_seq=9 ttl=64 time=1.20 ms
64 bytes from 10.19.159.254: icmp_seq=10 ttl=64 time=1.20 ms

--- 10.19.159.254 ping statistics ---
10 packets transmitted, 10 received, 0% packet loss, time 9012ms
rtt min/avg/max/mdev = 1.006/1.249/1.459/0.118 ms

Comment 12 Yihuang Yu 2023-07-25 05:15:02 UTC
Move to VERIFIED based on comment 9

Comment 14 errata-xmlrpc 2023-11-07 08:27:35 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 (Moderate: qemu-kvm security, bug fix, and enhancement update), 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://access.redhat.com/errata/RHSA-2023:6368


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