|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] xen/arm: asm: Replace use of ALTERNATIVE with alternative_if
commit f9e10a9edcaa8d13c667b6ebfc7424b9ca58e78e
Author: Julien Grall <julien.grall@xxxxxxx>
AuthorDate: Tue Sep 24 13:33:44 2019 +0100
Commit: Julien Grall <julien.grall@xxxxxxx>
CommitDate: Fri Nov 1 14:33:15 2019 +0000
xen/arm: asm: Replace use of ALTERNATIVE with alternative_if
Using alternative_if makes the code a bit more streamlined.
Take the opportunity to use the new auto-nop infrastructure to avoid
counting the number of nop in the else part for arch/arm/arm64/entry.S
Signed-off-by: Julien Grall <julien.grall@xxxxxxx>
Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>
Release-acked-by: Juergen Gross <jgross@xxxxxxxx>
---
xen/arch/arm/arm32/entry.S | 7 ++++---
xen/arch/arm/arm64/entry.S | 8 +++++---
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/xen/arch/arm/arm32/entry.S b/xen/arch/arm/arm32/entry.S
index d5c2982e4a..6185f46114 100644
--- a/xen/arch/arm/arm32/entry.S
+++ b/xen/arch/arm/arm32/entry.S
@@ -59,9 +59,10 @@ prepare_context_from_guest:
* If the SKIP_SYNCHRONIZE_SERROR_ENTRY_EXIT has been set in the cpu
* feature, the checking of pending SErrors will be skipped.
*/
- ALTERNATIVE("nop",
- "b skip_check",
- SKIP_SYNCHRONIZE_SERROR_ENTRY_EXIT)
+ alternative_if SKIP_SYNCHRONIZE_SERROR_ENTRY_EXIT
+ b skip_check
+ alternative_else_nop_endif
+
/*
* Start to check pending virtual abort in the gap of Guest -> HYP
* world switch.
diff --git a/xen/arch/arm/arm64/entry.S b/xen/arch/arm/arm64/entry.S
index d4fb5fdc1c..a8ba7ab961 100644
--- a/xen/arch/arm/arm64/entry.S
+++ b/xen/arch/arm/arm64/entry.S
@@ -188,9 +188,11 @@
* is not set. If a vSError took place, the initial exception will be
* skipped. Exit ASAP
*/
- ALTERNATIVE("bl check_pending_vserror; cbnz x0, 1f",
- "nop; nop",
- SKIP_SYNCHRONIZE_SERROR_ENTRY_EXIT)
+ alternative_if_not SKIP_SYNCHRONIZE_SERROR_ENTRY_EXIT
+ bl check_pending_vserror
+ cbnz x0, 1f
+ alternative_else_nop_endif
+
bl enter_hypervisor_from_guest_preirq
msr daifclr, \iflags
bl enter_hypervisor_from_guest
--
generated by git-patchbot for /home/xen/git/xen.git#staging
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |