[oe-commits] [openembedded-core] 10/12: parselogs: Whitelist qemux86 error message with qemu 2.7.0

git at git.openembedded.org git at git.openembedded.org
Fri Sep 9 10:54:17 UTC 2016


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

commit 4d542cdc86c34f0f4a3dde8b0aab059bca76a9fb
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Sep 8 09:11:29 2016 -0700

    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.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/parselogs.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py
index 98a959e..698dda8 100644
--- a/meta/lib/oeqa/runtime/parselogs.py
+++ b/meta/lib/oeqa/runtime/parselogs.py
@@ -74,6 +74,7 @@ ignore_errors = {
     'default' : common_errors,
     'qemux86' : [
         'Failed to access perfctr msr (MSR',
+        'pci 0000:00:00.0: [Firmware Bug]: reg 0x..: invalid BAR (can\'t size)',
         ] + qemux86_common,
     'qemux86-64' : qemux86_common,
     'qemumips' : [

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


More information about the Openembedded-commits mailing list