Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1596141 > unrolled thread
| Started by | Paolo Bonzini <pbonzini@redhat.com> |
|---|---|
| First post | 2017-03-09 16:20 +0100 |
| Last post | 2017-03-09 16:20 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH RFC 4/4] VMX: Expose the LA57 feature to VM Paolo Bonzini <pbonzini@redhat.com> - 2017-03-09 16:20 +0100
| From | Paolo Bonzini <pbonzini@redhat.com> |
|---|---|
| Date | 2017-03-09 16:20 +0100 |
| Subject | Re: [PATCH RFC 4/4] VMX: Expose the LA57 feature to VM |
| Message-ID | <tj81c-6XD-3@gated-at.bofh.it> |
On 29/12/2016 10:26, Liang Li wrote:
> - if (is_noncanonical_address(la))
> + if (is_noncanonical_address(la, virt_addr_bits(ctxt)))
Using virt_addr_bits and get_virt_addr_bits is quite a mouthful. What
about using instead a pair of functions like these:
bool is_noncanonical_address(struct kvm_vcpu *vcpu, u64 addr)
{
return addr == get_canonical(addr, get_virt_addr_bits(vcpu));
}
bool emulate_is_noncanonical_address(struct x86_emulate_ctxt *ctxt,
u64 addr)
{
return addr == get_canonical(addr, virt_addr_bits(ctxt));
}
Paolo
Back to top | Article view | linux.kernel
csiph-web