Commit d09155d2 authored by Paolo Bonzini's avatar Paolo Bonzini

KVM: emulator: always inline __linearize

The two callers have a lot of constant arguments that can be
optimized out.
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 123b2dd1
...@@ -641,7 +641,7 @@ static bool insn_aligned(struct x86_emulate_ctxt *ctxt, unsigned size) ...@@ -641,7 +641,7 @@ static bool insn_aligned(struct x86_emulate_ctxt *ctxt, unsigned size)
return true; return true;
} }
static int __linearize(struct x86_emulate_ctxt *ctxt, static __always_inline int __linearize(struct x86_emulate_ctxt *ctxt,
struct segmented_address addr, struct segmented_address addr,
unsigned *max_size, unsigned size, unsigned *max_size, unsigned size,
bool write, bool fetch, bool write, bool fetch,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment