diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-09-19 11:50:19 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-20 15:11:09 +0100 |
commit | a8cf594bcedd9bb9a4386143e22de6a8127147f4 (patch) | |
tree | e285036188e752c0a4c94653147b63ede8971085 | |
parent | 3f3198128c4f9a584f819b1a21c879166c040f89 (diff) | |
download | poky-a8cf594bcedd9bb9a4386143e22de6a8127147f4.tar.gz |
oeqa/runtime/parselogs.py: Add ignore of tsc calibration fail in x86
We are experimenting failures to calibrate CPU's using TSC in x86
VM's due to usage of nested KVM [1], this is a known issue [2][3]
in virtualization environments, for detail explnation see [4].
Also we already have an ignore for 'TSC Fast calibration fail'.
[1] http://errors.yoctoproject.org/Errors/Details/83684/
[2] https://bugzilla.redhat.com/show_bug.cgi?id=814231
[3] https://lists.nongnu.org/archive/html/qemu-devel/2010-09/msg01547.html
[4] https://www.kernel.org/doc/Documentation/virtual/kvm/timekeeping.txt
(From OE-Core rev: 2271f59a0f506f89f9fea6777701c4b40790ddd9)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 b5017c2492..763c42fde9 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -68,6 +68,7 @@ qemux86_common = [ | |||
68 | 'Getting VBE info block failed', | 68 | 'Getting VBE info block failed', |
69 | 'vbe_init() failed with -22', | 69 | 'vbe_init() failed with -22', |
70 | 'uvesafb: mode switch failed', | 70 | 'uvesafb: mode switch failed', |
71 | 'tsc: HPET/PMTIMER calibration failed', | ||
71 | ] + common_errors | 72 | ] + common_errors |
72 | 73 | ||
73 | ignore_errors = { | 74 | ignore_errors = { |