[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/pv/domain: clean up switch_compat
commit 5c3dd032286e9084cd5d09b1945d69365a4d3d6e Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Wed Apr 26 16:28:37 2017 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Wed Jun 7 12:15:56 2017 +0100 x86/pv/domain: clean up switch_compat Remove the redundant is_pv_domain check. Rearrange setup_compat calls. Suggested-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/pv/domain.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/xen/arch/x86/pv/domain.c b/xen/arch/x86/pv/domain.c index 4bd6581..1c0c040 100644 --- a/xen/arch/x86/pv/domain.c +++ b/xen/arch/x86/pv/domain.c @@ -60,16 +60,12 @@ int switch_compat(struct domain *d) return 0; d->arch.has_32bit_shinfo = 1; - if ( is_pv_domain(d) ) - d->arch.is_32bit_pv = 1; + d->arch.is_32bit_pv = 1; for_each_vcpu( d, v ) { - rc = setup_compat_arg_xlat(v); - if ( !rc ) - rc = setup_compat_l4(v); - - if ( rc ) + if ( (rc = setup_compat_arg_xlat(v)) || + (rc = setup_compat_l4(v)) ) goto undo_and_fail; } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |