diff options
| author | Jérémy Lefaure <[email protected]> | 2017-02-25 22:46:53 +0000 |
|---|---|---|
| committer | Radim Krčmář <[email protected]> | 2017-03-01 16:03:24 +0000 |
| commit | 0fce546f9f07b94ccc9de09cf48d35e18946d2fa (patch) | |
| tree | 812e3cd7aec6548578b9a8bb69478cfce15d93fe | |
| parent | selftests/x86: Add a basic selftest for ioperm (diff) | |
| download | kernel-0fce546f9f07b94ccc9de09cf48d35e18946d2fa.tar.gz kernel-0fce546f9f07b94ccc9de09cf48d35e18946d2fa.zip | |
x86/kvm/vmx: remove unused variable in segment_base()
The pointer 'struct desc_struct *d' is unused since commit 8c2e41f7ae12
("x86/kvm/vmx: Simplify segment_base()") so let's remove it.
Signed-off-by: Jérémy Lefaure <[email protected]>
Reviewed-by: David Hildenbrand <[email protected]>
Signed-off-by: Radim Krčmář <[email protected]>
| -rw-r--r-- | arch/x86/kvm/vmx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index ef4ba71dbb66..764f1f897847 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -2053,7 +2053,6 @@ static bool update_transition_efer(struct vcpu_vmx *vmx, int efer_offset) static unsigned long segment_base(u16 selector) { struct desc_ptr *gdt = this_cpu_ptr(&host_gdt); - struct desc_struct *d; struct desc_struct *table; unsigned long v; |
