aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2017-02-23 18:29:20 +0000
committerAlex Bennée <alex.bennee@linaro.org>2017-02-24 10:32:46 +0000
commite72184455c2e479199823b617dbea0df6940e646 (patch)
treed6ee48b6614a947c578e1ad22a23fe1df29ed0d1 /include
parent0336cbf8532935d8e23c2aabf3e2ce2c0697b6ac (diff)
downloadqemu-e72184455c2e479199823b617dbea0df6940e646.zip
qemu-e72184455c2e479199823b617dbea0df6940e646.tar.gz
qemu-e72184455c2e479199823b617dbea0df6940e646.tar.bz2
cputlb: add tlb_flush_by_mmuidx async routines
This converts the remaining TLB flush routines to use async work when detecting a cross-vCPU flush. The only minor complication is having to serialise the var_list of MMU indexes into a form that can be punted to an asynchronous job. The pending_tlb_flush field on QOM's CPU structure also becomes a bitfield rather than a boolean. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include')
-rw-r--r--include/qom/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index e80bf7a..3e61c88 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -407,7 +407,7 @@ struct CPUState {
* avoid potential races. The aim of the flag is to avoid
* unnecessary flushes.
*/
- bool pending_tlb_flush;
+ uint16_t pending_tlb_flush;
};
QTAILQ_HEAD(CPUTailQ, CPUState);