diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-09-08 09:11:29 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 11:53:37 +0100 |
commit | af7ec7afc0a4b9a07403c93db504bf9c9557cd83 (patch) | |
tree | 8d46aa5a37bad8b078a2e6a55fee2782d8a64fa8 /meta | |
parent | e399ca1dd8fb06ebbe03c0f5e1e885eab8c9aca8 (diff) | |
download | poky-af7ec7afc0a4b9a07403c93db504bf9c9557cd83.tar.gz |
parselogs: Whitelist qemux86 error message with qemu 2.7.0
qemu 2.7.0 introduces kernel errors:
[ 2.310768] pci 0000:00:00.0: [11ab:4620] type 00 class 0x060000
[ 2.311338] pci 0000:00:00.0: [Firmware Bug]: reg 0x14: invalid BAR (can't size)
[ 2.311604] pci 0000:00:00.0: [Firmware Bug]: reg 0x18: invalid BAR (can't size)
[ 2.311835] pci 0000:00:00.0: [Firmware Bug]: reg 0x1c: invalid BAR (can't size)
[ 2.312063] pci 0000:00:00.0: [Firmware Bug]: reg 0x20: invalid BAR (can't size)
[ 2.312323] pci 0000:00:00.0: [Firmware Bug]: reg 0x24: invalid BAR (can't size)
[ 2.314320] pci 0000:00:0a.0: [8086:7110] type 00 class 0x060100
[ 2.315363] pci 0000:00:0a.1: [8086:7111] type 00 class 0x010180
Whitelist this for now since this is preferable to the random failures
we're seeing from qemuppc with 2.6.0.
(From OE-Core rev: 4d542cdc86c34f0f4a3dde8b0aab059bca76a9fb)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index 98a959ed2a..698dda8f7b 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -74,6 +74,7 @@ ignore_errors = { | |||
74 | 'default' : common_errors, | 74 | 'default' : common_errors, |
75 | 'qemux86' : [ | 75 | 'qemux86' : [ |
76 | 'Failed to access perfctr msr (MSR', | 76 | 'Failed to access perfctr msr (MSR', |
77 | 'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)', | ||
77 | ] + qemux86_common, | 78 | ] + qemux86_common, |
78 | 'qemux86-64' : qemux86_common, | 79 | 'qemux86-64' : qemux86_common, |
79 | 'qemumips' : [ | 80 | 'qemumips' : [ |