aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests
diff options
context:
space:
mode:
authorBill Wendling <morbo@google.com>2020-12-10 17:23:17 -0800
committerPaolo Bonzini <pbonzini@redhat.com>2021-05-07 06:06:13 -0400
commit5f443e424efab56baa8021da04878f88eb0815d4 (patch)
tree5c27e9e9aab8a483aa9f2768df1e1eaa36d4ebc7 /tools/testing/selftests
parentKVM: nVMX: Properly pad 'struct kvm_vmx_nested_state_hdr' (diff)
downloadwireguard-linux-5f443e424efab56baa8021da04878f88eb0815d4.tar.xz
wireguard-linux-5f443e424efab56baa8021da04878f88eb0815d4.zip
selftests: kvm: remove reassignment of non-absolute variables
Clang's integrated assembler does not allow symbols with non-absolute values to be reassigned. Modify the interrupt entry loop macro to be compatible with IAS by using a label and an offset. Cc: Jian Cai <caij2003@gmail.com> Signed-off-by: Bill Wendling <morbo@google.com> References: https://lore.kernel.org/lkml/20200714233024.1789985-1-caij2003@gmail.com/ Message-Id: <20201211012317.3722214-1-morbo@google.com> Reviewed-by: Jim Mattson <jmattson@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing/selftests')
-rw-r--r--tools/testing/selftests/kvm/lib/x86_64/handlers.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/kvm/lib/x86_64/handlers.S b/tools/testing/selftests/kvm/lib/x86_64/handlers.S
index aaf7bc7d2ce1..7629819734af 100644
--- a/tools/testing/selftests/kvm/lib/x86_64/handlers.S
+++ b/tools/testing/selftests/kvm/lib/x86_64/handlers.S
@@ -54,9 +54,9 @@ idt_handlers:
.align 8
/* Fetch current address and append it to idt_handlers. */
- current_handler = .
+666 :
.pushsection .rodata
-.quad current_handler
+ .quad 666b
.popsection
.if ! \has_error