diff options
author | Victor Kamensky <kamensky@cisco.com> | 2020-10-07 13:38:38 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-08 11:28:58 +0100 |
commit | ba6780568d294d82bc4294c3302b9364fa302725 (patch) | |
tree | a4609727c043f7f091e3569cedfa97502ab4ea59 | |
parent | f6f5d092053e4c47e36f54a468b1d8d9b0e9118b (diff) | |
download | poky-ba6780568d294d82bc4294c3302b9364fa302725.tar.gz |
qemumips: use 34Kf-64tlb CPU emulation
In order to improve performance of qemumips autobuilder
test runs, let's use 34Kf-64tlb cpu type that was introduced
in OE version of qemu. 34Kf-64tlb cpu type is identical to
34Kf but it has 64 TLBs configure vs original 16 TLBs.
The change in number of TLBs in emulated CPU reduces
TLB trash and reduces number of times TLB refill kernel
code runs, and therefore siginificantly improves tests
execution time.
Note 34Kf-64tlb qemu cpu type does not exist in upstream,
so far it is added as patch in OE. See qemu 34Kf-64tlb
cpu addition commit for more details.
Fixes https://bugzilla.yoctoproject.org/show_bug.cgi?id=13992
(From OE-Core rev: 6a9568401cbf8bed89d1f63dae61a07a83a20b50)
Signed-off-by: Victor Kamensky <kamensky@cisco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/machine/qemumips.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemumips.conf b/meta/conf/machine/qemumips.conf index 1373e4cba0..b8c80f02ef 100644 --- a/meta/conf/machine/qemumips.conf +++ b/meta/conf/machine/qemumips.conf | |||
@@ -15,4 +15,4 @@ SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1" | |||
15 | 15 | ||
16 | QB_SYSTEM_NAME = "qemu-system-mips" | 16 | QB_SYSTEM_NAME = "qemu-system-mips" |
17 | 17 | ||
18 | QB_CPU = "-cpu 34Kf" | 18 | QB_CPU = "-cpu 34Kf-64tlb" |