From: Igor Mammedov <imammedo@redhat.com>
To: Peter Xu <peterx@redhat.com>
Cc: qemu-devel@nongnu.org, ehabkost@redhat.com, mst@redhat.com,
jasowang@redhat.com, rkrcmar@redhat.com,
alex.williamson@redhat.com, jan.kiszka@web.de, wexu@redhat.com,
pbonzini@redhat.com, marcel@redhat.com, davidkiarie4@gmail.com,
rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH v12 00/27] IOMMU: Enable interrupt remapping for Intel IOMMU
Date: Thu, 22 Sep 2016 10:29:39 +0200 [thread overview]
Message-ID: <20160922102939.6e05581d@nial.brq.redhat.com> (raw)
In-Reply-To: <1468475796-7397-1-git-send-email-peterx@redhat.com>
On Thu, 14 Jul 2016 13:56:09 +0800
Peter Xu <peterx@redhat.com> wrote:
> This is v12 for Intel IR. Rebased to lastest master, with some tiny
> tweaks from v11. Please check changelog below.
Hi Peter,
While testing current master 9b8595bc with merged IR remapping
and default IDE disk as following:
qemu-system-x86_64 --enable-kvm -m 2G -snapshot -M q35 \
-smp 1,sockets=7,cores=32,threads=1,maxcpus=240 \
-device qemu64-x86_64-cpu,socket-id=1,core-id=30,thread-id=0 \
-device intel-iommu,intremap=on -machine kernel_irqchip=split \
rhel73_disk.img
I see errors, on QEMU stderr:
KVM: injection failed, MSI lost (Operation not permitted)
[...]
and in guest:
[ 48.377370] ata1.00: exception Emask 0x0 SAct 0x7c0fffff SErr 0x0 action 0x6 frozen
[ 48.378069] ata1.00: failed command: WRITE FPDMA QUEUED
[ 48.378493] ata1.00: cmd 61/08:00:90:0a:c0/00:00:00:00:00/40 tag 0 ncq 4096 out
[ 48.378493] res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[...]
[ 48.465957] ata1: hard resetting link
[ 48.772096] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 53.773067] ata1.00: qc timeout (cmd 0xec)
[ 53.774054] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[ 53.775126] ata1.00: revalidation failed (errno=-5)
[...]
[ 94.394215] ata1.00: qc timeout (cmd 0xec)
[ 94.395163] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[ 94.396213] ata1.00: revalidation failed (errno=-5)
[ 94.397184] ata1.00: disabled
[ 94.398021] ata1.00: device reported invalid CHS sector 0
[...]
[ 94.725462] sd 0:0:0:0: [sda] FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
[ 94.726559] sd 0:0:0:0: [sda] CDB: Write(10) 2a 00 00 c0 09 00 00 00 08 00
[ 94.727462] blk_update_request: I/O error, dev sda, sector 12585216
[ 94.728320] Buffer I/O error on dev sda1, logical block 1572896, lost async page write
[...]
[ 94.771975] Buffer I/O error on dev sda1, logical block 2097257, lost async page write
[ 94.773458] EXT4-fs warning (device sda1): ext4_end_bio:316: I/O error -5 writing to inode 524365 (offset 0 size 0 starting block 2130264)
[ 94.773540] EXT4-fs warning (device sda1): ext4_end_bio:316: I/O error -5 writing to inode 525096 (offset 0 size 8192 starting block 2130596)
[ 94.773541] Buffer I/O error on device sda1, logical block 2130338
[...]
[ 94.783649] EXT4-fs error (device sda1): ext4_wait_block_bitmap:494: comm kworker/u480:5: Cannot read block bitmap - block_group = 11, block_bitmap = 1038
[ 94.786408] EXT4-fs (sda1): Delayed block allocation failed for inode 524366 at logical offset 1280 with max blocks 1 with error 5
[ 94.788973] EXT4-fs (sda1): This should not happen!! Data will be lost
next prev parent reply other threads:[~2016-09-22 8:29 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-14 5:56 [Qemu-devel] [PATCH v12 00/27] IOMMU: Enable interrupt remapping for Intel IOMMU Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 01/27] x86-iommu: introduce parent class Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 02/27] intel_iommu: rename VTD_PCI_DEVFN_MAX to x86-iommu Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 03/27] x86-iommu: provide x86_iommu_get_default Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 04/27] x86-iommu: introduce "intremap" property Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 05/27] acpi: enable INTR for DMAR report structure Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 06/27] intel_iommu: allow queued invalidation for IR Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 07/27] intel_iommu: set IR bit for ECAP register Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 08/27] acpi: add DMAR scope definition for root IOAPIC Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 09/27] intel_iommu: define interrupt remap table addr register Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 10/27] intel_iommu: handle interrupt remap enable Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 11/27] intel_iommu: define several structs for IOMMU IR Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 12/27] intel_iommu: add IR translation faults defines Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 13/27] intel_iommu: Add support for PCI MSI remap Peter Xu
2016-07-21 17:45 ` Michael S. Tsirkin
2016-07-22 3:17 ` Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 14/27] q35: ioapic: add support for emulated IOAPIC IR Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 15/27] ioapic: introduce ioapic_entry_parse() helper Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 16/27] intel_iommu: add support for split irqchip Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 17/27] x86-iommu: introduce IEC notifiers Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 18/27] ioapic: register IOMMU IEC notifier for ioapic Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 19/27] intel_iommu: Add support for Extended Interrupt Mode Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 20/27] intel_iommu: add SID validation for IR Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 21/27] kvm-irqchip: simplify kvm_irqchip_add_msi_route Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 22/27] kvm-irqchip: i386: add hook for add/remove virq Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 23/27] kvm-irqchip: x86: add msi route notify fn Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 24/27] kvm-irqchip: do explicit commit when update irq Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 25/27] intel_iommu: support all masks in interrupt entry cache invalidation Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 26/27] kvm-all: add trace events for kvm irqchip ops Peter Xu
2016-07-14 5:56 ` [Qemu-devel] [PATCH v12 27/27] intel_iommu: disallow kernel-irqchip=on with IR Peter Xu
2016-09-22 8:29 ` Igor Mammedov [this message]
2016-09-22 9:08 ` [Qemu-devel] [PATCH v12 00/27] IOMMU: Enable interrupt remapping for Intel IOMMU Peter Xu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160922102939.6e05581d@nial.brq.redhat.com \
--to=imammedo@redhat.com \
--cc=alex.williamson@redhat.com \
--cc=davidkiarie4@gmail.com \
--cc=ehabkost@redhat.com \
--cc=jan.kiszka@web.de \
--cc=jasowang@redhat.com \
--cc=marcel@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rkrcmar@redhat.com \
--cc=rth@twiddle.net \
--cc=wexu@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).