[oe-commits] [openembedded-core] 01/01: parselogs: Whitelist qemuppc error message with qemu 2.7.0

git at git.openembedded.org git at git.openembedded.org
Thu Sep 8 16:12:34 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit bcc045381452f8dd7d8dd955bd9ad586a324e4ec
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Sep 8 11:39:04 2016 +0100

    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.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/parselogs.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 1b9f6d0..98a959e 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -88,6 +88,8 @@ ignore_errors = {
         'host side 80-wire cable detection failed, limiting max speed',
         'mode "640x480" test failed',
         'Failed to load module "glx"',
+        'can\'t handle BAR above 4GB',
+        'Cannot reserve Legacy IO',
         ] + common_errors,
     'qemuarm' : [
         'mmci-pl18x: probe of fpga:05 failed with error -22',

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list