diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-08 11:39:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-09 11:53:37 +0100 |
commit | e399ca1dd8fb06ebbe03c0f5e1e885eab8c9aca8 (patch) | |
tree | 9d8d1a60916c25f74e09fa853a3028c590e4a097 | |
parent | f6ff0379b7ca0b59111cf4c706b8021181a2cbe9 (diff) | |
download | poky-e399ca1dd8fb06ebbe03c0f5e1e885eab8c9aca8.tar.gz |
parselogs: Whitelist qemuppc error message with qemu 2.7.0
qemu 2.7.0 introduces kernel errors:
[0.474981] pci 0000:00:0f.0: reg 0x10: [io 0x0400-0x041f]
[0.483796] pci 0000:00:0f.0: reg 0x20: can't handle BAR above 4GB (bus address 0xffffffff82800000)
[0.484204] pci 0000:00:0f.0: reg 0x20: [mem size 0x00800000 64bit pref]
[0.488077] pci 0000:00:0f.0: reg 0x30: [mem 0x83000000-0x8303ffff pref]
[0.488903] pci 0000:00:10.0: [1af4:1005] type 00 class 0x00ff00
[0.490485] pci 0000:00:10.0: reg 0x10: [io 0x0480-0x049f]
[0.496512] pci 0000:00:10.0: reg 0x20: can't handle BAR above 4GB (bus address 0xffffffff83800000)
[0.496783] pci 0000:00:10.0: reg 0x20: [mem size 0x00800000 64bit pref]
[0.500345] pci 0000:00:11.0: [1af4:1001] type 00 class 0x010000
[0.501790] pci 0000:00:11.0: reg 0x10: [io 0x0500-0x053f]
[0.507362] pci 0000:00:11.0: reg 0x20: can't handle BAR above 4GB (bus address 0xffffffff84000000)
[0.507677] pci 0000:00:11.0: reg 0x20: [mem size 0x00800000 64bit pref]
[0.513905] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
[0.516493] PCI 0000:00 Cannot reserve Legacy IO [io 0x0000-0x0fff]
[0.517512] pci 0000:00:0f.0: BAR 4: assigned [mem 0x80800000-0x80ffffff 64bit pref]
[0.518877] pci 0000:00:10.0: BAR 4: assigned [mem 0x82800000-0x82ffffff 64bit pref]
[0.519890] pci 0000:00:11.0: BAR 4: assigned [mem 0x83800000-0x83ffffff 64bit pref]
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: 2472ed5393ab01ad79c011ea19c73224ed5125de)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index 1b9f6d0711..98a959ed2a 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -88,6 +88,8 @@ ignore_errors = { | |||
88 | 'host side 80-wire cable detection failed, limiting max speed', | 88 | 'host side 80-wire cable detection failed, limiting max speed', |
89 | 'mode "640x480" test failed', | 89 | 'mode "640x480" test failed', |
90 | 'Failed to load module "glx"', | 90 | 'Failed to load module "glx"', |
91 | 'can\'t handle BAR above 4GB', | ||
92 | 'Cannot reserve Legacy IO', | ||
91 | ] + common_errors, | 93 | ] + common_errors, |
92 | 'qemuarm' : [ | 94 | 'qemuarm' : [ |
93 | 'mmci-pl18x: probe of fpga:05 failed with error -22', | 95 | 'mmci-pl18x: probe of fpga:05 failed with error -22', |